diff --git a/.gitattributes b/.gitattributes index 082d51c0..0f1dbf43 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,7 @@ dnn/src/cuda/matrix_mul/fp32_simt/kimpl/* binary dnn/src/cuda/sass/prebuilt/map_defs.cpp binary dnn/src/cuda/convolution/backward_data/int8/kimpl/* binary dnn/src/cuda/elemwise_multi_type/kimpl/* binary +src/gopt/test/cache_data.h binary tools/mlir/mlir-tblgen filter=lfs diff=lfs merge=lfs -text imperative/python/test/integration/data/*.mge filter=lfs diff=lfs merge=lfs -text ci/resource/models/float/mobilenet_v2.pkl filter=lfs diff=lfs merge=lfs -text diff --git a/sdk/load-and-run/BUILD b/sdk/load-and-run/BUILD index 54b98e68..29c79b22 100644 --- a/sdk/load-and-run/BUILD +++ b/sdk/load-and-run/BUILD @@ -2,13 +2,11 @@ cc_library( name = "mgblar", copts = ["-std=c++14"], srcs = [ - "src/infile_persistent_cache.cpp", "src/mgblar.cpp", "src/json_loader.cpp", "src/text_table.cpp", ], hdrs = [ - "src/infile_persistent_cache.h", "src/mgblar.h", "src/json_loader.h", "src/text_table.h", @@ -57,11 +55,9 @@ cc_megvii_binary( cc_library( name = "megbrain_ios_lar_lib", srcs = [ - "src/infile_persistent_cache.cpp", "src/mgblar.cpp", ], hdrs = [ - "src/infile_persistent_cache.h", "src/mgblar.h", ], copts = ["-DMGB_NO_MAIN=1"], diff --git a/sdk/load-and-run/src/mgblar.cpp b/sdk/load-and-run/src/mgblar.cpp index b3d901b7..da41f919 100644 --- a/sdk/load-and-run/src/mgblar.cpp +++ b/sdk/load-and-run/src/mgblar.cpp @@ -10,7 +10,6 @@ */ #include "./mgblar.h" -#include "./infile_persistent_cache.h" #include "./json_loader.h" #include "./npy.h" #include "./text_table.h" @@ -30,6 +29,7 @@ #include "megbrain/serialization/extern_c_opr.h" #include "megbrain/serialization/serializer.h" #include "megbrain/utils/debug.h" +#include "megbrain/utils/infile_persistent_cache.h" #include "megbrain/system.h" #include "megbrain/version.h" diff --git a/sdk/load-and-run/src/infile_persistent_cache.cpp b/src/core/impl/utils/infile_persistent_cache.cpp similarity index 98% rename from sdk/load-and-run/src/infile_persistent_cache.cpp rename to src/core/impl/utils/infile_persistent_cache.cpp index 81444b7a..5171ff78 100644 --- a/sdk/load-and-run/src/infile_persistent_cache.cpp +++ b/src/core/impl/utils/infile_persistent_cache.cpp @@ -1,5 +1,5 @@ /** - * \file sdk/load-and-run/src/infile_persistent_cache.cpp + * \file src/core/impl/utils/infile_persistent_cache.cpp * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") * * Copyright (c) 2014-2021 Megvii Inc. All rights reserved. @@ -9,7 +9,7 @@ * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ -#include "./infile_persistent_cache.h" +#include "megbrain/utils/infile_persistent_cache.h" #if defined(_WIN32) #include diff --git a/sdk/load-and-run/src/infile_persistent_cache.h b/src/core/include/megbrain/utils/infile_persistent_cache.h similarity index 95% rename from sdk/load-and-run/src/infile_persistent_cache.h rename to src/core/include/megbrain/utils/infile_persistent_cache.h index d9dc5bf0..28b28bef 100644 --- a/sdk/load-and-run/src/infile_persistent_cache.h +++ b/src/core/include/megbrain/utils/infile_persistent_cache.h @@ -1,5 +1,5 @@ /** - * \file sdk/load-and-run/src/infile_persistent_cache.h + * \file src/core/include/megbrain/utils/infile_persistent_cache.h * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") * * Copyright (c) 2014-2021 Megvii Inc. All rights reserved. @@ -70,6 +70,7 @@ public: Maybe get(const std::string& category, const Blob& key) override; void put(const std::string& category, const Blob& key, const Blob& value) override; + bool support_dump_cache() override { return true; } }; } // namespace mgb diff --git a/src/core/include/megbrain/utils/persistent_cache.h b/src/core/include/megbrain/utils/persistent_cache.h index ce25c59d..8c881aea 100644 --- a/src/core/include/megbrain/utils/persistent_cache.h +++ b/src/core/include/megbrain/utils/persistent_cache.h @@ -39,6 +39,8 @@ public: virtual void put( const std::string& category, const Blob& key, const Blob& value) = 0; + virtual bool support_dump_cache() { return false; } + //! set an implementation; return the original implementation static std::shared_ptr set_impl( std::shared_ptr impl); diff --git a/src/gopt/impl/global_layout_transform/opr_safe_dump.cpp b/src/gopt/impl/global_layout_transform/opr_safe_dump.cpp new file mode 100644 index 00000000..28c18791 --- /dev/null +++ b/src/gopt/impl/global_layout_transform/opr_safe_dump.cpp @@ -0,0 +1,96 @@ +/** + * \file src/gopt/impl/global_layout_transform/opr_safe_dump.cpp + * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") + * + * Copyright (c) 2014-2021 Megvii Inc. All rights reserved. + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. + */ + +#include "./opr_safe_dump.h" +#include "megbrain/opr/basic_arith.h" +#include "megbrain/opr/dnn/convolution.h" +#include "megbrain/opr/dnn/pooling.h" +#include "megbrain/opr/imgproc.h" +#include "megbrain/opr/nn_int.h" +#include "megbrain/opr/tensor_manip.h" + +#include "midout.h" +MIDOUT_DECL(megbrain_opr_safe_dump) +#define MIDOUT_B(...) MIDOUT_BEGIN(megbrain_opr_safe_dump, __VA_ARGS__) { +#define MIDOUT_E \ + } \ + MIDOUT_END(); + +using namespace mgb; +using namespace opr; + +namespace { +template +void write_param(std::string& data, const Param& param) { + megdnn::Algorithm::serialize_write_pod(param, data); +} + +template <> +void write_param(std::string& /* data */, const DType& /* dtype */) {} + +template +struct OprDumpImpl { + static std::string dump(const cg::OperatorNodeBase* opr_) { + MIDOUT_B(Opr) + auto&& opr = opr_->cast_final_safe(); + std::string data; + write_param(data, opr.param()); + return data; + MIDOUT_E + } +}; + +#define INST(_Opr) \ + template <> \ + struct OprDumpImpl<_Opr> { \ + static std::string dump(const cg::OperatorNodeBase* opr_) { \ + MIDOUT_B(_Opr) \ + auto&& opr = opr_->cast_final_safe<_Opr>(); \ + std::string data; \ + write_param(data, opr.param()); \ + using ExecutionPolicy = megdnn::param::ExecutionPolicy; \ + ExecutionPolicy policy{ \ + opr.execution_policy_transient().strategy, \ + opr.execution_policy_transient().workspace_limit}; \ + write_param(data, policy); \ + return data; \ + MIDOUT_E \ + } \ + }; +INST(Convolution); +INST(ConvBiasForward); +INST(ConvolutionBackwardData); +INST(PoolingForward); +#undef INST +} // namespace + +namespace mgb { +namespace gopt { +namespace intl { + +std::string opr_safe_dump(const cg::OperatorNodeBase* opr) { +#define cb(_Opr) \ + if (opr->dyn_typeinfo() == _Opr::typeinfo()) { \ + return OprDumpImpl<_Opr>::dump(opr); \ + } else + FOREACH_SUPPORTED_OPR(cb) { + mgb_throw(InternalError, "unsupported operator(got:%s)", + opr->dyn_typeinfo()->name); + } +#undef cb +} + +} // namespace intl +} // namespace gopt +} // namespace mgb + +// vim: syntax=cpp.doxygen diff --git a/src/gopt/impl/global_layout_transform/opr_safe_dump.h b/src/gopt/impl/global_layout_transform/opr_safe_dump.h new file mode 100644 index 00000000..d25be51d --- /dev/null +++ b/src/gopt/impl/global_layout_transform/opr_safe_dump.h @@ -0,0 +1,30 @@ +/** + * \file src/gopt/impl/global_layout_transform/opr_safe_dump.h + * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") + * + * Copyright (c) 2014-2021 Megvii Inc. All rights reserved. + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. + */ + +#pragma once +#include "megbrain/graph.h" + +namespace mgb { +namespace gopt { +namespace intl { +#define FOREACH_SUPPORTED_OPR(cb) \ + cb(Convolution) cb(ConvBiasForward) cb(ConvolutionBackwardData) \ + cb(PoolingForward) cb(WarpPerspective) cb(Resize) cb(Elemwise) \ + cb(ElemwiseMultiType) cb(Concat) cb(PowC) cb(TypeCvt) + +std::string opr_safe_dump(const cg::OperatorNodeBase* opr); + +} // namespace intl +} // namespace gopt +} // namespace mgb + +// vim: syntax=cpp.doxygen diff --git a/src/gopt/impl/global_layout_transform/profiler_cache.cpp b/src/gopt/impl/global_layout_transform/profiler_cache.cpp new file mode 100644 index 00000000..cfa70340 --- /dev/null +++ b/src/gopt/impl/global_layout_transform/profiler_cache.cpp @@ -0,0 +1,184 @@ +/** + * \file src/gopt/impl/profiler_cache.cpp + * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") + * + * Copyright (c) 2014-2021 Megvii Inc. All rights reserved. + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. + */ + +#include "./opr_safe_dump.h" +#include "megbrain/gopt/profiler.h" +#include "megbrain/comp_node_env.h" + +using namespace mgb; +using namespace gopt; +using ReformatKey = ReformatManager::ReformatKey; + +// =================== ProfilerCache ====================== +void ProfilerCache::Key::build_blob_from_opr() { + auto&& opr = m_key_impl.opr_key.opr; + // process opr type + auto type = opr->dyn_typeinfo()->name; + size_t type_size = strlen(type); + + // process opr param + auto data = intl::opr_safe_dump(opr); + size_t param_size = data.size(); + + size_t nr_inputs = opr->input().size(); + size_t nr_outputs = opr->usable_output().size(); + size_t nr_layouts = nr_inputs + nr_outputs; + m_blob_storage.reserve(sizeof(TensorLayout) * 3 * nr_layouts + type_size + + param_size); + + // serialize opr type + m_blob_storage.append(type, type_size); + + // serialize param + const char* data_ptr = reinterpret_cast(data.data()); + m_blob_storage.append(data_ptr, param_size); + + // serialize layouts + auto append_layout = [this](const VarNode* v) { + TensorLayout ly{v->shape(), v->dtype(), v->format()}; + for (size_t i = 0; i < ly.ndim; ++i) { + if (i) + m_blob_storage.push_back(','); + m_blob_storage.append(std::to_string(ly.shape[i])); + } + if (!ly.is_contiguous()) { + m_blob_storage.push_back(';'); + for (size_t i = 0; i < ly.ndim; ++i) { + if (i) + m_blob_storage.push_back(','); + m_blob_storage.append(std::to_string(ly.stride[i])); + } + } + m_blob_storage.push_back(';'); + m_blob_storage.append(ly.dtype.name()); + m_blob_storage.push_back('|'); + }; + for (size_t i = 0; i < nr_inputs; ++i) { + append_layout(opr->input(i)); + } + for (size_t i = 0; i < nr_outputs; ++i) { + append_layout(opr->output(i)); + } + + // serialize opr_format + m_blob_storage.append(std::to_string( + static_cast(m_key_impl.opr_key.opr_format))); + + // serialize extra_attribute + m_blob_storage.append(std::to_string( + static_cast(m_key_impl.opr_key.extra_attribute))); +} + +void ProfilerCache::Key::build_category(CompNode cn) { + m_category = "layout_transform_profile:"; + auto&& env = CompNodeEnv::from_comp_node(cn); + switch (env.property().type) { +#if MGB_CUDA + case CompNode::DeviceType::CUDA: { + auto&& prop = env.cuda_env().device_prop; + m_category += ssprintf("plat=cuda;dev=%s;cap=%d.%d", prop.name, + prop.major, prop.minor); + break; + } +#endif + case CompNode::DeviceType::CPU: + m_category += "plat=cpu"; + break; + default: + mgb_throw(MegBrainError, + "unsupported comp node for global layout transform " + "profiler cache category"); + } +} + +void ProfilerCache::Key::build_blob_from_var() { + auto v = m_key_impl.var_key.var; + + // serialize layouts + auto append_layout = [this](const VarNode* v) { + TensorLayout ly{v->shape(), v->dtype(), v->format()}; + for (size_t i = 0; i < ly.ndim; ++i) { + if (i) + m_blob_storage.push_back(','); + m_blob_storage.append(std::to_string(ly.shape[i])); + } + if (!ly.is_contiguous()) { + m_blob_storage.push_back(';'); + for (size_t i = 0; i < ly.ndim; ++i) { + if (i) + m_blob_storage.push_back(','); + m_blob_storage.append(std::to_string(ly.stride[i])); + } + } + m_blob_storage.push_back(';'); + m_blob_storage.append(ly.dtype.name()); + m_blob_storage.push_back('|'); + }; + append_layout(v); + + // serialze reformat key + m_blob_storage.append(m_key_impl.var_key.key.to_string()); +} + +const std::string& ProfilerCache::Key::category() const { + mgb_assert(!m_category.empty()); + return m_category; +} + +PersistentCache::Blob ProfilerCache::Key::blob() const { + mgb_assert(!m_blob_storage.empty()); + return {m_blob_storage.data(), m_blob_storage.size()}; +} + +ProfilerCache& ProfilerCache::inst() { + static ProfilerCache inst; + return inst; +} + +ProfilerCache& ProfilerCache::set_impl(std::unique_ptr impl) { + mgb_assert(impl != nullptr); + m_impl.swap(impl); + return *this; +} + +void ProfilerCache::dump_cache(const char* path) { + mgb_assert(m_impl->support_dump_cache(), + "current impl of ProfilerCache does not support dump cache to " + "file."); + auto cache = static_cast(m_impl.get()); + cache->dump_cache(path); +} + +Maybe ProfilerCache::get(const Key& key) { + auto raw_buf = m_impl->get(key.category(), key.blob()); + if (!raw_buf.valid()) + return None; + // data type of cost is float + auto buf = static_cast(raw_buf->ptr); + auto size = raw_buf->size; + mgb_assert(buf && size == sizeof(float), + "ProfileCache invalid value: ptr=%p, size=%zu", buf, size); + auto read_f32 = [&]() { + auto ret = *reinterpret_cast(buf); + return ret; + }; + auto cost = read_f32(); + return cost; +} + +void ProfilerCache::put(const Key& key, Result& result) { + std::string val; + megdnn::Algorithm::serialize_write_pod(result, val); + m_impl->put(key.category(), key.blob(), {val.data(), val.size()}); +} + +// vim: syntax=cpp.doxygen diff --git a/src/gopt/impl/global_layout_transform/profiler_impl.cpp b/src/gopt/impl/global_layout_transform/profiler_impl.cpp index 43a463e7..99a58507 100644 --- a/src/gopt/impl/global_layout_transform/profiler_impl.cpp +++ b/src/gopt/impl/global_layout_transform/profiler_impl.cpp @@ -154,69 +154,61 @@ void MarkInputContiguous::init_output_static_infer_desc() { } // namespace /* ================== ProfilerImpl =================*/ -class ProfilerImpl final : public ProfilerBase { -public: - ProfilerImpl(int runs = 10) : m_runs{runs} {}; - ~ProfilerImpl() = default; - ProfilingResult profile(const Problem& problem) const override; - -private: - static constexpr float PROFILE_TIME_OUT = 1e7; - using ReformatAttribute = ReformatKey::Attribute; - /*! - * \brief profile opr format agnostic operators (like elemwise, elemwise - * multi type, typecvt etc.) - * - * \param opr pointer to the operator node to be profiled - * \param base_format the original tensor format of the operator node. - * \param available_tensor_formats the available tensor formats - * \return the operator node record - */ - OperatorNodeRecord profile_operator( - const OperatorNodeBase* opr, TensorFormats base_format, - const SmallVector& available_tensor_formats, - ReformatAttribute extra_attribute = ReformatAttribute::DEFAULT) const; - float profile_operator( - const OperatorNodeBase* opr, TensorFormats base_format, - TensorFormats tensor_format, - ReformatAttribute extra_attribute = ReformatAttribute::DEFAULT) const; - /*! - * \brief profile opr format aware operators (like conv, deconv, conv_bias, - * etc.) - * - * \param opr pointer to the operator node to be profiled - * \param base_config the tensor formats configuration of base opr format - * \param config all the available configuration - * \return the operator node record - */ - OperatorNodeRecord profile_operator( - const OperatorNodeBase* opr, - const OprTensorFormatsConfiguration& base_config, - const SmallVector& available_configs, - ReformatAttribute extra_attribute = ReformatAttribute::DEFAULT) const; - float profile_operator( - const OperatorNodeBase* opr, - const OprTensorFormatsConfiguration& base_config, - const OprTensorFormatsConfiguration& config, - ReformatAttribute extra_attribute = ReformatAttribute::DEFAULT) const; - /*! - * \brief profile layout transform of the var node - * - * \param var pointer to the var node to be profiled - * \param base_format the original tensor formats in which the var node is - * stored \param available_tensor_formats the available tensor formats - * \param extra_attribute the extra attributes (options) of the problem - * \return the var node record - */ - VarNodeRecord profile_var_node( - const VarNode* var, TensorFormats base_format, - const SmallVector& available_tensor_formats, - ReformatAttribute extra_attribute = ReformatAttribute::DEFAULT) const; - float profile_var_node( - const VarNode* var, TensorFormats base_format, - const ReformatKey& key) const; - int m_runs; /// sample times of the profiler -}; +ProfilerImpl::ProfilerImpl(int runs, float opr_threshold, + float var_node_threshold) + : m_opr_threshold{opr_threshold}, + m_var_node_threshold{var_node_threshold}, + m_runs{runs} { + m_opr_filter = [this](const OperatorNodeBase* opr, + OperatorNodeBase* new_opr) { + /// \note: for the considerations of performance, we skip nchw(naive) + /// kernels for conv bias on CUDA platform. to remove this later + if (auto conv = try_cast_as_op(new_opr)) { + if (conv->output(0)->comp_node().device_type() == + CompNode::DeviceType::CUDA && + conv->input(0)->dtype().category() == + DTypeCategory::QUANTIZED && + conv->param().format == OprFormat::NCHW) { + return false; + } + } + float comp1 = m_opr_footprint.get_computation( + const_cast(opr)); + float comp2 = m_opr_footprint.get_computation(new_opr); + if (comp2 > m_opr_threshold * comp1) + return false; + return true; + }; + m_var_node_filter = [this](const VarNode* var, TensorShape from, + TensorShape to, ReformatKey key) { + /// \note: due to the alignment requirement of low-bit tensor, we skip + /// some layout transform for low-bit tensors. The skipped layout + /// transforms do not have corresponding dnn kernel and cannot be + /// implemented by tensor manip operators (like reshape, dimshuffle, + /// subtensor, etc.). + if (var->dtype().enumv() == DTypeEnum::QuantizedS4 || + var->dtype().enumv() == DTypeEnum::Quantized4Asymm) { + if (key.input_format == TensorFormats::NCHW && + key.output_format != TensorFormats::NHWC && + key.output_format != TensorFormats::NCHWc64) { + return false; + } + if (key.output_format == TensorFormats::NCHW && + key.input_format != TensorFormats::NHWC && + key.input_format != TensorFormats::NCHWc64) { + return false; + } + } + TensorLayout orig_ly = {var->shape(), var->dtype()}, + from_ly = {from, var->dtype()}, to_ly = {to, var->dtype()}; + float orig_memory = orig_ly.span().dist_byte() * 2.f; + float reformat_memory = + from_ly.span().dist_byte() + to_ly.span().dist_byte(); + if (reformat_memory > orig_memory * m_var_node_threshold) + return false; + return true; + }; +} ProfilerImpl::OperatorNodeRecord ProfilerImpl::profile_operator( const OperatorNodeBase* opr, TensorFormats base_format, @@ -507,56 +499,6 @@ ProfilerImpl::ProfilingResult ProfilerImpl::profile(const Problem& problem) cons } /* ================== ProfilerBase =================*/ -ProfilerBase::ProfilerBase(float opr_threshold, float var_node_threshold) - : m_opr_threshold{opr_threshold}, m_var_node_threshold{var_node_threshold} { - m_opr_filter = [this](const OperatorNodeBase* opr, OperatorNodeBase* new_opr) { - /// \note: for the considerations of performance, we skip nchw(naive) - /// kernels for conv bias on CUDA platform. to remove this later - if (auto conv = try_cast_as_op(new_opr)) { - if (conv->output(0)->comp_node().device_type() == - CompNode::DeviceType::CUDA && - conv->input(0)->dtype().category() == DTypeCategory::QUANTIZED && - conv->param().format == OprFormat::NCHW) { - return false; - } - } - float comp1 = - m_opr_footprint.get_computation(const_cast(opr)); - float comp2 = m_opr_footprint.get_computation(new_opr); - if (comp2 > m_opr_threshold * comp1) - return false; - return true; - }; - m_var_node_filter = [this](const VarNode* var, TensorShape from, TensorShape to, - ReformatKey key) { - /// \note: due to the alignment requirement of low-bit tensor, we skip - /// some layout transform for low-bit tensors. The skipped layout - /// transforms do not have corresponding dnn kernel and cannot be - /// implemented by tensor manip operators (like reshape, dimshuffle, - /// subtensor, etc.). - if (var->dtype().enumv() == DTypeEnum::QuantizedS4 || - var->dtype().enumv() == DTypeEnum::Quantized4Asymm) { - if (key.input_format == TensorFormats::NCHW && - key.output_format != TensorFormats::NHWC && - key.output_format != TensorFormats::NCHWc64) { - return false; - } - if (key.output_format == TensorFormats::NCHW && - key.input_format != TensorFormats::NHWC && - key.input_format != TensorFormats::NCHWc64) { - return false; - } - } - TensorLayout orig_ly = {var->shape(), var->dtype()}, - from_ly = {from, var->dtype()}, to_ly = {to, var->dtype()}; - float orig_memory = orig_ly.span().dist_byte() * 2.f; - float reformat_memory = from_ly.span().dist_byte() + to_ly.span().dist_byte(); - if (reformat_memory > orig_memory * m_var_node_threshold) - return false; - return true; - }; -} - std::string ProfilerBase::OperatorNodeRecord::to_string() const { auto str = ssprintf( "\nopr type: %s\nopr name: %s\ninputs:\n", opr->dyn_typeinfo()->name, @@ -595,4 +537,68 @@ std::unique_ptr ProfilerBase::make_profiler() { return std::make_unique(); } +std::unique_ptr ProfilerBase::make_cached_profiler( + const char* path) { + return std::make_unique(path); +} + +/* ================== CachedProfiler =================*/ +CachedProfiler::CachedProfiler(const char* path, int runs, float opr_threshold, + float var_node_threshold) + : ProfilerImpl(runs, opr_threshold, var_node_threshold), m_path{path} { + if (m_path != nullptr) { // file cache + ProfilerCache::inst().set_impl( + std::make_unique(m_path)); + } +} + +CachedProfiler::ProfilingResult CachedProfiler::profile( + const Problem& problem) const { + auto ret = ProfilerImpl::profile(problem); + if (m_path != nullptr) + ProfilerCache::inst().dump_cache(m_path); + return ret; +} + +float CachedProfiler::profile_operator( + const OperatorNodeBase* opr, TensorFormats base_format, + TensorFormats tensor_format, ReformatAttribute extra_attribute) const { + ProfilerCache::Key key{opr, tensor_formats_to_opr_format(tensor_format), + extra_attribute}; + auto ret = ProfilerCache::inst().get(key); + if (ret.valid()) + return ret.val(); + auto rst = ProfilerImpl::profile_operator(opr, base_format, tensor_format, + extra_attribute); + ProfilerCache::inst().put(key, rst); + return rst; +} + +float CachedProfiler::profile_operator( + const OperatorNodeBase* opr, + const OprTensorFormatsConfiguration& base_config, + const OprTensorFormatsConfiguration& config, + ReformatAttribute extra_attribute) const { + ProfilerCache::Key key{opr, config.opr_format, extra_attribute}; + auto ret = ProfilerCache::inst().get(key); + if (ret.valid()) + return ret.val(); + auto rst = ProfilerImpl::profile_operator(opr, base_config, config, + extra_attribute); + ProfilerCache::inst().put(key, rst); + return rst; +} + +float CachedProfiler::profile_var_node(const VarNode* var, + TensorFormats base_format, + const ReformatKey& key) const { + ProfilerCache::Key pf_key{var, key}; + auto ret = ProfilerCache::inst().get(pf_key); + if (ret.valid()) + return ret.val(); + auto rst = ProfilerImpl::profile_var_node(var, base_format, key); + ProfilerCache::inst().put(pf_key, rst); + return rst; +} + // vim: syntax=cpp.doxygen diff --git a/src/gopt/include/megbrain/gopt/profiler.h b/src/gopt/include/megbrain/gopt/profiler.h index 3d4d61ef..299312c3 100644 --- a/src/gopt/include/megbrain/gopt/profiler.h +++ b/src/gopt/include/megbrain/gopt/profiler.h @@ -18,11 +18,13 @@ #include "megbrain/gopt/subgraph_extractor.h" #include "megbrain/opr/dnn/convolution.h" #include "megbrain/plugin/opr_footprint.h" +#include "megbrain/utils/infile_persistent_cache.h" namespace mgb { namespace gopt { class Problem; +class CachedProfiler; /*! * \brief A profiler that collects all the performance data to describe the @@ -75,22 +77,245 @@ public: using VarNodeFilter = thin_function; - ProfilerBase(float opr_threshold = 2.f, float var_node_threshold = 2.f); - ProfilerBase(OprFilter opr_filter, VarNodeFilter var_node_filter = {}) - : m_opr_filter{std::move(opr_filter)}, - m_var_node_filter{std::move(var_node_filter)} {} + ProfilerBase() = default; + virtual ~ProfilerBase() = default; + virtual ProfilingResult profile(const Problem& problem) const = 0; + + ProfilerBase& set_opr_filter(const OprFilter& opr_filter) { + m_opr_filter = opr_filter; + return *this; + } + + ProfilerBase& set_var_node_filter(const VarNodeFilter& var_node_filter) { + m_var_node_filter = var_node_filter; + return *this; + } + static std::unique_ptr make_profiler(); + static std::unique_ptr make_cached_profiler( + const char* path = nullptr); protected: OprFilter m_opr_filter; VarNodeFilter m_var_node_filter; - float m_opr_threshold; - float m_var_node_threshold; +}; -private: + +/*! \brief A default profiler impl + */ +class ProfilerImpl : public ProfilerBase { +public: + ProfilerImpl(int runs = 10, float opr_threshold = 2.f, + float var_node_threshold = 2.f); + ~ProfilerImpl() = default; + ProfilingResult profile(const Problem& problem) const override; + +protected: + static constexpr float PROFILE_TIME_OUT = 1e7; + using ReformatKey = ReformatManager::ReformatKey; + using ReformatAttribute = ReformatKey::Attribute; + /*! + * \brief profile opr format agnostic operators (like elemwise, elemwise + * multi type, typecvt etc.) + * + * \param opr pointer to the operator node to be profiled + * \param base_format the original tensor format of the operator node. + * \param available_tensor_formats the available tensor formats + * \return the operator node record + */ + OperatorNodeRecord profile_operator( + const OperatorNodeBase* opr, TensorFormats base_format, + const SmallVector& available_tensor_formats, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const; + /*! + * \brief prfile opr format agnostic operators (like elemwise, elemwise multi type, typecvt etc.) + * + * \param opr pointer to the operator to be profiled + * \param base_format the original tensor format of the operator node. + * \param tensor_format the tensor format to be profiled + * \param extra_attribute identify whether to use image object for OpenCL or automatically padding nhwc layout + * \return elapsed time of operator in the given tensor format configuration + */ + virtual float profile_operator( + const OperatorNodeBase* opr, TensorFormats base_format, + TensorFormats tensor_format, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const; + /*! + * \brief profile opr format aware operators (like conv, deconv, conv_bias, + * etc.) + * + * \param opr pointer to the operator node to be profiled + * \param base_config the tensor formats configuration of base opr format + * \param config all the available configuration + * \return the operator node record + */ + OperatorNodeRecord profile_operator( + const OperatorNodeBase* opr, + const OprTensorFormatsConfiguration& base_config, + const SmallVector& available_configs, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const; + /*! + * \brief prfile opr format aware operators (like conv, deconv, conv_bias, resize, warp etc.) + * + * \param opr pointer to the operator to be profiled + * \param base_config the original opr format configuration of the operator node, + * \param config the opr format configuration to be profiled + * \param extra_attribute identify whether to use image object for OpenCL or automatically padding nhwc layout + * \return elapsed time of operator in the given opr format configuration + */ + virtual float profile_operator(const OperatorNodeBase* opr, + const OprTensorFormatsConfiguration& base_config, + const OprTensorFormatsConfiguration& config, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const; + /*! + * \brief profile layout transform of the var node + * + * \param var pointer to the var node to be profiled + * \param base_format the original tensor formats in which the var node is + * stored + * \param available_tensor_formats the available tensor formats + * \param extra_attribute the extra attributes (options) of the problem + * \return the var node record + */ + VarNodeRecord profile_var_node( + const VarNode* var, TensorFormats base_format, + const SmallVector& available_tensor_formats, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const; + /*! + * \brief profile layout transform of the var node + * + * \param var pointer to the var node to be profiled + * \param base_format the original tensor formats in which the var node is + * stored + * \param key type of ReformatKey, identify the information/attributes of the layout transoform + * \return elapsed time of the layout transform + */ + virtual float profile_var_node(const VarNode* var, + TensorFormats base_format, + const ReformatKey& key) const; OprFootprint m_opr_footprint; + float m_opr_threshold; /// a threshold, when the computation of the newly + /// created operator that is built in some opr + /// format configuration is as greater as + /// m_opr_threshold times of the original operator, + /// the opr format configuration will be skipped + /// (i.e. the cost is infinite) + float m_var_node_threshold; /// a threshold, when the memory footprint of + /// the layout transform of the var node is as + /// larger as m_var_node_threshold as the var + /// node itself, the layout transform will be + /// skipped (i.e. the cost is infinite) + int m_runs; /// sample times of the profiler +}; + +/*! + * \brief a ProfilerCache that manages the profiling results of operator in + * different layouts and of layout transform of var nodes. + */ +class ProfilerCache : public NonCopyableObj { + ProfilerCache() : m_impl{std::make_unique()} {}; + +public: + using ReformatKey = ReformatManager::ReformatKey; + using ReformatAttribute = ReformatKey::Attribute; + using OprFormat = ProfilerBase::OprFormat; + class Key final : public NonCopyableObj { + std::string m_blob_storage; + std::string m_category; + + struct OprKey { + const OperatorNodeBase* opr; + OprFormat opr_format; + ReformatAttribute extra_attribute; + }; + + struct VarKey { + const VarNode* var; + ReformatKey key; + }; + + union KeyImpl { + OprKey opr_key; + VarKey var_key; + + KeyImpl() { std::memset(this, 0, sizeof(KeyImpl)); } + }; + + KeyImpl m_key_impl; + + void build_blob_from_opr(); + void build_blob_from_var(); + void build_category(CompNode cn); + + public: + Key(const OperatorNodeBase* opr, OprFormat opr_format, + ReformatAttribute extra_attribute = ReformatAttribute::DEFAULT) { + m_key_impl.opr_key = {opr, opr_format, extra_attribute}; + build_blob_from_opr(); + mgb_assert( + opr->node_prop().contain( + cg::OperatorNodeProp::Flag::SINGLE_COMP_NODE), + "operator with multiple comp node is not supported(opr:%s)", + opr->cname()); + // here, we assume that the operator to be profiled has only one + // comp node + build_category(opr->output(0)->comp_node()); + } + + Key(const VarNode* var, ReformatKey key) { + m_key_impl.var_key = {var, key}; + build_blob_from_var(); + build_category(var->comp_node()); + } + + const std::string& category() const; + PersistentCache::Blob blob() const; + }; + + using Result = float; + +public: + static ProfilerCache& inst(); + + ProfilerCache& set_impl(std::unique_ptr impl); + + void dump_cache(const char* path); + + Maybe get(const Key& key); + + void put(const Key& key, Result& result); + +private: + std::unique_ptr m_impl; +}; + +class CachedProfiler final : public ProfilerImpl { +public: + CachedProfiler(const char* path = nullptr, int runs = 10, + float opr_threshold = 2.f, float var_node_threshold = 2.f); + ProfilingResult profile(const Problem& problem) const override; + +private: + float profile_operator(const OperatorNodeBase* opr, + TensorFormats base_format, + TensorFormats tensor_format, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const override; + float profile_operator(const OperatorNodeBase* opr, + const OprTensorFormatsConfiguration& base_config, + const OprTensorFormatsConfiguration& config, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const override; + float profile_var_node(const VarNode* var, TensorFormats base_format, + const ReformatKey& key) const override; + const char* m_path; }; } // namespace gopt diff --git a/src/gopt/test/cache_data.h b/src/gopt/test/cache_data.h new file mode 100644 index 00000000..f049589e --- /dev/null +++ b/src/gopt/test/cache_data.h @@ -0,0 +1,3595 @@ +// generated embed_cache.py +#include +#include + +static const std::vector TestLayoutTransform_DetectionHead = { +1,0,0,0,66,0,0,0,108,97,121,111,117,116,95,116,114,97,110,115,102,111,114,109,95,112,114,111,102,105,108,101,58,112,108,97,116,61,99,117,100,97,59,100,101,118,61,71,101,70, +111,114,99,101,32,82,84,88,32,50,48,56,48,32,84,105,59,99,97,112,61,55,46,53,197,0,0,0,68,0,0,0,69,108,101,109,119,105,115,101,16,0,0,0,49,54,44,51,44,55, +51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,49,59,70,108,111,97,116,51,50,124,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,48,52, +4,0,0,0,47,221,42,68,51,0,0,0,84,121,112,101,67,118,116,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,49,54,44,51,44,55,51,54,44,49,50, +56,48,59,70,108,111,97,116,51,50,124,48,52,4,0,0,0,152,110,6,68,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255, +49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49, +54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0, +0,0,0,0,101,68,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2, +0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,51,50,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,128,150,24,75,66,0,0,0,84,121,112,101,67,118, +116,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100, +52,65,115,121,109,109,124,49,53,52,4,0,0,0,55,137,161,67,66,0,0,0,84,121,112,101,67,118,116,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,49,54,52,4,0,0,0,180,200,154,68,65,0,0,0, +84,121,112,101,67,118,116,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97, +110,116,105,122,101,100,52,65,115,121,109,109,124,51,52,4,0,0,0,69,182,157,67,181,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,124,48,52,4,0,0,0,128,150,24,75,99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115, +121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,72,225,165,68,97,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116, +105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,115,104,1,68,99,0,0,0,49,54,44,49,54,44,51,54,56,44, +54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,92,0,0, +0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24, +75,99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65, +115,121,109,109,4,0,0,0,12,2,10,68,101,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109, +109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122, +101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,72,225,3,68,172,0,0,0,67,111,110,118,66,105,97,115,70,111, +114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2, +0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,96,229,166,67,92,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115, +121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109, +59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,149,67,151,67,80,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,5,1,6,69,99,0,0,0,49,54, +44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0, +0,162,69,200,67,83,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123, +78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,86,14,13,67, +78,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44, +72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,56,137,193,64,87,0,0,0,49,54,44,51,44,55, +51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44, +67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,101,0,0,0,49,54,44,49,54,44,51, +54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50, +44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150, +24,75,73,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,238,124,9,69,65,0,0,0,84,121,112,101,67,118,116,49,54, +44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115, +121,109,109,124,49,52,4,0,0,0,185,30,157,67,78,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72, +44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +60,223,82,68,78,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44, +72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,207,247,8,68,78,0,0,0,49,54, +44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,117,190,247,67,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56, +48,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111, +97,116,51,50,4,0,0,0,161,229,205,69,99,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59, +81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123, +78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105, +122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,71,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,248,83,3,68, +68,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,152,153,170,68,78,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,166,155,196,64,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, +0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,55,51,54,44, +49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,233,38,195,67,87,0,0,0, +49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49, +54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,192,202,238,68,99,0,0,0,49,54,44,49,54,44,49,56,52,44,51, +50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,62,0,0,0, +49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,173,252,180,69,87,0, +0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,90,0,0, +0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,117,147,76,67,101, +0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65, +115,121,109,109,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72, +44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122, +101,100,52,65,115,121,109,109,4,0,0,0,82,184,94,67,68,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52, +44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,80,0,0,0, +49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,51,44,55,51,54, +44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116, +51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,73,0, +0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,156,196,109,68,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48, +59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97, +116,51,50,4,0,0,0,222,36,213,68,78,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,198,211, +69,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,22,174,205,68,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111, +97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4, +0,0,0,178,29,142,69,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,131,192,238,69,83,0,0,0,49,54,44,49,54,44,49,56,52,44,51, +50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100, +52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,86,14,197,66,68,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108, +111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116, +51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,64,53,148,67, +80,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49, +54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44, +72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,90,0,0,0, +49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44, +72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,110,18,23,67,68,0, +0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110, +116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122, +101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,99,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59, +81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,207,247,3,68,87,0,0,0,49,54,44, +51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49, +54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117, +97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,50,8,108,66,85,0,0,0,49,54,44,51,44,55,51,54,44, +49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,194,245,238,68,99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52, +48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37, +54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,89,0,0,0,49, +54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,57,0,0,0, +84,121,112,101,67,118,116,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122, +101,100,83,56,124,48,52,4,0,0,0,24,4,216,67,75,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150, +24,75,92,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0, +0,0,128,150,24,75,97,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101, +100,52,65,115,121,109,109,4,0,0,0,142,151,10,67,181,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44, +51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,54, +44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,49,52, +4,0,0,0,47,221,44,67,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121, +109,109,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65, +115,121,109,109,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,95,229,148,67,87,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,128,150,24,75,71,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78, +44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,61,10,143,67,77,0,0,0,49,54,44,51,44, +55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,218,238,164,69,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,240,167,198,64,69,0,0,0,49,54,44,51, +44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100, +52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109, +109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122, +101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97, +110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105, +122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122, +101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65, +115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59, +81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,199,75,3,67,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100, +52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115, +121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116, +105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,62,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110, +116,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128, +150,24,75,87,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150, +24,75,99,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44, +67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105, +122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51, +44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,128,150,24, +75,71,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,65,0,0,0,84,121,112,101,67,118,116,49,54,44,49,54, +44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109, +124,53,52,4,0,0,0,129,149,27,68,75,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,90,0, +0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75, +99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115, +121,109,109,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,67,47,47,52, +44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44, +49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87, +44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,45,178,13,67,99,0,0,0,49, +54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0, +0,0,29,90,12,67,75,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123, +78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,101,0,0,0,49,54,44, +49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0, +0,0,128,150,24,75,97,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101, +100,52,65,115,121,109,109,4,0,0,0,187,73,92,67,99,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121, +109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51, +50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0, +0,0,128,150,24,75,59,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,64,53,45,68,69,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56, +124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56, +4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,87,0,0,0,49, +54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50, +44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,175,199,130,69,75,0,0,0,49,54, +44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,59,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70, +108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,97,229, +160,68,89,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128, +150,24,75,87,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150, +24,75,62,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44, +87,44,67,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105, +122,101,100,52,65,115,121,109,109,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65, +115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,213,120,2,68,80,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4, +0,0,0,128,150,24,75,87,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,128,150,24,75,53,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59, +52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,141,151,246,67,182,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255, +49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115, +121,109,109,124,49,54,52,4,0,0,0,128,150,24,75,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,44,72,44,87,125,59,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,8,172,81,68,53,0,0,0,49,54,44,51,44,55,51,54,44, +49,50,56,48,59,85,105,110,116,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,234,38, +143,67,71,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,47,221,67,68,78,0,0,0,49,54,44,51,44,55,51,54,44,49,50, +56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,136,22,149,67,92,0,0,0,49,54,44,49,54,44,49,56,52,44,51,50,48,59,81,117,97,110,116,105,122, +101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,216,206,223,66,69,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110, +116,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,85,105,110,116,56,59,85,105,110, +116,56,4,0,0,0,128,150,24,75,65,0,0,0,84,121,112,101,67,118,116,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44, +49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,48,52,4,0,0,0,2,43,157,67,62,0,0,0,49,54,44,51,44,55,51,54,44, +49,50,56,48,59,85,105,110,116,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,85,105,110,116,56,59,85,105, +110,116,56,4,0,0,0,128,150,24,75,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,164,112,189,64,92,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48, +59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117, +97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,231,251,27,68,62,0,0,0,49,54,44,51,44,55,51,54,44, +49,50,56,48,59,85,105,110,116,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,85,105,110,116,56,59,85,105, +110,116,56,4,0,0,0,128,150,24,75,62,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50, +56,48,59,85,105,110,116,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4, +0,0,0,220,249,246,67,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78, +44,67,44,72,44,87,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,220,36,144,67,69,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110, +116,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,85,105,110,116,56,59,85,105,110, +116,56,4,0,0,0,128,150,24,75,67,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,100,59,149,67,75,0,0,0,49,54,44,51,44,55,51, +54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125, +59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,28,90,125,68,69,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0, +0,0,128,150,24,75,87,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,62,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78, +44,67,44,72,44,87,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,89,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,62,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105, +110,116,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0, +128,150,24,75,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,168,198,149,67,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,121,9,165,69,87,0, +0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,66,139,128,68,71,0,0, +0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,78,98,170,67,67,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105, +110,116,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116, +56,4,0,0,0,41,220,238,68,69,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44, +51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,133,235,135,67,69,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85,105, +110,116,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,85,105,110,116,56,59,85,105, +110,116,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125, +59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128, +150,24,75,78,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,80,141,151,67,69,0,0,0,49,54,44, +51,44,55,51,54,44,49,50,56,48,59,85,105,110,116,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101, +100,52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110, +116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,139,108,91,67,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,251,41,224,68,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125, +59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128, +150,24,75,78,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,162,67,80,0,0,0,49,54,44, +51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,51,44,55,51,54,44,49,50, +56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,199,75,127,67,87,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,58,180,148,67,87,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50, +44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,7, +236,35,69,75,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44, +51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,32,176,153,68,87,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,100,187,128,68,71,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,85, +105,110,116,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,85,105,110,116,56, +59,85,105,110,116,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,164,112,13,68,78,0,0,0, +49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44, +67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,43,135,239,68,85,0,0,0,49,54,44,49,54,44,51,54,56,44, +54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,239,68,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48, +59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,60,0,0,0,49,54,44,51,44,55,51,54,44,49,50, +56,48,59,85,105,110,116,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,85,105,110,116,56,59,85,105,110,116,56,4, +0,0,0,197,75,239,68,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125, +59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109, +109,4,0,0,0,152,110,168,67,66,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52, +44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,4,86,214,68,99,0,0,0,49,54,44,49,54,44,49,56,52, +44,51,50,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,196,32,84,67,92,0, +0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52, +44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150, +24,75,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0, +219,249,5,68,90,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0, +0,0,109,231,201,67,99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105, +122,101,100,52,65,115,121,109,109,4,0,0,0,20,174,186,68,89,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,99,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109, +109,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,51,44,55,51,54,44,49,50,56,48,59,70,108,111, +97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116, +51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,92,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109, +109,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,59,81, +117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75,97,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81,117,97,110,116,105,122,101,100,52, +65,115,121,109,109,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,242,210,25,68,92,0,0,0,49,54,44,49,54,44,51,54,56,44,54,52,48,59,81, +117,97,110,116,105,122,101,100,52,65,115,121,109,109,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110, +116,105,122,101,100,52,65,115,121,109,109,59,81,117,97,110,116,105,122,101,100,52,65,115,121,109,109,4,0,0,0,128,150,24,75}; + +static const std::vector TestLayoutTransform_Detection_QS4 = { +1,0,0,0,66,0,0,0,108,97,121,111,117,116,95,116,114,97,110,115,102,111,114,109,95,112,114,111,102,105,108,101,58,112,108,97,116,61,99,117,100,97,59,100,101,118,61,71,101,70, +111,114,99,101,32,82,84,88,32,50,48,56,48,32,84,105,59,99,97,112,61,55,46,53,4,2,0,0,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,2,43,167,65,193,0,0,0,67,111,110,118,66,105,97,115,70, +111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,51,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,92,143,162,65,194,0,0,0,67,111,110,118, +66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0, +0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,51,50, +44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,147,24,164,65,58,0, +0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,53,52,4,0,0,0,172,28,26,65,58,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,52,4,0,0,0,209,34,27,65,57,0,0,0,84,121,112,101,67,118,116,49, +54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4, +0,0,0,227,165,27,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0, +2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,33,176,242,65,56,0,0,0,84,121,112,101,67, +118,116,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53, +52,4,0,0,0,129,149,195,64,56,0,0,0,84,121,112,101,67,118,116,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44, +56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,52,4,0,0,0,49,8,172,64,55,0,0,0,84,121,112,101,67,118,116,49,54,44,50,53,54,44,56,44,56,59,81, +117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,90,100,187,64,55,0,0,0,84,121, +112,101,67,118,116,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,52,4,0,0,0,14,45,178,64,55,0,0,0,84,121,112,101,67,118,116,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,49,54,44,51,44,50,53, +54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,67,139,12,66,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100, +83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,53,52,4,0,0,0,128,150,24,75,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,50,53,54,44,50, +53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116, +105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,59,223,159,66,96,0,0,0,69, +108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,24, +4,22,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124, +53,52,4,0,0,0,27,47,29,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,52,124,49,52,4,0,0,0,209,34,27,65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49, +54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,162,69, +150,66,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, +0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50, +124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,201,118,46,66,173,0,0,0,67,111,110,118,66,105,97,115, +70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0, +0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51, +44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,72,225,106,66,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51,50,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44, +51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44, +54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,27,47,13,66,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51,50,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +52,4,0,0,0,77,98,0,66,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59, +81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,89,57,212,65,171,0,0,0,67,111,110,118,66,105, +97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51, +44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,96,229,32,66,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44, +54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0, +0,197,32,176,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0, +0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97, +110,116,105,122,101,100,83,52,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,45,178,221,65,58,0,0,0,84,121,112,101,67,118,116, +49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54, +52,4,0,0,0,162,69,214,65,57,0,0,0,84,121,112,101,67,118,116,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44, +54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,252,169,49,65,57,0,0,0,84,121,112,101,67,118,116,49,54,44,51,50,44,54,52,44,54,52, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,48,52,4,0,0,0,184,30,69,65,55,0,0, +0,84,121,112,101,67,118,116,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101, +100,83,56,124,53,52,4,0,0,0,198,75,183,64,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52, +59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81, +117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,223,79,77,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44, +51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50, +44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,115,104,81,65,59,0,0,0,84,121,112,101,67,118,116,49,54,44,49,50,56,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,204,204,204,64, +59,0,0,0,84,121,112,101,67,118,116,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,174,71,225,64,59,0,0,0,84,121,112,101,67,118,116,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116, +105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,248,83,227,64,169,0,0,0,67,111,110,118, +66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0, +0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,51,50, +44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,59,223,175,65,175,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52, +124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +54,52,4,0,0,0,12,2,203,65,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,245,40,220,64,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,209,34,219,64,57,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,51,50, +44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,41,92,15,65, +98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124, +49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124, +51,52,4,0,0,0,102,102,230,64,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,52,124,48,52,4,0,0,0,28,90,228,64,196,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49, +54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44, +50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54, +44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,82,184,158,65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,54,52,4,0,0,0,59,223,175,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56, +44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,183,243,221,65,93,0,0,0, +69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54, +44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,121,233,166, +64,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0, +0,127,106,188,64,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +52,4,0,0,0,158,239,167,64,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,74,12,130,65,169,0,0,0,67,111,110,118,66,105, +97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,57,180,136,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,250,126,234,64,167,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0, +0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,52,4,0,0,0,215,163,112,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49, +54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110, +116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,37,6,129,65,171,0,0,0,67,111,110, +118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44, +49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54, +44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,145,237,124,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,111,18,83,66,83,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,60,223,143,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,240,167,54,66,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,226, +122,244,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,17,88,73,66,78,0,0,0,49,54,44, +51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,84,227,69,66,83,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,39,49,136,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,144,194,101,66,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255, +255,255,255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52, +4,0,0,0,39,49,56,66,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,88,57,148,65,78,0,0,0, +49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,72,225,162,66,78,0,0,0,49,54,44,51,50,44,54,52,44,54, +52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,125,63,181,64,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,82,184,158,65,69,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67, +125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,106,188,68,66,76,0,0,0,49, +54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,135,22,249,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,199,75,119,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,35,219,185,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123, +78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,11,215,99,65,69, +0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,141,151,14,66,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112, +101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122, +101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,60,223,207,64,84,0,0,0,49,54,44,51,44, +50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,198,75,247,65,77,0,0,0,49,54,44,51,44,50,53,54,44, +50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,6,129,5,66,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,60,223,143,66,88,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50, +44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +128,150,24,75,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49, +54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,96,229,240,65,86,0,0,0,49,54,44,51,44, +50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,51,44,50,53, +54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,21,174,199,64,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,70,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,44,178,221, +65,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,166,155,156,66,79,0,0,0,49,54,44,51,44,50, +53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,171,28,90,66,70,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59, +123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,60,223,79,66,85,0,0,0,49,54,44, +54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,37,6,161,65,78,0,0,0,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,19,131,192,64,87,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,178,157,143,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,188,116,147,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,16,88,121,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,128,150,24,75,83,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,78,98,144, +65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,26,47,189,65,85,0, +0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,100,59,159,65,76,0,0,0,49, +54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,58,180,168,65,93,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105, +84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,125,63,181,64,76,0,0,0,49,54,44,54,52,44,51,50, +44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,238,124,191,64,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87, +44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,178,157,111,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,88,57,148,65,195,0,0,0,67,111, +110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53, +54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53, +54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,135,22,153, +65,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44, +67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,51,50,44, +54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,129,106,252,65,77,0,0,0,49,54,44,50,53,54,44,56,44, +56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,238,124,63,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59, +123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,31,133,43,65,77,0,0,0,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,147,24,68,65,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,250,126,234,65,84,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,15,45,50,65,82,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44, +72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,43,135,22,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,218,249,190,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78, +44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,68,139,44,65,60,0,0,0,84,121,112,101,67, +118,116,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,54,52,4,0,0,0,66,96,229,64,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,103,102, +102,65,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,219,249,158,65,85,0,0,0,49,54,44,49,54,44, +56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,54,52,44,51,50,44, +51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,82,184,158,65,167,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119, +97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0, +0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,56,124,51,52,4,0,0,0,238,124,159,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,30,133,107,65,83,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,133,235,17,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,223,79,77,65,86,0,0,0,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,24,4,86,65,76,0,0,0,49,54,44, +54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,156,196,96,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,104,65,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,18,131,192,64,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,213,120,137,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,213,120,105,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,68, +139,108,65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44, +49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,29,90,36,65,77,0,0,0,49,54,44,49,50,56,44, +49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,243,210,77,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,76,55,73,65,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,248,83,169,67,67,0,0,0,49,54,44,51, +44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108, +111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,143,194,117,65,87,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,65,96,69,66,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,238,124,127,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,91,100,123,65, +79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,116,147,152,65,85,0,0,0,49,54,44,49,54, +44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,90,100,155,65,70,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,176,114,40,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,231,251,233,65,84,0,0, +0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,76,55,73,65,77,0,0,0,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,95,186,73,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,102,102,38,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50, +44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54, +52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,76,55,73,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122, +101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117, +97,110,116,105,122,101,100,83,52,4,0,0,0,75,55,73,66,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87, +44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +86,14,45,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,236,81,120,65,75,0,0,0,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,82,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,224,79,13,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,125,63,53,65,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,85,227,37,65,71,0,0, +0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,38,113,66,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,103,102,198,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,154,153,185,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128, +150,24,75,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49, +54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,125,63,53,65,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54, +59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108, +111,97,116,51,50,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,232,251,201,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,12,2,43,65,78,0,0, +0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37, +54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,19,131,192,64,76,0,0,0,49,54,44,54,52,44,51,50,44, +51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117, +97,110,116,105,122,101,100,83,52,4,0,0,0,149,67,203,65,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +52,124,48,52,4,0,0,0,4,86,14,65,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,101,59,95,65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0, +2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117, +97,110,116,105,122,101,100,83,52,124,54,52,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,191,159,186,65,86,0,0,0,49,54,44,49,50,56,44, +49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,215,163,112,65,66,0,0,0,69,108,101,109,119,105,115,101,16, +0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,49,59,70,108,111,97,116,51,50,124,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111, +97,116,51,50,124,48,52,4,0,0,0,174,71,81,66,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72, +44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,23,217,78,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,51,51,51,65,76,0,0,0,49,54, +44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,195,245,40,65,194,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114, +100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0, +0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51,50,44,51,50,44,49,44,49,59,81,117,97,110,116, +105,122,101,100,83,52,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,51,50, +44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,185,30,69,65,85,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,107,188,180,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,53,51,115,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,240,167,70,65, +78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,70,182,211,65,75,0,0,0,49,54,44,50,53,54, +44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,170,241,82,65,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,50,8,108,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +150,67,75,65,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,79,141,87, +65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,2,43,167,65,69,0,0,0,49,54,44,49,54, +44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,58,180,8,65,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,215,163,48,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,86,0,0, +0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,75,0,0,0,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,78,98,80,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,254,212,56,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,111,18,163,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,67,139,108,65,86,0,0, +0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,218,206,119,65,75,0,0,0,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,63,53,94,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,139,108,103,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,39,49,136,65,88,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,113,61,170,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0, +0,4,86,142,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,145,237, +220,65,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,47,221,36,65,86,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,158,239,135,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56, +124,51,52,4,0,0,0,141,151,14,66,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44, +49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,128,150,24,75,78,0,0,0, +49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44, +67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,50,53,54,44,56,44,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,143,194,53,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,55,137,161,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50, +56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,247,40,252,65,85,0,0,0, +49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,199,75,183,65,69,0,0,0,49,54,44, +49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,30,133,43,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,40,49,72,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44, +67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4, +0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37, +54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0, +0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,37,6,161,65,87,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,90,100,155,65,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,224,79,77, +65,60,0,0,0,84,121,112,101,67,118,116,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,250,126,234,64,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,52,51,179,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,52,124,51,52,4,0,0,0,150,67,11,65,87,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,165,112,125,65,57,0,0,0,84,121,112,101,67,118,116,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54, +44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,2,43,71,65,70,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,47,221,36,65,69,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,168,198,139,65,83,0,0,0,49, +54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,207,247,19,65,76,0,0,0,49,54,44,49,54,44, +56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,129,149,67,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,113,61,202,65,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0, +0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,129,149,227,65,76,0,0,0,49,54,44,51,50,44,54,52,44, +54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,145,237,156,65,68,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0, +0,154,153,25,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,157,239,231,65,76,0,0,0,49, +54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83, +52,4,0,0,0,78,98,144,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87, +44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4, +0,0,0,32,133,107,65,86,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,238,124,127,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,161,69,118,65,95,0,0,0,69,108,101, +109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,48,52,4,0,0,0,0,0,64,65, +81,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,95,186,9,65,69,0,0,0,49,54,44, +54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,117,147,152,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,13,2,235,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,195,245,104,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,202,118,254,65, +78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44, +67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,162,69,182,65,78,0,0,0,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,121,233,134,65,69,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,98,16,24,65,88,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,139,108,103,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44, +72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,196,32,48,65,85,0,0,0,49,54, +44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,59,0,0,0,84,121,112,101,67, +118,116,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,53,52,4,0,0,0,69,182,243,64,82,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,140,108,39,65,67,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,2,43,7,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,39,49,72,65,87,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,104,145,221,66,69,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59, +123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,2,43,135,65,76,0,0,0,49,54,44, +49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,213,120,41,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,111,18,163,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,238,124,159,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44, +72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,180,200,118,65,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,45,178,33,67,78,0,0, +0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87, +44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,120,233,102,65,171,0,0,0,67,111,110,118,66,105,97,115,70, +111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,155,196,128,65,69,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,35,219,217, +65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,49,54, +44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,46,178,221,65,85,0,0,0,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,169,198,235,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,74,12,162,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52, +124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,184,30,165,65,81,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,41,92,15,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,34,176, +114,65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72, +44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,72,0,0,0,49,54,44,51, +44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,208,34,35,67,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,100,59,223,65,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,102,102,38, +65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,193,202,33,65,76,0,0,0,49,54,44,49,54,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,168,198,75,65,83,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,20,174,7,65,69,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,205,204,12, +65,82,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,80,141,23,65,78,0,0,0,49, +54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,209,34,91,65,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,9,172,92,65,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84, +121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,48,52,4,0,0,0,19,131,192,64,170,0,0,0,67,111,110,118,66,105,97,115,70,111, +114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2, +0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,53,52,4,0,0,0,190,159,154,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,94,186,9,66,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,123,20,110,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,213,120,41,65, +83,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,78,98,16,65,75,0,0,0,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,60,223,79,65,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,39,49,200,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,170,241,82,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44, +87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,174,71,97,65,88,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,123,20,174,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,227,165,155,65,84,0,0,0, +49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72, +44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,96,229,80,65,76,0,0,0,49,54,44,49, +54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,40,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87, +44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +121,233,38,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44, +67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,65,96,37,65,77,0,0,0,49,54,44,50,53,54, +44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,69,182,115,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,142,151,46,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,111,18,67,65,96,0,0,0,69,108,101, +109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,11,215,227, +65,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,99,16,216,65,168,0,0,0, +67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54, +44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,56, +44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,72,225,58,65,88,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,197,32,240,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,235,81,56,65,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176, +114,104,65,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,146,237,60,65,78,0,0,0,49,54,44,51, +50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,86,14,61,66,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,248,83,131,65,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,103,145,237,65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49, +54,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,64,53,190,65,84,0,0,0,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,198,75,119,65,55,0,0,0,84,121,112,101,67, +118,116,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52, +4,0,0,0,225,122,148,64,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,18,131,192,64,87,0, +0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,20,174,167,65,170,0,0, +0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,50, +53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50, +53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,179,157,15,66,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,144,194,53,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,49,8,188,66,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,204,161,181,66,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,117,147,24,65,77,0,0,0, +49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,37,6,65,65,89,0,0,0,49,54,44,49,54,44,49,50,56,44,49, +50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,102,102,102,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52, +124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,46,178,93,65,87,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,98,16,248,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67, +47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,59,223,79,65,57,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51, +50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,63,53,30,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,104,145,109,65,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150, +24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,143,194,117,65,85,0, +0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,108,231,187,65,76,0,0,0,49, +54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,59,223,79,65,57,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,8,172, +28,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,66,96,133,65,65,0,0,0,49,54,44,51, +44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97, +116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,222,79,13,67,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,109,231,123,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,102,102,230,65,76,0,0, +0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,252,169,113,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,8,172,12,66,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,112,61,74,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72, +44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,168,198,75,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54, +44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,159,26,239,65,198,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119, +97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0, +0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,54,52,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,219,249,158,65,85,0,0,0,49,54, +44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,226,122,148,65,78,0,0,0,49,54,44,54,52, +44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,242,210,205,64,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108, +111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116, +51,50,4,0,0,0,128,150,24,75,70,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123, +78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,39,49,72,65,85,0,0,0,49,54,44,54, +52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,59,223,143,65,80,0,0,0,49,54,44,49,54,44,49, +50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,19,131,232,66,87,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,116,104,241,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,76,55,137,65,83,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,119,190,95,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59, +81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,156,196,192,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,121,233,38,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +234,38,145,65,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150, +24,75,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,106,196, +66,70,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,106,124,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59, +81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,57,180, +72,65,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,223,79,209,67,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,148,24,164,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75, +76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,32,176,50,65,77,0,0,0,49,54,44,49,50,56,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,207,247,83,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122, +101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,107,188,180,65,87,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100, +83,52,4,0,0,0,174,71,97,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,115,104,81, +65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,37,6,129,65,86,0,0,0,49,54,44,51,44,50, +53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,49,50,56,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,200,118,254,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,121,233,152,67,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54, +52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,51,50,44,54,52,44,54,52,59, +81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,204,204,76,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52, +124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,47,221,132,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,190,159,90,65,86,0,0,0,49, +54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,199,75,119,65,87,0,0,0,49,54,44, +54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,114,104,145,65,84,0,0,0,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,209,34,91,65,77,0,0,0,49,54,44,49,50,56,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,18,131,128,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122, +101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,96,229,208,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49, +54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44, +54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,41,92,15,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70, +108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116, +51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83, +52,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,6,129,85,65, +79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78, +44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,201,118,62,65,58,0,0,0,84,121,112,101,67, +118,116,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124, +49,53,52,4,0,0,0,239,167,70,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72, +44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,44,135, +86,65,88,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,234,38, +113,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,225,122,148,65, +77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,92,0,0,0,69,108,101,109,119,105,115, +101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,55,137,193,64,84,0,0,0,49,54,44, +49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,254,212,56,65,85,0,0,0,49,54,44,51,50,44,54, +52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,60,223,175,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51, +50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,189,116,243,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,113,61,138,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255, +255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44, +49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0, +0,0,61,10,183,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,93,143,194,64,170,0,0,0, +67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51, +50,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54, +52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116, +105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,198,75,151,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,182,243,13,66,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52, +124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128, +150,24,75,69,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,60,223,79,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,134,235,81,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110, +116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81, +117,97,110,116,105,122,101,100,83,52,4,0,0,0,85,14,173,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,137,65,192,65,58,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,191,159,90,66,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,21,174,71,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,90,100, +187,64,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44, +67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,51,50,44, +54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37, +54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,24,4,182,66,87,0,0,0,49,54,44,51,50,44,54,52,44, +54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,31,133,131,66,78,0,0,0,49,54,44,51,50,44,54,52,44,54, +52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,22,217,142,65,167,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0, +0,112,61,138,65,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0, +49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,37,6,225,65,76,0,0,0,49,54,44, +51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97, +110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59, +81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54, +44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50, +44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,181,200, +54,66,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44, +72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,111,18,195,65,67,0,0,0,49,54,44,51,44,50, +53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97, +116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,109,231,155,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75, +57,0,0,0,84,121,112,101,67,118,116,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,221,36,70,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,225,122,140,66,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122, +101,100,83,52,4,0,0,0,252,169,113,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,65, +0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,130,192,10,67,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50, +124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0, +0,128,150,24,75,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,250,126,42,65,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44, +87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,154,153,245,67,65,0,0, +0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,36,6,33,67,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,160,26,175,65,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,15,45,138,66,77,0, +0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,34,219,57,65,74,0,0,0,49,54,44,51,44,50,53,54,44, +50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59, +70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,72,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4, +0,0,0,189,116,147,66,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44, +51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44, +67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,111,18,227,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4, +0,0,0,128,150,24,75,76,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125, +59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,65,0,0,0,49, +54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70, +108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,74,12,206,67,83,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117, +97,110,116,105,122,101,100,83,52,4,0,0,0,244,253,84,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,25,4,86,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24, +75,58,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108, +111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,96,229,96,66,71,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +233,38,1,66,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,38,49,65,78,0,0,0,49,54,44,51, +50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,32,176,114,66,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,166,155, +156,66,67,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,223,79,13,65,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,25,4,246,65,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,2,43,7,66,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,166,155,68,65,85, +0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,96,229,240,65,84,0,0,0, +49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,7,129,85,65,80,0,0,0,49,54,44,49, +54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,88,57,228,66,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,49,8,204,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,104,145,29,66,89,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,68, +139,44,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,148,24,164,65,69,0,0,0,49,54,44, +54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,2,43,71,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,109,231,59,65,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,223,79,165,66,78, +0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72, +44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,80,141,7,66,169,0,0,0,67,111,110,118,66,105,97, +115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,248,83,163,65,85,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,47,221,4,66,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75}; + +static const std::vector TestLayoutTransform_Detection_QS8 = { +1,0,0,0,66,0,0,0,108,97,121,111,117,116,95,116,114,97,110,115,102,111,114,109,95,112,114,111,102,105,108,101,58,112,108,97,116,61,99,117,100,97,59,100,101,118,61,71,101,70, +111,114,99,101,32,82,84,88,32,50,48,56,48,32,84,105,59,99,97,112,61,55,46,53,138,1,0,0,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,52,4,0,0,0,247,40,252,65,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44, +51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,91,100,155,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54, +52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,41,92,15,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101, +7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,52,4,0,0,0,203,161,5,65,95,0,0,0,69,108,101,109,119,105,115,101,77, +117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,95,186,9,65,95,0,0,0,69,108, +101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51, +50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,59,223,15, +65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52, +4,0,0,0,209,34,91,65,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101, +100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100, +83,56,124,53,52,4,0,0,0,55,137,161,65,194,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,160,26,143,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44, +54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,215,163,144,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0, +0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,52,4,0,0,0,141,151,238,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108, +116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,195,245,136,65,95,0,0,0,69,108,101,109, +119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44, +54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,135,22,153,65,95, +0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54, +44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0, +0,0,49,8,140,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2, +0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83, +51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,128,150,24,75,172,0,0,0,67,111,110,118,66,105,97, +115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44, +51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,215,163,160,66,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44, +49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0, +0,0,35,219,41,66,55,0,0,0,84,121,112,101,67,118,116,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,49,54,44,51,44,50,53,54,44,50,53,54, +59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,63,53,30,66,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52, +4,0,0,0,251,169,153,66,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105, +122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,117,147,56,66,173,0,0,0,67,111, +110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49, +54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49, +50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,207,247,99,66,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,53,52,4,0,0,0,191,159,58,66,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, +0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56, +44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,76,55,233,65,195,0,0,0, +67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0, +0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124, +50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,254, +212,152,65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0, +2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,54,52,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124, +49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,246,40,188,65,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114, +119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0, +0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,51,44,51,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105, +122,101,100,83,56,124,51,52,4,0,0,0,18,131,224,65,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50, +44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,187,73,60,66,170,0,0, +0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +51,50,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44, +54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,190,159,10,66,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,52,4,0,0,0,105,145,13,66,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105, +122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,229,208,226,65,76,0,0,0,49,54,44,54, +52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,200,118,126,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,196,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255, +255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,213,120,137,65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,48,221,100,65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255, +255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +53,52,4,0,0,0,128,150,24,75,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49, +50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110, +116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,45,178,13,66,78,0,0,0,49,54,44, +49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97, +114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0, +0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,49,54,44,51,44,51,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,52,4,0,0,0,51,51,243,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,131,192,138,65,87,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72, +44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,125,63,245, +65,83,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,244,253,20,65,77,0,0,0, +49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,174,71,97,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,166,155,132,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,200,75,119,65,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87, +44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,53,94,122,65, +78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44, +67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,49,50,56, +44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,244,253,20,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,42,92,79,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,121,233,6,66,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,82,184,94,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,144,194,117,65,79,0,0,0, +49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,72,225,154,65,85,0,0,0,49,54,44,49,54,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,45,178,157,65,70,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,229,208,34,65,195,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116, +105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,52,4,0,0,0,147,24,164,65,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,53,94,58,65,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111, +97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4, +0,0,0,43,135,168,67,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,205, +204,76,65,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52, +44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54, +44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,240,167,198,65,86,0,0,0,49,54,44,49,50,56,44, +49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,29,90,100,65,77,0,0,0,49,54,44,50,53,54,44,56,44, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,207,247,83,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,11,2,171,65,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,217, +206,55,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123, +78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,223,79,77,65,74, +0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,209,34,27,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114, +119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0, +0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50,56,44,51,44,51, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,232,251,73,66,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67, +44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,233,38,13,67,76,0, +0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,95,186,137,65,77,0,0,0,49,54,44,50,53,54,44,56,44,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,110,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,144,194,53,65,82,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,242,210,13,65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117, +97,110,116,105,122,101,100,83,56,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105, +122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,146,237,28,66,75,0,0,0,49,54,44,50,53,54, +44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,82,184,30,65,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,173,71,97,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52, +44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,226,122,84,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,86,14, +45,65,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,240,167,70,65,75,0,0,0,49,54,44,50,53, +54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,82,184,30,65,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100, +83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,51, +52,4,0,0,0,141,151,30,66,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,79,141,183,65,68, +0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,86,14,45,65,198,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100, +83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,211,77,130,65,76,0,0,0,49,54,44,49,54,44,56, +44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,47,221,164,65,85,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,186,73,172,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,26,47,157,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,168,198,75,65,67,0,0, +0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,96,229,16,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,24,4,214,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,72,225,218,65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87, +44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75, +85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,101,59,95,65,170,0,0, +0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,50, +53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50, +53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,193,202,81,66,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,41,92,79,65,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255, +255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0, +0,0,72,225,218,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54, +52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,56,137,193,64,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,223,79,77,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,211,77,34,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,14,45,114,65,175,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1, +0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105, +122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,7,129,21,66,78,0,0,0,49,54,44, +51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,132,192,202,64,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97, +114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0, +0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,52,4,0,0,0,205,204,28,66,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,203,161,165,65,69,0,0,0,49,54, +44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,209,34,219,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255, +255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52, +4,0,0,0,254,212,184,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,248,83,99,65,88,0,0,0, +49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,67,139,172,65,85,0,0,0, +49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,211,77,130,65,66,0,0,0,69,108,101,109,119, +105,115,101,16,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,49,59,70,108,111,97,116,51,50,124,49,54,44,51,44,50,53,54,44,50,53,54, +59,70,108,111,97,116,51,50,124,48,52,4,0,0,0,99,16,88,66,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,82,184,94,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,252,169,113,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,66,96,37,65,84,0,0,0, +49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,182,243,253,65,69,0,0,0,49,54,44,49, +54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,137,65,32,65,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,193,202,129,65,78, +0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44, +67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44, +49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,45,178,157,65,87,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,93,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0, +0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44, +50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,52,4,0,0,0,28,90,228,64,87,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,76,55,137,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,252,169,49,65,194,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50, +44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,174,71,225,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,242,210,141,65,70,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,155,196,32,65,85,0,0,0,49,54, +44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54, +44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,11,215,163,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,46,65,83,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,168,198,11,65,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,76,55, +73,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,117,147,88,65, +77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,174,71,33,65,69,0,0,0,49,54,44,49,54,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,148,24,4,65,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53, +54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,21,174,199,64,69,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,23,217,14,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,125,63,53,65,95,0,0,0,69,108,101,109,119, +105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51, +50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,76,55,9,65,75,0, +0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,227,165,27,65,71,0,0,0,49,54,44,49,54,44,49,50,56,44,49, +50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,119,190,111,66,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,176,114,160,66,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,168,198,203,65,78,0,0, +0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87, +44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,201,118,190,64,83,0,0,0,49,54,44,49,54,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,31,133,235,64,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,68,139,108,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,195,245,40,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44, +72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,118,190,95,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,53,52,4,0,0,0,39,49,136,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,84,227,37,65, +79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,51,50, +44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,41,92,175,65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,110,65,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,78,98,28,67,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75, +77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,168,198,235,65,84,0,0,0,49,54,44,49,50,56,44, +49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,199,75,55,65,85,0,0,0,49,54,44,49,54,44,51,50,44,51,50, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,246,40,28,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,40, +65,77,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,100,59,95,65,77,0,0,0,49,54,44,49,50,56, +44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,228,165,91,65,88,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,213,120,169,65,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,100,59,31,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44, +67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,231, +251,41,65,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,38,49,65,67,0,0,0,49,54,44,51,44,50,53, +54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116, +51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44, +87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,121,233,102,65,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37, +54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0, +0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,115,104,81,65,84,0,0,0,49,54,44,51,44,50,53,54,44,50,53, +54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,43,135,70,66,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,213,120,201,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51, +52,4,0,0,0,64,53,62,66,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,58,180,168,65,75,0,0, +0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,39,49,72,65,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,171,28,186,65,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,250,126,234,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51, +50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,102,102,230,65,83,0, +0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,60,223,79,65,78,0,0,0,49,54,44, +49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,229,208,162,65,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,8,172,92,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,52,4,0,0,0,145,237,124,65,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44, +67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76, +0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,40,65,69,0,0,0,49,54,44,54,52,44,51,50,44, +51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,118,190,159,65,81,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,19,131,0,65,76,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44, +67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,83, +0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54, +44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,38,177,65,75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,76,55,73,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67, +47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,65,96,133,65,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51, +50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,162,69,182,65,77,0, +0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,166,155,68,65,195,0,0,0,67,111,110,118,66,105,97,115,70, +111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,74,12,162,65,67,0,0,0,49,54, +44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59, +70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44, +54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,129,149,163,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,51,52,4,0,0,0,8,172,28,66,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51, +50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,197,32,208,65,84, +0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,57,180,72,65,76,0,0,0,49, +54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,227,165,155,65,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,104,145,109,65,81,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,39,49,8,65,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110, +116,105,122,101,100,83,56,124,53,52,4,0,0,0,170,241,210,65,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,128,150,24,75,83,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,69,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44, +87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,0,0,64,66,78,0,0,0,49,54,44,54,52,44,51,50,44,51, +50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,38,241,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50, +124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111, +97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150, +24,75,78,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123, +78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,208,247,83,65,85,0,0,0,49,54,44,49, +54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,248,83,99,65,82,0,0,0,49,54,44,50,53,54,44, +56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,26,47,29,65,72,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59, +70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51, +50,59,70,108,111,97,116,51,50,4,0,0,0,55,137,33,67,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,227,165,219,65,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +128,150,24,75,83,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,115,104,145,65,76, +0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,46,65,83,0,0,0,49,54,44,49,54,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,250,126,234,64,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,51,44,51,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56, +124,53,52,4,0,0,0,155,196,0,66,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,213,120,233,64,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,246,40,188,65,87,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,37,6,1,66,78,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,19,131,192,64,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52, +44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,54,52,44,51,50,44,51, +50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,96,229,144,65,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,241,210,229,66,87,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,198,75,247,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,14,45,146,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,178,157,143,65,87,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,107,188,52,66,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,22,217,238,65,83,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,12,2, +107,65,76,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,160,26,47,65,85,0,0,0,49,54,44,54,52,44, +51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,243,253,148,65,86,0,0,0,49,54,44,51,44,50,53,54,44, +50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49, +50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,68,139,172,66,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119, +97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0, +0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,51,50,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,123,20,174,65,69,0,0,0,49,54,44,51,50,44,54, +52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,61,10,183,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,129,149,131,65,70,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44, +72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,130,149,83,66,174,0,0,0,67,111,110,118,66,105, +97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50, +56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54, +44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,176,114,232,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,206,204,172,66,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72, +44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,156,196,192,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,51,51,147,65,69,0,0,0,49,54, +44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,152,110,18,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,185,30,165,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,120,66,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,142,194,85,66,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,105,145,77,66,74, +0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114, +119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0, +0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97, +110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,143,194,149,65,85,0,0,0,49,54, +44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,108,231,187,65,58,0,0,0,49,54,44,51,44, +50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97, +116,51,50,4,0,0,0,251,126,90,66,87,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,166,155,228,66,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47, +47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,54,52,44,51, +50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,12,2,235,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,17,131,192,65,76,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,146,237,124,65,78,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72, +44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,242,210, +45,66,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54, +44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,75,55,233,65,172,0,0,0,67,111,110,118,66, +105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0, +0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52, +44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44, +49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,229,208,194,65,76,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,207,247,67,66,83,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87, +44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,128,149,163,65,85,0,0,0,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,113,61,90,66,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125, +59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,230, +208,98,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,65,0,0,0,49,54,44,51,44,50,53, +54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50, +59,70,108,111,97,116,51,50,4,0,0,0,32,176,10,67,68,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44, +87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,36,219,57,65,65,0,0,0, +49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59, +70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,135,22,209,67,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78, +44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150, +24,75,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44, +87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,84,227,37,65,65,0,0,0,49,54,44,51,44,50,53,54, +44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59, +70,108,111,97,116,51,50,4,0,0,0,121,233,244,67,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,55,137,33,67,85,0,0,0,49,54,44,51, +50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,237,124,191,65,65,0,0,0,49,54,44,51,44,50,53, +54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50, +59,70,108,111,97,116,51,50,4,0,0,0,180,200,134,66,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44, +87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,49,8,44,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,74,0,0,0,49,54,44,51,44, +50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,72,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51, +50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97, +116,51,50,4,0,0,0,186,73,148,66,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,170,241,210,64,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49, +50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,52,4,0,0,0,172,28,218,64,78,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,216,206,215,65,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24, +75,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,51,44,50,53,54,44, +50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59, +52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,129,149,227,65,74,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72, +44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24, +75,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,173,0, +0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1, +0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49, +54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,209,34,219,65,76,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59, +70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108, +111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50, +53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56, +44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,135,22,217,64,65,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,225,122, +206,67,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,126,106,92,66,79,0,0,0,49,54,44,51,44, +50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84, +121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,137,65,224,64,70,0,0,0,49,54,44, +51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,65,96,229,65,85,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,43,135,150,65,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,21,174,199,64,167,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116, +105,122,101,100,83,51,50,124,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,160,26,143,65,79,0,0,0,49,54,44,51,44,50, +53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,56,137,193,64,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,58,180,200,65,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,18,131,64,65,79,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87, +44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75, +75,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,121,233,38,65,79,0,0,0,49,54,44,51,44,50,53,54,44, +50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,88,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,8,172,140,66,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,185,30,5,66,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,46,65,86,0,0,0,49,54, +44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,58,0,0,0,49,54,44,51, +44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111, +97,116,51,50,4,0,0,0,143,194,101,66,71,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,0,0,0,66,76,0,0,0,49, +54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,180,200,54,65,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,94,186,105,66,67,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,108,231,251,64,78,0,0,0,49,54,44,51, +50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,208,247,163,66,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,206,247,243,65,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,221,36,6,66,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44, +51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,117,147,152,65,77,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,16,88,57,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,213,120,185,66,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,152,110,178, +66,76,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,170,241,82,65,85,0,0,0,49,54,44,49,54,44,49, +50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,79,141,247,65,193,0,0,0,67,111,110,118,66,105,97,115,70,111, +114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2, +0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,241,210,237,65,84,0,0,0,49,54,44,50,53, +54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,244,253,84,65,80,0,0,0,49,54,44,49,54,44,49,50,56, +44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,30,133,227,66,89,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,255,255,255,255,255,255,255,255,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,50,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,51,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,54,44,51,50,44,54,52,44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,179,157,239,65,80,0,0,0,49,54,44,49,54,44,49,50,56,44,49, +50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,89,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,74,0,0,0,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,109,231,59,65,78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,43,135,166,66, +78,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44, +72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,29,90,4,66,169,0,0,0,67,111,110,118,66,105, +97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81, +117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,137,65,160,65,85,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,82,184,254,65,77,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,218,249,254,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,121,233,152,67,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,128,150,24,75,67,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123, +78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116, +105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,28,90,228,64,169,0,0,0,67,111,110,118,66,105,97,115, +70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0, +0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97, +110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,217,206,151,65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54, +44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,17,88,153, +65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100, +83,56,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124, +49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,151,110,82,66,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97, +114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0, +0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,53,52,4,0,0,0,69,182,115,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49, +54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,172,28,218,64,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255, +255,255,255,255,255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52, +4,0,0,0,179,157,143,65,167,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117, +97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101, +100,83,51,50,124,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,250,126,138,65,75,0,0,0,49,54,44,50,53,54,44,56,44, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,88,57,52,65,88,0,0,0,49,54,44,51,44,50,53,54,44,50,53,54,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,168,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255, +255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49, +44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0, +80,141,87,65,86,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,109,231, +123,65,167,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,54,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49, +54,44,49,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,18,131,160,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0, +0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,44,49,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,44,49,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,51,52,4,0,0,0,150,67,139,65,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,56,44,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,52,4,0,0,0,31,133,235,64,93,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44, +56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,56,44,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,99,16,216,64,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44, +54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0, +49,8,204,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83, +51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,65,96,69,66,85,0,0,0,49,54,44,49,54,44,51,50,44, +51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,162,69,214,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119, +97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0, +0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,52,4,0,0,0,102,102,22,66,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,222,36,198,65,87,0,0,0,49,54,44,49,54,44,49,50,56,44,49,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,242,210,29,66,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44, +49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,203,161,21,66,78,0, +0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44, +87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,21,174,231,65,76,0,0,0,49,54,44,51,50,44,54,52, +44,54,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,93,143,194,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,56,44,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +53,52,4,0,0,0,73,12,226,65,85,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87, +44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,128,150,24,75,83,0,0,0,49,54,44,54,52,44,51,50,44,51,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,239,167, +70,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,49,54,44,49,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,53,52,4,0,0,0,102,102,230,64}; + +static const std::vector TestLayoutTransform_Resnet18_QS4 = { +1,0,0,0,66,0,0,0,108,97,121,111,117,116,95,116,114,97,110,115,102,111,114,109,95,112,114,111,102,105,108,101,58,112,108,97,116,61,99,117,100,97,59,100,101,118,61,71,101,70, +111,114,99,101,32,82,84,88,32,50,48,56,48,32,84,105,59,99,97,112,61,55,46,53,111,1,0,0,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7, +0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,201,118,62,65,98,0,0,0,69,108,101,109,119,105,115, +101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50, +56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,19,131,64,65,98, +0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +52,4,0,0,0,143,194,53,65,62,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54, +52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,184,30,141,66,61,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44, +49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0, +0,0,141,151,142,66,61,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49, +49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,140,108,143,66,61,0,0,0,84,121,112,101,67,118,116,49,54,44,54,52,44,49,49,50,44, +49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,23,217, +142,66,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2, +0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122, +101,100,83,52,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50, +124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52, +124,49,52,4,0,0,0,127,106,188,65,198,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53, +54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,12,2,235,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54, +52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44, +53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,203,161,133,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101, +7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,102,102,134,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117, +108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,231,251,137,65,95,0,0,0,69,108,101, +109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54, +44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,84,227,133,65, +95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49, +54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,48,52,4, +0,0,0,150,67,139,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0, +2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,52,44,50,50,52,44,50,50,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,128,150,24,75,99,0,0,0,69,108,101,109,119,105, +115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44, +49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,223,79,13, +65,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52, +124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52, +124,49,54,52,4,0,0,0,242,210,13,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59, +81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59, +81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,160,26,207,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44, +50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44, +50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,170,241,18,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84, +121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116, +105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,48,52,4,0,0,0,57,180,8,65,61,0,0,0,84,121,112,101, +67,118,116,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122, +101,100,83,52,124,48,52,4,0,0,0,144,194,141,66,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44, +53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,239,167,230,65,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,204,204,108,67,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,88,57, +148,66,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,33,176,242,64,85,0, +0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,74,12,34,66,80,0,0,0,49, +54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37, +54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,89,57,116,65,80,0,0,0,49,54,44,54,52,44,49,49,50, +44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,98,16,134,67,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,222,36,174,66,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,141,151,14,67,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,178,157,183,66,71,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78, +44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,227,165,11,67,75,0,0,0,49,54,44,53,49, +50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,184,30,69,65,85,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110, +116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,55,137,233,66,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,19,131,128,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,128,150,24,75,89,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4, +0,0,0,84,227,189,66,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0, +163,112,29,66,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,24,217,62, +66,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,236,81,184,64,86,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,219,249,254,64,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,183,243,253,64,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100, +83,52,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,113,61,154,66,71,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,254,212,144,66,86,0,0,0,49,54,44,49, +50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,187,73,172,65,84,0,0,0,49,54,44,49,50,56, +44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,215,163,112,65,86,0,0,0,49,54,44,49,50,56,44,50,56,44, +50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,33,176,210,65,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49, +50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,26,47,133,66,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59, +81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,47,221,100,65,87,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,51,51,211,65,86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,16,45,210,65,86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59, +81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,172,28,154,65,88,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78, +44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59, +81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,70,182,147,65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54, +44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,53,49,50,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,53, +49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0, +109,231,251,65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116, +105,122,101,100,83,52,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50, +124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,45,178,253,65,88,0,0,0,49,54,44,49,50,56,44,50,56,44, +50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,217,206,151,65,79,0,0,0,49,54,44,49,50,56,44,50,56,44, +50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,183,243,125,65,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105, +122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81, +117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,43,135,10,67,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,14,45,114,65,84,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,233,38, +177,65,86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78, +44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,25,4,150,65, +86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,223,79,173,65,77,0, +0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50, +44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,170,241,202,66,75,0,0,0,49,54,44,53,49,50,44,55,44,55, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,235,81,184,64,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44, +87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4, +0,0,0,107,188,164,66,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123, +78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,199,75,183,64,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,221,36,134,65,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,42,92,79,65,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122, +101,100,83,52,4,0,0,0,111,18,131,65,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125, +59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,185,30,165, +65,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,85,227,37,65,70,0,0,0,49,54,44,49,50,56,44,50, +56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,74,12,66,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44, +67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,162,69,182,64,85,0,0,0,49, +54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,170,241,10,67,77,0,0,0,49,54,44,49, +50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,201,118,190,64,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122, +101,100,83,52,4,0,0,0,225,122,164,66,71,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67, +125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,102,102,102,67,86,0,0,0,49, +54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44, +54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,243,253,204,66,78,0,0,0,49,54,44,54,52,44,53,54,44,53,54, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,69,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,127,106,124,65,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0, +37,6,129,65,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44, +52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44, +67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97, +110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,196,32,32,66,200,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105, +122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,55,137,161,65,87,0,0,0,49,54,44,54,52,44, +49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,84,227,245,66,79,0,0,0,49,54,44,50,53,54,44, +49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,170,241,82,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117, +97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,45,178,5,67,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83, +52,4,0,0,0,191,159,90,65,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87, +44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,150,67,75,65, +88,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,65,53,94,65, +77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,82,0,0,0,49,54,44,53,49,50,44, +55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,115,104,17,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117, +97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,88,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123, +78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,193,202,97,65,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,162,69,182,64,99,0,0, +0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44, +49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52, +4,0,0,0,90,100,59,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78, +44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,135,22,25,65,70,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59, +81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,21,174,71,65,83,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100, +83,52,4,0,0,0,43,135,182,65,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,162,69,182,64,86,0,0,0,49,54,44,52,44,50,50,52,44, +50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59, +70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116, +51,50,4,0,0,0,190,159,26,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,8,172,148,66, +76,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,65,0,0,0,49,54,44,53,49,50,44,49, +44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59, +70,108,111,97,116,51,50,4,0,0,0,162,69,182,64,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44, +87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,210,34,91,65,84,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4, +0,0,0,29,90,36,65,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,54, +94,58,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,97,229,16,65,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,102,102,212,67,88,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105, +122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,182,243,157,65,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,228,165,91,65,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,162, +69,182,64,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,80,0,0,0,49,54, +44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,163,112,21,67,56,0,0,0,49,54,44,53,49,50,44,49,44,49, +59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0, +252,169,113,64,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,55,137,193,64,74,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97, +116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51, +50,59,70,108,111,97,116,51,50,4,0,0,0,33,176,242,64,115,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0, +0,2,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,33,176,66,66,87,0,0,0,49,54, +44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,53,94,10,67,87,0,0,0,49,54,44, +54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,225,122,164,66,78,0,0,0,49,54,44,54, +52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97, +110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122, +101,100,83,52,4,0,0,0,159,239,39,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52, +44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,185,30,5,65,70,0,0,0,49,54,44,53,49,50,44,49,44, +49,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97, +116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,100,59,223,64,85,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,88,57,140,66,89,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117, +97,110,116,105,122,101,100,83,52,4,0,0,0,171,28,186,66,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67, +47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,72,225,208,67,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0, +49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,78,98,16,65,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49, +52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,240,167,70,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105, +122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67, +44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,128,150,24,75,56,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125, +59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,69,182,115,64,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124, +49,52,4,0,0,0,164,112,221,65,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,169, +0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0, +1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54, +52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,166,155,36,66,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112, +101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122, +101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,48,52,4,0,0,0,86,14,45,65,86,0,0,0,49,54,44,49,50,56, +44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,179,157,207,65,72,0,0,0,49,54,44,53,49,50,44,49, +44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70, +108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,33,176,242,64,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52, +124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54, +52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,92,143,194,66,68,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123, +78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,139,108,39,65,79,0,0,0,49,54,44,52, +44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105, +84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,31,133,235,64,72,0,0,0,49,54,44,53,49,50,44,49,44, +49,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108, +111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,177,114,40,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72, +44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,125,63,181,64,80,0,0,0, +49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44, +72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,199,75,111,67,77,0,0,0,49,54,44,49,50,56,44,50, +56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116, +105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,241,210,5,67,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,100,59,127,66,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,186,73,108,66,72,0,0,0,49,54,44,53, +49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,33,176,242,64,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44, +67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,198, +75,3,67,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100, +83,52,124,51,52,4,0,0,0,35,219,57,65,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100, +83,52,4,0,0,0,7,129,245,65,87,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83, +52,4,0,0,0,125,63,213,65,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,62,10,183,65,63,0, +0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59, +70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,238,124,191,64,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54, +44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54, +52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,111,18,131,65,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121, +112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,53,52,4,0,0,0,166,155,4,65,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59, +70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111, +97,116,51,50,4,0,0,0,236,81,184,64,70,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125, +59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,39,49,136,65,77,0,0,0,49,54, +44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81, +117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,17,88,185,64,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59, +81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,194,245,40,65,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72, +44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,127,106,60,65,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0, +49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,80,141,87,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59, +81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,13,2,107,65,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52, +124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105, +122,101,100,83,52,4,0,0,0,168,198,75,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0, +0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,52,44,50,50,52, +44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,117,147,248,66,75,0,0,0, +49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,199,75,183,64,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59, +81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,141,151,110,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110, +116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81, +117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4, +0,0,0,96,229,144,65,83,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,14,45, +18,66,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,137,65,160,65,65,0,0,0,49,54,44, +52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111, +97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,28,90,0,67,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123, +78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83, +52,4,0,0,0,29,90,132,65,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37, +52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0, +0,7,129,85,65,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,78,0,0,0, +49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44, +87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,53,49,50,44,55,44,55, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,146,237,60,65,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,224,79,77,65,82,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110, +116,105,122,101,100,83,52,4,0,0,0,162,69,54,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,52,44,50, +50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,111,18,227,66,78,0, +0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44, +72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,107,188,52,65,77,0,0,0,49,54,44,50,53,54,44,49, +52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,139,108,135,65,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44, +87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128, +150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,172,28, +14,67,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78, +44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,12,2,43,65,86,0,0,0,49,54,44,53,49, +50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,22,174,71,65,62,0,0,0,84,121,112,101,67,118,116, +49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,54,52,4,0,0,0,39,49,144,66,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,162,69,182,64,65,0,0,0,49,54,44,53,49,50, +44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51, +50,59,70,108,111,97,116,51,50,4,0,0,0,237,124,191,64,72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,179,157,47, +65,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,99,16,248,65,77,0, +0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87, +44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,139,108,39,65,84,0,0,0,49,54,44,53,49,50,44,55,44, +55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,37,6,65,65,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117, +97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,55,94,122,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105, +122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,171,28,90,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,6, +129,85,65,86,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123, +78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,171,241,82, +65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0, +0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124, +49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,70,182,211,65,84,0,0,0,49,54,44,50,53,54,44,49,52,44, +49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,158,239,103,65,72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111, +97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50, +59,70,108,111,97,116,51,50,4,0,0,0,76,55,137,65,70,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44, +87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,232,251,41,65,65,0, +0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,167,198,107,66,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101, +100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,92,143,130,65,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,221,36,182,66,70,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,209,34,219,64,93,0,0,0,69,108,101,109,119,105,115,101, +77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,172,28,218,64,98,0,0,0,69,108,101, +109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44, +49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,55, +137,1,65,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52, +125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,131,192,10,66,84,0,0,0,49, +54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,224,79,77,65,79,0,0,0,49,54,44,50,53, +54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,113,61,74,65,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81, +117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,55,0,0,0,84,121,112,101,67,118,116,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116, +51,50,124,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,43,135,22,66,86,0,0,0,49,54,44,50,53,54,44,49, +52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37, +52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,157,196,96,65,68,0,0,0,49,54,44,53,49,50,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97, +110,116,105,122,101,100,83,52,4,0,0,0,149,67,11,65,72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,76,55,137,65, +80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,178,157,123,67,89,0,0,0,49,54,44,54, +52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44, +72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,69,182,127,67,89,0,0,0,49,54,44, +54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50, +44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,110,18,139,67,87,0,0,0,49,54, +44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,12,2,95,67,84,0,0,0,49,54,44, +53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,238,124,127,65,79,0,0,0,49,54,44,49,50,56,44, +50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,195,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,53,49,50,44,50,53,54,44,49,44,49,59,81,117,97,110, +116,105,122,101,100,83,52,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101, +100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,231,251,169,65,80,0,0,0,49,54,44,54,52,44,49,49,50, +44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,164,112,189,64,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,22,217,216,67,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67, +44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,10,215,195,65,78,0, +0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44, +87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,49,8,208,67,77,0,0,0,49,54,44,49,50,56,44,50, +56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,242,210,205,65,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,67,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0, +128,150,24,75,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78, +44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,154,153,25,65,85,0,0,0,49,54,44,54,52, +44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,209,34,207,67,75,0,0,0,49,54,44,53,49,50,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122, +101,100,83,52,4,0,0,0,128,150,24,75,67,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,53,49, +50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,80,141,23,65,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78, +44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,236,81,184,64,86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,27,47,157,65,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,164,112,189,64,84,0,0,0,49, +54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,144,194,245,64,67,0,0,0,49,54,44,52,44, +50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111, +97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,82,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,106,188,244,64,74,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44, +67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,33,176,242,64, +77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,53,49,50,44, +49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,252,169,241,64,78,0,0,0,49,54,44,54,52,44,49,49,50, +44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,71,225,130,66,84,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,221,36,198,65,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100, +83,52,4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0, +0,0,216,163,208,65,70,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44, +87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,122,20,174,65,80,0,0,0,49,54,44,54,52,44,49,49, +50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,21,174,199,64,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,70,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,144, +194,181,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44, +67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,125,63,181,64,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117, +97,110,116,105,122,101,100,83,56,4,0,0,0,125,63,69,66,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72, +44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,200,65,77,0,0, +0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44, +87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,222,36,198,65,77,0,0,0,49,54,44,53,49,50,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,166,155,196,64,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,16,88,185,64,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,94,186, +25,66,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67, +47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,19,131,128,65,92,0, +0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53, +49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,51,52,4,0,0,0,166,155, +4,65,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75, +84,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,82,184,190,65,79,0,0,0, +49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,54,52,44,53,54,44, +53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,78,98,240,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119, +97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0, +0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,50,53,54,44,51,44,51,59, +81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,2,43,55,66,88,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72, +44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,216, +163,208,65,69,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,160,26,207,65,93,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116, +105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122, +101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,53,52,4,0,0,0,213,120,233,64,78,0,0,0,49,54,44,54,52,44,53, +54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117, +97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,173,71,161,65,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116, +105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117, +97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44, +87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0, +0,169,198,235,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52, +44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,166,155,208,67,67,0,0,0,49, +54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52, +59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,146,237,188,65,58,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123, +78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,219,249,94,66,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59, +81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,158,239,23,66,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,128,150,24,75,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,48,221,164,66,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +128,150,24,75,67,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44, +87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +52,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116, +105,122,101,100,83,52,4,0,0,0,88,57,180,64,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52, +44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,118,147,248,65,71,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125, +59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,202,161,53,66,76,0,0,0,49,54, +44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117, +97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,54,94,26,66,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44, +72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,231,251,129,66,65,0,0, +0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52, +59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,236,81,184,64,72,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50, +4,0,0,0,228,165,251,66,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,128,150,24,75,72,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67, +47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,20,174,103,66,74,0,0,0,49,54,44,52,44,50, +50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49, +53,52,4,0,0,0,69,182,95,67,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44, +87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,146,237,156,65,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,67,0,0,0,49,54, +44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59, +70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,67,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78, +44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150, +24,75,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,92,143,2,65,67,0, +0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51, +50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108, +111,97,116,51,50,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,54,52, +44,72,44,87,44,67,37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101, +100,83,52,4,0,0,0,45,178,157,65,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,65,0,0, +0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52, +59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,123,20,126,66,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255, +255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83, +52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124, +49,52,4,0,0,0,111,18,3,66,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,79,0,0,0, +49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,44,135,86,65,74,0,0,0,49,54,44,52,44,50,50,52,44, +50,50,52,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59, +70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,51,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116, +105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,48,52,4,0,0,0,237,124,191,64,77,0,0,0,49,54,44,53,49,50,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,53,94,186,64,51,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,53,52,4,0,0,0,203,161,197,64,78,0,0,0,49,54,44,54,52,44,49,49, +50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,209,34,179,66,51,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,49,52,4,0,0,0,90,100,187,64,51,0,0,0,84,121,112,101,67, +118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,51,52,4,0,0,0, +25,4,214,64,72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67, +47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,254,212,248,64,58,0,0,0,49,54,44,52,44,50,50,52, +44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50, +4,0,0,0,245,40,92,66,52,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49, +44,49,59,70,108,111,97,116,51,50,124,49,54,52,4,0,0,0,22,217,206,64,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255, +255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,53,49,50,44,53,49,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44, +53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0, +0,63,53,30,66,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116, +105,122,101,100,83,52,124,53,49,50,44,53,49,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,123,20,110,66,77,0,0,0,49,54,44,49,50,56,44,50,56, +44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,174,71,193,65,52,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,49,53,52,4,0,0,0,207,247,211,64,196,0,0,0,67,111,110,118,66,105, +97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,53,49,50,44,50,53, +54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44, +55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,49,8,204,65,172,0, +0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1, +0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83, +52,124,53,49,50,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49, +54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,24,4,38,66,199,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114, +100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0, +0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110, +116,105,122,101,100,83,52,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,92,143,162,65,175,0,0,0,67,111,110, +118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0, +0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54, +44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54, +44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,57,180,200,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117, +97,110,116,105,122,101,100,83,52,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52, +59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,128,150,24,75,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,152,110,98,66,175,0,0, +0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52, +124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54, +44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,69,182,243,65,72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70, +108,111,97,116,51,50,124,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116, +51,50,59,70,108,111,97,116,51,50,4,0,0,0,19,131,0,65,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0, +128,150,24,75,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110, +116,105,122,101,100,83,52,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101, +100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,133,235,17,66,86,0,0,0,49,54,44,50,53,54, +44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67, +37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,248,83,99,65,175,0,0,0,67,111,110,118,66,105,97,115, +70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0, +0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,52,124,50,53,54,44,50,53,54,44, +51,44,51,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49, +52,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,91,100,251,65,110,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,1,0,0,0,0,0,0, +0,0,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44, +55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,104,145,173,65,111,0,0, +0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,0,0,0,0,1,0,0, +0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,49,44,49,59,81,117,97, +110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,213,120,201,65,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124, +123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59, +81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,33,176,26,67,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,123,78,44,67, +44,72,44,87,125,59,123,78,44,67,47,47,54,52,44,72,44,87,44,67,37,54,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52, +4,0,0,0,99,16,152,65,82,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52, +125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,52,59,81,117,97,110,116,105,122,101,100,83,52,4,0,0,0,0,0, +0,65,114,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44, +53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,52,4,0,0,0,209,34,59,66,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,197,32,208,67,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51, +50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108, +111,97,116,51,50,4,0,0,0,128,150,24,75,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81, +117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116, +105,122,101,100,83,52,124,48,52,4,0,0,0,250,126,234,64,194,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54, +52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,54,52,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,52,124,49,44,54,52,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,52,124,49,54,44,54,52,44,53,54,44,53,54,59, +81,117,97,110,116,105,122,101,100,83,52,124,49,54,52,4,0,0,0,86,14,205,65}; + +static const std::vector TestLayoutTransform_Resnet18_QS8 = { +1,0,0,0,66,0,0,0,108,97,121,111,117,116,95,116,114,97,110,115,102,111,114,109,95,112,114,111,102,105,108,101,58,112,108,97,116,61,99,117,100,97,59,100,101,118,61,71,101,70, +111,114,99,101,32,82,84,88,32,50,48,56,48,32,84,105,59,99,97,112,61,55,46,53,4,1,0,0,51,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,53,52,4,0,0,0,147,24,132,64,51,0,0,0,84,121,112,101,67, +118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,51,52,4,0,0,0, +192,202,161,64,51,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,49,44,49,59,70, +108,111,97,116,51,50,124,49,52,4,0,0,0,197,32,176,64,51,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,48,52,4,0,0,0,14,45,178,64,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101, +100,83,56,124,51,52,4,0,0,0,34,219,121,66,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53, +54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,235,81,8,66,174, +0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0, +1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100, +83,56,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124, +49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,45,178,29,66,175,0,0,0,67,111,110,118,66,105,97,115,70,111,114, +119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0, +0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50,56,44,51,44,51, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,227,165,59,66,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255, +255,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54, +52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0, +0,128,150,24,75,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,52,4,0,0,0,158,239,199,65,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0, +0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,52,44,50,50,52,44, +50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110, +116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,98,16,240,66,172,0,0,0,67, +111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0, +1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54, +52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49, +50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,38,49,96,67,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +255,255,255,255,255,255,255,255,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,52,44,55,44,55,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,52,4,0,0,0,96,229,224,66,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44, +53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,47,221,196,65,197,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255, +49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49, +50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50, +56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,19,131,192,65,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,121,233,22,66,198,0,0,0,67,111,110,118,66,105,97,115,70,111,114, +119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0, +0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97, +110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,143,194,181,65,193,0,0,0,67, +111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0, +1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52, +44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54, +44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,35,219,89,66, +98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +48,52,4,0,0,0,209,34,27,65,173,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49, +52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,144,194,85,66,172,0,0,0,67, +111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0, +1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53, +49,50,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53, +49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,13,2,171,66,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,51,44,51,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100, +83,56,124,51,52,4,0,0,0,63,53,134,66,114,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0, +0,3,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,196,32,96,66,114,0,0,0,80,111,111,108,105,110,103, +70,111,114,119,97,114,100,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,51,52,4,0,0,0,78,98,112,66,115,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2, +0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,139,108,71,66,98,0,0,0,69,108,101,109, +119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50, +56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,154,153, +25,65,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, +0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49, +54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,53,94,162,66,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97, +114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0, +0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,49,53,52,4,0,0,0,200,118,78,66,169,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44, +53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,115,104,153,66,93,0,0,0, +69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50, +44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,93,143,194, +64,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49, +54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0, +0,21,174,199,64,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100, +83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,51, +52,4,0,0,0,209,34,219,64,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100, +83,56,124,49,52,4,0,0,0,137,65,224,64,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,190,159,26,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255, +255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +53,52,4,0,0,0,225,122,244,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,250,126,106,66,199,0,0,0, +67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0, +0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124, +50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44, +50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4, +0,0,0,82,184,190,65,200,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81, +117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116, +105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,192,202,161,65,199,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54, +44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50, +53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53, +54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,158,239,199,65,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110, +116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105, +122,101,100,83,56,124,53,52,4,0,0,0,195,245,40,66,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53, +54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44, +49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,246,40, +196,66,99,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,49,53,52,4,0,0,0,239,167,6,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52, +59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52, +59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,57,180,8,65,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54, +44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54, +44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,184,30,5,65,196,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97, +114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0, +0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,49,44,49,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116, +105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,72,225,154,65,170,0,0,0,67,111,110,118,66, +105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0, +0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,53,49,50, +44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55, +59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,57,180,104,66,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255, +255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,53,49,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49, +44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0, +0,37,6,5,67,171,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0, +0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116, +105,122,101,100,83,56,124,53,49,50,44,53,49,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,81,184,198,66,197,0,0,0,67,111,110,118,66,105,97,115, +70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0, +0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,143,194,149,65,84,0,0, +0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44, +72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,73,12,66,65,82,0,0,0,49,54,44, +53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,97,229,208,64,84,0,0,0,49,54,44,53,49,50,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,254,212,248,64,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,53,94,186,64,92,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44, +53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44, +55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,203,161,197,64,82,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,209,34,219,64,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,72,225,250,64,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49,50,56,44,50,56, +44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56, +44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,63,53,30,65,193,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255, +255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44, +54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,189,116,3,66,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110, +116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81, +117,97,110,116,105,122,101,100,83,56,4,0,0,0,19,131,192,64,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44, +87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,80,141,23,65,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50, +44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,56,137,193,64,78,0,0,0,49,54, +44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,241,210,189,66,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70, +108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51, +50,4,0,0,0,195,245,40,65,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,88,57,4,66,79,0,0, +0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,76,0,0,0,49,54,44,54,52,44,53,54, +44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,216,163,32,66,78,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,178,157,215,66,70,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,133,235,17,65,175,0, +0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1, +0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83, +56,124,50,53,54,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49, +54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,170,241,138,66,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49, +52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,202,161,197,65,68,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +20,174,167,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,20,174,167,65,95,0,0,0,69,108,101,109,119, +105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53, +54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,109,231,187,65,78,0, +0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,37,6,185,66,174,0,0,0,67,111,110,118,66,105,97,115, +70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0, +0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50,56,44, +51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,204,204,196,66,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,10,215,19,66,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,214,120,25,66,84,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,203,161,69,65,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44, +72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,168,198,203,64,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,254,212,248,65,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,192,202,225,65,69,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78, +44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,59,223,183,66,86,0,0,0,49,54,44,50,53, +54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,182,243,157,65,76,0,0,0,49,54,44,54,52,44,53, +54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,223,79,45,66,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105, +122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,110,18,163,65,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,146,237,124,65,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,143,194,245,65,70,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72, +44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,12,2,203,65,86,0,0,0,49,54,44,50,53,54,44,49,52, +44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,145,237,124,65,83,0,0,0,49,54,44,54,52,44,53,54,44,53,54, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,170,241,242,65,67,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111, +97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51, +50,4,0,0,0,128,150,24,75,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,90,100,251,65,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,107,188,116,65,82,0,0,0,49, +54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,70,182,51,65,65,0,0,0,49,54,44,52,44,50,50, +52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50, +59,70,108,111,97,116,51,50,4,0,0,0,43,135,102,66,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,102,102,22,66,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50, +56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49, +59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,67,139,140,66,77, +0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44, +72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,236,81,120,65,86,0,0,0,49,54,44,49,50,56,44,50, +56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,65,96,133,65,77,0,0,0,49,54,44,50,53,54,44,49,52,44, +49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,20,174,231,65,194,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255, +255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54,52,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54, +52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,176,114,24,66,70,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,144,194,117,65,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +31,133,171,65,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,27,47,109,66,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,123,20,150,66,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,235,81,152,65,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47, +52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,80,141,23,65,169,0,0,0, +67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0, +0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,54, +52,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,54,52,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,54,52,44,53, +54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,246,40,28,66,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,199,75,7,66,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24, +75,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44, +87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,75,55,201,65,84,0,0,0,49,54,44,53,49,50, +44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51, +50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,215,163,112,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111, +114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2, +0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59, +81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117, +97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,207,247,243,65,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,57,180,168,65,84,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,181,243,221,65,84,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125, +59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,219,249,62, +65,84,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,176,114,104,65,63,0,0, +0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70, +108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,168,198,203,64,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50, +4,0,0,0,128,150,24,75,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72, +44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,94,186,201,64,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97, +114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0, +0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,50,53,54,44,51,44,51,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97, +110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,94,186,209,66,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67, +125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,61,10,215,64,84,0,0,0,49,54, +44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87, +44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,56,137,129,65,72,0,0,0,49,54,44,53,49,50, +44,49,44,49,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52, +59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,204,161,69,65,72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50, +4,0,0,0,129,149,131,65,77,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,250,126,138,65,75,0,0, +0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,170,241,18,65,70,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70, +108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50, +59,70,108,111,97,116,51,50,4,0,0,0,187,73,12,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,54,52, +44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,54,52,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,184,30,101,66, +72,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,57,180,8,65,86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,84,227,165,65,86,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,143,194,149,65,52,0,0,0,84,121,112,101,67,118,116,49,54,44,53,49,50,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,49,53,52,4,0,0,0,10,215,163,64,199,0,0,0,67,111, +110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53, +54,44,49,50,56,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53, +54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0, +0,80,141,151,65,68,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,248,83,99,65,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,135,22,9,66,56,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67, +44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,41,92,143,64,72,0,0,0,49,54,44,53,49, +50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,2,43,7,65,96,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0, +49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54, +44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,166,155,196,65,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,33,176,34,66,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,207,247,19,65,82,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0, +0,195,245,40,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,133,235,145,65,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116, +105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,61,10,215,65,83,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116, +105,122,101,100,83,56,4,0,0,0,37,6,1,66,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,86,14,141,65,70,0,0,0,49,54,44,50,53,54,44, +49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,234,38,113,65,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,249,126,102,67,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,135,22,249,65,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,168,198,203,64,56,0,0,0,49,54,44,53,49,50,44,49, +44,49,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0, +0,0,39,49,136,64,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,162,69,150,65,65,0,0,0,49,54,44, +53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111, +97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,134,235,209,64,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,104,145,109,65,95,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105, +122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101, +100,83,56,124,51,52,4,0,0,0,72,225,186,65,69,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,121,233,102,66,75,0,0,0,49, +54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,157,239,167,65,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,41,92,239,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78, +44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56, +4,0,0,0,57,180,72,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78, +44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,250,126,42,65,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,192,202,201,66,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,45,178,157,65,75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123, +67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,42,135,182,65,76, +0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,70,182,131,66,78,0,0,0,49,54,44,54,52,44,49,49,50, +44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,191,159,208,67,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101, +100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97, +110,116,105,122,101,100,83,56,4,0,0,0,193,202,97,65,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51, +50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,234,38,113,65,195,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52, +44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97, +110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,241,210,173,65,84,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67, +47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,57,180,136,65,195,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54, +44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49, +44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,55,44,55,59, +81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,254,212,216,65,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,67,47, +47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50, +4,0,0,0,128,150,24,75,84,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37, +51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +51,51,115,65,172,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0, +0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110, +116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101, +100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,150,67,27,66,80,0,0,0,49,54,44,54,52,44,49,49, +50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,154,153,181,67,70,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122, +101,100,83,56,4,0,0,0,76,55,201,65,85,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,84,227,21,66,76,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,196,32,184,66,71,0,0, +0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81, +117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,144,194,65,67,79,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97, +110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,173,28,26,66,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,193,202,211,67,110,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,7, +0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,55,137,193,65,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105, +122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,133,235,13,67,67,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124, +123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0, +128,150,24,75,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47, +52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,155,196,240,66,86,0,0,0,49,54, +44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,77,0,0,0,49,54,44,52, +44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59, +81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,30,133,59,66,80,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81, +117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,236,81,186,67,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,70,182,195,66,85,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52, +44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,147,24,188,66,175,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1, +0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44,50,56,44,50, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,50,53,54,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,50,53,54,44,49,44,49,59,81,117, +97,110,116,105,122,101,100,83,51,50,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,233,38,81,66,80,0,0, +0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,209,34,167,67,77,0,0,0,49,54,44,52,44,50,50, +52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97, +110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,90,100,187,64,111,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,1,0,0,0, +0,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50, +44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,49,53,52,4,0,0,0,57,180,200, +65,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,206,247,219,66, +98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +53,52,4,0,0,0,141,151,238,64,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44, +78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,125,63,231,67, +70,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,24,4,246,65,63,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111, +97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4, +0,0,0,131,192,202,64,71,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44, +67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,92,143,162,67,86,0,0,0,49,54,44,52,44,50, +50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44, +67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,95,0,0,0,69,108,101,109,119,105,115,101, +77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81, +117,97,110,116,105,122,101,100,83,56,124,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,39,49,200,65,85,0,0,0,49, +54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44, +72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,86,14,207,67,78,0,0,0,49,54,44,54, +52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,92,143,194,66,78,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100, +83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,31,133,83,67,87,0,0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83, +56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83, +56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,219,249,208,67,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59, +81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,65,0,0,0,49,54,44,53,49,50,44,49,44,49,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87, +125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,131,192,202,64,77,0,0,0, +49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52, +125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,214,163,112,65,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50, +56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,225,122,148,65,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122, +101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,53,94,186,64,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72, +44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0, +135,22,9,66,70,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44, +87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,98,16,24,66,79,0,0,0,49,54,44,49,50,56,44,50,56,44, +50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110, +116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,239,167,38,66,195,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255, +255,255,255,255,255,255,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,50,53,54,44,49,44,49,59,81,117,97,110,116,105,122, +101,100,83,56,124,49,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56, +124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,254,212,184,65,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52, +59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97, +116,51,50,4,0,0,0,50,8,132,66,58,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67, +44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,104,145,93,66,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,96,229,144,65,170,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49, +54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,53,49,50,44,53,49,50,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,53,49, +50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,52,4,0,0,0,47,221, +16,67,79,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59, +123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,225,122,36,66,84,0,0,0,49,54,44, +49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78, +44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,174,71,97,65,86,0,0,0,49,54,44,49,50,56,44, +50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,126,106,156,65,65,0,0,0,49,54,44,52,44,50,50,52,44, +50,50,52,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70, +108,111,97,116,51,50,4,0,0,0,147,237,252,66,174,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,50,56,44, +50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,50,56,44,49,50,56,44,51,44,51,59,81,117,97,110,116,105,122,101,100,83,56,124,49,44,49,50,56,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,51,50,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,140,108,159,66, +110,0,0,0,80,111,111,108,105,110,103,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,53,49,50,44,49,44,49,59, +81,117,97,110,116,105,122,101,100,83,56,124,51,52,4,0,0,0,86,14,13,66,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56, +124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101, +100,83,56,4,0,0,0,192,202,129,65,86,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72, +44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,75,55,169,65,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,102,102,38,66,87,0, +0,0,49,54,44,54,52,44,49,49,50,44,49,49,50,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,67,47, +47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,99,16,176,66,75,0,0, +0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125, +59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,174,71,161,65,77,0,0,0,49,54,44,49,50,56,44,50,56,44,50,56, +59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101, +100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,213,120,169,65,58,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78, +44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,105,145,93,66,98,0,0,0,69,108,101, +109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44, +49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,50,53,54,44,49,52,44,49,52,59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,2, +43,7,65,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,67,47,47,52,44,72,44,87,44,78,44, +67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,207,247,131,66,72,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111, +97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70, +108,111,97,116,51,50,4,0,0,0,23,217,110,66,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87, +44,67,37,52,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,76,55,105,66,67,0,0,0,49,54,44,52,44, +50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,70,108,111, +97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4, +0,0,0,53,94,186,64,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67, +47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,78,0, +0,0,49,54,44,54,52,44,53,54,44,53,54,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,191,159,74,66,67,0,0,0,49,54,44,52,44,50,50,52, +44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,70,108,111,97,116,51, +50,59,70,108,111,97,116,51,50,4,0,0,0,128,150,24,75,68,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72, +44,87,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,2,43,135,64,65,0,0, +0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,78,44,72,44,87,44,67,125,59,52, +59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,240,167,198,64,74,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123, +78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116, +51,50,4,0,0,0,128,150,24,75,65,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,47, +47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,166,155,196,64,72,0,0,0,49,54,44,52,44,50,50,52,44, +50,50,52,59,70,108,111,97,116,51,50,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,70,108, +111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,191,159,250,66,98,0,0,0,69,108,101,109,119,105,115,101,77,117,108,116,105,84,121,112,101,7,0,0,0,49,54,44,49, +50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49,50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,49,54,44,49, +50,56,44,50,56,44,50,56,59,81,117,97,110,116,105,122,101,100,83,56,124,53,52,4,0,0,0,227,165,27,65,77,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117, +97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56, +59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,84,227,197,65,77,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44, +67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83, +56,4,0,0,0,16,88,185,64,77,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67, +37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,111,18,163,65,77,0, +0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,72,44,87,44,67,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67, +37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,42,135,214,65,84,0,0,0,49,54,44,52,44,50,50,52,44, +50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59, +52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,59,223,207,65,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59, +81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122, +101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,79,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,123,78,44,72,44,87,44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110, +116,105,122,101,100,83,56,4,0,0,0,128,150,24,75,86,0,0,0,49,54,44,52,44,50,50,52,44,50,50,52,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,47,47, +51,50,44,72,44,87,44,67,37,51,50,125,59,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105, +122,101,100,83,56,4,0,0,0,128,150,24,75,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59, +123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,53,94,186,64, +75,0,0,0,49,54,44,53,49,50,44,55,44,55,59,81,117,97,110,116,105,122,101,100,83,56,124,123,67,47,47,52,44,72,44,87,44,78,44,67,37,52,125,59,123,78,44,72,44,87, +44,67,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,160,26,175,65,77,0,0,0,49,54,44,53,49,50,44,49,44, +49,59,81,117,97,110,116,105,122,101,100,83,56,124,123,78,44,67,44,72,44,87,125,59,123,78,44,67,47,47,51,50,44,72,44,87,44,67,37,51,50,125,59,52,59,81,117,97,110,116, +105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0,0,0,90,100,187,64,68,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100, +83,56,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100,83,56,4,0, +0,0,217,206,119,64,55,0,0,0,84,121,112,101,67,118,116,49,54,44,52,44,50,50,52,44,50,50,52,59,70,108,111,97,116,51,50,124,49,54,44,52,44,50,50,52,44,50,50,52, +59,81,117,97,110,116,105,122,101,100,83,56,124,48,52,4,0,0,0,73,12,18,66,75,0,0,0,49,54,44,53,49,50,44,49,44,49,59,81,117,97,110,116,105,122,101,100,83,56,124, +123,78,44,72,44,87,44,67,125,59,123,78,44,67,47,47,52,44,72,44,87,44,67,37,52,125,59,52,59,81,117,97,110,116,105,122,101,100,83,56,59,81,117,97,110,116,105,122,101,100, +83,56,4,0,0,0,90,100,187,64}; + +static const std::vector TestLayoutTransform_Wide = { +1,0,0,0,66,0,0,0,108,97,121,111,117,116,95,116,114,97,110,115,102,111,114,109,95,112,114,111,102,105,108,101,58,112,108,97,116,61,99,117,100,97,59,100,101,118,61,71,101,70, +111,114,99,101,32,82,84,88,32,50,48,56,48,32,84,105,59,99,97,112,61,55,46,53,15,0,0,0,152,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255, +255,255,255,255,255,255,255,49,54,44,49,54,44,51,50,44,51,50,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,51,44,51,59,70,108,111,97,116,51,50,124,49,44,49,54,44, +49,44,49,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,49,54,44,49,54,59,70,108,111,97,116,51,50,124,48,48,4,0,0,0,205,204,44,66,150,0,0,0,67,111,110,118, +66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0, +0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,51,44,54,52,44,54,52,59,70,108,111,97,116,51,50,124,49,54,44,51,44,51,44,51,59,70, +108,111,97,116,51,50,124,49,44,49,54,44,49,44,49,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,51,50,44,51,50,59,70,108,111,97,116,51,50,124,48,48,4,0,0,0, +245,40,220,65,150,0,0,0,67,111,110,118,66,105,97,115,70,111,114,119,97,114,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0, +0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,49,54,44,49,54,44,49,54,44,49,54,59,70,108,111,97,116, +51,50,124,49,54,44,49,54,44,51,44,51,59,70,108,111,97,116,51,50,124,49,44,49,54,44,49,44,49,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,56,44,56,59,70,108, +111,97,116,51,50,124,48,48,4,0,0,0,82,184,30,66,68,0,0,0,69,108,101,109,119,105,115,101,16,0,0,0,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124, +49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,48,4,0,0,0,242,210,205,64,68,0,0,0, +69,108,101,109,119,105,115,101,16,0,0,0,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,54, +44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,48,48,4,0,0,0,96,229,208,64,57,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,70,108,111,97,116,51,50,124, +123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,182,243,125,65,68,0,0,0,69, +108,101,109,119,105,115,101,21,0,0,0,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,54,44, +49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,48,4,0,0,0,14,45,178,64,57,0,0,0,49,54,44,49,54,44,51,50,44,51,50,59,70,108,111,97,116,51,50,124,123, +78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,145,237,60,65,55,0,0,0,49,54, +44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97, +116,51,50,4,0,0,0,226,122,20,65,68,0,0,0,69,108,101,109,119,105,115,101,21,0,0,0,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,49,54,44,49,54, +44,56,44,56,59,70,108,111,97,116,51,50,124,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124,48,48,4,0,0,0,49,8,172,64,56,0,0,0,49,54,44,51,44, +54,52,44,54,52,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51, +50,4,0,0,0,140,108,39,65,57,0,0,0,49,54,44,49,54,44,49,54,44,49,54,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44, +67,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,58,180,8,65,55,0,0,0,49,54,44,49,54,44,56,44,56,59,70,108,111,97,116,51,50,124, +123,78,44,67,44,72,44,87,125,59,123,78,44,72,44,87,44,67,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,150,67,11,65,57,0,0,0,49, +54,44,49,54,44,49,54,44,49,54,59,70,108,111,97,116,51,50,124,123,78,44,72,44,87,44,67,125,59,123,78,44,67,44,72,44,87,125,59,48,59,70,108,111,97,116,51,50,59,70, +108,111,97,116,51,50,4,0,0,0,59,223,15,65,56,0,0,0,49,54,44,51,44,54,52,44,54,52,59,70,108,111,97,116,51,50,124,123,78,44,67,44,72,44,87,125,59,123,78,44, +72,44,87,44,67,125,59,48,59,70,108,111,97,116,51,50,59,70,108,111,97,116,51,50,4,0,0,0,119,190,31,65}; diff --git a/src/gopt/test/embed_cache.py b/src/gopt/test/embed_cache.py new file mode 100644 index 00000000..db50a777 --- /dev/null +++ b/src/gopt/test/embed_cache.py @@ -0,0 +1,93 @@ +#!/usr/bin/env python3 +# MegEngine is Licensed under the Apache License, Version 2.0 (the "License") +# +# Copyright (c) 2014-2021 Megvii Inc. All rights reserved. +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +# 为了保证全局图优化里的 profiling 结果不受到 ci 环境的影响,所以把写死的 profiling 结果存到了 cache 里去, +# 每次跑测试会从内存里读取 cache 里的 profiling 结果,然后根据 profiling 结果去做全局图优化。 +# 这个脚本用来把 dump 出去的 cache 文件转化成 cache 的头文件,用于测试时读取数据。 +# 如果在 src/gopt/test/layout_transform_pass.cpp 里添加了全局图优化相关的测试,则需要考虑用这个脚本来 +# 处理一下 profiling 数据。 +# 1. 首先将 src/gopt/test/layout_transform_pass.cpp 中的 `#define MGB_WITH_CACHED_TEST 1` 修改为 +# `#define MGB_WITH_CACHED_TEST 0` +# 2. 编译megbrain_test,并运行所有全局图优化相关测试: +# ./megbrain_test --gtest_filter="*LayoutTransform*" +# 3. 用这个脚本把所有的cache文件打包在一起 +# python3 embed_cache.py -o cache_data.h $(ls /path/to/cache/*.cache) +# 4. 将步骤1中的 define 改回去,这样 profile 过程用到的是 cache 下来的数据。随后可以重新构建 megbrain_test , +# 验证测试是否正确。 +import os.path +import logging +import hashlib +import argparse +import struct +import itertools +import sys +import subprocess + +logger = logging.getLogger(__name__) +logging.basicConfig(level=logging.WARNING, format='%(asctime)-15s %(message)s') + +CHAR_MAP = {i: r'{}'.format(i) for i in range(256)} + +def _u32(data): + return struct.unpack('\n') + fout.write('#include \n') + for k, v in sorted(src_map.items()): + fout.write(""" +static const std::vector {} = {{ +""".format(k.replace('.', '_'))) + fout.write('{}'.format(v)) + fout.write('};\n') + + def invoke(self, output): + logger.info('generate cache_data.h ...') + fname2cache_data = {} + for fname in self._cache_files: + base, ext = os.path.splitext(os.path.basename(fname)) + assert ext == ".cache", "ext: {}, fname {}".format(ext, fname) + assert base not in fname2cache_data, "duplicated kernel: " + base + fname2cache_data[base] = self.gen_cache_data(fname) + with open(output, 'w') as fout: + self.gen_cache_data_header(fout, fname2cache_data) + logger.info('done') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='embed cache into cache header file', + formatter_class=argparse.ArgumentDefaultsHelpFormatter) + parser.add_argument('-o', '--output', help='output source file', + required=True) + parser.add_argument('cache', help='cache files to be embedded', nargs='+') + args = parser.parse_args() + cache_generator = CacheDataGenerator(args.cache) + cache_generator.invoke(args.output) diff --git a/src/gopt/test/layout_transform_pass.cpp b/src/gopt/test/layout_transform_pass.cpp index e9cfb7e1..8cba8b16 100644 --- a/src/gopt/test/layout_transform_pass.cpp +++ b/src/gopt/test/layout_transform_pass.cpp @@ -23,6 +23,12 @@ #include "megbrain/plugin/profiler.h" #include "megbrain/serialization/serializer.h" +#define MGB_WITH_CACHED_TEST 1 + +#if MGB_WITH_CACHED_TEST +#include "./cache_data.h" +#endif + using namespace mgb; using namespace gopt; using namespace serialization; @@ -53,6 +59,78 @@ size_t find_opr_num(SymbolVar endpoint) { cg::DepOprIter{cb}.add(endpoint.node()->owner_opr()); return opr_num; } + +using OprFormat = Problem::OprFormat; +OprFormat tensor_formats_to_opr_format(TensorFormats tensor_format) { + switch (tensor_format) { + case TensorFormats::NCHW: + return OprFormat::NCHW; + case TensorFormats::NCHWc4: + return OprFormat::NCHW4; + case TensorFormats::NCHWc8: + return OprFormat::NCHW8; + case TensorFormats::NCHWc32: + return OprFormat::NCHW32; + case TensorFormats::NCHWc64: + return OprFormat::NCHW64; + case TensorFormats::NHWC: + return OprFormat::NHWC; + case TensorFormats::CHWNc4: + return OprFormat::CHWN4; + default: + mgb_throw(MegBrainError, "tensor format(%u) is not supported", + static_cast(tensor_format)); + } +} + +class ProfilerMock : public ProfilerImpl { +public: + ProfilerMock(const uint8_t* bin, size_t size) { + mgb_assert(bin != nullptr); + ProfilerCache::inst().set_impl( + std::make_unique(bin, size)); + } + ~ProfilerMock() { + // reset in memory cache + ProfilerCache::inst().set_impl( + std::make_unique()); + } + +private: + float profile_operator(const OperatorNodeBase* opr, + TensorFormats base_format, + TensorFormats tensor_format, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const override { + ProfilerCache::Key key{opr, tensor_formats_to_opr_format(tensor_format), + extra_attribute}; + auto ret = ProfilerCache::inst().get(key); + if (ret.valid()) + return ret.val(); + mgb_assert(false); + } + float profile_operator(const OperatorNodeBase* opr, + const OprTensorFormatsConfiguration& base_config, + const OprTensorFormatsConfiguration& config, + ReformatAttribute extra_attribute = + ReformatAttribute::DEFAULT) const override { + ProfilerCache::Key key{opr, config.opr_format, extra_attribute}; + std::string tmp; + tmp.reserve(key.blob().size); + auto ret = ProfilerCache::inst().get(key); + if (ret.valid()) + return ret.val(); + mgb_assert(false); + } + float profile_var_node(const VarNode* var, TensorFormats base_format, + const ReformatKey& key) const override { + ProfilerCache::Key pf_key{var, key}; + auto ret = ProfilerCache::inst().get(pf_key); + if (ret.valid()) + return ret.val(); + mgb_assert(false); + } +}; } // namespace #if MGB_CUDA @@ -96,15 +174,23 @@ TEST(TestLayoutTransform, Resnet18_QS8) { OprFormat::NCHW, TensorFormats::NCHW, Target::UNSPEC, ReformatAttribute::AUTO_PADDING_NHWC}; auto ctx = std::make_unique( - std::move(opr_list), std::move(available_tensor_formats), attribute); - ctx->add_opr_config( - opr::ConvBiasForward::typeinfo(), - {OprFormat::NCHW4, OprFormat::NCHW32, OprFormat::CHWN4, OprFormat::NHWC}) - .add_opr_config( - opr::PoolingForward::typeinfo(), - {OprFormat::NCHW4, OprFormat::NCHW32, OprFormat::NHWC, - OprFormat::CHWN4}); - auto profiler = ProfilerBase::make_profiler(); + std::move(opr_list), std::move(available_tensor_formats), + attribute); + ctx->add_opr_config(opr::ConvBiasForward::typeinfo(), + {OprFormat::NCHW4, OprFormat::NCHW32, OprFormat::CHWN4, + OprFormat::NHWC}) + .add_opr_config(opr::PoolingForward::typeinfo(), + {OprFormat::NCHW4, OprFormat::NCHW32, + OprFormat::NHWC, OprFormat::CHWN4}); +#if MGB_WITH_CACHED_TEST + auto profiler = std::make_unique( + static_cast( + TestLayoutTransform_Resnet18_QS8.data()), + TestLayoutTransform_Resnet18_QS8.size()); +#else + auto profiler = ProfilerBase::make_cached_profiler( + "TestLayoutTransform.Resnet18_QS8.cache"); +#endif std::unique_ptr solver{ new DynamicProgrammingSolver(std::move(profiler))}; auto new_output = @@ -190,7 +276,15 @@ TEST(TestLayoutTransform, Resnet18_QS4) { opr::PoolingForward::typeinfo(), {OprFormat::NCHW4, OprFormat::NCHW32, OprFormat::NCHW64, OprFormat::NHWC, OprFormat::CHWN4}); - auto profiler = ProfilerBase::make_profiler(); +#if MGB_WITH_CACHED_TEST + auto profiler = std::make_unique( + static_cast( + TestLayoutTransform_Resnet18_QS4.data()), + TestLayoutTransform_Resnet18_QS4.size()); +#else + auto profiler = ProfilerBase::make_cached_profiler( + "TestLayoutTransform.Resnet18_QS4.cache"); +#endif std::unique_ptr solver{ new DynamicProgrammingSolver(std::move(profiler))}; auto new_output = @@ -305,7 +399,15 @@ TEST(TestLayoutTransform, Detection_QS8) { opr::PoolingForward::typeinfo(), {OprFormat::NCHW4, OprFormat::NCHW32, OprFormat::NCHW64, OprFormat::NHWC, OprFormat::CHWN4}); - auto profiler = ProfilerBase::make_profiler(); +#if MGB_WITH_CACHED_TEST + auto profiler = std::make_unique( + static_cast( + TestLayoutTransform_Detection_QS8.data()), + TestLayoutTransform_Detection_QS8.size()); +#else + auto profiler = ProfilerBase::make_cached_profiler( + "TestLayoutTransform.Detection_QS8.cache"); +#endif std::unique_ptr solver{ new DynamicProgrammingSolver(std::move(profiler))}; auto new_outputs = @@ -375,7 +477,15 @@ TEST(TestLayoutTransform, Detection_QS4) { opr::PoolingForward::typeinfo(), {OprFormat::NCHW4, OprFormat::NCHW32, OprFormat::NCHW64, OprFormat::NHWC, OprFormat::CHWN4}); - auto profiler = ProfilerBase::make_profiler(); +#if MGB_WITH_CACHED_TEST + auto profiler = std::make_unique( + static_cast( + TestLayoutTransform_Detection_QS4.data()), + TestLayoutTransform_Detection_QS4.size()); +#else + auto profiler = ProfilerBase::make_cached_profiler( + "TestLayoutTransform.Detection_QS4.cache"); +#endif std::unique_ptr solver{ new DynamicProgrammingSolver(std::move(profiler))}; auto new_outputs = @@ -443,10 +553,18 @@ TEST(TestLayoutTransform, Wide) { OprFormat::NCHW, TensorFormats::NCHW, Target::UNSPEC, ReformatAttribute::DEFAULT}; auto ctx = std::make_unique( - std::move(opr_list), std::move(available_tensor_formats), attribute); - ctx->add_opr_config( - opr::ConvBiasForward::typeinfo(), {OprFormat::NCHW, OprFormat::NHWC}); - auto profiler = ProfilerBase::make_profiler(); + std::move(opr_list), std::move(available_tensor_formats), + attribute); + ctx->add_opr_config(opr::ConvBiasForward::typeinfo(), + {OprFormat::NCHW, OprFormat::NHWC}); +#if MGB_WITH_CACHED_TEST + auto profiler = std::make_unique( + static_cast(TestLayoutTransform_Wide.data()), + TestLayoutTransform_Wide.size()); +#else + auto profiler = ProfilerBase::make_cached_profiler( + "TestLayoutTransform.Wide.cache"); +#endif std::unique_ptr solver{ new DynamicProgrammingSolver(std::move(profiler))}; auto v = gopt::GraphOptimizer{} @@ -463,12 +581,8 @@ TEST(TestLayoutTransform, Wide) { auto func = network.graph->compile({{sym_o, {}}}); func->execute(); gprof.to_json_full(func.get())->writeto_fpath(output_file("wide.json")); - /// check global layout transform pass, no dimshuffle - /// disable the following check, to make ci stable. -#if 0 auto nr_dimshuffle = find_opr_num(sym_o); ASSERT_EQ(nr_dimshuffle, 0u); -#endif auto nr_param_merge = find_opr_num(sym_o); ASSERT_EQ(nr_param_merge, 1u); /// check first conv format @@ -477,48 +591,6 @@ TEST(TestLayoutTransform, Wide) { ASSERT_EQ(cast.param().format, opr::ConvBias::Param::Format::NCHW); } -TEST(TestLayoutTransform, ElemwiseMultiType) { - REQUIRE_GPU(1); - auto cn = CompNode::load("gpu0"); - Network network(cn); - auto x = network.add_var("x", {64, 64, 1, 2}); - auto y = network.add_var("y", {64, 64, 1, 2}); - x = network.add_type_cvt(x, dtype::QuantizedS4{1.f}); - y = network.add_type_cvt(y, dtype::QuantizedS4{1.f}); - auto x_ = network.add_type_cvt(x, dtype::Float32()); - auto y_ = network.add_type_cvt(y, dtype::Float32()); - auto z = network.add_elemwise( - {x_, y_}, dtype::Float32(), opr::Elemwise::Mode::FUSE_ADD_RELU); - z = network.add_type_cvt(z, dtype::QuantizedS4{1.f}); - z = network.add_type_cvt(z, dtype::Float32()); - auto z2 = network.add_elemwise( - {x, y}, dtype::QuantizedS4{1.f}, opr::Elemwise::Mode::FUSE_ADD_RELU); - z2 = network.add_type_cvt(z2, dtype::Float32()); - HostTensorND t1; - auto func1 = network.graph->compile({make_callback_copy(z, t1)}); - func1->execute(); - - HostTensorND t3; - auto func3 = network.graph->compile({make_callback_copy(z2, t3)}); - func3->execute(); - - auto alter_x = opr::RelayoutFormat::make( - x, megdnn::param::RelayoutFormat::Mode::NCHW_NCHW64); - auto alter_y = opr::RelayoutFormat::make( - y, megdnn::param::RelayoutFormat::Mode::NCHW_NCHW64); - auto alter_z = network.add_elemwise( - {alter_x, alter_y}, dtype::QuantizedS4{1.f}, - opr::Elemwise::Mode::FUSE_ADD_RELU); - alter_z = opr::RelayoutFormat::make( - alter_z, megdnn::param::RelayoutFormat::Mode::NCHW64_NCHW); - alter_z = network.add_type_cvt(alter_z, dtype::Float32()); - HostTensorND t2; - auto func2 = network.graph->compile({make_callback_copy(alter_z, t2)}); - func2->execute(); - // MGB_ASSERT_TENSOR_EQ(t1, t3); - MGB_ASSERT_TENSOR_EQ(t2, t3); -} - #if CUDA_VERSION >= 10020 TEST(TestLayoutTransform, DetectionHead) { REQUIRE_GPU(1); @@ -600,8 +672,15 @@ TEST(TestLayoutTransform, DetectionHead) { .add_opr_config( opr::WarpPerspectiveForward::typeinfo(), {OprFormat::NHWC, OprFormat::NCHW4, OprFormat::NCHW64}); - - auto profiler = ProfilerBase::make_profiler(); +#if MGB_WITH_CACHED_TEST + auto profiler = std::make_unique( + static_cast( + TestLayoutTransform_DetectionHead.data()), + TestLayoutTransform_DetectionHead.size()); +#else + auto profiler = ProfilerBase::make_cached_profiler( + "TestLayoutTransform.DetectionHead.cache"); +#endif std::unique_ptr solver{ new DynamicProgrammingSolver(std::move(profiler))}; auto new_out_vars =