From a9df5c0e564e8759375c17338dfb4b4249f3fcf2 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 23 Jun 2026 13:02:15 -0300 Subject: [PATCH 1/3] feat(protocol)!: seed protocol contract registration nullifiers at genesis The world-state genesis only seeded prefilled public data, never the registration nullifiers for the bundled protocol contract classes. The archiver preloads those classes at a synthetic block 0, so a permissionless on-chain re-publish of a bundled protocol class id was protocol-valid (the class-id nullifier was absent at genesis), and when the archiver replayed that block it hit a duplicate-key throw on the block-0 preload and stalled L1 sync. Seed the canonical protocol contract registration nullifiers into the genesis nullifier tree so such a re-publish pushes an already-existing nullifier and is rejected as a duplicate nullifier before it ever reaches the archiver. - Generate ProtocolContractGenesisNullifiers (siloed class-id and magic-address instance nullifiers, sorted ascending as the indexed tree requires) in protocol-contracts. - Add DEFAULT_GENESIS_DATA (the canonical genesis: empty public data + the protocol nullifiers) and make GenesisData.prefilledNullifiers required. Production world-state defaults switch from EMPTY_GENESIS_DATA to DEFAULT_GENESIS_DATA; EMPTY_GENESIS_DATA now seeds an empty nullifier tree for low-level tree tests only. - Plumb prefilled_nullifiers through the native WorldState and the napi wrapper, enforcing uniqueness/strict-increase before handing leaves to C++. BREAKING CHANGE: seeding the nullifiers changes the genesis nullifier-tree root, hence the genesis block header hash and genesis archive root. Recomputed via WorldStateTest.GetInitialTreeInfoForAllTrees and propagated through constants.nr to constants.gen.ts, ConstantsGen.sol and aztec_constants.hpp: GENESIS_ARCHIVE_ROOT = 0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc, GENESIS_BLOCK_HEADER_HASH = 0x1302a9e6f643ec596522764c20e5d08d60d33988f11c1559ee13bcd2e2bd8e5d. Adds an e2e regression test that re-publishing a bundled protocol class fails with a duplicate nullifier. The instance nullifier cannot be triggered on-chain (a publish emits the derived address, never a magic protocol address), which is documented in the test. Fixes A-1257 --- .../barretenberg/aztec/aztec_constants.hpp | 4 +- .../nodejs_module/world_state/world_state.cpp | 33 ++++++++-- .../barretenberg/world_state/world_state.cpp | 16 ++++- .../barretenberg/world_state/world_state.hpp | 6 ++ .../world_state/world_state.test.cpp | 27 +++++++- .../src/barretenberg/wsdb/wsdb_ipc_server.cpp | 6 ++ .../deploy/DeployRollupForUpgradeV5.s.sol | 2 +- .../src/core/libraries/ConstantsGen.sol | 2 +- .../test/fixtures/empty_checkpoint_1.json | 22 +++---- .../test/fixtures/empty_checkpoint_2.json | 24 ++++---- .../test/fixtures/mixed_checkpoint_1.json | 24 ++++---- .../test/fixtures/mixed_checkpoint_2.json | 26 ++++---- .../test/fixtures/single_tx_checkpoint_1.json | 24 ++++---- .../test/fixtures/single_tx_checkpoint_2.json | 26 ++++---- .../crates/types/src/constants.nr | 4 +- .../aztec/src/mainnet_compatibility.test.ts | 2 +- yarn-project/constants/src/constants.gen.ts | 4 +- .../protocol_class_publish.test.ts | 61 +++++++++++++++++++ .../tx_validator/tx_validator_bench.test.ts | 4 +- .../protocol-contracts/src/genesis_data.ts | 16 +++++ yarn-project/protocol-contracts/src/index.ts | 1 + .../src/scripts/generate_data.ts | 33 +++++++++- ...ghtweight_checkpoint_builder.bench.test.ts | 3 +- .../lightweight_checkpoint_builder.test.ts | 3 +- .../prover-client/src/mocks/test_context.ts | 3 +- .../stdlib/src/world-state/genesis_data.ts | 19 +++++- .../src/native/native_world_state.test.ts | 5 +- .../src/native/native_world_state.ts | 11 ++-- .../src/native/native_world_state_instance.ts | 18 +++++- .../world-state/src/synchronizer/factory.ts | 5 +- yarn-project/world-state/src/testing.ts | 13 +++- 31 files changed, 338 insertions(+), 109 deletions(-) create mode 100644 yarn-project/end-to-end/src/e2e_deploy_contract/protocol_class_publish.test.ts create mode 100644 yarn-project/protocol-contracts/src/genesis_data.ts diff --git a/barretenberg/cpp/src/barretenberg/aztec/aztec_constants.hpp b/barretenberg/cpp/src/barretenberg/aztec/aztec_constants.hpp index 4e63ef9ea318..316bb9dfd465 100644 --- a/barretenberg/cpp/src/barretenberg/aztec/aztec_constants.hpp +++ b/barretenberg/cpp/src/barretenberg/aztec/aztec_constants.hpp @@ -17,8 +17,8 @@ #define MAX_TOTAL_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX 64 #define MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX 63 #define MAX_L2_TO_L1_MSGS_PER_TX 8 -#define GENESIS_BLOCK_HEADER_HASH "0x0e7bf88e8833c27b0fca6be614ecc2c63def7bffa35b3ccfa1caff3e39e0c0d2" -#define GENESIS_ARCHIVE_ROOT "0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5" +#define GENESIS_BLOCK_HEADER_HASH "0x1302a9e6f643ec596522764c20e5d08d60d33988f11c1559ee13bcd2e2bd8e5d" +#define GENESIS_ARCHIVE_ROOT "0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc" #define MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS 3000 #define MAX_PROTOCOL_CONTRACTS 11 #define CONTRACT_CLASS_REGISTRY_CONTRACT_ADDRESS 1 diff --git a/barretenberg/cpp/src/barretenberg/nodejs_module/world_state/world_state.cpp b/barretenberg/cpp/src/barretenberg/nodejs_module/world_state/world_state.cpp index 150540a270ca..65ffb710d2f1 100644 --- a/barretenberg/cpp/src/barretenberg/nodejs_module/world_state/world_state.cpp +++ b/barretenberg/cpp/src/barretenberg/nodejs_module/world_state/world_state.cpp @@ -48,6 +48,7 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) std::unordered_map tree_height; std::unordered_map tree_prefill; std::vector prefilled_public_data; + std::vector prefilled_nullifiers; std::vector tree_ids{ MerkleTreeId::NULLIFIER_TREE, MerkleTreeId::NOTE_HASH_TREE, MerkleTreeId::PUBLIC_DATA_TREE, MerkleTreeId::L1_TO_L2_MESSAGE_TREE, MerkleTreeId::ARCHIVE, @@ -112,7 +113,28 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) throw Napi::TypeError::New(env, "Prefilled public data must be an array"); } - size_t initial_header_generator_point_index = 4; + size_t prefilled_nullifiers_index = 4; + if (info.Length() > prefilled_nullifiers_index && info[prefilled_nullifiers_index].IsArray()) { + Napi::Array arr = info[prefilled_nullifiers_index].As(); + for (uint32_t i = 0; i < arr.Length(); ++i) { + if (!arr.Get(i).IsBuffer()) { + throw Napi::TypeError::New(env, "Prefilled nullifier value must be a buffer"); + } + Napi::Buffer nullifier_buf = arr.Get(i).As>(); + if (nullifier_buf.Length() != 32) { + throw Napi::TypeError::New(env, "Prefilled nullifier value must be a 32-byte buffer"); + } + uint256_t nullifier = 0; + for (size_t j = 0; j < 32; ++j) { + nullifier = (nullifier << 8) | nullifier_buf[j]; + } + prefilled_nullifiers.emplace_back(nullifier); + } + } else { + throw Napi::TypeError::New(env, "Prefilled nullifiers must be an array"); + } + + size_t initial_header_generator_point_index = 5; if (info.Length() > initial_header_generator_point_index && info[initial_header_generator_point_index].IsNumber()) { initial_header_generator_point = info[initial_header_generator_point_index].As().Uint32Value(); } else { @@ -120,7 +142,7 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) } uint64_t genesis_timestamp = 0; - size_t genesis_timestamp_index = 5; + size_t genesis_timestamp_index = 6; if (info.Length() > genesis_timestamp_index) { if (info[genesis_timestamp_index].IsNumber()) { genesis_timestamp = static_cast(info[genesis_timestamp_index].As().Int64Value()); @@ -130,7 +152,7 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) } // optional parameters - size_t map_size_index = 6; + size_t map_size_index = 7; if (info.Length() > map_size_index) { if (info[map_size_index].IsObject()) { Napi::Object obj = info[map_size_index].As(); @@ -160,7 +182,7 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) } } - size_t thread_pool_size_index = 7; + size_t thread_pool_size_index = 8; if (info.Length() > thread_pool_size_index) { if (!info[thread_pool_size_index].IsNumber()) { throw Napi::TypeError::New(env, "Thread pool size must be a number"); @@ -173,7 +195,7 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) // commits never block on fsync, files stay sparse, and a crash mid-write yields an // unrecoverable env. Intended for throwaway scratch state (TXE test sessions). bool ephemeral = false; - size_t ephemeral_index = 8; + size_t ephemeral_index = 9; if (info.Length() > ephemeral_index) { if (!info[ephemeral_index].IsBoolean()) { throw Napi::TypeError::New(env, "Ephemeral flag must be a boolean"); @@ -187,6 +209,7 @@ WorldStateWrapper::WorldStateWrapper(const Napi::CallbackInfo& info) tree_height, tree_prefill, prefilled_public_data, + prefilled_nullifiers, initial_header_generator_point, genesis_timestamp, ephemeral); diff --git a/barretenberg/cpp/src/barretenberg/world_state/world_state.cpp b/barretenberg/cpp/src/barretenberg/world_state/world_state.cpp index e2076c3144c5..e95a73a41413 100644 --- a/barretenberg/cpp/src/barretenberg/world_state/world_state.cpp +++ b/barretenberg/cpp/src/barretenberg/world_state/world_state.cpp @@ -39,6 +39,7 @@ WorldState::WorldState(uint64_t thread_pool_size, const std::unordered_map& tree_heights, const std::unordered_map& tree_prefill, const std::vector& prefilled_public_data, + const std::vector& prefilled_nullifiers, uint32_t initial_header_generator_point, uint64_t genesis_timestamp, bool ephemeral) @@ -51,7 +52,7 @@ WorldState::WorldState(uint64_t thread_pool_size, { // We set the max readers to be high, at least the number of given threads or the default if higher uint64_t maxReaders = std::max(thread_pool_size, DEFAULT_MIN_NUMBER_OF_READERS); - create_canonical_fork(data_dir, map_size, prefilled_public_data, maxReaders, ephemeral); + create_canonical_fork(data_dir, map_size, prefilled_public_data, prefilled_nullifiers, maxReaders, ephemeral); try { attempt_tree_resync(); } catch (std::exception& e) { @@ -73,6 +74,7 @@ WorldState::WorldState(uint64_t thread_pool_size, tree_heights, tree_prefill, std::vector(), + std::vector(), initial_header_generator_point, genesis_timestamp, ephemeral) @@ -84,6 +86,7 @@ WorldState::WorldState(uint64_t thread_pool_size, const std::unordered_map& tree_heights, const std::unordered_map& tree_prefill, const std::vector& prefilled_public_data, + const std::vector& prefilled_nullifiers, uint32_t initial_header_generator_point, uint64_t genesis_timestamp, bool ephemeral) @@ -99,6 +102,7 @@ WorldState::WorldState(uint64_t thread_pool_size, tree_heights, tree_prefill, prefilled_public_data, + prefilled_nullifiers, initial_header_generator_point, genesis_timestamp, ephemeral) @@ -118,6 +122,7 @@ WorldState::WorldState(uint64_t thread_pool_size, tree_heights, tree_prefill, std::vector(), + std::vector(), initial_header_generator_point, genesis_timestamp, ephemeral) @@ -126,6 +131,7 @@ WorldState::WorldState(uint64_t thread_pool_size, void WorldState::create_canonical_fork(const std::string& dataDir, const std::unordered_map& dbSize, const std::vector& prefilled_public_data, + const std::vector& prefilled_nullifiers, uint64_t maxReaders, bool ephemeral) { @@ -148,9 +154,15 @@ void WorldState::create_canonical_fork(const std::string& dataDir, { uint32_t levels = _tree_heights.at(MerkleTreeId::NULLIFIER_TREE); index_t initial_size = _initial_tree_size.at(MerkleTreeId::NULLIFIER_TREE); + std::vector prefilled_nullifier_leaves; + prefilled_nullifier_leaves.reserve(prefilled_nullifiers.size()); + for (const auto& nullifier : prefilled_nullifiers) { + prefilled_nullifier_leaves.emplace_back(nullifier); + } auto store = std::make_unique( getMerkleTreeName(MerkleTreeId::NULLIFIER_TREE), levels, _persistentStores->nullifierStore); - auto tree = std::make_unique(std::move(store), _workers, initial_size); + auto tree = + std::make_unique(std::move(store), _workers, initial_size, prefilled_nullifier_leaves); fork->_trees.insert({ MerkleTreeId::NULLIFIER_TREE, TreeWithStore(std::move(tree)) }); } { diff --git a/barretenberg/cpp/src/barretenberg/world_state/world_state.hpp b/barretenberg/cpp/src/barretenberg/world_state/world_state.hpp index c145138bc4e2..1a07e4e4d94b 100644 --- a/barretenberg/cpp/src/barretenberg/world_state/world_state.hpp +++ b/barretenberg/cpp/src/barretenberg/world_state/world_state.hpp @@ -82,11 +82,15 @@ class WorldState { const std::unordered_map& tree_heights, const std::unordered_map& tree_prefill, const std::vector& prefilled_public_data, + const std::vector& prefilled_nullifiers, uint32_t initial_header_generator_point, uint64_t genesis_timestamp = 0, bool ephemeral = false); /** + * @param prefilled_nullifiers Nullifier leaves to pre-insert into the genesis nullifier tree (e.g. the protocol + * contract registration nullifiers). Must be unique and strictly increasing in field value, and + * distinct from the padding leaves implied by the nullifier tree prefill size. * @param ephemeral When true, every underlying LMDB env opens with `MDB_NOSYNC | * MDB_NOMETASYNC`. Commits return without waiting for fsync; the kernel * flushes lazily, files stay sparse. Intended for throwaway scratch @@ -99,6 +103,7 @@ class WorldState { const std::unordered_map& tree_heights, const std::unordered_map& tree_prefill, const std::vector& prefilled_public_data, + const std::vector& prefilled_nullifiers, uint32_t initial_header_generator_point, uint64_t genesis_timestamp = 0, bool ephemeral = false); @@ -326,6 +331,7 @@ class WorldState { void create_canonical_fork(const std::string& dataDir, const std::unordered_map& dbSize, const std::vector& prefilled_public_data, + const std::vector& prefilled_nullifiers, uint64_t maxReaders, bool ephemeral); diff --git a/barretenberg/cpp/src/barretenberg/world_state/world_state.test.cpp b/barretenberg/cpp/src/barretenberg/world_state/world_state.test.cpp index 4b6181fc9c98..a2c84ec85ade 100644 --- a/barretenberg/cpp/src/barretenberg/world_state/world_state.test.cpp +++ b/barretenberg/cpp/src/barretenberg/world_state/world_state.test.cpp @@ -168,13 +168,35 @@ void assert_fork_state_unchanged(const WorldState& ws, TEST_F(WorldStateTest, GetInitialTreeInfoForAllTrees) { - WorldState ws(thread_pool_size, data_dir, map_size, tree_heights, tree_prefill, initial_header_generator_point); + // The canonical protocol contract registration nullifiers seeded into the genesis nullifier tree in production. + // These must stay in sync with `ProtocolContractGenesisNullifiers` in + // yarn-project/protocol-contracts/src/protocol_contract_data.ts (regenerated from the noir artifacts). They are + // sorted ascending because the indexed nullifier tree requires its prefilled leaves to be unique and strictly + // increasing. The genesis archive root and block header hash below depend on these values. + std::vector prefilled_nullifiers = { + bb::fr("0x005c0a9bddf634b60b266dddcd84552e9b7845b43d5d1a938d996e6709793839"), + bb::fr("0x0d99507b7ecac720c73bf197a0e7366a5ed80c1c1b0afe8ff8c6ecc7b5a7aefe"), + bb::fr("0x0eb50b367fb754d3a7d1238bfc105cc9b391a02e187be69038876ae9a502e877"), + bb::fr("0x0eef0cc0fb564969f5f28dfb46ec3c271dd4cf4af1d355abf8d89ff9f6265000"), + bb::fr("0x1cea539e01abaa5db980e7ff52ef0d2a7772310306ac625783ae435756ee326d"), + bb::fr("0x237d1818f0030cf4062b26f367a2c8ba0faa6dfaa7349d8df1b6c237d0985568"), + }; + WorldState ws(thread_pool_size, + data_dir, + map_size, + tree_heights, + tree_prefill, + std::vector(), + prefilled_nullifiers, + initial_header_generator_point); { auto info = ws.get_tree_info(WorldStateRevision::committed(), MerkleTreeId::NULLIFIER_TREE); + // The prefilled nullifiers occupy the last slots of the 128-leaf initial prefill region (they replace padding + // leaves rather than being appended), so the tree size stays 128 but the root reflects the seeded values. EXPECT_EQ(info.meta.size, 128); EXPECT_EQ(info.meta.depth, tree_heights.at(MerkleTreeId::NULLIFIER_TREE)); - EXPECT_EQ(info.meta.root, bb::fr("0x18935581a8ed73d08ffd00386fba55ba6c89f3ab848a76b8fedfa9034cee0454")); + EXPECT_EQ(info.meta.root, bb::fr("0x1bcda34f33b87d40db8bb8ee1378ef7123c16c197da1ded6ea47659230559f42")); } { @@ -225,6 +247,7 @@ TEST_F(WorldStateTest, GetInitialTreeInfoWithPrefilledPublicData) tree_heights, tree_prefill, prefilled_values, + std::vector(), initial_header_generator_point); WorldState ws(thread_pool_size, data_dir, map_size, tree_heights, tree_prefill, initial_header_generator_point); diff --git a/barretenberg/cpp/src/barretenberg/wsdb/wsdb_ipc_server.cpp b/barretenberg/cpp/src/barretenberg/wsdb/wsdb_ipc_server.cpp index b124326e8347..c54536721116 100644 --- a/barretenberg/cpp/src/barretenberg/wsdb/wsdb_ipc_server.cpp +++ b/barretenberg/cpp/src/barretenberg/wsdb/wsdb_ipc_server.cpp @@ -213,12 +213,18 @@ int execute_wsdb_server(const std::string& input_path, // Create WorldState std::cerr << "Creating WorldState at " << data_dir << " with " << threads << " threads" << '\n'; + // This standalone IPC server is non-production tooling and does not accept prefilled genesis nullifiers over the + // wire (the production node path is the napi nodejs_module, which seeds the canonical protocol contract + // registration nullifiers). It must NOT be used to initialize canonical/consensus genesis: an empty nullifier set + // here yields a different genesis root than production and would diverge from consensus. + std::vector prefilled_nullifiers; auto ws = std::make_unique(threads, data_dir, map_size, tree_height, tree_prefill, prefilled_public_data, + prefilled_nullifiers, initial_header_generator_point, genesis_timestamp); diff --git a/l1-contracts/script/deploy/DeployRollupForUpgradeV5.s.sol b/l1-contracts/script/deploy/DeployRollupForUpgradeV5.s.sol index bfb2283ca1e6..2b63b52f7bb5 100644 --- a/l1-contracts/script/deploy/DeployRollupForUpgradeV5.s.sol +++ b/l1-contracts/script/deploy/DeployRollupForUpgradeV5.s.sol @@ -149,7 +149,7 @@ contract DeployRollupForUpgradeV5 is Script, StdAssertions { bytes32 internal constant EXPECTED_PROTOCOL_CONTRACTS_HASH = 0x016d8ee101b952bcb395235a0ab89707008374dda24f70c1f3911f1b0539d6c4; bytes32 internal constant EXPECTED_GENESIS_ARCHIVE_ROOT = - 0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5; + 0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc; uint256 internal constant ENTRY_QUEUE_BOOTSTRAP_VALIDATOR_SET_SIZE = 500; uint256 internal constant ENTRY_QUEUE_BOOTSTRAP_FLUSH_SIZE = 4; diff --git a/l1-contracts/src/core/libraries/ConstantsGen.sol b/l1-contracts/src/core/libraries/ConstantsGen.sol index 54d849e5893a..301ee1728323 100644 --- a/l1-contracts/src/core/libraries/ConstantsGen.sol +++ b/l1-contracts/src/core/libraries/ConstantsGen.sol @@ -20,7 +20,7 @@ library Constants { uint256 internal constant INITIAL_CHECKPOINT_NUMBER = 1; uint256 internal constant MAX_CHECKPOINTS_PER_EPOCH = 32; uint256 internal constant GENESIS_ARCHIVE_ROOT = - 10_619_256_997_260_439_436_842_531_499_967_995_403_253_967_496_480_475_679_746_178_797_053_672_406_517; + 2_811_985_237_115_337_302_441_007_096_010_206_688_216_126_612_881_585_569_089_559_449_761_808_235_996; uint256 internal constant EMPTY_EPOCH_OUT_HASH = 355_785_372_471_781_095_838_790_036_702_437_931_769_306_153_278_986_832_745_847_530_947_941_691_539; uint256 internal constant FEE_JUICE_ADDRESS = 3; diff --git a/l1-contracts/test/fixtures/empty_checkpoint_1.json b/l1-contracts/test/fixtures/empty_checkpoint_1.json index a59c66145db8..1e945ebacc5f 100644 --- a/l1-contracts/test/fixtures/empty_checkpoint_1.json +++ b/l1-contracts/test/fixtures/empty_checkpoint_1.json @@ -25,29 +25,29 @@ "l2ToL1Messages": [] }, "checkpoint": { - "archive": "0x09d45c1e01b8596153838a068ddb470ead95e6e1e151f40b4d48664c1e311af6", - "blobCommitments": "0x01b5ee84e13509320e7da39921b53268c6e918a8981cc76cea986944ee28cebf6f6792d882657deafbc05c8acae3e0e3c0", - "batchedBlobInputs": "0x01851e02ace4d00c5648b2c63e082a6b23bbb7409c4b56f593b30ffd179f37482294e64217fe3e55d50b62a2d8de4b8cebe8b27dcbb32271b1c2745551eb4e5636f3a36a62e42bada7d17029a10c09583af4da2dca90062ca5c55a7478ebae8db5ee84e13509320e7da39921b53268c6e918a8981cc76cea986944ee28cebf6f6792d882657deafbc05c8acae3e0e3c084d838af4d5c73b08f0150f8415f80949e980ef4efa679cc47a07b1683cc8158fabf688dc0fbddd0179b955abb08f841", + "archive": "0x037adb6c2d8b6b4af5b940805ba653f5580ab595734d59362dd58a82cefc5468", + "blobCommitments": "0x01b2305b8b54df6babd7d41c8618a6e445dfc259d4fbb5e6c65fa3e80fbb87e32dd49133ad76a2e51f244e24e60499f78f", + "batchedBlobInputs": "0x01bf03ab3a8048a603a9eda955c955ca82625c2761ee470f75b9a5ddb3ac1dc509926f4782ae4df8bd8a61a241db305699049c8eea2d58e2910e27503b3156bd22947826081782f28266e2d5fc9eee40e3768766dab90f672e0751d250539d51b2305b8b54df6babd7d41c8618a6e445dfc259d4fbb5e6c65fa3e80fbb87e32dd49133ad76a2e51f244e24e60499f78fb9ceb843f67810e2459dda50512d0e5cee2338439c2948095fa3689b237bf265aa8b26106cf87459b358c132df9204f6", "checkpointNumber": 1, "body": "0x00000000", "header": { - "lastArchiveRoot": "0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5", - "blockHeadersHash": "0x2e3e0911389bc48fa8126a93273d016cc7dc08019f8ffc5f1f5ae7d90745eaa2", - "blobsHash": "0x00e5b752fe6bc2154155ff3a979c4c5fa91d3ac0d716169ac521e1560fd83b2b", + "lastArchiveRoot": "0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc", + "blockHeadersHash": "0x07a738639dc7a01808721838e58ce8329afc306411f38e392e6c278839f4301f", + "blobsHash": "0x00a36a05d6711c5939c6f7ba2bf25be30f6c74b2f625d90d32873189f8622dc0", "inHash": "0x00de7b349d2306334734e4f58b1302a6ed5a6c796a706f6597a5641b6d468223", "outHash": "0x00c95e0ceb41951039e1592745ec2faea9866f6eaf01bf189a4463b4143af093", "slotNumber": 99, - "timestamp": 1776857814, - "coinbase": "0x35b8c86ef5942f43d1541967cb19102a2d993b31", - "feeRecipient": "0x1e23fb62f5dd64886d92830820df4ee59bb32fe60838439a13dfb209f4d89b15", + "timestamp": 1782246833, + "coinbase": "0x3c57acde85c7551ccf764e90d413ce5fe2910f51", + "feeRecipient": "0x22aa2abc106d2738fab022606ef6ef3e07435f6a15a37011bd573d06b9ee2f51", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 292838000000 + "feePerL2Gas": 291266000000 }, "totalManaUsed": 0, "accumulatedFees": 0 }, - "headerHash": "0x0069eb49ccf7b0dd2902a19712dd167fd3b5d890df7f0711fdcfe4d2987838ad", + "headerHash": "0x00222d56bf1a4050b91aa02962597be293dbf893f796503818949bbc5be1c552", "numTxs": 0 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/empty_checkpoint_2.json b/l1-contracts/test/fixtures/empty_checkpoint_2.json index 52323cc08975..7c590b406320 100644 --- a/l1-contracts/test/fixtures/empty_checkpoint_2.json +++ b/l1-contracts/test/fixtures/empty_checkpoint_2.json @@ -25,29 +25,29 @@ "l2ToL1Messages": [] }, "checkpoint": { - "archive": "0x2f5d974309f7521c2ed6702859e70e8109b81adaf4dbbaf65a1eab3ce2940741", - "blobCommitments": "0x01b6c78db072b1e60f406e06a344eeb437bc114c2fe5a6d7d8f040daa0b89826f80409ae0226b7b358b938d9a35d64ab30", - "batchedBlobInputs": "0x010cb5eb29ba6106cf394027727fe818e02bbd3954b071af66c6a25ca1ae6ce10109b73199ed129da5c971b43c8c393ec7b053a834293a65b3c7737d1e826bb63846ddb2ef2be6a518b0b5d6b5d12eb5eb6b351ab0a94e666b8a243d287dc060acd1e03115fee2bbdd47f1c216f398650836c3b27078ae8d2daaf7a1d53082b769430801fffdf961265746a02f6d5e38a2114a89820bbf592cb4e01d5aa32bdb93439b715be7806f7decf63c088e188b3988ca9796d09ee460cdaad61805aeff", + "archive": "0x25c172d0e68b598d642421ec09828eab028a50f901fa6b2153a6d5cb17fbee78", + "blobCommitments": "0x0196fcb1ffcdb3459264cde54674b1ebda3fa40350fd2e1106d14ea33f25970014ec7026b4a20cb843ed1c30ad4a13e07b", + "batchedBlobInputs": "0x01e71c15c79b2d2c629c5fd3f17a051e365eca5f3396d392cbe8ac0ad8caa921115e1539d3805cd19e0ec189dc3a7117f99b7af7dc27a2ef092b72229b30c3051424d7112165530e785202b9fdb7b8acc04c9d1ed59ac6611ebc2ae5f6c9dc33b9d27fe60a8571d4d3ddbaaa611c12d9fa6fc5a7a971dcc0bb4bc4ccbfd6b73ef8fa63c7a0ae07cc7cb3dfc3a7e7e166a1c40a3e9a25d8ca7e937d3d44c2403f094935cb344b416d958075d0052bbb09eacc0fada8576671de7fd91fd9624043", "checkpointNumber": 2, "body": "0x00000000", "header": { - "lastArchiveRoot": "0x09d45c1e01b8596153838a068ddb470ead95e6e1e151f40b4d48664c1e311af6", - "blockHeadersHash": "0x0b3bda1754ca30707b8c0bbe72760c68e574cf23309e7e4fd7cabea36b4078da", - "blobsHash": "0x000e9acabf609c9c113078ecb383ba6310573ce246958b605452132617d2c960", - "inHash": "0x006504de282a40084bb8098456a915c645d53482d351db52fa9433b6cd638763", + "lastArchiveRoot": "0x037adb6c2d8b6b4af5b940805ba653f5580ab595734d59362dd58a82cefc5468", + "blockHeadersHash": "0x191652b347dbd6340c9f9ec8d7203b227e56db6622222203b5317c8fbb37e33e", + "blobsHash": "0x006f16fd16b65c155fc84a5d22ac86a533f24aa536e71b25f5205ccf14db1f98", + "inHash": "0x00de7b349d2306334734e4f58b1302a6ed5a6c796a706f6597a5641b6d468223", "outHash": "0x00c95e0ceb41951039e1592745ec2faea9866f6eaf01bf189a4463b4143af093", "slotNumber": 102, - "timestamp": 1776858030, - "coinbase": "0x35b8c86ef5942f43d1541967cb19102a2d993b31", - "feeRecipient": "0x1e23fb62f5dd64886d92830820df4ee59bb32fe60838439a13dfb209f4d89b15", + "timestamp": 1782247049, + "coinbase": "0x3c57acde85c7551ccf764e90d413ce5fe2910f51", + "feeRecipient": "0x22aa2abc106d2738fab022606ef6ef3e07435f6a15a37011bd573d06b9ee2f51", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 19067000000 + "feePerL2Gas": 16620000000 }, "totalManaUsed": 0, "accumulatedFees": 0 }, - "headerHash": "0x0004d4907090fd10f0c7fa759b7ce89c3b7055385423b585c5f7e959c17290ef", + "headerHash": "0x00f2be79d0a89c2fd46c3261539dba65eac0ef0a5349588570f9f7f0e592557f", "numTxs": 0 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/mixed_checkpoint_1.json b/l1-contracts/test/fixtures/mixed_checkpoint_1.json index 6e47dc89c331..d3058ffa7671 100644 --- a/l1-contracts/test/fixtures/mixed_checkpoint_1.json +++ b/l1-contracts/test/fixtures/mixed_checkpoint_1.json @@ -58,29 +58,29 @@ ] }, "checkpoint": { - "archive": "0x0c87f76b6c5cc918111d2acc975bf7f2133f5c3cc23c8cf6cc1c3e78f5c84a3e", - "blobCommitments": "0x028861d33a1938ad3ba050f82a1733507c3137d468f3d351637705c769f2cff5d984273b153ada951e1ab571bf4862518e86b38e707475fa118906a5f9d127fc898cbc2f238fd8c8c5ef03f4162e7957b68828da903deb65bc0897ad2cc4d00c92", - "batchedBlobInputs": "0x01471e112c0d12e60b6bb5e8c79d2264a6c7e00be344960d81eabd64a612d4ea106e3c06eae29750eb48f5f71d702684ef1b2e90c60cd2343acd50146b9343c64a1b55c6cb84dd2300405b1da8f8ea3cfe42b21dd26d99a5bdc0cbc33d4fe6e7845cdbf9071d27cae5c465e3ad8fd41d667dd0544a0753095b1a23cbe7bdffcab83bc775eb62fc83b6366787ec49ed0daf52034a8605f79996ad41d733e9dd89bccf243d31b552204c6be04f926514183924458169bb87f0072d50f0f507a08e", + "archive": "0x00d3e625cdc11065d6ad18a9a7967eacd8b84bf647d3df2b894b777da3a2ac32", + "blobCommitments": "0x02acc313e12926eb53d2df43f2d5d5329f0831180047871e0c48ab5be1d53865d0c2dd92aae5229c0afd771c30726cd246a892d42ec37af5067032b4e7b2ffd9ed94587aad8752a9a5d16865883a4c22cb79875ef8e91f0ce2efb4438dd667db5e", + "batchedBlobInputs": "0x015a82ab4bb58045a934bfd1886f5d22e03788e52a1fe51d00bf5aa691d4e53725dbbf62f6c9463d0cb770e76a0582991e67e5cb15ac3b0526415bea8c1649bb4bd6288b6bf4a8d21f753f6fe19a595ad4384073f731db39a19351f31dcd0d01a337c78e3847f8cedecc7d3eaa1add556cc044898033781576d1c55e145ea96a7f897f7468be5e001fdc4acd6503e9e4ab67996804341d3c5d4ed1df30431fafc5ebaa3c3784e71d73d8276ae1b9c58feb154034edd97ece39490d603db10f40", "checkpointNumber": 1, - "body": "0x00000004000d7fc51cbf872cdf96d429f3290b888f06cd0ed10881a64c43be4b1ecd6b810b0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e08004b8b814288544866292d9d0e66869207628fb0ef8120c59ec1d969a085d5d50075c5d0fc08d5578600928d2fc6cd1e63a2b87266a45558135a2912c5a7d6e60019574cfd6834b8c08012b12c6b178d65c27335e1001c1337996f4f460c2cf1000624d1d08e5c487711876584ae580b46b81854bc8e45e42e822ef18df136ff00b78383bdbff11e85552243f1429b8d83334d734dc92e1062b8a04371de5f88005b33017fa3cd1861669d2fd5621ba61db7a72646a9b459897a55780eeeb64e00a1d3d6c8bc4848ef2e4d256253773447d1b39deedd2d70248a2160c765afc200e1d211a34da229f26780fc7baa5a6ca0a35b7e0fea52ea082e35cd064db33d400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049400000000000000000000000000000000000000000000000000000000000041300000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000010000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000001000000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000100000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000010000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000001000000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000100000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000010000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000001000000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000100000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000000000000000000000000000000000000000000000000000000004131800000010000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f000000000000000000000000000000000000000000000000000000000004131000000000000000000000000000000000000000000000000000000000000413110000000000000000000000000000000000000000000000000000000000041312000000000000000000000000000000000000000000000000000000000004131300000000000000000000000000000000000000000000000000000000000413140000000000000000000000000000000000000000000000000000000000041315000000000000000000000000000000000000000000000000000000000004131600000000000000000000000000000000000000000000000000000000000413170000000000000000000000000000000000000000000000000000000000041318000000000000000000000000000000000000000000000000000000000004131900000010000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a00000010000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b00000010000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c00000010000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d00000010000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000100000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000010000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000001000000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000100000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000010000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000001000000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000100000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000010000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000001000000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000100000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000000000000000000000000000000000000000000000000000000004132800000010000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f000000000000000000000000000000000000000000000000000000000004132000000000000000000000000000000000000000000000000000000000000413210000000000000000000000000000000000000000000000000000000000041322000000000000000000000000000000000000000000000000000000000004132300000000000000000000000000000000000000000000000000000000000413240000000000000000000000000000000000000000000000000000000000041325000000000000000000000000000000000000000000000000000000000004132600000000000000000000000000000000000000000000000000000000000413270000000000000000000000000000000000000000000000000000000000041328000000000000000000000000000000000000000000000000000000000004132900000010000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a00000010000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b00000010000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c00000010000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d00000010000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000100000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000010000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000001000000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000100000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000010000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000001000000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000100000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000010000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000001000000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000100000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000000000000000000000000000000000000000000000000000000004133800000010000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f000000000000000000000000000000000000000000000000000000000004133000000000000000000000000000000000000000000000000000000000000413310000000000000000000000000000000000000000000000000000000000041332000000000000000000000000000000000000000000000000000000000004133300000000000000000000000000000000000000000000000000000000000413340000000000000000000000000000000000000000000000000000000000041335000000000000000000000000000000000000000000000000000000000004133600000000000000000000000000000000000000000000000000000000000413370000000000000000000000000000000000000000000000000000000000041338000000000000000000000000000000000000000000000000000000000004133900000010000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a00000010000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b00000010000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c00000010000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d00000010000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000100000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000010000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000001000000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000100000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000010000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000001000000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000100000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000010000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000001000000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000100000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000000000000000000000000000000000000000000000000000000004134800000010000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f000000000000000000000000000000000000000000000000000000000004134000000000000000000000000000000000000000000000000000000000000413410000000000000000000000000000000000000000000000000000000000041342000000000000000000000000000000000000000000000000000000000004134300000000000000000000000000000000000000000000000000000000000413440000000000000000000000000000000000000000000000000000000000041345000000000000000000000000000000000000000000000000000000000004134600000000000000000000000000000000000000000000000000000000000413470000000000000000000000000000000000000000000000000000000000041348000000000000000000000000000000000000000000000000000000000004134900000010000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a00000010000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b00000010000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c00000010000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d00000010000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d000000000000000000000000000000000000000000000000000000000004134e0000001000000000000002867cafb7c157b930213a922d119935b2bcf62d502670b216b129d84cc9f67c0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000081000000000000000000000000000000000000000000000000000000000000008100100000000000000000000000000000000000000000000000000000000000810020000000000000000000000000000000000000000000000000000000000081003000000000000000000000000000000000000000000000000000000000008100400000000000000000000000000000000000000000000000000000000000810050000000000000000000000000000000000000000000000000000000000081006000000000000000000000000000000000000000000000000000000000008100700000000000000000000000000000000000000000000000000000000000810080000000000000000000000000000000000000000000000000000000000081009000000000000000000000000000000000000000000000000000000000008100a000000000000000000000000000000000000000000000000000000000008100b000000000000000000000000000000000000000000000000000000000008100c000000000000000000000000000000000000000000000000000000000008100d000000000000000000000000000000000000000000000000000000000008100e000000000000000000000000000000000000000000000000000000000008100f0000000000000000000000000000000000000000000000000000000000081010000000000000000000000000000000000000000000000000000000000008101100000000000000000000000000000000000000000000000000000000000810120000000000000000000000000000000000000000000000000000000000081013000000000000000000000000000000000000000000000000000000000008101400000000000000000000000000000000000000000000000000000000000810150000000000000000000000000000000000000000000000000000000000081016000000000000000000000000000000000000000000000000000000000008101700000000000000000000000000000000000000000000000000000000000810180000000000000000000000000000000000000000000000000000000000081019000000000000000000000000000000000000000000000000000000000008101a000000000000000000000000000000000000000000000000000000000008101b000000000000000000000000000000000000000000000000000000000008101c000000000000000000000000000000000000000000000000000000000008101d000000000000000000000000000000000000000000000000000000000008101e000000000000000000000000000000000000000000000000000000000008101f0000000000000000000000000000000000000000000000000000000000081020000000000000000000000000000000000000000000000000000000000008102100000000000000000000000000000000000000000000000000000000000810220000000000000000000000000000000000000000000000000000000000081023000000000000000000000000000000000000000000000000000000000008102400000000000000000000000000000000000000000000000000000000000810250000000000000000000000000000000000000000000000000000000000081026000000000000000000000000000000000000000000000000000000000008102700000000000000000000000000000000000000000000000000000000000810280000000000000000000000000000000000000000000000000000000000081029000000000000000000000000000000000000000000000000000000000008102a000000000000000000000000000000000000000000000000000000000008102b000000000000000000000000000000000000000000000000000000000008102c000000000000000000000000000000000000000000000000000000000008102d000000000000000000000000000000000000000000000000000000000008102e000000000000000000000000000000000000000000000000000000000008102f0000000000000000000000000000000000000000000000000000000000081030000000000000000000000000000000000000000000000000000000000008103100000000000000000000000000000000000000000000000000000000000810320000000000000000000000000000000000000000000000000000000000081033000000000000000000000000000000000000000000000000000000000008103400000000000000000000000000000000000000000000000000000000000810350000000000000000000000000000000000000000000000000000000000081036000000000000000000000000000000000000000000000000000000000008103700000000000000000000000000000000000000000000000000000000000810380000000000000000000000000000000000000000000000000000000000081039000000000000000000000000000000000000000000000000000000000008103a000000000000000000000000000000000000000000000000000000000008103b000000000000000000000000000000000000000000000000000000000008103c000000000000000000000000000000000000000000000000000000000008103d000000000000000000000000000000000000000000000000000000000008103e000000000000000000000000000000000000000000000000000000000008103f4000000000000000000000000000000000000000000000000000000000000800010000000000000000000000000000000000000000000000000000000000081100000000000000000000000000000000000000000000000000000000000008110100000000000000000000000000000000000000000000000000000000000811020000000000000000000000000000000000000000000000000000000000081103000000000000000000000000000000000000000000000000000000000008110400000000000000000000000000000000000000000000000000000000000811050000000000000000000000000000000000000000000000000000000000081106000000000000000000000000000000000000000000000000000000000008110700000000000000000000000000000000000000000000000000000000000811080000000000000000000000000000000000000000000000000000000000081109000000000000000000000000000000000000000000000000000000000008110a000000000000000000000000000000000000000000000000000000000008110b000000000000000000000000000000000000000000000000000000000008110c000000000000000000000000000000000000000000000000000000000008110d000000000000000000000000000000000000000000000000000000000008110e000000000000000000000000000000000000000000000000000000000008110f0000000000000000000000000000000000000000000000000000000000081110000000000000000000000000000000000000000000000000000000000008111100000000000000000000000000000000000000000000000000000000000811120000000000000000000000000000000000000000000000000000000000081113000000000000000000000000000000000000000000000000000000000008111400000000000000000000000000000000000000000000000000000000000811150000000000000000000000000000000000000000000000000000000000081116000000000000000000000000000000000000000000000000000000000008111700000000000000000000000000000000000000000000000000000000000811180000000000000000000000000000000000000000000000000000000000081119000000000000000000000000000000000000000000000000000000000008111a000000000000000000000000000000000000000000000000000000000008111b000000000000000000000000000000000000000000000000000000000008111c000000000000000000000000000000000000000000000000000000000008111d000000000000000000000000000000000000000000000000000000000008111e000000000000000000000000000000000000000000000000000000000008111f0000000000000000000000000000000000000000000000000000000000081120000000000000000000000000000000000000000000000000000000000008112100000000000000000000000000000000000000000000000000000000000811220000000000000000000000000000000000000000000000000000000000081123000000000000000000000000000000000000000000000000000000000008112400000000000000000000000000000000000000000000000000000000000811250000000000000000000000000000000000000000000000000000000000081126000000000000000000000000000000000000000000000000000000000008112700000000000000000000000000000000000000000000000000000000000811280000000000000000000000000000000000000000000000000000000000081129000000000000000000000000000000000000000000000000000000000008112a000000000000000000000000000000000000000000000000000000000008112b000000000000000000000000000000000000000000000000000000000008112c000000000000000000000000000000000000000000000000000000000008112d000000000000000000000000000000000000000000000000000000000008112e000000000000000000000000000000000000000000000000000000000008112f0000000000000000000000000000000000000000000000000000000000081130000000000000000000000000000000000000000000000000000000000008113100000000000000000000000000000000000000000000000000000000000811320000000000000000000000000000000000000000000000000000000000081133000000000000000000000000000000000000000000000000000000000008113400000000000000000000000000000000000000000000000000000000000811350000000000000000000000000000000000000000000000000000000000081136000000000000000000000000000000000000000000000000000000000008113700000000000000000000000000000000000000000000000000000000000811380000000000000000000000000000000000000000000000000000000000081139000000000000000000000000000000000000000000000000000000000008113a000000000000000000000000000000000000000000000000000000000008113b000000000000000000000000000000000000000000000000000000000008113c000000000000000000000000000000000000000000000000000000000008113d000000000000000000000000000000000000000000000000000000000008113e0800265fc26cc330a0a6a8e801430f967c7ed1e58be49f854f0cad6732943f88e20071874f590a2dadb3658c9ab56b3fcf8c43098157070e4c5f724dfa3f22337d00ae67efa2446c41039723a7f780b2d317dc0fe70741ad4b180ed3e69206acb70022e6e6d8999655a395c3d51de207120646c5acfe3c55f06fd12e2bf579816300479bb81c7d06f66baed706c75fa44967ac97960303fbad4f4bdc77f475e68f00ac60795e5b5c80c95c88f6b236bd97aba1156483effa087e56719d8eee599700af23557f2f6de3d1c09b4aad782fffa5457af68d87e778d73de1b921eb41dc00c7c86fa31cdf6f4ce9036bdbee033e09194bf5739a66928d2e3d2ac2703649400000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082001000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082002000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082003000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082004000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082005000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820060000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008200700000000000000000000000000000000000000000000000000000000000820110000000000000000000000000000000000000000000000000000000000082008000000000000000000000000000000000000000000000000000000000008201200000000000000000000000000000000000000000000000000000000000820090000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082016000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082017000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082011000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082012000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820160000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008201700000000000000000000000000000000000000000000000000000000000820210000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008202200000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082026000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082027000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082021000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082022000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820260000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008202700000000000000000000000000000000000000000000000000000000000820310000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008203200000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082036000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082037000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082031000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082032000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008203f00000000000000000000000000000000000000000000000000000000000820360000000000000000000000000000000000000000000000000000000000082040000000000000000000000000000000000000000000000000000000000008203700000000000000000000000000000000000000000000000000000000000820410000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008204200000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082043000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082044000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082045000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082046000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082047000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082048000000000000000000000000000000000000000000000000000000000008203f0000000000000000000000000000000000000000000000000000000000082049400000000000000000000000000000000000000000000000000000000000081300000000000000000000000000000000000000000000000000000000000008130100000000000000000000000000000000000000000000000000000000000813020000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000010000000000000000000000000000000000000000000000000000000000008130100000000000000000000000000000000000000000000000000000000000813020000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000001000000000000000000000000000000000000000000000000000000000000813020000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000100000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000010000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000001000000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000100000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000010000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000000000000000000000000000000000000000000000000000000000813160000001000000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000000000000000000000000000000000000000000000000000000000813160000000000000000000000000000000000000000000000000000000000081317000000100000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000000000000000000000000000000000000000000000000000000000813160000000000000000000000000000000000000000000000000000000000081317000000000000000000000000000000000000000000000000000000000008131800000010000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f000000000000000000000000000000000000000000000000000000000008131000000000000000000000000000000000000000000000000000000000000813110000000000000000000000000000000000000000000000000000000000081312000000000000000000000000000000000000000000000000000000000008131300000000000000000000000000000000000000000000000000000000000813140000000000000000000000000000000000000000000000000000000000081315000000000000000000000000000000000000000000000000000000000008131600000000000000000000000000000000000000000000000000000000000813170000000000000000000000000000000000000000000000000000000000081318000000000000000000000000000000000000000000000000000000000008131900000010000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a00000010000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b00000010000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c00000010000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d00000010000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000100000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000010000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000001000000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000100000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000010000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000001000000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000100000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000010000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000000000000000000000000000000000000000000000000000000000813260000001000000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000000000000000000000000000000000000000000000000000000000813260000000000000000000000000000000000000000000000000000000000081327000000100000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000000000000000000000000000000000000000000000000000000000813260000000000000000000000000000000000000000000000000000000000081327000000000000000000000000000000000000000000000000000000000008132800000010000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f000000000000000000000000000000000000000000000000000000000008132000000000000000000000000000000000000000000000000000000000000813210000000000000000000000000000000000000000000000000000000000081322000000000000000000000000000000000000000000000000000000000008132300000000000000000000000000000000000000000000000000000000000813240000000000000000000000000000000000000000000000000000000000081325000000000000000000000000000000000000000000000000000000000008132600000000000000000000000000000000000000000000000000000000000813270000000000000000000000000000000000000000000000000000000000081328000000000000000000000000000000000000000000000000000000000008132900000010000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a00000010000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b00000010000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c00000010000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d00000010000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000100000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000010000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000001000000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000100000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000010000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000001000000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000100000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000010000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000000000000000000000000000000000000000000000000000000000813360000001000000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000000000000000000000000000000000000000000000000000000000813360000000000000000000000000000000000000000000000000000000000081337000000100000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000000000000000000000000000000000000000000000000000000000813360000000000000000000000000000000000000000000000000000000000081337000000000000000000000000000000000000000000000000000000000008133800000010000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f000000000000000000000000000000000000000000000000000000000008133000000000000000000000000000000000000000000000000000000000000813310000000000000000000000000000000000000000000000000000000000081332000000000000000000000000000000000000000000000000000000000008133300000000000000000000000000000000000000000000000000000000000813340000000000000000000000000000000000000000000000000000000000081335000000000000000000000000000000000000000000000000000000000008133600000000000000000000000000000000000000000000000000000000000813370000000000000000000000000000000000000000000000000000000000081338000000000000000000000000000000000000000000000000000000000008133900000010000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a00000010000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b00000010000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c00000010000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d00000010000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000100000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000010000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000001000000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000100000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000010000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000001000000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000100000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000010000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000000000000000000000000000000000000000000000000000000000813460000001000000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000000000000000000000000000000000000000000000000000000000813460000000000000000000000000000000000000000000000000000000000081347000000100000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000000000000000000000000000000000000000000000000000000000813460000000000000000000000000000000000000000000000000000000000081347000000000000000000000000000000000000000000000000000000000008134800000010000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f000000000000000000000000000000000000000000000000000000000008134000000000000000000000000000000000000000000000000000000000000813410000000000000000000000000000000000000000000000000000000000081342000000000000000000000000000000000000000000000000000000000008134300000000000000000000000000000000000000000000000000000000000813440000000000000000000000000000000000000000000000000000000000081345000000000000000000000000000000000000000000000000000000000008134600000000000000000000000000000000000000000000000000000000000813470000000000000000000000000000000000000000000000000000000000081348000000000000000000000000000000000000000000000000000000000008134900000010000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a00000010000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b00000010000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b000000000000000000000000000000000000000000000000000000000008134c00000010000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b000000000000000000000000000000000000000000000000000000000008134c000000000000000000000000000000000000000000000000000000000008134d00000010000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b000000000000000000000000000000000000000000000000000000000008134c000000000000000000000000000000000000000000000000000000000008134d000000000000000000000000000000000000000000000000000000000008134e000000100000000000000b791b26f132d84fde422f97dce65b021c5dc665d27541285c74530d580cf88d00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000c100100000000000000000000000000000000000000000000000000000000000c100200000000000000000000000000000000000000000000000000000000000c100300000000000000000000000000000000000000000000000000000000000c100400000000000000000000000000000000000000000000000000000000000c100500000000000000000000000000000000000000000000000000000000000c100600000000000000000000000000000000000000000000000000000000000c100700000000000000000000000000000000000000000000000000000000000c100800000000000000000000000000000000000000000000000000000000000c100900000000000000000000000000000000000000000000000000000000000c100a00000000000000000000000000000000000000000000000000000000000c100b00000000000000000000000000000000000000000000000000000000000c100c00000000000000000000000000000000000000000000000000000000000c100d00000000000000000000000000000000000000000000000000000000000c100e00000000000000000000000000000000000000000000000000000000000c100f00000000000000000000000000000000000000000000000000000000000c101000000000000000000000000000000000000000000000000000000000000c101100000000000000000000000000000000000000000000000000000000000c101200000000000000000000000000000000000000000000000000000000000c101300000000000000000000000000000000000000000000000000000000000c101400000000000000000000000000000000000000000000000000000000000c101500000000000000000000000000000000000000000000000000000000000c101600000000000000000000000000000000000000000000000000000000000c101700000000000000000000000000000000000000000000000000000000000c101800000000000000000000000000000000000000000000000000000000000c101900000000000000000000000000000000000000000000000000000000000c101a00000000000000000000000000000000000000000000000000000000000c101b00000000000000000000000000000000000000000000000000000000000c101c00000000000000000000000000000000000000000000000000000000000c101d00000000000000000000000000000000000000000000000000000000000c101e00000000000000000000000000000000000000000000000000000000000c101f00000000000000000000000000000000000000000000000000000000000c102000000000000000000000000000000000000000000000000000000000000c102100000000000000000000000000000000000000000000000000000000000c102200000000000000000000000000000000000000000000000000000000000c102300000000000000000000000000000000000000000000000000000000000c102400000000000000000000000000000000000000000000000000000000000c102500000000000000000000000000000000000000000000000000000000000c102600000000000000000000000000000000000000000000000000000000000c102700000000000000000000000000000000000000000000000000000000000c102800000000000000000000000000000000000000000000000000000000000c102900000000000000000000000000000000000000000000000000000000000c102a00000000000000000000000000000000000000000000000000000000000c102b00000000000000000000000000000000000000000000000000000000000c102c00000000000000000000000000000000000000000000000000000000000c102d00000000000000000000000000000000000000000000000000000000000c102e00000000000000000000000000000000000000000000000000000000000c102f00000000000000000000000000000000000000000000000000000000000c103000000000000000000000000000000000000000000000000000000000000c103100000000000000000000000000000000000000000000000000000000000c103200000000000000000000000000000000000000000000000000000000000c103300000000000000000000000000000000000000000000000000000000000c103400000000000000000000000000000000000000000000000000000000000c103500000000000000000000000000000000000000000000000000000000000c103600000000000000000000000000000000000000000000000000000000000c103700000000000000000000000000000000000000000000000000000000000c103800000000000000000000000000000000000000000000000000000000000c103900000000000000000000000000000000000000000000000000000000000c103a00000000000000000000000000000000000000000000000000000000000c103b00000000000000000000000000000000000000000000000000000000000c103c00000000000000000000000000000000000000000000000000000000000c103d00000000000000000000000000000000000000000000000000000000000c103e00000000000000000000000000000000000000000000000000000000000c103f4000000000000000000000000000000000000000000000000000000000000c000100000000000000000000000000000000000000000000000000000000000c110000000000000000000000000000000000000000000000000000000000000c110100000000000000000000000000000000000000000000000000000000000c110200000000000000000000000000000000000000000000000000000000000c110300000000000000000000000000000000000000000000000000000000000c110400000000000000000000000000000000000000000000000000000000000c110500000000000000000000000000000000000000000000000000000000000c110600000000000000000000000000000000000000000000000000000000000c110700000000000000000000000000000000000000000000000000000000000c110800000000000000000000000000000000000000000000000000000000000c110900000000000000000000000000000000000000000000000000000000000c110a00000000000000000000000000000000000000000000000000000000000c110b00000000000000000000000000000000000000000000000000000000000c110c00000000000000000000000000000000000000000000000000000000000c110d00000000000000000000000000000000000000000000000000000000000c110e00000000000000000000000000000000000000000000000000000000000c110f00000000000000000000000000000000000000000000000000000000000c111000000000000000000000000000000000000000000000000000000000000c111100000000000000000000000000000000000000000000000000000000000c111200000000000000000000000000000000000000000000000000000000000c111300000000000000000000000000000000000000000000000000000000000c111400000000000000000000000000000000000000000000000000000000000c111500000000000000000000000000000000000000000000000000000000000c111600000000000000000000000000000000000000000000000000000000000c111700000000000000000000000000000000000000000000000000000000000c111800000000000000000000000000000000000000000000000000000000000c111900000000000000000000000000000000000000000000000000000000000c111a00000000000000000000000000000000000000000000000000000000000c111b00000000000000000000000000000000000000000000000000000000000c111c00000000000000000000000000000000000000000000000000000000000c111d00000000000000000000000000000000000000000000000000000000000c111e00000000000000000000000000000000000000000000000000000000000c111f00000000000000000000000000000000000000000000000000000000000c112000000000000000000000000000000000000000000000000000000000000c112100000000000000000000000000000000000000000000000000000000000c112200000000000000000000000000000000000000000000000000000000000c112300000000000000000000000000000000000000000000000000000000000c112400000000000000000000000000000000000000000000000000000000000c112500000000000000000000000000000000000000000000000000000000000c112600000000000000000000000000000000000000000000000000000000000c112700000000000000000000000000000000000000000000000000000000000c112800000000000000000000000000000000000000000000000000000000000c112900000000000000000000000000000000000000000000000000000000000c112a00000000000000000000000000000000000000000000000000000000000c112b00000000000000000000000000000000000000000000000000000000000c112c00000000000000000000000000000000000000000000000000000000000c112d00000000000000000000000000000000000000000000000000000000000c112e00000000000000000000000000000000000000000000000000000000000c112f00000000000000000000000000000000000000000000000000000000000c113000000000000000000000000000000000000000000000000000000000000c113100000000000000000000000000000000000000000000000000000000000c113200000000000000000000000000000000000000000000000000000000000c113300000000000000000000000000000000000000000000000000000000000c113400000000000000000000000000000000000000000000000000000000000c113500000000000000000000000000000000000000000000000000000000000c113600000000000000000000000000000000000000000000000000000000000c113700000000000000000000000000000000000000000000000000000000000c113800000000000000000000000000000000000000000000000000000000000c113900000000000000000000000000000000000000000000000000000000000c113a00000000000000000000000000000000000000000000000000000000000c113b00000000000000000000000000000000000000000000000000000000000c113c00000000000000000000000000000000000000000000000000000000000c113d00000000000000000000000000000000000000000000000000000000000c113e08007740254fc3203c599b97e5049f81ecb8acf39bddfbeae8ce74298e4ea87efe00bde1f60e5339304ca4b53d8b845c6e7d293f6841c1b62c07c2eb231593c4d100204739a2456e89e1353337ea45977dd7dcca61921869c7c6871ade16c5b680006d06063ef1b29afa07e57f756435cf5d48e822d678b7a913b5838aa3443cbf0083ecac1aa2e9e8402a9810b7590d4b76945b41df2cb7c999ba354ea087c06c003d7e1311d740b160e04897e91bb1a4e85d22b5ff438622f18eb090ef494a75007788b07cf04ef30ff0196f111a0486011eaef85bf336a76a3fb6c7b3388117009fffd2100e9e3d9d7002c2f3bd4dd44dadcf24d8b0c3d74c62206460a8142e4000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c200100000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c200200000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c200300000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c200400000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c200500000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c200600000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c200700000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c200800000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c200900000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c204000000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c204100000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c204200000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c204300000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c204400000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c204500000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c204600000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c204700000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c204800000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c20494000000000000000000000000000000000000000000000000000000000000c130000000000000000000000000000000000000000000000000000000000000c130100000000000000000000000000000000000000000000000000000000000c130200000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f0000001000000000000000000000000000000000000000000000000000000000000c130100000000000000000000000000000000000000000000000000000000000c130200000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c13100000001000000000000000000000000000000000000000000000000000000000000c130200000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c13110000001000000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c13120000001000000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c13130000001000000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c13140000001000000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c13150000001000000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c13160000001000000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c13170000001000000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c13180000001000000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c13190000001000000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a0000001000000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b0000001000000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c0000001000000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d0000001000000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e0000001000000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f0000001000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c13200000001000000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c13210000001000000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c13220000001000000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c13230000001000000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c13240000001000000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c13250000001000000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c13260000001000000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c13270000001000000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c13280000001000000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c13290000001000000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a0000001000000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b0000001000000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c0000001000000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d0000001000000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e0000001000000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f0000001000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c13300000001000000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c13310000001000000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c13320000001000000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c13330000001000000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c13340000001000000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c13350000001000000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c13360000001000000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c13370000001000000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c13380000001000000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c13390000001000000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a0000001000000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b0000001000000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c0000001000000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d0000001000000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e0000001000000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f0000001000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c13400000001000000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c13410000001000000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c13420000001000000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c13430000001000000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c13440000001000000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c13450000001000000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c13460000001000000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c13470000001000000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c13480000001000000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c13490000001000000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a0000001000000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b0000001000000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b00000000000000000000000000000000000000000000000000000000000c134c0000001000000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b00000000000000000000000000000000000000000000000000000000000c134c00000000000000000000000000000000000000000000000000000000000c134d0000001000000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b00000000000000000000000000000000000000000000000000000000000c134c00000000000000000000000000000000000000000000000000000000000c134d00000000000000000000000000000000000000000000000000000000000c134e00000010000000000000061a79f61787e6fd66bf7dc46dbcbc59034a2f9332af41586c4845204a75cc170000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010100100000000000000000000000000000000000000000000000000000000001010020000000000000000000000000000000000000000000000000000000000101003000000000000000000000000000000000000000000000000000000000010100400000000000000000000000000000000000000000000000000000000001010050000000000000000000000000000000000000000000000000000000000101006000000000000000000000000000000000000000000000000000000000010100700000000000000000000000000000000000000000000000000000000001010080000000000000000000000000000000000000000000000000000000000101009000000000000000000000000000000000000000000000000000000000010100a000000000000000000000000000000000000000000000000000000000010100b000000000000000000000000000000000000000000000000000000000010100c000000000000000000000000000000000000000000000000000000000010100d000000000000000000000000000000000000000000000000000000000010100e000000000000000000000000000000000000000000000000000000000010100f0000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000000000000000000000000000000000010101100000000000000000000000000000000000000000000000000000000001010120000000000000000000000000000000000000000000000000000000000101013000000000000000000000000000000000000000000000000000000000010101400000000000000000000000000000000000000000000000000000000001010150000000000000000000000000000000000000000000000000000000000101016000000000000000000000000000000000000000000000000000000000010101700000000000000000000000000000000000000000000000000000000001010180000000000000000000000000000000000000000000000000000000000101019000000000000000000000000000000000000000000000000000000000010101a000000000000000000000000000000000000000000000000000000000010101b000000000000000000000000000000000000000000000000000000000010101c000000000000000000000000000000000000000000000000000000000010101d000000000000000000000000000000000000000000000000000000000010101e000000000000000000000000000000000000000000000000000000000010101f0000000000000000000000000000000000000000000000000000000000101020000000000000000000000000000000000000000000000000000000000010102100000000000000000000000000000000000000000000000000000000001010220000000000000000000000000000000000000000000000000000000000101023000000000000000000000000000000000000000000000000000000000010102400000000000000000000000000000000000000000000000000000000001010250000000000000000000000000000000000000000000000000000000000101026000000000000000000000000000000000000000000000000000000000010102700000000000000000000000000000000000000000000000000000000001010280000000000000000000000000000000000000000000000000000000000101029000000000000000000000000000000000000000000000000000000000010102a000000000000000000000000000000000000000000000000000000000010102b000000000000000000000000000000000000000000000000000000000010102c000000000000000000000000000000000000000000000000000000000010102d000000000000000000000000000000000000000000000000000000000010102e000000000000000000000000000000000000000000000000000000000010102f0000000000000000000000000000000000000000000000000000000000101030000000000000000000000000000000000000000000000000000000000010103100000000000000000000000000000000000000000000000000000000001010320000000000000000000000000000000000000000000000000000000000101033000000000000000000000000000000000000000000000000000000000010103400000000000000000000000000000000000000000000000000000000001010350000000000000000000000000000000000000000000000000000000000101036000000000000000000000000000000000000000000000000000000000010103700000000000000000000000000000000000000000000000000000000001010380000000000000000000000000000000000000000000000000000000000101039000000000000000000000000000000000000000000000000000000000010103a000000000000000000000000000000000000000000000000000000000010103b000000000000000000000000000000000000000000000000000000000010103c000000000000000000000000000000000000000000000000000000000010103d000000000000000000000000000000000000000000000000000000000010103e000000000000000000000000000000000000000000000000000000000010103f4000000000000000000000000000000000000000000000000000000000001000010000000000000000000000000000000000000000000000000000000000101100000000000000000000000000000000000000000000000000000000000010110100000000000000000000000000000000000000000000000000000000001011020000000000000000000000000000000000000000000000000000000000101103000000000000000000000000000000000000000000000000000000000010110400000000000000000000000000000000000000000000000000000000001011050000000000000000000000000000000000000000000000000000000000101106000000000000000000000000000000000000000000000000000000000010110700000000000000000000000000000000000000000000000000000000001011080000000000000000000000000000000000000000000000000000000000101109000000000000000000000000000000000000000000000000000000000010110a000000000000000000000000000000000000000000000000000000000010110b000000000000000000000000000000000000000000000000000000000010110c000000000000000000000000000000000000000000000000000000000010110d000000000000000000000000000000000000000000000000000000000010110e000000000000000000000000000000000000000000000000000000000010110f0000000000000000000000000000000000000000000000000000000000101110000000000000000000000000000000000000000000000000000000000010111100000000000000000000000000000000000000000000000000000000001011120000000000000000000000000000000000000000000000000000000000101113000000000000000000000000000000000000000000000000000000000010111400000000000000000000000000000000000000000000000000000000001011150000000000000000000000000000000000000000000000000000000000101116000000000000000000000000000000000000000000000000000000000010111700000000000000000000000000000000000000000000000000000000001011180000000000000000000000000000000000000000000000000000000000101119000000000000000000000000000000000000000000000000000000000010111a000000000000000000000000000000000000000000000000000000000010111b000000000000000000000000000000000000000000000000000000000010111c000000000000000000000000000000000000000000000000000000000010111d000000000000000000000000000000000000000000000000000000000010111e000000000000000000000000000000000000000000000000000000000010111f0000000000000000000000000000000000000000000000000000000000101120000000000000000000000000000000000000000000000000000000000010112100000000000000000000000000000000000000000000000000000000001011220000000000000000000000000000000000000000000000000000000000101123000000000000000000000000000000000000000000000000000000000010112400000000000000000000000000000000000000000000000000000000001011250000000000000000000000000000000000000000000000000000000000101126000000000000000000000000000000000000000000000000000000000010112700000000000000000000000000000000000000000000000000000000001011280000000000000000000000000000000000000000000000000000000000101129000000000000000000000000000000000000000000000000000000000010112a000000000000000000000000000000000000000000000000000000000010112b000000000000000000000000000000000000000000000000000000000010112c000000000000000000000000000000000000000000000000000000000010112d000000000000000000000000000000000000000000000000000000000010112e000000000000000000000000000000000000000000000000000000000010112f0000000000000000000000000000000000000000000000000000000000101130000000000000000000000000000000000000000000000000000000000010113100000000000000000000000000000000000000000000000000000000001011320000000000000000000000000000000000000000000000000000000000101133000000000000000000000000000000000000000000000000000000000010113400000000000000000000000000000000000000000000000000000000001011350000000000000000000000000000000000000000000000000000000000101136000000000000000000000000000000000000000000000000000000000010113700000000000000000000000000000000000000000000000000000000001011380000000000000000000000000000000000000000000000000000000000101139000000000000000000000000000000000000000000000000000000000010113a000000000000000000000000000000000000000000000000000000000010113b000000000000000000000000000000000000000000000000000000000010113c000000000000000000000000000000000000000000000000000000000010113d000000000000000000000000000000000000000000000000000000000010113e08001790a679d3716b68fe4923616e234005918acd822bcc4ee8391ee526366e6000e29a714f3a1481f66d186077e4471803e542f4a8c165a5dc51359b0b5c04220050dbc735880ca3e38c57fd0510fb34541b132ae9eb6d7b88ae69fc16df197500cc7847321bda78d6d60dc09b0e3d75b350174e8ad07eb2a51c0a9afeb3c51700cd0fa6b6fc4c5859760aba07f5f5e0c714b57e55b13692fbbfe48f9e6bee5d00d4e93fc3e1a3d729afc451308365e07a5ec3fe8a220a4bcf93d09801703d3c00f7facd28c2650b9391380a08a9f583db4deed48993279a2253980d7a7c84d300e6143b86a0332ebe75bf78307054245c7b8ce8dd7130d477bcb691e1e51d82400000000000000000000000000000000000000000000000000000000000102000000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102001000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102002000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102003000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102004000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102005000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020060000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010200700000000000000000000000000000000000000000000000000000000001020110000000000000000000000000000000000000000000000000000000000102008000000000000000000000000000000000000000000000000000000000010201200000000000000000000000000000000000000000000000000000000001020090000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102016000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102017000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102011000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102012000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020160000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010201700000000000000000000000000000000000000000000000000000000001020210000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010202200000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102026000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102027000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102021000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102022000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020260000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010202700000000000000000000000000000000000000000000000000000000001020310000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010203200000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102036000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102037000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102031000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102032000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010203f00000000000000000000000000000000000000000000000000000000001020360000000000000000000000000000000000000000000000000000000000102040000000000000000000000000000000000000000000000000000000000010203700000000000000000000000000000000000000000000000000000000001020410000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010204200000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102043000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102044000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102045000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102046000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102047000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102048000000000000000000000000000000000000000000000000000000000010203f0000000000000000000000000000000000000000000000000000000000102049400000000000000000000000000000000000000000000000000000000000101300000000000000000000000000000000000000000000000000000000000010130100000000000000000000000000000000000000000000000000000000001013020000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000010000000000000000000000000000000000000000000000000000000000010130100000000000000000000000000000000000000000000000000000000001013020000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000001000000000000000000000000000000000000000000000000000000000001013020000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000100000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000010000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000001000000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000100000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000010000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000000000000000000000000000000000000000000000000000000001013160000001000000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000000000000000000000000000000000000000000000000000000001013160000000000000000000000000000000000000000000000000000000000101317000000100000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000000000000000000000000000000000000000000000000000000001013160000000000000000000000000000000000000000000000000000000000101317000000000000000000000000000000000000000000000000000000000010131800000010000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f000000000000000000000000000000000000000000000000000000000010131000000000000000000000000000000000000000000000000000000000001013110000000000000000000000000000000000000000000000000000000000101312000000000000000000000000000000000000000000000000000000000010131300000000000000000000000000000000000000000000000000000000001013140000000000000000000000000000000000000000000000000000000000101315000000000000000000000000000000000000000000000000000000000010131600000000000000000000000000000000000000000000000000000000001013170000000000000000000000000000000000000000000000000000000000101318000000000000000000000000000000000000000000000000000000000010131900000010000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a00000010000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b00000010000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c00000010000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d00000010000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000100000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000010000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000001000000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000100000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000010000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000001000000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000100000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000010000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000000000000000000000000000000000000000000000000000000001013260000001000000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000000000000000000000000000000000000000000000000000000001013260000000000000000000000000000000000000000000000000000000000101327000000100000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000000000000000000000000000000000000000000000000000000001013260000000000000000000000000000000000000000000000000000000000101327000000000000000000000000000000000000000000000000000000000010132800000010000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f000000000000000000000000000000000000000000000000000000000010132000000000000000000000000000000000000000000000000000000000001013210000000000000000000000000000000000000000000000000000000000101322000000000000000000000000000000000000000000000000000000000010132300000000000000000000000000000000000000000000000000000000001013240000000000000000000000000000000000000000000000000000000000101325000000000000000000000000000000000000000000000000000000000010132600000000000000000000000000000000000000000000000000000000001013270000000000000000000000000000000000000000000000000000000000101328000000000000000000000000000000000000000000000000000000000010132900000010000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a00000010000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b00000010000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c00000010000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d00000010000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000100000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000010000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000001000000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000100000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000010000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000001000000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000100000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000010000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000000000000000000000000000000000000000000000000000000001013360000001000000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000000000000000000000000000000000000000000000000000000001013360000000000000000000000000000000000000000000000000000000000101337000000100000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000000000000000000000000000000000000000000000000000000001013360000000000000000000000000000000000000000000000000000000000101337000000000000000000000000000000000000000000000000000000000010133800000010000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f000000000000000000000000000000000000000000000000000000000010133000000000000000000000000000000000000000000000000000000000001013310000000000000000000000000000000000000000000000000000000000101332000000000000000000000000000000000000000000000000000000000010133300000000000000000000000000000000000000000000000000000000001013340000000000000000000000000000000000000000000000000000000000101335000000000000000000000000000000000000000000000000000000000010133600000000000000000000000000000000000000000000000000000000001013370000000000000000000000000000000000000000000000000000000000101338000000000000000000000000000000000000000000000000000000000010133900000010000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a00000010000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b00000010000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c00000010000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d00000010000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000100000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000010000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000001000000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000100000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000010000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000001000000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000100000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000010000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000000000000000000000000000000000000000000000000000000001013460000001000000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000000000000000000000000000000000000000000000000000000001013460000000000000000000000000000000000000000000000000000000000101347000000100000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000000000000000000000000000000000000000000000000000000001013460000000000000000000000000000000000000000000000000000000000101347000000000000000000000000000000000000000000000000000000000010134800000010000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f000000000000000000000000000000000000000000000000000000000010134000000000000000000000000000000000000000000000000000000000001013410000000000000000000000000000000000000000000000000000000000101342000000000000000000000000000000000000000000000000000000000010134300000000000000000000000000000000000000000000000000000000001013440000000000000000000000000000000000000000000000000000000000101345000000000000000000000000000000000000000000000000000000000010134600000000000000000000000000000000000000000000000000000000001013470000000000000000000000000000000000000000000000000000000000101348000000000000000000000000000000000000000000000000000000000010134900000010000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a00000010000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b00000010000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b000000000000000000000000000000000000000000000000000000000010134c00000010000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b000000000000000000000000000000000000000000000000000000000010134c000000000000000000000000000000000000000000000000000000000010134d00000010000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b000000000000000000000000000000000000000000000000000000000010134c000000000000000000000000000000000000000000000000000000000010134d000000000000000000000000000000000000000000000000000000000010134e000000100000000000", + "body": "0x00000004001ab6252b44726cf7fd4cac2aa2e1422796af3795ccfe609cbebe31223310c2800000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e08004b8b814288544866292d9d0e66869207628fb0ef8120c59ec1d969a085d5d50075c5d0fc08d5578600928d2fc6cd1e63a2b87266a45558135a2912c5a7d6e60019574cfd6834b8c08012b12c6b178d65c27335e1001c1337996f4f460c2cf1000624d1d08e5c487711876584ae580b46b81854bc8e45e42e822ef18df136ff00b78383bdbff11e85552243f1429b8d83334d734dc92e1062b8a04371de5f88005b33017fa3cd1861669d2fd5621ba61db7a72646a9b459897a55780eeeb64e00a1d3d6c8bc4848ef2e4d256253773447d1b39deedd2d70248a2160c765afc200e1d211a34da229f26780fc7baa5a6ca0a35b7e0fea52ea082e35cd064db33d400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049400000000000000000000000000000000000000000000000000000000000041300000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000010000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000001000000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000100000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000010000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000001000000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000100000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000010000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000001000000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000100000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000000000000000000000000000000000000000000000000000000004131800000010000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f000000000000000000000000000000000000000000000000000000000004131000000000000000000000000000000000000000000000000000000000000413110000000000000000000000000000000000000000000000000000000000041312000000000000000000000000000000000000000000000000000000000004131300000000000000000000000000000000000000000000000000000000000413140000000000000000000000000000000000000000000000000000000000041315000000000000000000000000000000000000000000000000000000000004131600000000000000000000000000000000000000000000000000000000000413170000000000000000000000000000000000000000000000000000000000041318000000000000000000000000000000000000000000000000000000000004131900000010000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a00000010000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b00000010000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c00000010000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d00000010000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000100000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000010000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000001000000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000100000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000010000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000001000000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000100000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000010000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000001000000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000100000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000000000000000000000000000000000000000000000000000000004132800000010000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f000000000000000000000000000000000000000000000000000000000004132000000000000000000000000000000000000000000000000000000000000413210000000000000000000000000000000000000000000000000000000000041322000000000000000000000000000000000000000000000000000000000004132300000000000000000000000000000000000000000000000000000000000413240000000000000000000000000000000000000000000000000000000000041325000000000000000000000000000000000000000000000000000000000004132600000000000000000000000000000000000000000000000000000000000413270000000000000000000000000000000000000000000000000000000000041328000000000000000000000000000000000000000000000000000000000004132900000010000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a00000010000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b00000010000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c00000010000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d00000010000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000100000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000010000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000001000000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000100000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000010000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000001000000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000100000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000010000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000001000000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000100000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000000000000000000000000000000000000000000000000000000004133800000010000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f000000000000000000000000000000000000000000000000000000000004133000000000000000000000000000000000000000000000000000000000000413310000000000000000000000000000000000000000000000000000000000041332000000000000000000000000000000000000000000000000000000000004133300000000000000000000000000000000000000000000000000000000000413340000000000000000000000000000000000000000000000000000000000041335000000000000000000000000000000000000000000000000000000000004133600000000000000000000000000000000000000000000000000000000000413370000000000000000000000000000000000000000000000000000000000041338000000000000000000000000000000000000000000000000000000000004133900000010000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a00000010000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b00000010000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c00000010000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d00000010000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000100000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000010000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000001000000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000100000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000010000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000001000000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000100000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000010000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000001000000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000100000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000000000000000000000000000000000000000000000000000000004134800000010000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f000000000000000000000000000000000000000000000000000000000004134000000000000000000000000000000000000000000000000000000000000413410000000000000000000000000000000000000000000000000000000000041342000000000000000000000000000000000000000000000000000000000004134300000000000000000000000000000000000000000000000000000000000413440000000000000000000000000000000000000000000000000000000000041345000000000000000000000000000000000000000000000000000000000004134600000000000000000000000000000000000000000000000000000000000413470000000000000000000000000000000000000000000000000000000000041348000000000000000000000000000000000000000000000000000000000004134900000010000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a00000010000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b00000010000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c00000010000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d00000010000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d000000000000000000000000000000000000000000000000000000000004134e000000100000000000001f527d73b9e79fa406365e0a1decda035d4d92fda95987247eb46fb1a9058ef30000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000081000000000000000000000000000000000000000000000000000000000000008100100000000000000000000000000000000000000000000000000000000000810020000000000000000000000000000000000000000000000000000000000081003000000000000000000000000000000000000000000000000000000000008100400000000000000000000000000000000000000000000000000000000000810050000000000000000000000000000000000000000000000000000000000081006000000000000000000000000000000000000000000000000000000000008100700000000000000000000000000000000000000000000000000000000000810080000000000000000000000000000000000000000000000000000000000081009000000000000000000000000000000000000000000000000000000000008100a000000000000000000000000000000000000000000000000000000000008100b000000000000000000000000000000000000000000000000000000000008100c000000000000000000000000000000000000000000000000000000000008100d000000000000000000000000000000000000000000000000000000000008100e000000000000000000000000000000000000000000000000000000000008100f0000000000000000000000000000000000000000000000000000000000081010000000000000000000000000000000000000000000000000000000000008101100000000000000000000000000000000000000000000000000000000000810120000000000000000000000000000000000000000000000000000000000081013000000000000000000000000000000000000000000000000000000000008101400000000000000000000000000000000000000000000000000000000000810150000000000000000000000000000000000000000000000000000000000081016000000000000000000000000000000000000000000000000000000000008101700000000000000000000000000000000000000000000000000000000000810180000000000000000000000000000000000000000000000000000000000081019000000000000000000000000000000000000000000000000000000000008101a000000000000000000000000000000000000000000000000000000000008101b000000000000000000000000000000000000000000000000000000000008101c000000000000000000000000000000000000000000000000000000000008101d000000000000000000000000000000000000000000000000000000000008101e000000000000000000000000000000000000000000000000000000000008101f0000000000000000000000000000000000000000000000000000000000081020000000000000000000000000000000000000000000000000000000000008102100000000000000000000000000000000000000000000000000000000000810220000000000000000000000000000000000000000000000000000000000081023000000000000000000000000000000000000000000000000000000000008102400000000000000000000000000000000000000000000000000000000000810250000000000000000000000000000000000000000000000000000000000081026000000000000000000000000000000000000000000000000000000000008102700000000000000000000000000000000000000000000000000000000000810280000000000000000000000000000000000000000000000000000000000081029000000000000000000000000000000000000000000000000000000000008102a000000000000000000000000000000000000000000000000000000000008102b000000000000000000000000000000000000000000000000000000000008102c000000000000000000000000000000000000000000000000000000000008102d000000000000000000000000000000000000000000000000000000000008102e000000000000000000000000000000000000000000000000000000000008102f0000000000000000000000000000000000000000000000000000000000081030000000000000000000000000000000000000000000000000000000000008103100000000000000000000000000000000000000000000000000000000000810320000000000000000000000000000000000000000000000000000000000081033000000000000000000000000000000000000000000000000000000000008103400000000000000000000000000000000000000000000000000000000000810350000000000000000000000000000000000000000000000000000000000081036000000000000000000000000000000000000000000000000000000000008103700000000000000000000000000000000000000000000000000000000000810380000000000000000000000000000000000000000000000000000000000081039000000000000000000000000000000000000000000000000000000000008103a000000000000000000000000000000000000000000000000000000000008103b000000000000000000000000000000000000000000000000000000000008103c000000000000000000000000000000000000000000000000000000000008103d000000000000000000000000000000000000000000000000000000000008103e000000000000000000000000000000000000000000000000000000000008103f4000000000000000000000000000000000000000000000000000000000000800010000000000000000000000000000000000000000000000000000000000081100000000000000000000000000000000000000000000000000000000000008110100000000000000000000000000000000000000000000000000000000000811020000000000000000000000000000000000000000000000000000000000081103000000000000000000000000000000000000000000000000000000000008110400000000000000000000000000000000000000000000000000000000000811050000000000000000000000000000000000000000000000000000000000081106000000000000000000000000000000000000000000000000000000000008110700000000000000000000000000000000000000000000000000000000000811080000000000000000000000000000000000000000000000000000000000081109000000000000000000000000000000000000000000000000000000000008110a000000000000000000000000000000000000000000000000000000000008110b000000000000000000000000000000000000000000000000000000000008110c000000000000000000000000000000000000000000000000000000000008110d000000000000000000000000000000000000000000000000000000000008110e000000000000000000000000000000000000000000000000000000000008110f0000000000000000000000000000000000000000000000000000000000081110000000000000000000000000000000000000000000000000000000000008111100000000000000000000000000000000000000000000000000000000000811120000000000000000000000000000000000000000000000000000000000081113000000000000000000000000000000000000000000000000000000000008111400000000000000000000000000000000000000000000000000000000000811150000000000000000000000000000000000000000000000000000000000081116000000000000000000000000000000000000000000000000000000000008111700000000000000000000000000000000000000000000000000000000000811180000000000000000000000000000000000000000000000000000000000081119000000000000000000000000000000000000000000000000000000000008111a000000000000000000000000000000000000000000000000000000000008111b000000000000000000000000000000000000000000000000000000000008111c000000000000000000000000000000000000000000000000000000000008111d000000000000000000000000000000000000000000000000000000000008111e000000000000000000000000000000000000000000000000000000000008111f0000000000000000000000000000000000000000000000000000000000081120000000000000000000000000000000000000000000000000000000000008112100000000000000000000000000000000000000000000000000000000000811220000000000000000000000000000000000000000000000000000000000081123000000000000000000000000000000000000000000000000000000000008112400000000000000000000000000000000000000000000000000000000000811250000000000000000000000000000000000000000000000000000000000081126000000000000000000000000000000000000000000000000000000000008112700000000000000000000000000000000000000000000000000000000000811280000000000000000000000000000000000000000000000000000000000081129000000000000000000000000000000000000000000000000000000000008112a000000000000000000000000000000000000000000000000000000000008112b000000000000000000000000000000000000000000000000000000000008112c000000000000000000000000000000000000000000000000000000000008112d000000000000000000000000000000000000000000000000000000000008112e000000000000000000000000000000000000000000000000000000000008112f0000000000000000000000000000000000000000000000000000000000081130000000000000000000000000000000000000000000000000000000000008113100000000000000000000000000000000000000000000000000000000000811320000000000000000000000000000000000000000000000000000000000081133000000000000000000000000000000000000000000000000000000000008113400000000000000000000000000000000000000000000000000000000000811350000000000000000000000000000000000000000000000000000000000081136000000000000000000000000000000000000000000000000000000000008113700000000000000000000000000000000000000000000000000000000000811380000000000000000000000000000000000000000000000000000000000081139000000000000000000000000000000000000000000000000000000000008113a000000000000000000000000000000000000000000000000000000000008113b000000000000000000000000000000000000000000000000000000000008113c000000000000000000000000000000000000000000000000000000000008113d000000000000000000000000000000000000000000000000000000000008113e0800265fc26cc330a0a6a8e801430f967c7ed1e58be49f854f0cad6732943f88e20071874f590a2dadb3658c9ab56b3fcf8c43098157070e4c5f724dfa3f22337d00ae67efa2446c41039723a7f780b2d317dc0fe70741ad4b180ed3e69206acb70022e6e6d8999655a395c3d51de207120646c5acfe3c55f06fd12e2bf579816300479bb81c7d06f66baed706c75fa44967ac97960303fbad4f4bdc77f475e68f00ac60795e5b5c80c95c88f6b236bd97aba1156483effa087e56719d8eee599700af23557f2f6de3d1c09b4aad782fffa5457af68d87e778d73de1b921eb41dc00c7c86fa31cdf6f4ce9036bdbee033e09194bf5739a66928d2e3d2ac2703649400000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082001000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082002000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082003000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082004000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082005000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820060000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008200700000000000000000000000000000000000000000000000000000000000820110000000000000000000000000000000000000000000000000000000000082008000000000000000000000000000000000000000000000000000000000008201200000000000000000000000000000000000000000000000000000000000820090000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082016000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082017000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082011000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082012000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820160000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008201700000000000000000000000000000000000000000000000000000000000820210000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008202200000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082026000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082027000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082021000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082022000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820260000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008202700000000000000000000000000000000000000000000000000000000000820310000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008203200000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082036000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082037000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082031000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082032000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008203f00000000000000000000000000000000000000000000000000000000000820360000000000000000000000000000000000000000000000000000000000082040000000000000000000000000000000000000000000000000000000000008203700000000000000000000000000000000000000000000000000000000000820410000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008204200000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082043000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082044000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082045000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082046000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082047000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082048000000000000000000000000000000000000000000000000000000000008203f0000000000000000000000000000000000000000000000000000000000082049400000000000000000000000000000000000000000000000000000000000081300000000000000000000000000000000000000000000000000000000000008130100000000000000000000000000000000000000000000000000000000000813020000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000010000000000000000000000000000000000000000000000000000000000008130100000000000000000000000000000000000000000000000000000000000813020000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000001000000000000000000000000000000000000000000000000000000000000813020000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000100000000000000000000000000000000000000000000000000000000000081303000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000010000000000000000000000000000000000000000000000000000000000008130400000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000001000000000000000000000000000000000000000000000000000000000000813050000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000100000000000000000000000000000000000000000000000000000000000081306000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000010000000000000000000000000000000000000000000000000000000000008130700000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000000000000000000000000000000000000000000000000000000000813160000001000000000000000000000000000000000000000000000000000000000000813080000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000000000000000000000000000000000000000000000000000000000813160000000000000000000000000000000000000000000000000000000000081317000000100000000000000000000000000000000000000000000000000000000000081309000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f00000000000000000000000000000000000000000000000000000000000813100000000000000000000000000000000000000000000000000000000000081311000000000000000000000000000000000000000000000000000000000008131200000000000000000000000000000000000000000000000000000000000813130000000000000000000000000000000000000000000000000000000000081314000000000000000000000000000000000000000000000000000000000008131500000000000000000000000000000000000000000000000000000000000813160000000000000000000000000000000000000000000000000000000000081317000000000000000000000000000000000000000000000000000000000008131800000010000000000000000000000000000000000000000000000000000000000008130a000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f000000000000000000000000000000000000000000000000000000000008131000000000000000000000000000000000000000000000000000000000000813110000000000000000000000000000000000000000000000000000000000081312000000000000000000000000000000000000000000000000000000000008131300000000000000000000000000000000000000000000000000000000000813140000000000000000000000000000000000000000000000000000000000081315000000000000000000000000000000000000000000000000000000000008131600000000000000000000000000000000000000000000000000000000000813170000000000000000000000000000000000000000000000000000000000081318000000000000000000000000000000000000000000000000000000000008131900000010000000000000000000000000000000000000000000000000000000000008130b000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a00000010000000000000000000000000000000000000000000000000000000000008130c000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b00000010000000000000000000000000000000000000000000000000000000000008130d000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c00000010000000000000000000000000000000000000000000000000000000000008130e000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d00000010000000000000000000000000000000000000000000000000000000000008130f0000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000100000000000000000000000000000000000000000000000000000000000081310000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000010000000000000000000000000000000000000000000000000000000000008131100000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000001000000000000000000000000000000000000000000000000000000000000813120000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000100000000000000000000000000000000000000000000000000000000000081313000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000010000000000000000000000000000000000000000000000000000000000008131400000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000001000000000000000000000000000000000000000000000000000000000000813150000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000100000000000000000000000000000000000000000000000000000000000081316000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000010000000000000000000000000000000000000000000000000000000000008131700000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000000000000000000000000000000000000000000000000000000000813260000001000000000000000000000000000000000000000000000000000000000000813180000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000000000000000000000000000000000000000000000000000000000813260000000000000000000000000000000000000000000000000000000000081327000000100000000000000000000000000000000000000000000000000000000000081319000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f00000000000000000000000000000000000000000000000000000000000813200000000000000000000000000000000000000000000000000000000000081321000000000000000000000000000000000000000000000000000000000008132200000000000000000000000000000000000000000000000000000000000813230000000000000000000000000000000000000000000000000000000000081324000000000000000000000000000000000000000000000000000000000008132500000000000000000000000000000000000000000000000000000000000813260000000000000000000000000000000000000000000000000000000000081327000000000000000000000000000000000000000000000000000000000008132800000010000000000000000000000000000000000000000000000000000000000008131a000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f000000000000000000000000000000000000000000000000000000000008132000000000000000000000000000000000000000000000000000000000000813210000000000000000000000000000000000000000000000000000000000081322000000000000000000000000000000000000000000000000000000000008132300000000000000000000000000000000000000000000000000000000000813240000000000000000000000000000000000000000000000000000000000081325000000000000000000000000000000000000000000000000000000000008132600000000000000000000000000000000000000000000000000000000000813270000000000000000000000000000000000000000000000000000000000081328000000000000000000000000000000000000000000000000000000000008132900000010000000000000000000000000000000000000000000000000000000000008131b000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a00000010000000000000000000000000000000000000000000000000000000000008131c000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b00000010000000000000000000000000000000000000000000000000000000000008131d000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c00000010000000000000000000000000000000000000000000000000000000000008131e000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d00000010000000000000000000000000000000000000000000000000000000000008131f0000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000100000000000000000000000000000000000000000000000000000000000081320000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000010000000000000000000000000000000000000000000000000000000000008132100000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000001000000000000000000000000000000000000000000000000000000000000813220000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000100000000000000000000000000000000000000000000000000000000000081323000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000010000000000000000000000000000000000000000000000000000000000008132400000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000001000000000000000000000000000000000000000000000000000000000000813250000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000100000000000000000000000000000000000000000000000000000000000081326000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000010000000000000000000000000000000000000000000000000000000000008132700000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000000000000000000000000000000000000000000000000000000000813360000001000000000000000000000000000000000000000000000000000000000000813280000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000000000000000000000000000000000000000000000000000000000813360000000000000000000000000000000000000000000000000000000000081337000000100000000000000000000000000000000000000000000000000000000000081329000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f00000000000000000000000000000000000000000000000000000000000813300000000000000000000000000000000000000000000000000000000000081331000000000000000000000000000000000000000000000000000000000008133200000000000000000000000000000000000000000000000000000000000813330000000000000000000000000000000000000000000000000000000000081334000000000000000000000000000000000000000000000000000000000008133500000000000000000000000000000000000000000000000000000000000813360000000000000000000000000000000000000000000000000000000000081337000000000000000000000000000000000000000000000000000000000008133800000010000000000000000000000000000000000000000000000000000000000008132a000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f000000000000000000000000000000000000000000000000000000000008133000000000000000000000000000000000000000000000000000000000000813310000000000000000000000000000000000000000000000000000000000081332000000000000000000000000000000000000000000000000000000000008133300000000000000000000000000000000000000000000000000000000000813340000000000000000000000000000000000000000000000000000000000081335000000000000000000000000000000000000000000000000000000000008133600000000000000000000000000000000000000000000000000000000000813370000000000000000000000000000000000000000000000000000000000081338000000000000000000000000000000000000000000000000000000000008133900000010000000000000000000000000000000000000000000000000000000000008132b000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a00000010000000000000000000000000000000000000000000000000000000000008132c000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b00000010000000000000000000000000000000000000000000000000000000000008132d000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c00000010000000000000000000000000000000000000000000000000000000000008132e000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d00000010000000000000000000000000000000000000000000000000000000000008132f0000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000100000000000000000000000000000000000000000000000000000000000081330000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000010000000000000000000000000000000000000000000000000000000000008133100000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000001000000000000000000000000000000000000000000000000000000000000813320000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000100000000000000000000000000000000000000000000000000000000000081333000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000010000000000000000000000000000000000000000000000000000000000008133400000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000001000000000000000000000000000000000000000000000000000000000000813350000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000100000000000000000000000000000000000000000000000000000000000081336000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000010000000000000000000000000000000000000000000000000000000000008133700000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000000000000000000000000000000000000000000000000000000000813460000001000000000000000000000000000000000000000000000000000000000000813380000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000000000000000000000000000000000000000000000000000000000813460000000000000000000000000000000000000000000000000000000000081347000000100000000000000000000000000000000000000000000000000000000000081339000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f00000000000000000000000000000000000000000000000000000000000813400000000000000000000000000000000000000000000000000000000000081341000000000000000000000000000000000000000000000000000000000008134200000000000000000000000000000000000000000000000000000000000813430000000000000000000000000000000000000000000000000000000000081344000000000000000000000000000000000000000000000000000000000008134500000000000000000000000000000000000000000000000000000000000813460000000000000000000000000000000000000000000000000000000000081347000000000000000000000000000000000000000000000000000000000008134800000010000000000000000000000000000000000000000000000000000000000008133a000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f000000000000000000000000000000000000000000000000000000000008134000000000000000000000000000000000000000000000000000000000000813410000000000000000000000000000000000000000000000000000000000081342000000000000000000000000000000000000000000000000000000000008134300000000000000000000000000000000000000000000000000000000000813440000000000000000000000000000000000000000000000000000000000081345000000000000000000000000000000000000000000000000000000000008134600000000000000000000000000000000000000000000000000000000000813470000000000000000000000000000000000000000000000000000000000081348000000000000000000000000000000000000000000000000000000000008134900000010000000000000000000000000000000000000000000000000000000000008133b000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a00000010000000000000000000000000000000000000000000000000000000000008133c000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b00000010000000000000000000000000000000000000000000000000000000000008133d000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b000000000000000000000000000000000000000000000000000000000008134c00000010000000000000000000000000000000000000000000000000000000000008133e000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b000000000000000000000000000000000000000000000000000000000008134c000000000000000000000000000000000000000000000000000000000008134d00000010000000000000000000000000000000000000000000000000000000000008133f0000000000000000000000000000000000000000000000000000000000081340000000000000000000000000000000000000000000000000000000000008134100000000000000000000000000000000000000000000000000000000000813420000000000000000000000000000000000000000000000000000000000081343000000000000000000000000000000000000000000000000000000000008134400000000000000000000000000000000000000000000000000000000000813450000000000000000000000000000000000000000000000000000000000081346000000000000000000000000000000000000000000000000000000000008134700000000000000000000000000000000000000000000000000000000000813480000000000000000000000000000000000000000000000000000000000081349000000000000000000000000000000000000000000000000000000000008134a000000000000000000000000000000000000000000000000000000000008134b000000000000000000000000000000000000000000000000000000000008134c000000000000000000000000000000000000000000000000000000000008134d000000000000000000000000000000000000000000000000000000000008134e00000010000000000000115eb7decf7c60e65a492d6d10792ff3524dbd14ea8194bd101a9fb4a31650fb00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000c100100000000000000000000000000000000000000000000000000000000000c100200000000000000000000000000000000000000000000000000000000000c100300000000000000000000000000000000000000000000000000000000000c100400000000000000000000000000000000000000000000000000000000000c100500000000000000000000000000000000000000000000000000000000000c100600000000000000000000000000000000000000000000000000000000000c100700000000000000000000000000000000000000000000000000000000000c100800000000000000000000000000000000000000000000000000000000000c100900000000000000000000000000000000000000000000000000000000000c100a00000000000000000000000000000000000000000000000000000000000c100b00000000000000000000000000000000000000000000000000000000000c100c00000000000000000000000000000000000000000000000000000000000c100d00000000000000000000000000000000000000000000000000000000000c100e00000000000000000000000000000000000000000000000000000000000c100f00000000000000000000000000000000000000000000000000000000000c101000000000000000000000000000000000000000000000000000000000000c101100000000000000000000000000000000000000000000000000000000000c101200000000000000000000000000000000000000000000000000000000000c101300000000000000000000000000000000000000000000000000000000000c101400000000000000000000000000000000000000000000000000000000000c101500000000000000000000000000000000000000000000000000000000000c101600000000000000000000000000000000000000000000000000000000000c101700000000000000000000000000000000000000000000000000000000000c101800000000000000000000000000000000000000000000000000000000000c101900000000000000000000000000000000000000000000000000000000000c101a00000000000000000000000000000000000000000000000000000000000c101b00000000000000000000000000000000000000000000000000000000000c101c00000000000000000000000000000000000000000000000000000000000c101d00000000000000000000000000000000000000000000000000000000000c101e00000000000000000000000000000000000000000000000000000000000c101f00000000000000000000000000000000000000000000000000000000000c102000000000000000000000000000000000000000000000000000000000000c102100000000000000000000000000000000000000000000000000000000000c102200000000000000000000000000000000000000000000000000000000000c102300000000000000000000000000000000000000000000000000000000000c102400000000000000000000000000000000000000000000000000000000000c102500000000000000000000000000000000000000000000000000000000000c102600000000000000000000000000000000000000000000000000000000000c102700000000000000000000000000000000000000000000000000000000000c102800000000000000000000000000000000000000000000000000000000000c102900000000000000000000000000000000000000000000000000000000000c102a00000000000000000000000000000000000000000000000000000000000c102b00000000000000000000000000000000000000000000000000000000000c102c00000000000000000000000000000000000000000000000000000000000c102d00000000000000000000000000000000000000000000000000000000000c102e00000000000000000000000000000000000000000000000000000000000c102f00000000000000000000000000000000000000000000000000000000000c103000000000000000000000000000000000000000000000000000000000000c103100000000000000000000000000000000000000000000000000000000000c103200000000000000000000000000000000000000000000000000000000000c103300000000000000000000000000000000000000000000000000000000000c103400000000000000000000000000000000000000000000000000000000000c103500000000000000000000000000000000000000000000000000000000000c103600000000000000000000000000000000000000000000000000000000000c103700000000000000000000000000000000000000000000000000000000000c103800000000000000000000000000000000000000000000000000000000000c103900000000000000000000000000000000000000000000000000000000000c103a00000000000000000000000000000000000000000000000000000000000c103b00000000000000000000000000000000000000000000000000000000000c103c00000000000000000000000000000000000000000000000000000000000c103d00000000000000000000000000000000000000000000000000000000000c103e00000000000000000000000000000000000000000000000000000000000c103f4000000000000000000000000000000000000000000000000000000000000c000100000000000000000000000000000000000000000000000000000000000c110000000000000000000000000000000000000000000000000000000000000c110100000000000000000000000000000000000000000000000000000000000c110200000000000000000000000000000000000000000000000000000000000c110300000000000000000000000000000000000000000000000000000000000c110400000000000000000000000000000000000000000000000000000000000c110500000000000000000000000000000000000000000000000000000000000c110600000000000000000000000000000000000000000000000000000000000c110700000000000000000000000000000000000000000000000000000000000c110800000000000000000000000000000000000000000000000000000000000c110900000000000000000000000000000000000000000000000000000000000c110a00000000000000000000000000000000000000000000000000000000000c110b00000000000000000000000000000000000000000000000000000000000c110c00000000000000000000000000000000000000000000000000000000000c110d00000000000000000000000000000000000000000000000000000000000c110e00000000000000000000000000000000000000000000000000000000000c110f00000000000000000000000000000000000000000000000000000000000c111000000000000000000000000000000000000000000000000000000000000c111100000000000000000000000000000000000000000000000000000000000c111200000000000000000000000000000000000000000000000000000000000c111300000000000000000000000000000000000000000000000000000000000c111400000000000000000000000000000000000000000000000000000000000c111500000000000000000000000000000000000000000000000000000000000c111600000000000000000000000000000000000000000000000000000000000c111700000000000000000000000000000000000000000000000000000000000c111800000000000000000000000000000000000000000000000000000000000c111900000000000000000000000000000000000000000000000000000000000c111a00000000000000000000000000000000000000000000000000000000000c111b00000000000000000000000000000000000000000000000000000000000c111c00000000000000000000000000000000000000000000000000000000000c111d00000000000000000000000000000000000000000000000000000000000c111e00000000000000000000000000000000000000000000000000000000000c111f00000000000000000000000000000000000000000000000000000000000c112000000000000000000000000000000000000000000000000000000000000c112100000000000000000000000000000000000000000000000000000000000c112200000000000000000000000000000000000000000000000000000000000c112300000000000000000000000000000000000000000000000000000000000c112400000000000000000000000000000000000000000000000000000000000c112500000000000000000000000000000000000000000000000000000000000c112600000000000000000000000000000000000000000000000000000000000c112700000000000000000000000000000000000000000000000000000000000c112800000000000000000000000000000000000000000000000000000000000c112900000000000000000000000000000000000000000000000000000000000c112a00000000000000000000000000000000000000000000000000000000000c112b00000000000000000000000000000000000000000000000000000000000c112c00000000000000000000000000000000000000000000000000000000000c112d00000000000000000000000000000000000000000000000000000000000c112e00000000000000000000000000000000000000000000000000000000000c112f00000000000000000000000000000000000000000000000000000000000c113000000000000000000000000000000000000000000000000000000000000c113100000000000000000000000000000000000000000000000000000000000c113200000000000000000000000000000000000000000000000000000000000c113300000000000000000000000000000000000000000000000000000000000c113400000000000000000000000000000000000000000000000000000000000c113500000000000000000000000000000000000000000000000000000000000c113600000000000000000000000000000000000000000000000000000000000c113700000000000000000000000000000000000000000000000000000000000c113800000000000000000000000000000000000000000000000000000000000c113900000000000000000000000000000000000000000000000000000000000c113a00000000000000000000000000000000000000000000000000000000000c113b00000000000000000000000000000000000000000000000000000000000c113c00000000000000000000000000000000000000000000000000000000000c113d00000000000000000000000000000000000000000000000000000000000c113e08007740254fc3203c599b97e5049f81ecb8acf39bddfbeae8ce74298e4ea87efe00bde1f60e5339304ca4b53d8b845c6e7d293f6841c1b62c07c2eb231593c4d100204739a2456e89e1353337ea45977dd7dcca61921869c7c6871ade16c5b680006d06063ef1b29afa07e57f756435cf5d48e822d678b7a913b5838aa3443cbf0083ecac1aa2e9e8402a9810b7590d4b76945b41df2cb7c999ba354ea087c06c003d7e1311d740b160e04897e91bb1a4e85d22b5ff438622f18eb090ef494a75007788b07cf04ef30ff0196f111a0486011eaef85bf336a76a3fb6c7b3388117009fffd2100e9e3d9d7002c2f3bd4dd44dadcf24d8b0c3d74c62206460a8142e4000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c200100000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c200200000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c200300000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c200400000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c200500000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c200600000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c200700000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c200800000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c200900000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c204000000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c204100000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c204200000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c204300000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c204400000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c204500000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c204600000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c204700000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c204800000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c20494000000000000000000000000000000000000000000000000000000000000c130000000000000000000000000000000000000000000000000000000000000c130100000000000000000000000000000000000000000000000000000000000c130200000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f0000001000000000000000000000000000000000000000000000000000000000000c130100000000000000000000000000000000000000000000000000000000000c130200000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c13100000001000000000000000000000000000000000000000000000000000000000000c130200000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c13110000001000000000000000000000000000000000000000000000000000000000000c130300000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c13120000001000000000000000000000000000000000000000000000000000000000000c130400000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c13130000001000000000000000000000000000000000000000000000000000000000000c130500000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c13140000001000000000000000000000000000000000000000000000000000000000000c130600000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c13150000001000000000000000000000000000000000000000000000000000000000000c130700000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c13160000001000000000000000000000000000000000000000000000000000000000000c130800000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c13170000001000000000000000000000000000000000000000000000000000000000000c130900000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c13180000001000000000000000000000000000000000000000000000000000000000000c130a00000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c13190000001000000000000000000000000000000000000000000000000000000000000c130b00000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a0000001000000000000000000000000000000000000000000000000000000000000c130c00000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b0000001000000000000000000000000000000000000000000000000000000000000c130d00000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c0000001000000000000000000000000000000000000000000000000000000000000c130e00000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d0000001000000000000000000000000000000000000000000000000000000000000c130f00000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e0000001000000000000000000000000000000000000000000000000000000000000c131000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f0000001000000000000000000000000000000000000000000000000000000000000c131100000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c13200000001000000000000000000000000000000000000000000000000000000000000c131200000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c13210000001000000000000000000000000000000000000000000000000000000000000c131300000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c13220000001000000000000000000000000000000000000000000000000000000000000c131400000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c13230000001000000000000000000000000000000000000000000000000000000000000c131500000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c13240000001000000000000000000000000000000000000000000000000000000000000c131600000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c13250000001000000000000000000000000000000000000000000000000000000000000c131700000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c13260000001000000000000000000000000000000000000000000000000000000000000c131800000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c13270000001000000000000000000000000000000000000000000000000000000000000c131900000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c13280000001000000000000000000000000000000000000000000000000000000000000c131a00000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c13290000001000000000000000000000000000000000000000000000000000000000000c131b00000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a0000001000000000000000000000000000000000000000000000000000000000000c131c00000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b0000001000000000000000000000000000000000000000000000000000000000000c131d00000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c0000001000000000000000000000000000000000000000000000000000000000000c131e00000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d0000001000000000000000000000000000000000000000000000000000000000000c131f00000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e0000001000000000000000000000000000000000000000000000000000000000000c132000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f0000001000000000000000000000000000000000000000000000000000000000000c132100000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c13300000001000000000000000000000000000000000000000000000000000000000000c132200000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c13310000001000000000000000000000000000000000000000000000000000000000000c132300000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c13320000001000000000000000000000000000000000000000000000000000000000000c132400000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c13330000001000000000000000000000000000000000000000000000000000000000000c132500000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c13340000001000000000000000000000000000000000000000000000000000000000000c132600000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c13350000001000000000000000000000000000000000000000000000000000000000000c132700000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c13360000001000000000000000000000000000000000000000000000000000000000000c132800000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c13370000001000000000000000000000000000000000000000000000000000000000000c132900000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c13380000001000000000000000000000000000000000000000000000000000000000000c132a00000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c13390000001000000000000000000000000000000000000000000000000000000000000c132b00000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a0000001000000000000000000000000000000000000000000000000000000000000c132c00000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b0000001000000000000000000000000000000000000000000000000000000000000c132d00000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c0000001000000000000000000000000000000000000000000000000000000000000c132e00000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d0000001000000000000000000000000000000000000000000000000000000000000c132f00000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e0000001000000000000000000000000000000000000000000000000000000000000c133000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f0000001000000000000000000000000000000000000000000000000000000000000c133100000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c13400000001000000000000000000000000000000000000000000000000000000000000c133200000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c13410000001000000000000000000000000000000000000000000000000000000000000c133300000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c13420000001000000000000000000000000000000000000000000000000000000000000c133400000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c13430000001000000000000000000000000000000000000000000000000000000000000c133500000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c13440000001000000000000000000000000000000000000000000000000000000000000c133600000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c13450000001000000000000000000000000000000000000000000000000000000000000c133700000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c13460000001000000000000000000000000000000000000000000000000000000000000c133800000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c13470000001000000000000000000000000000000000000000000000000000000000000c133900000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c13480000001000000000000000000000000000000000000000000000000000000000000c133a00000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c13490000001000000000000000000000000000000000000000000000000000000000000c133b00000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a0000001000000000000000000000000000000000000000000000000000000000000c133c00000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b0000001000000000000000000000000000000000000000000000000000000000000c133d00000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b00000000000000000000000000000000000000000000000000000000000c134c0000001000000000000000000000000000000000000000000000000000000000000c133e00000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b00000000000000000000000000000000000000000000000000000000000c134c00000000000000000000000000000000000000000000000000000000000c134d0000001000000000000000000000000000000000000000000000000000000000000c133f00000000000000000000000000000000000000000000000000000000000c134000000000000000000000000000000000000000000000000000000000000c134100000000000000000000000000000000000000000000000000000000000c134200000000000000000000000000000000000000000000000000000000000c134300000000000000000000000000000000000000000000000000000000000c134400000000000000000000000000000000000000000000000000000000000c134500000000000000000000000000000000000000000000000000000000000c134600000000000000000000000000000000000000000000000000000000000c134700000000000000000000000000000000000000000000000000000000000c134800000000000000000000000000000000000000000000000000000000000c134900000000000000000000000000000000000000000000000000000000000c134a00000000000000000000000000000000000000000000000000000000000c134b00000000000000000000000000000000000000000000000000000000000c134c00000000000000000000000000000000000000000000000000000000000c134d00000000000000000000000000000000000000000000000000000000000c134e0000001000000000000024d5759a53caed1a63d7357a4a67e0d7f9b01138df396bbeabbfc3ab7795b4980000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010100100000000000000000000000000000000000000000000000000000000001010020000000000000000000000000000000000000000000000000000000000101003000000000000000000000000000000000000000000000000000000000010100400000000000000000000000000000000000000000000000000000000001010050000000000000000000000000000000000000000000000000000000000101006000000000000000000000000000000000000000000000000000000000010100700000000000000000000000000000000000000000000000000000000001010080000000000000000000000000000000000000000000000000000000000101009000000000000000000000000000000000000000000000000000000000010100a000000000000000000000000000000000000000000000000000000000010100b000000000000000000000000000000000000000000000000000000000010100c000000000000000000000000000000000000000000000000000000000010100d000000000000000000000000000000000000000000000000000000000010100e000000000000000000000000000000000000000000000000000000000010100f0000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000000000000000000000000000000000010101100000000000000000000000000000000000000000000000000000000001010120000000000000000000000000000000000000000000000000000000000101013000000000000000000000000000000000000000000000000000000000010101400000000000000000000000000000000000000000000000000000000001010150000000000000000000000000000000000000000000000000000000000101016000000000000000000000000000000000000000000000000000000000010101700000000000000000000000000000000000000000000000000000000001010180000000000000000000000000000000000000000000000000000000000101019000000000000000000000000000000000000000000000000000000000010101a000000000000000000000000000000000000000000000000000000000010101b000000000000000000000000000000000000000000000000000000000010101c000000000000000000000000000000000000000000000000000000000010101d000000000000000000000000000000000000000000000000000000000010101e000000000000000000000000000000000000000000000000000000000010101f0000000000000000000000000000000000000000000000000000000000101020000000000000000000000000000000000000000000000000000000000010102100000000000000000000000000000000000000000000000000000000001010220000000000000000000000000000000000000000000000000000000000101023000000000000000000000000000000000000000000000000000000000010102400000000000000000000000000000000000000000000000000000000001010250000000000000000000000000000000000000000000000000000000000101026000000000000000000000000000000000000000000000000000000000010102700000000000000000000000000000000000000000000000000000000001010280000000000000000000000000000000000000000000000000000000000101029000000000000000000000000000000000000000000000000000000000010102a000000000000000000000000000000000000000000000000000000000010102b000000000000000000000000000000000000000000000000000000000010102c000000000000000000000000000000000000000000000000000000000010102d000000000000000000000000000000000000000000000000000000000010102e000000000000000000000000000000000000000000000000000000000010102f0000000000000000000000000000000000000000000000000000000000101030000000000000000000000000000000000000000000000000000000000010103100000000000000000000000000000000000000000000000000000000001010320000000000000000000000000000000000000000000000000000000000101033000000000000000000000000000000000000000000000000000000000010103400000000000000000000000000000000000000000000000000000000001010350000000000000000000000000000000000000000000000000000000000101036000000000000000000000000000000000000000000000000000000000010103700000000000000000000000000000000000000000000000000000000001010380000000000000000000000000000000000000000000000000000000000101039000000000000000000000000000000000000000000000000000000000010103a000000000000000000000000000000000000000000000000000000000010103b000000000000000000000000000000000000000000000000000000000010103c000000000000000000000000000000000000000000000000000000000010103d000000000000000000000000000000000000000000000000000000000010103e000000000000000000000000000000000000000000000000000000000010103f4000000000000000000000000000000000000000000000000000000000001000010000000000000000000000000000000000000000000000000000000000101100000000000000000000000000000000000000000000000000000000000010110100000000000000000000000000000000000000000000000000000000001011020000000000000000000000000000000000000000000000000000000000101103000000000000000000000000000000000000000000000000000000000010110400000000000000000000000000000000000000000000000000000000001011050000000000000000000000000000000000000000000000000000000000101106000000000000000000000000000000000000000000000000000000000010110700000000000000000000000000000000000000000000000000000000001011080000000000000000000000000000000000000000000000000000000000101109000000000000000000000000000000000000000000000000000000000010110a000000000000000000000000000000000000000000000000000000000010110b000000000000000000000000000000000000000000000000000000000010110c000000000000000000000000000000000000000000000000000000000010110d000000000000000000000000000000000000000000000000000000000010110e000000000000000000000000000000000000000000000000000000000010110f0000000000000000000000000000000000000000000000000000000000101110000000000000000000000000000000000000000000000000000000000010111100000000000000000000000000000000000000000000000000000000001011120000000000000000000000000000000000000000000000000000000000101113000000000000000000000000000000000000000000000000000000000010111400000000000000000000000000000000000000000000000000000000001011150000000000000000000000000000000000000000000000000000000000101116000000000000000000000000000000000000000000000000000000000010111700000000000000000000000000000000000000000000000000000000001011180000000000000000000000000000000000000000000000000000000000101119000000000000000000000000000000000000000000000000000000000010111a000000000000000000000000000000000000000000000000000000000010111b000000000000000000000000000000000000000000000000000000000010111c000000000000000000000000000000000000000000000000000000000010111d000000000000000000000000000000000000000000000000000000000010111e000000000000000000000000000000000000000000000000000000000010111f0000000000000000000000000000000000000000000000000000000000101120000000000000000000000000000000000000000000000000000000000010112100000000000000000000000000000000000000000000000000000000001011220000000000000000000000000000000000000000000000000000000000101123000000000000000000000000000000000000000000000000000000000010112400000000000000000000000000000000000000000000000000000000001011250000000000000000000000000000000000000000000000000000000000101126000000000000000000000000000000000000000000000000000000000010112700000000000000000000000000000000000000000000000000000000001011280000000000000000000000000000000000000000000000000000000000101129000000000000000000000000000000000000000000000000000000000010112a000000000000000000000000000000000000000000000000000000000010112b000000000000000000000000000000000000000000000000000000000010112c000000000000000000000000000000000000000000000000000000000010112d000000000000000000000000000000000000000000000000000000000010112e000000000000000000000000000000000000000000000000000000000010112f0000000000000000000000000000000000000000000000000000000000101130000000000000000000000000000000000000000000000000000000000010113100000000000000000000000000000000000000000000000000000000001011320000000000000000000000000000000000000000000000000000000000101133000000000000000000000000000000000000000000000000000000000010113400000000000000000000000000000000000000000000000000000000001011350000000000000000000000000000000000000000000000000000000000101136000000000000000000000000000000000000000000000000000000000010113700000000000000000000000000000000000000000000000000000000001011380000000000000000000000000000000000000000000000000000000000101139000000000000000000000000000000000000000000000000000000000010113a000000000000000000000000000000000000000000000000000000000010113b000000000000000000000000000000000000000000000000000000000010113c000000000000000000000000000000000000000000000000000000000010113d000000000000000000000000000000000000000000000000000000000010113e08001790a679d3716b68fe4923616e234005918acd822bcc4ee8391ee526366e6000e29a714f3a1481f66d186077e4471803e542f4a8c165a5dc51359b0b5c04220050dbc735880ca3e38c57fd0510fb34541b132ae9eb6d7b88ae69fc16df197500cc7847321bda78d6d60dc09b0e3d75b350174e8ad07eb2a51c0a9afeb3c51700cd0fa6b6fc4c5859760aba07f5f5e0c714b57e55b13692fbbfe48f9e6bee5d00d4e93fc3e1a3d729afc451308365e07a5ec3fe8a220a4bcf93d09801703d3c00f7facd28c2650b9391380a08a9f583db4deed48993279a2253980d7a7c84d300e6143b86a0332ebe75bf78307054245c7b8ce8dd7130d477bcb691e1e51d82400000000000000000000000000000000000000000000000000000000000102000000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102001000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102002000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102003000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102004000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102005000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020060000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010200700000000000000000000000000000000000000000000000000000000001020110000000000000000000000000000000000000000000000000000000000102008000000000000000000000000000000000000000000000000000000000010201200000000000000000000000000000000000000000000000000000000001020090000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102016000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102017000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102011000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102012000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020160000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010201700000000000000000000000000000000000000000000000000000000001020210000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010202200000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102026000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102027000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102021000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102022000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020260000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010202700000000000000000000000000000000000000000000000000000000001020310000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010203200000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102036000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102037000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102031000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102032000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010203f00000000000000000000000000000000000000000000000000000000001020360000000000000000000000000000000000000000000000000000000000102040000000000000000000000000000000000000000000000000000000000010203700000000000000000000000000000000000000000000000000000000001020410000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010204200000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102043000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102044000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102045000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102046000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102047000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102048000000000000000000000000000000000000000000000000000000000010203f0000000000000000000000000000000000000000000000000000000000102049400000000000000000000000000000000000000000000000000000000000101300000000000000000000000000000000000000000000000000000000000010130100000000000000000000000000000000000000000000000000000000001013020000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000010000000000000000000000000000000000000000000000000000000000010130100000000000000000000000000000000000000000000000000000000001013020000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000001000000000000000000000000000000000000000000000000000000000001013020000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000100000000000000000000000000000000000000000000000000000000000101303000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000010000000000000000000000000000000000000000000000000000000000010130400000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000001000000000000000000000000000000000000000000000000000000000001013050000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000100000000000000000000000000000000000000000000000000000000000101306000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000010000000000000000000000000000000000000000000000000000000000010130700000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000000000000000000000000000000000000000000000000000000001013160000001000000000000000000000000000000000000000000000000000000000001013080000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000000000000000000000000000000000000000000000000000000001013160000000000000000000000000000000000000000000000000000000000101317000000100000000000000000000000000000000000000000000000000000000000101309000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f00000000000000000000000000000000000000000000000000000000001013100000000000000000000000000000000000000000000000000000000000101311000000000000000000000000000000000000000000000000000000000010131200000000000000000000000000000000000000000000000000000000001013130000000000000000000000000000000000000000000000000000000000101314000000000000000000000000000000000000000000000000000000000010131500000000000000000000000000000000000000000000000000000000001013160000000000000000000000000000000000000000000000000000000000101317000000000000000000000000000000000000000000000000000000000010131800000010000000000000000000000000000000000000000000000000000000000010130a000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f000000000000000000000000000000000000000000000000000000000010131000000000000000000000000000000000000000000000000000000000001013110000000000000000000000000000000000000000000000000000000000101312000000000000000000000000000000000000000000000000000000000010131300000000000000000000000000000000000000000000000000000000001013140000000000000000000000000000000000000000000000000000000000101315000000000000000000000000000000000000000000000000000000000010131600000000000000000000000000000000000000000000000000000000001013170000000000000000000000000000000000000000000000000000000000101318000000000000000000000000000000000000000000000000000000000010131900000010000000000000000000000000000000000000000000000000000000000010130b000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a00000010000000000000000000000000000000000000000000000000000000000010130c000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b00000010000000000000000000000000000000000000000000000000000000000010130d000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c00000010000000000000000000000000000000000000000000000000000000000010130e000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d00000010000000000000000000000000000000000000000000000000000000000010130f0000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000100000000000000000000000000000000000000000000000000000000000101310000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000010000000000000000000000000000000000000000000000000000000000010131100000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000001000000000000000000000000000000000000000000000000000000000001013120000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000100000000000000000000000000000000000000000000000000000000000101313000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000010000000000000000000000000000000000000000000000000000000000010131400000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000001000000000000000000000000000000000000000000000000000000000001013150000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000100000000000000000000000000000000000000000000000000000000000101316000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000010000000000000000000000000000000000000000000000000000000000010131700000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000000000000000000000000000000000000000000000000000000001013260000001000000000000000000000000000000000000000000000000000000000001013180000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000000000000000000000000000000000000000000000000000000001013260000000000000000000000000000000000000000000000000000000000101327000000100000000000000000000000000000000000000000000000000000000000101319000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f00000000000000000000000000000000000000000000000000000000001013200000000000000000000000000000000000000000000000000000000000101321000000000000000000000000000000000000000000000000000000000010132200000000000000000000000000000000000000000000000000000000001013230000000000000000000000000000000000000000000000000000000000101324000000000000000000000000000000000000000000000000000000000010132500000000000000000000000000000000000000000000000000000000001013260000000000000000000000000000000000000000000000000000000000101327000000000000000000000000000000000000000000000000000000000010132800000010000000000000000000000000000000000000000000000000000000000010131a000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f000000000000000000000000000000000000000000000000000000000010132000000000000000000000000000000000000000000000000000000000001013210000000000000000000000000000000000000000000000000000000000101322000000000000000000000000000000000000000000000000000000000010132300000000000000000000000000000000000000000000000000000000001013240000000000000000000000000000000000000000000000000000000000101325000000000000000000000000000000000000000000000000000000000010132600000000000000000000000000000000000000000000000000000000001013270000000000000000000000000000000000000000000000000000000000101328000000000000000000000000000000000000000000000000000000000010132900000010000000000000000000000000000000000000000000000000000000000010131b000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a00000010000000000000000000000000000000000000000000000000000000000010131c000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b00000010000000000000000000000000000000000000000000000000000000000010131d000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c00000010000000000000000000000000000000000000000000000000000000000010131e000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d00000010000000000000000000000000000000000000000000000000000000000010131f0000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000100000000000000000000000000000000000000000000000000000000000101320000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000010000000000000000000000000000000000000000000000000000000000010132100000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000001000000000000000000000000000000000000000000000000000000000001013220000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000100000000000000000000000000000000000000000000000000000000000101323000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000010000000000000000000000000000000000000000000000000000000000010132400000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000001000000000000000000000000000000000000000000000000000000000001013250000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000100000000000000000000000000000000000000000000000000000000000101326000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000010000000000000000000000000000000000000000000000000000000000010132700000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000000000000000000000000000000000000000000000000000000001013360000001000000000000000000000000000000000000000000000000000000000001013280000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000000000000000000000000000000000000000000000000000000001013360000000000000000000000000000000000000000000000000000000000101337000000100000000000000000000000000000000000000000000000000000000000101329000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f00000000000000000000000000000000000000000000000000000000001013300000000000000000000000000000000000000000000000000000000000101331000000000000000000000000000000000000000000000000000000000010133200000000000000000000000000000000000000000000000000000000001013330000000000000000000000000000000000000000000000000000000000101334000000000000000000000000000000000000000000000000000000000010133500000000000000000000000000000000000000000000000000000000001013360000000000000000000000000000000000000000000000000000000000101337000000000000000000000000000000000000000000000000000000000010133800000010000000000000000000000000000000000000000000000000000000000010132a000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f000000000000000000000000000000000000000000000000000000000010133000000000000000000000000000000000000000000000000000000000001013310000000000000000000000000000000000000000000000000000000000101332000000000000000000000000000000000000000000000000000000000010133300000000000000000000000000000000000000000000000000000000001013340000000000000000000000000000000000000000000000000000000000101335000000000000000000000000000000000000000000000000000000000010133600000000000000000000000000000000000000000000000000000000001013370000000000000000000000000000000000000000000000000000000000101338000000000000000000000000000000000000000000000000000000000010133900000010000000000000000000000000000000000000000000000000000000000010132b000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a00000010000000000000000000000000000000000000000000000000000000000010132c000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b00000010000000000000000000000000000000000000000000000000000000000010132d000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c00000010000000000000000000000000000000000000000000000000000000000010132e000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d00000010000000000000000000000000000000000000000000000000000000000010132f0000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000100000000000000000000000000000000000000000000000000000000000101330000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000010000000000000000000000000000000000000000000000000000000000010133100000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000001000000000000000000000000000000000000000000000000000000000001013320000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000100000000000000000000000000000000000000000000000000000000000101333000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000010000000000000000000000000000000000000000000000000000000000010133400000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000001000000000000000000000000000000000000000000000000000000000001013350000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000100000000000000000000000000000000000000000000000000000000000101336000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000010000000000000000000000000000000000000000000000000000000000010133700000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000000000000000000000000000000000000000000000000000000001013460000001000000000000000000000000000000000000000000000000000000000001013380000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000000000000000000000000000000000000000000000000000000001013460000000000000000000000000000000000000000000000000000000000101347000000100000000000000000000000000000000000000000000000000000000000101339000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f00000000000000000000000000000000000000000000000000000000001013400000000000000000000000000000000000000000000000000000000000101341000000000000000000000000000000000000000000000000000000000010134200000000000000000000000000000000000000000000000000000000001013430000000000000000000000000000000000000000000000000000000000101344000000000000000000000000000000000000000000000000000000000010134500000000000000000000000000000000000000000000000000000000001013460000000000000000000000000000000000000000000000000000000000101347000000000000000000000000000000000000000000000000000000000010134800000010000000000000000000000000000000000000000000000000000000000010133a000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f000000000000000000000000000000000000000000000000000000000010134000000000000000000000000000000000000000000000000000000000001013410000000000000000000000000000000000000000000000000000000000101342000000000000000000000000000000000000000000000000000000000010134300000000000000000000000000000000000000000000000000000000001013440000000000000000000000000000000000000000000000000000000000101345000000000000000000000000000000000000000000000000000000000010134600000000000000000000000000000000000000000000000000000000001013470000000000000000000000000000000000000000000000000000000000101348000000000000000000000000000000000000000000000000000000000010134900000010000000000000000000000000000000000000000000000000000000000010133b000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a00000010000000000000000000000000000000000000000000000000000000000010133c000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b00000010000000000000000000000000000000000000000000000000000000000010133d000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b000000000000000000000000000000000000000000000000000000000010134c00000010000000000000000000000000000000000000000000000000000000000010133e000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b000000000000000000000000000000000000000000000000000000000010134c000000000000000000000000000000000000000000000000000000000010134d00000010000000000000000000000000000000000000000000000000000000000010133f0000000000000000000000000000000000000000000000000000000000101340000000000000000000000000000000000000000000000000000000000010134100000000000000000000000000000000000000000000000000000000001013420000000000000000000000000000000000000000000000000000000000101343000000000000000000000000000000000000000000000000000000000010134400000000000000000000000000000000000000000000000000000000001013450000000000000000000000000000000000000000000000000000000000101346000000000000000000000000000000000000000000000000000000000010134700000000000000000000000000000000000000000000000000000000001013480000000000000000000000000000000000000000000000000000000000101349000000000000000000000000000000000000000000000000000000000010134a000000000000000000000000000000000000000000000000000000000010134b000000000000000000000000000000000000000000000000000000000010134c000000000000000000000000000000000000000000000000000000000010134d000000000000000000000000000000000000000000000000000000000010134e000000100000000000", "header": { - "lastArchiveRoot": "0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5", - "blockHeadersHash": "0x087b6f59388fa4207876ee1b50521ff838d6eed422d0ad07ff996393f32a77e6", - "blobsHash": "0x001bef3ff3f657c565ff86d5072186f7f2bfddb8a31ca0714562c164fe954d84", + "lastArchiveRoot": "0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc", + "blockHeadersHash": "0x0156437a617a61f92ca29c40e17ca4b0a4cad197df273241e4944317f191bc76", + "blobsHash": "0x00de05b4ffe4a06e85b9ec611fdf4428f3372da9bfed60ebba0ebd271f6b6549", "inHash": "0x00de7b349d2306334734e4f58b1302a6ed5a6c796a706f6597a5641b6d468223", "outHash": "0x00cffdbb0e7f5e164d314d781d38ae31230910a3bae4c34e7df6222df71b1539", "slotNumber": 99, - "timestamp": 1776857848, - "coinbase": "0x1d5bd52b8e64405fe3d780d652fd91748dfeb73d", - "feeRecipient": "0x2d0879b9f59bd771bad9c73f4e20e8058051165385c9e4054ae24b446881aa27", + "timestamp": 1782246857, + "coinbase": "0x8bc1a752ce8fb0b95bbf82e9963c8a3678016b09", + "feeRecipient": "0x2fc07d838bc8999ec3ae38955747cdd79344787c21ca670a7cc7ae85766578b0", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 292838000000 + "feePerL2Gas": 291266000000 }, "totalManaUsed": 0, "accumulatedFees": 0 }, - "headerHash": "0x003ce6d2bb91ea8852841510f5485595dfbddbaa0420e083caf37f182be2140a", + "headerHash": "0x0068fcf0b4e42943377e14481b1fdba7c96e5dd1639f5e1967d182a4a061d878", "numTxs": 4 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/mixed_checkpoint_2.json b/l1-contracts/test/fixtures/mixed_checkpoint_2.json index 577e335441eb..e7aea40977a5 100644 --- a/l1-contracts/test/fixtures/mixed_checkpoint_2.json +++ b/l1-contracts/test/fixtures/mixed_checkpoint_2.json @@ -58,29 +58,29 @@ ] }, "checkpoint": { - "archive": "0x007997c743e9212c8a1a7d0bd64ec4cda0515f51ac34f212a76fdc9f327fba4c", - "blobCommitments": "0x028fe48de854a01adf3756fcd2abc08533ebe7d446837b541546d17e826e1f9d51ff0f482cd64aa8ef02414d5158d1f72ba4a8bce6747d05f605db298675e14f5e03cddae8353f06c2022f1d0212a7521d31874fe2a9be506d54ca3d3aaa24775b", - "batchedBlobInputs": "0x014f8a9e2561d27bbc1285d89f097838ff72b31a8c7fe3f8b944f90e52b16adf2a6a885ba35b3d6ad18771001228e99d96427ff900b9caf4d6b94f6225cd0c8943eeab8b9ffde34b377fabd5d285a8b388c2c9643f193681e0b03b6963fbdfc58da2c5f3a929ce6db879197f2f7b8e54f106f0e5993314cb69385e09de76e3337810056179b55528b0c9f7cbf18c3fc7b72c0d8a1caf4d345e8a9c7646484793b07ff4cbcf892d2571a70e9f6a5e8416409090dfbf598a63ad34a941f71335b9", + "archive": "0x047f67d4e361f6b98d3c196fa308a3fb45f5eb25f25d9e35698fb56c8793b20f", + "blobCommitments": "0x0286721aed74673beb71f90f5e0f5d6d9e2f396119f77314e8872c231761a2897ebc89ca36430726d9a894e774e1ee0de99990d4bd4e1fa05012dd1cdabd149fcaed714948f16edbc68f74793c15ddfdc45377961c0fab0850274abf2eff243cc9", + "batchedBlobInputs": "0x017098c1fec865893b0fd4580e438654cd01c2e3bd08fdedcf3d1a18d9e7d01f1a9909a32ff99c8171357d78cd3f4f3e72ea31408717745ac4f7380807a068626b29e816b6d5a629443e44d3e731861b8400d67e7267c8f969e9bb0a14892fa68217893c4174ebf0c5a47163b0e470a2b9208d4b0d83e1bf6589c2961ba01d2c8441e25209d1b641d8746f4db8001faa811c2bd28aa224369fac4f78d5d2b2979a8486b587f47b3f19de799e2dfd592d8f0464c32cb3324e296ff01f4ec0197c", "checkpointNumber": 2, - "body": "0x000000040010214cf1718b3a48ae4b573fde762bf8b9ccedaf03ed0c6be6767477ac0327f00000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e080057602f85fdccac3117547ae1e9feedac263299a34f02b19ca229f6c203209000400355a496b2961dd5954f30f214fa0c5b7b9c4598ccc7882a3fc69dec50bb005c04946202e37fca2fa0bd7d0504c730ac1a707a410c0ed70bd65ad2adb15100dfea6f9eee8d32378436d7ca9e4dda0d48a5ccfb1c6f8ddec286fdf0cb9c81004f5ae4240cb04e72cf44cddb835bc0b5e7f100c01dc3f6678f979e27f19ede00f8ff8aa1edd0f0237d277f829b0847f656ee797c3adf2e7b1074d36f3f63ad00c90a15e3b4697bc2b603d24b615ed869c0f2b61ec8d8e316351996854246b600f24c2cff7402d9d57bd2791337df5a65f0b2f59a4ce3255d94c35f7cf13374400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049400000000000000000000000000000000000000000000000000000000000141300000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000010000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000001000000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000100000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000010000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000001000000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000100000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000010000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000001000000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000100000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000000000000000000000000000000000000000000000000000000014131800000010000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f000000000000000000000000000000000000000000000000000000000014131000000000000000000000000000000000000000000000000000000000001413110000000000000000000000000000000000000000000000000000000000141312000000000000000000000000000000000000000000000000000000000014131300000000000000000000000000000000000000000000000000000000001413140000000000000000000000000000000000000000000000000000000000141315000000000000000000000000000000000000000000000000000000000014131600000000000000000000000000000000000000000000000000000000001413170000000000000000000000000000000000000000000000000000000000141318000000000000000000000000000000000000000000000000000000000014131900000010000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a00000010000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b00000010000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c00000010000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d00000010000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000100000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000010000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000001000000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000100000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000010000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000001000000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000100000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000010000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000001000000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000100000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000000000000000000000000000000000000000000000000000000014132800000010000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f000000000000000000000000000000000000000000000000000000000014132000000000000000000000000000000000000000000000000000000000001413210000000000000000000000000000000000000000000000000000000000141322000000000000000000000000000000000000000000000000000000000014132300000000000000000000000000000000000000000000000000000000001413240000000000000000000000000000000000000000000000000000000000141325000000000000000000000000000000000000000000000000000000000014132600000000000000000000000000000000000000000000000000000000001413270000000000000000000000000000000000000000000000000000000000141328000000000000000000000000000000000000000000000000000000000014132900000010000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a00000010000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b00000010000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c00000010000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d00000010000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000100000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000010000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000001000000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000100000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000010000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000001000000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000100000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000010000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000001000000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000100000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000000000000000000000000000000000000000000000000000000014133800000010000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f000000000000000000000000000000000000000000000000000000000014133000000000000000000000000000000000000000000000000000000000001413310000000000000000000000000000000000000000000000000000000000141332000000000000000000000000000000000000000000000000000000000014133300000000000000000000000000000000000000000000000000000000001413340000000000000000000000000000000000000000000000000000000000141335000000000000000000000000000000000000000000000000000000000014133600000000000000000000000000000000000000000000000000000000001413370000000000000000000000000000000000000000000000000000000000141338000000000000000000000000000000000000000000000000000000000014133900000010000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a00000010000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b00000010000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c00000010000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d00000010000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000100000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000010000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000001000000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000100000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000010000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000001000000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000100000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000010000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000001000000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000100000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000000000000000000000000000000000000000000000000000000014134800000010000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f000000000000000000000000000000000000000000000000000000000014134000000000000000000000000000000000000000000000000000000000001413410000000000000000000000000000000000000000000000000000000000141342000000000000000000000000000000000000000000000000000000000014134300000000000000000000000000000000000000000000000000000000001413440000000000000000000000000000000000000000000000000000000000141345000000000000000000000000000000000000000000000000000000000014134600000000000000000000000000000000000000000000000000000000001413470000000000000000000000000000000000000000000000000000000000141348000000000000000000000000000000000000000000000000000000000014134900000010000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a00000010000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b00000010000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c00000010000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d00000010000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d000000000000000000000000000000000000000000000000000000000014134e00000010000000000000180a1f9680b5f28d3654d9db470d4a8ddc41517dfff38597a6beabff6579895f0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000018100100000000000000000000000000000000000000000000000000000000001810020000000000000000000000000000000000000000000000000000000000181003000000000000000000000000000000000000000000000000000000000018100400000000000000000000000000000000000000000000000000000000001810050000000000000000000000000000000000000000000000000000000000181006000000000000000000000000000000000000000000000000000000000018100700000000000000000000000000000000000000000000000000000000001810080000000000000000000000000000000000000000000000000000000000181009000000000000000000000000000000000000000000000000000000000018100a000000000000000000000000000000000000000000000000000000000018100b000000000000000000000000000000000000000000000000000000000018100c000000000000000000000000000000000000000000000000000000000018100d000000000000000000000000000000000000000000000000000000000018100e000000000000000000000000000000000000000000000000000000000018100f0000000000000000000000000000000000000000000000000000000000181010000000000000000000000000000000000000000000000000000000000018101100000000000000000000000000000000000000000000000000000000001810120000000000000000000000000000000000000000000000000000000000181013000000000000000000000000000000000000000000000000000000000018101400000000000000000000000000000000000000000000000000000000001810150000000000000000000000000000000000000000000000000000000000181016000000000000000000000000000000000000000000000000000000000018101700000000000000000000000000000000000000000000000000000000001810180000000000000000000000000000000000000000000000000000000000181019000000000000000000000000000000000000000000000000000000000018101a000000000000000000000000000000000000000000000000000000000018101b000000000000000000000000000000000000000000000000000000000018101c000000000000000000000000000000000000000000000000000000000018101d000000000000000000000000000000000000000000000000000000000018101e000000000000000000000000000000000000000000000000000000000018101f0000000000000000000000000000000000000000000000000000000000181020000000000000000000000000000000000000000000000000000000000018102100000000000000000000000000000000000000000000000000000000001810220000000000000000000000000000000000000000000000000000000000181023000000000000000000000000000000000000000000000000000000000018102400000000000000000000000000000000000000000000000000000000001810250000000000000000000000000000000000000000000000000000000000181026000000000000000000000000000000000000000000000000000000000018102700000000000000000000000000000000000000000000000000000000001810280000000000000000000000000000000000000000000000000000000000181029000000000000000000000000000000000000000000000000000000000018102a000000000000000000000000000000000000000000000000000000000018102b000000000000000000000000000000000000000000000000000000000018102c000000000000000000000000000000000000000000000000000000000018102d000000000000000000000000000000000000000000000000000000000018102e000000000000000000000000000000000000000000000000000000000018102f0000000000000000000000000000000000000000000000000000000000181030000000000000000000000000000000000000000000000000000000000018103100000000000000000000000000000000000000000000000000000000001810320000000000000000000000000000000000000000000000000000000000181033000000000000000000000000000000000000000000000000000000000018103400000000000000000000000000000000000000000000000000000000001810350000000000000000000000000000000000000000000000000000000000181036000000000000000000000000000000000000000000000000000000000018103700000000000000000000000000000000000000000000000000000000001810380000000000000000000000000000000000000000000000000000000000181039000000000000000000000000000000000000000000000000000000000018103a000000000000000000000000000000000000000000000000000000000018103b000000000000000000000000000000000000000000000000000000000018103c000000000000000000000000000000000000000000000000000000000018103d000000000000000000000000000000000000000000000000000000000018103e000000000000000000000000000000000000000000000000000000000018103f4000000000000000000000000000000000000000000000000000000000001800010000000000000000000000000000000000000000000000000000000000181100000000000000000000000000000000000000000000000000000000000018110100000000000000000000000000000000000000000000000000000000001811020000000000000000000000000000000000000000000000000000000000181103000000000000000000000000000000000000000000000000000000000018110400000000000000000000000000000000000000000000000000000000001811050000000000000000000000000000000000000000000000000000000000181106000000000000000000000000000000000000000000000000000000000018110700000000000000000000000000000000000000000000000000000000001811080000000000000000000000000000000000000000000000000000000000181109000000000000000000000000000000000000000000000000000000000018110a000000000000000000000000000000000000000000000000000000000018110b000000000000000000000000000000000000000000000000000000000018110c000000000000000000000000000000000000000000000000000000000018110d000000000000000000000000000000000000000000000000000000000018110e000000000000000000000000000000000000000000000000000000000018110f0000000000000000000000000000000000000000000000000000000000181110000000000000000000000000000000000000000000000000000000000018111100000000000000000000000000000000000000000000000000000000001811120000000000000000000000000000000000000000000000000000000000181113000000000000000000000000000000000000000000000000000000000018111400000000000000000000000000000000000000000000000000000000001811150000000000000000000000000000000000000000000000000000000000181116000000000000000000000000000000000000000000000000000000000018111700000000000000000000000000000000000000000000000000000000001811180000000000000000000000000000000000000000000000000000000000181119000000000000000000000000000000000000000000000000000000000018111a000000000000000000000000000000000000000000000000000000000018111b000000000000000000000000000000000000000000000000000000000018111c000000000000000000000000000000000000000000000000000000000018111d000000000000000000000000000000000000000000000000000000000018111e000000000000000000000000000000000000000000000000000000000018111f0000000000000000000000000000000000000000000000000000000000181120000000000000000000000000000000000000000000000000000000000018112100000000000000000000000000000000000000000000000000000000001811220000000000000000000000000000000000000000000000000000000000181123000000000000000000000000000000000000000000000000000000000018112400000000000000000000000000000000000000000000000000000000001811250000000000000000000000000000000000000000000000000000000000181126000000000000000000000000000000000000000000000000000000000018112700000000000000000000000000000000000000000000000000000000001811280000000000000000000000000000000000000000000000000000000000181129000000000000000000000000000000000000000000000000000000000018112a000000000000000000000000000000000000000000000000000000000018112b000000000000000000000000000000000000000000000000000000000018112c000000000000000000000000000000000000000000000000000000000018112d000000000000000000000000000000000000000000000000000000000018112e000000000000000000000000000000000000000000000000000000000018112f0000000000000000000000000000000000000000000000000000000000181130000000000000000000000000000000000000000000000000000000000018113100000000000000000000000000000000000000000000000000000000001811320000000000000000000000000000000000000000000000000000000000181133000000000000000000000000000000000000000000000000000000000018113400000000000000000000000000000000000000000000000000000000001811350000000000000000000000000000000000000000000000000000000000181136000000000000000000000000000000000000000000000000000000000018113700000000000000000000000000000000000000000000000000000000001811380000000000000000000000000000000000000000000000000000000000181139000000000000000000000000000000000000000000000000000000000018113a000000000000000000000000000000000000000000000000000000000018113b000000000000000000000000000000000000000000000000000000000018113c000000000000000000000000000000000000000000000000000000000018113d000000000000000000000000000000000000000000000000000000000018113e08001311d7be859fe766205679180604a937a8d4bd870d6d12edb2db749345b51c006a36f23a5cb4d19f855238d418170e140300192ead60f7ab35312e9c2513b800b26b2c0e63909e88d537840ceb7fc2e3ba764efc546dcccf0fe4c2cfd28c7100025242c4a697eccd73273bf6c4d1b5821c7dcf22789c590b7295100d20ccde00ef98046ac0b4095051c64b82fd69d051a08c3ac20e073f5656e3057b3eccbe00daa2f457ab065009361f9276765fa37f21053db780ce11b9a363dabfc735cf00443966d01fe9717b46d36f729e652c2657e2e7d56d5117ef966cfbd3add32e00ee29f87f39ab1c4c1201bdd331fa5a9a254a1030c1cbdbf6ee82d3fce25c2a400000000000000000000000000000000000000000000000000000000000182000000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182001000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182002000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182003000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182004000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182005000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820060000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018200700000000000000000000000000000000000000000000000000000000001820110000000000000000000000000000000000000000000000000000000000182008000000000000000000000000000000000000000000000000000000000018201200000000000000000000000000000000000000000000000000000000001820090000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182016000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182017000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182011000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182012000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820160000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018201700000000000000000000000000000000000000000000000000000000001820210000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018202200000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182026000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182027000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182021000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182022000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820260000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018202700000000000000000000000000000000000000000000000000000000001820310000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018203200000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182036000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182037000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182031000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182032000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018203f00000000000000000000000000000000000000000000000000000000001820360000000000000000000000000000000000000000000000000000000000182040000000000000000000000000000000000000000000000000000000000018203700000000000000000000000000000000000000000000000000000000001820410000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018204200000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182043000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182044000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182045000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182046000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182047000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182048000000000000000000000000000000000000000000000000000000000018203f0000000000000000000000000000000000000000000000000000000000182049400000000000000000000000000000000000000000000000000000000000181300000000000000000000000000000000000000000000000000000000000018130100000000000000000000000000000000000000000000000000000000001813020000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000010000000000000000000000000000000000000000000000000000000000018130100000000000000000000000000000000000000000000000000000000001813020000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000001000000000000000000000000000000000000000000000000000000000001813020000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000100000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000010000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000001000000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000100000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000010000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000000000000000000000000000000000000000000000000000000001813160000001000000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000000000000000000000000000000000000000000000000000000001813160000000000000000000000000000000000000000000000000000000000181317000000100000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000000000000000000000000000000000000000000000000000000001813160000000000000000000000000000000000000000000000000000000000181317000000000000000000000000000000000000000000000000000000000018131800000010000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f000000000000000000000000000000000000000000000000000000000018131000000000000000000000000000000000000000000000000000000000001813110000000000000000000000000000000000000000000000000000000000181312000000000000000000000000000000000000000000000000000000000018131300000000000000000000000000000000000000000000000000000000001813140000000000000000000000000000000000000000000000000000000000181315000000000000000000000000000000000000000000000000000000000018131600000000000000000000000000000000000000000000000000000000001813170000000000000000000000000000000000000000000000000000000000181318000000000000000000000000000000000000000000000000000000000018131900000010000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a00000010000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b00000010000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c00000010000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d00000010000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000100000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000010000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000001000000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000100000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000010000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000001000000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000100000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000010000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000000000000000000000000000000000000000000000000000000001813260000001000000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000000000000000000000000000000000000000000000000000000001813260000000000000000000000000000000000000000000000000000000000181327000000100000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000000000000000000000000000000000000000000000000000000001813260000000000000000000000000000000000000000000000000000000000181327000000000000000000000000000000000000000000000000000000000018132800000010000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f000000000000000000000000000000000000000000000000000000000018132000000000000000000000000000000000000000000000000000000000001813210000000000000000000000000000000000000000000000000000000000181322000000000000000000000000000000000000000000000000000000000018132300000000000000000000000000000000000000000000000000000000001813240000000000000000000000000000000000000000000000000000000000181325000000000000000000000000000000000000000000000000000000000018132600000000000000000000000000000000000000000000000000000000001813270000000000000000000000000000000000000000000000000000000000181328000000000000000000000000000000000000000000000000000000000018132900000010000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a00000010000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b00000010000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c00000010000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d00000010000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000100000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000010000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000001000000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000100000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000010000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000001000000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000100000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000010000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000000000000000000000000000000000000000000000000000000001813360000001000000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000000000000000000000000000000000000000000000000000000001813360000000000000000000000000000000000000000000000000000000000181337000000100000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000000000000000000000000000000000000000000000000000000001813360000000000000000000000000000000000000000000000000000000000181337000000000000000000000000000000000000000000000000000000000018133800000010000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f000000000000000000000000000000000000000000000000000000000018133000000000000000000000000000000000000000000000000000000000001813310000000000000000000000000000000000000000000000000000000000181332000000000000000000000000000000000000000000000000000000000018133300000000000000000000000000000000000000000000000000000000001813340000000000000000000000000000000000000000000000000000000000181335000000000000000000000000000000000000000000000000000000000018133600000000000000000000000000000000000000000000000000000000001813370000000000000000000000000000000000000000000000000000000000181338000000000000000000000000000000000000000000000000000000000018133900000010000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a00000010000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b00000010000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c00000010000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d00000010000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000100000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000010000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000001000000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000100000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000010000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000001000000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000100000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000010000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000000000000000000000000000000000000000000000000000000001813460000001000000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000000000000000000000000000000000000000000000000000000001813460000000000000000000000000000000000000000000000000000000000181347000000100000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000000000000000000000000000000000000000000000000000000001813460000000000000000000000000000000000000000000000000000000000181347000000000000000000000000000000000000000000000000000000000018134800000010000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f000000000000000000000000000000000000000000000000000000000018134000000000000000000000000000000000000000000000000000000000001813410000000000000000000000000000000000000000000000000000000000181342000000000000000000000000000000000000000000000000000000000018134300000000000000000000000000000000000000000000000000000000001813440000000000000000000000000000000000000000000000000000000000181345000000000000000000000000000000000000000000000000000000000018134600000000000000000000000000000000000000000000000000000000001813470000000000000000000000000000000000000000000000000000000000181348000000000000000000000000000000000000000000000000000000000018134900000010000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a00000010000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b00000010000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b000000000000000000000000000000000000000000000000000000000018134c00000010000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b000000000000000000000000000000000000000000000000000000000018134c000000000000000000000000000000000000000000000000000000000018134d00000010000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b000000000000000000000000000000000000000000000000000000000018134c000000000000000000000000000000000000000000000000000000000018134d000000000000000000000000000000000000000000000000000000000018134e0000001000000000000019c2fa44ac4207780495476b18c527ad6f34631d772d40a6b61c058c95a8723000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000001c100000000000000000000000000000000000000000000000000000000000001c100100000000000000000000000000000000000000000000000000000000001c100200000000000000000000000000000000000000000000000000000000001c100300000000000000000000000000000000000000000000000000000000001c100400000000000000000000000000000000000000000000000000000000001c100500000000000000000000000000000000000000000000000000000000001c100600000000000000000000000000000000000000000000000000000000001c100700000000000000000000000000000000000000000000000000000000001c100800000000000000000000000000000000000000000000000000000000001c100900000000000000000000000000000000000000000000000000000000001c100a00000000000000000000000000000000000000000000000000000000001c100b00000000000000000000000000000000000000000000000000000000001c100c00000000000000000000000000000000000000000000000000000000001c100d00000000000000000000000000000000000000000000000000000000001c100e00000000000000000000000000000000000000000000000000000000001c100f00000000000000000000000000000000000000000000000000000000001c101000000000000000000000000000000000000000000000000000000000001c101100000000000000000000000000000000000000000000000000000000001c101200000000000000000000000000000000000000000000000000000000001c101300000000000000000000000000000000000000000000000000000000001c101400000000000000000000000000000000000000000000000000000000001c101500000000000000000000000000000000000000000000000000000000001c101600000000000000000000000000000000000000000000000000000000001c101700000000000000000000000000000000000000000000000000000000001c101800000000000000000000000000000000000000000000000000000000001c101900000000000000000000000000000000000000000000000000000000001c101a00000000000000000000000000000000000000000000000000000000001c101b00000000000000000000000000000000000000000000000000000000001c101c00000000000000000000000000000000000000000000000000000000001c101d00000000000000000000000000000000000000000000000000000000001c101e00000000000000000000000000000000000000000000000000000000001c101f00000000000000000000000000000000000000000000000000000000001c102000000000000000000000000000000000000000000000000000000000001c102100000000000000000000000000000000000000000000000000000000001c102200000000000000000000000000000000000000000000000000000000001c102300000000000000000000000000000000000000000000000000000000001c102400000000000000000000000000000000000000000000000000000000001c102500000000000000000000000000000000000000000000000000000000001c102600000000000000000000000000000000000000000000000000000000001c102700000000000000000000000000000000000000000000000000000000001c102800000000000000000000000000000000000000000000000000000000001c102900000000000000000000000000000000000000000000000000000000001c102a00000000000000000000000000000000000000000000000000000000001c102b00000000000000000000000000000000000000000000000000000000001c102c00000000000000000000000000000000000000000000000000000000001c102d00000000000000000000000000000000000000000000000000000000001c102e00000000000000000000000000000000000000000000000000000000001c102f00000000000000000000000000000000000000000000000000000000001c103000000000000000000000000000000000000000000000000000000000001c103100000000000000000000000000000000000000000000000000000000001c103200000000000000000000000000000000000000000000000000000000001c103300000000000000000000000000000000000000000000000000000000001c103400000000000000000000000000000000000000000000000000000000001c103500000000000000000000000000000000000000000000000000000000001c103600000000000000000000000000000000000000000000000000000000001c103700000000000000000000000000000000000000000000000000000000001c103800000000000000000000000000000000000000000000000000000000001c103900000000000000000000000000000000000000000000000000000000001c103a00000000000000000000000000000000000000000000000000000000001c103b00000000000000000000000000000000000000000000000000000000001c103c00000000000000000000000000000000000000000000000000000000001c103d00000000000000000000000000000000000000000000000000000000001c103e00000000000000000000000000000000000000000000000000000000001c103f4000000000000000000000000000000000000000000000000000000000001c000100000000000000000000000000000000000000000000000000000000001c110000000000000000000000000000000000000000000000000000000000001c110100000000000000000000000000000000000000000000000000000000001c110200000000000000000000000000000000000000000000000000000000001c110300000000000000000000000000000000000000000000000000000000001c110400000000000000000000000000000000000000000000000000000000001c110500000000000000000000000000000000000000000000000000000000001c110600000000000000000000000000000000000000000000000000000000001c110700000000000000000000000000000000000000000000000000000000001c110800000000000000000000000000000000000000000000000000000000001c110900000000000000000000000000000000000000000000000000000000001c110a00000000000000000000000000000000000000000000000000000000001c110b00000000000000000000000000000000000000000000000000000000001c110c00000000000000000000000000000000000000000000000000000000001c110d00000000000000000000000000000000000000000000000000000000001c110e00000000000000000000000000000000000000000000000000000000001c110f00000000000000000000000000000000000000000000000000000000001c111000000000000000000000000000000000000000000000000000000000001c111100000000000000000000000000000000000000000000000000000000001c111200000000000000000000000000000000000000000000000000000000001c111300000000000000000000000000000000000000000000000000000000001c111400000000000000000000000000000000000000000000000000000000001c111500000000000000000000000000000000000000000000000000000000001c111600000000000000000000000000000000000000000000000000000000001c111700000000000000000000000000000000000000000000000000000000001c111800000000000000000000000000000000000000000000000000000000001c111900000000000000000000000000000000000000000000000000000000001c111a00000000000000000000000000000000000000000000000000000000001c111b00000000000000000000000000000000000000000000000000000000001c111c00000000000000000000000000000000000000000000000000000000001c111d00000000000000000000000000000000000000000000000000000000001c111e00000000000000000000000000000000000000000000000000000000001c111f00000000000000000000000000000000000000000000000000000000001c112000000000000000000000000000000000000000000000000000000000001c112100000000000000000000000000000000000000000000000000000000001c112200000000000000000000000000000000000000000000000000000000001c112300000000000000000000000000000000000000000000000000000000001c112400000000000000000000000000000000000000000000000000000000001c112500000000000000000000000000000000000000000000000000000000001c112600000000000000000000000000000000000000000000000000000000001c112700000000000000000000000000000000000000000000000000000000001c112800000000000000000000000000000000000000000000000000000000001c112900000000000000000000000000000000000000000000000000000000001c112a00000000000000000000000000000000000000000000000000000000001c112b00000000000000000000000000000000000000000000000000000000001c112c00000000000000000000000000000000000000000000000000000000001c112d00000000000000000000000000000000000000000000000000000000001c112e00000000000000000000000000000000000000000000000000000000001c112f00000000000000000000000000000000000000000000000000000000001c113000000000000000000000000000000000000000000000000000000000001c113100000000000000000000000000000000000000000000000000000000001c113200000000000000000000000000000000000000000000000000000000001c113300000000000000000000000000000000000000000000000000000000001c113400000000000000000000000000000000000000000000000000000000001c113500000000000000000000000000000000000000000000000000000000001c113600000000000000000000000000000000000000000000000000000000001c113700000000000000000000000000000000000000000000000000000000001c113800000000000000000000000000000000000000000000000000000000001c113900000000000000000000000000000000000000000000000000000000001c113a00000000000000000000000000000000000000000000000000000000001c113b00000000000000000000000000000000000000000000000000000000001c113c00000000000000000000000000000000000000000000000000000000001c113d00000000000000000000000000000000000000000000000000000000001c113e080032724de1d6ec869c131859afe6fd33f6f9671c22cb571cc5e694deb1866ccc00b42f417479d2716d26461d44cec542d856294c55df755cbaafb6d731d0102c000a929c0dc3f37349c75878e678bb82cd3f2ada39b278bb841812ec290aca3b00dfbe7d369fe3222f98c449724614c53b1fe2cab20e0ef5b32fa5e3a16756a500790e7c8e3dfe2b8148b0f8c85f89cab718bd1704af7413f510f6697c4baa3100a77eca326aa2a2c4b2c9ec7c2af94aa5f89ed7f5adda05b2c9312adfafac48005b58ed9e335da74a33db99830d12be3dc16a1515dc5538f2337167b9fe6c79007e2c83d687b981fe73fce5ea00b64d859548997e68c1d97ad7bbb62cc56b014000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c200100000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c200200000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c200300000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c200400000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c200500000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c200600000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c200700000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c200800000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c200900000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c204000000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c204100000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c204200000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c204300000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c204400000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c204500000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c204600000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c204700000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c204800000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c20494000000000000000000000000000000000000000000000000000000000001c130000000000000000000000000000000000000000000000000000000000001c130100000000000000000000000000000000000000000000000000000000001c130200000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f0000001000000000000000000000000000000000000000000000000000000000001c130100000000000000000000000000000000000000000000000000000000001c130200000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c13100000001000000000000000000000000000000000000000000000000000000000001c130200000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c13110000001000000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c13120000001000000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c13130000001000000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c13140000001000000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c13150000001000000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c13160000001000000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c13170000001000000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c13180000001000000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c13190000001000000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a0000001000000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b0000001000000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c0000001000000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d0000001000000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e0000001000000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f0000001000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c13200000001000000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c13210000001000000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c13220000001000000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c13230000001000000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c13240000001000000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c13250000001000000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c13260000001000000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c13270000001000000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c13280000001000000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c13290000001000000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a0000001000000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b0000001000000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c0000001000000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d0000001000000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e0000001000000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f0000001000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c13300000001000000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c13310000001000000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c13320000001000000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c13330000001000000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c13340000001000000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c13350000001000000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c13360000001000000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c13370000001000000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c13380000001000000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c13390000001000000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a0000001000000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b0000001000000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c0000001000000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d0000001000000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e0000001000000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f0000001000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c13400000001000000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c13410000001000000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c13420000001000000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c13430000001000000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c13440000001000000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c13450000001000000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c13460000001000000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c13470000001000000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c13480000001000000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c13490000001000000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a0000001000000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b0000001000000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b00000000000000000000000000000000000000000000000000000000001c134c0000001000000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b00000000000000000000000000000000000000000000000000000000001c134c00000000000000000000000000000000000000000000000000000000001c134d0000001000000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b00000000000000000000000000000000000000000000000000000000001c134c00000000000000000000000000000000000000000000000000000000001c134d00000000000000000000000000000000000000000000000000000000001c134e0000001000000000000015efd9aca5333022d4fba00fcfcf6759118fb09404c805d99b2f7a78e05a57e00000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000020100100000000000000000000000000000000000000000000000000000000002010020000000000000000000000000000000000000000000000000000000000201003000000000000000000000000000000000000000000000000000000000020100400000000000000000000000000000000000000000000000000000000002010050000000000000000000000000000000000000000000000000000000000201006000000000000000000000000000000000000000000000000000000000020100700000000000000000000000000000000000000000000000000000000002010080000000000000000000000000000000000000000000000000000000000201009000000000000000000000000000000000000000000000000000000000020100a000000000000000000000000000000000000000000000000000000000020100b000000000000000000000000000000000000000000000000000000000020100c000000000000000000000000000000000000000000000000000000000020100d000000000000000000000000000000000000000000000000000000000020100e000000000000000000000000000000000000000000000000000000000020100f0000000000000000000000000000000000000000000000000000000000201010000000000000000000000000000000000000000000000000000000000020101100000000000000000000000000000000000000000000000000000000002010120000000000000000000000000000000000000000000000000000000000201013000000000000000000000000000000000000000000000000000000000020101400000000000000000000000000000000000000000000000000000000002010150000000000000000000000000000000000000000000000000000000000201016000000000000000000000000000000000000000000000000000000000020101700000000000000000000000000000000000000000000000000000000002010180000000000000000000000000000000000000000000000000000000000201019000000000000000000000000000000000000000000000000000000000020101a000000000000000000000000000000000000000000000000000000000020101b000000000000000000000000000000000000000000000000000000000020101c000000000000000000000000000000000000000000000000000000000020101d000000000000000000000000000000000000000000000000000000000020101e000000000000000000000000000000000000000000000000000000000020101f0000000000000000000000000000000000000000000000000000000000201020000000000000000000000000000000000000000000000000000000000020102100000000000000000000000000000000000000000000000000000000002010220000000000000000000000000000000000000000000000000000000000201023000000000000000000000000000000000000000000000000000000000020102400000000000000000000000000000000000000000000000000000000002010250000000000000000000000000000000000000000000000000000000000201026000000000000000000000000000000000000000000000000000000000020102700000000000000000000000000000000000000000000000000000000002010280000000000000000000000000000000000000000000000000000000000201029000000000000000000000000000000000000000000000000000000000020102a000000000000000000000000000000000000000000000000000000000020102b000000000000000000000000000000000000000000000000000000000020102c000000000000000000000000000000000000000000000000000000000020102d000000000000000000000000000000000000000000000000000000000020102e000000000000000000000000000000000000000000000000000000000020102f0000000000000000000000000000000000000000000000000000000000201030000000000000000000000000000000000000000000000000000000000020103100000000000000000000000000000000000000000000000000000000002010320000000000000000000000000000000000000000000000000000000000201033000000000000000000000000000000000000000000000000000000000020103400000000000000000000000000000000000000000000000000000000002010350000000000000000000000000000000000000000000000000000000000201036000000000000000000000000000000000000000000000000000000000020103700000000000000000000000000000000000000000000000000000000002010380000000000000000000000000000000000000000000000000000000000201039000000000000000000000000000000000000000000000000000000000020103a000000000000000000000000000000000000000000000000000000000020103b000000000000000000000000000000000000000000000000000000000020103c000000000000000000000000000000000000000000000000000000000020103d000000000000000000000000000000000000000000000000000000000020103e000000000000000000000000000000000000000000000000000000000020103f4000000000000000000000000000000000000000000000000000000000002000010000000000000000000000000000000000000000000000000000000000201100000000000000000000000000000000000000000000000000000000000020110100000000000000000000000000000000000000000000000000000000002011020000000000000000000000000000000000000000000000000000000000201103000000000000000000000000000000000000000000000000000000000020110400000000000000000000000000000000000000000000000000000000002011050000000000000000000000000000000000000000000000000000000000201106000000000000000000000000000000000000000000000000000000000020110700000000000000000000000000000000000000000000000000000000002011080000000000000000000000000000000000000000000000000000000000201109000000000000000000000000000000000000000000000000000000000020110a000000000000000000000000000000000000000000000000000000000020110b000000000000000000000000000000000000000000000000000000000020110c000000000000000000000000000000000000000000000000000000000020110d000000000000000000000000000000000000000000000000000000000020110e000000000000000000000000000000000000000000000000000000000020110f0000000000000000000000000000000000000000000000000000000000201110000000000000000000000000000000000000000000000000000000000020111100000000000000000000000000000000000000000000000000000000002011120000000000000000000000000000000000000000000000000000000000201113000000000000000000000000000000000000000000000000000000000020111400000000000000000000000000000000000000000000000000000000002011150000000000000000000000000000000000000000000000000000000000201116000000000000000000000000000000000000000000000000000000000020111700000000000000000000000000000000000000000000000000000000002011180000000000000000000000000000000000000000000000000000000000201119000000000000000000000000000000000000000000000000000000000020111a000000000000000000000000000000000000000000000000000000000020111b000000000000000000000000000000000000000000000000000000000020111c000000000000000000000000000000000000000000000000000000000020111d000000000000000000000000000000000000000000000000000000000020111e000000000000000000000000000000000000000000000000000000000020111f0000000000000000000000000000000000000000000000000000000000201120000000000000000000000000000000000000000000000000000000000020112100000000000000000000000000000000000000000000000000000000002011220000000000000000000000000000000000000000000000000000000000201123000000000000000000000000000000000000000000000000000000000020112400000000000000000000000000000000000000000000000000000000002011250000000000000000000000000000000000000000000000000000000000201126000000000000000000000000000000000000000000000000000000000020112700000000000000000000000000000000000000000000000000000000002011280000000000000000000000000000000000000000000000000000000000201129000000000000000000000000000000000000000000000000000000000020112a000000000000000000000000000000000000000000000000000000000020112b000000000000000000000000000000000000000000000000000000000020112c000000000000000000000000000000000000000000000000000000000020112d000000000000000000000000000000000000000000000000000000000020112e000000000000000000000000000000000000000000000000000000000020112f0000000000000000000000000000000000000000000000000000000000201130000000000000000000000000000000000000000000000000000000000020113100000000000000000000000000000000000000000000000000000000002011320000000000000000000000000000000000000000000000000000000000201133000000000000000000000000000000000000000000000000000000000020113400000000000000000000000000000000000000000000000000000000002011350000000000000000000000000000000000000000000000000000000000201136000000000000000000000000000000000000000000000000000000000020113700000000000000000000000000000000000000000000000000000000002011380000000000000000000000000000000000000000000000000000000000201139000000000000000000000000000000000000000000000000000000000020113a000000000000000000000000000000000000000000000000000000000020113b000000000000000000000000000000000000000000000000000000000020113c000000000000000000000000000000000000000000000000000000000020113d000000000000000000000000000000000000000000000000000000000020113e08007028edb640521e1ff4bad393203e4295b7a3d56e56bb1f521e5c4e9b4005300036797701c3aaf3565c51441e1e5380670d18b202fe37553ecabfe7dc0b8f83009f8a18280b8f8a6ade36f92424bb3832d4a5f781a599db2443d893e9f6ade900b6f46198c6138158211376e12e634fe8277e87890072320d1cc11b9212526e007c1fd1abdb6e87968aa2bccf1a4ac7c7784a416ec5e3279f1c16c81b04f59300d54f3523d1db359f5666c0dd5d7fa65ff4d5a07a83e23899f327c34d872dc8006ad2dc7beeefd5dd6b474b723b971e2d0f5cf6a9b109b56480319d5afdd44e001b0acdd069674a0168231de30523bff9854818cd631fdd1c90622117acf7f8400000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202001000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202002000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202003000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202004000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202005000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020060000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020200700000000000000000000000000000000000000000000000000000000002020110000000000000000000000000000000000000000000000000000000000202008000000000000000000000000000000000000000000000000000000000020201200000000000000000000000000000000000000000000000000000000002020090000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202016000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202017000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202011000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202012000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020160000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020201700000000000000000000000000000000000000000000000000000000002020210000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020202200000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202026000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202027000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202021000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202022000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020260000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020202700000000000000000000000000000000000000000000000000000000002020310000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020203200000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202036000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202037000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202031000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202032000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020203f00000000000000000000000000000000000000000000000000000000002020360000000000000000000000000000000000000000000000000000000000202040000000000000000000000000000000000000000000000000000000000020203700000000000000000000000000000000000000000000000000000000002020410000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020204200000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202043000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202044000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202045000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202046000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202047000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202048000000000000000000000000000000000000000000000000000000000020203f0000000000000000000000000000000000000000000000000000000000202049400000000000000000000000000000000000000000000000000000000000201300000000000000000000000000000000000000000000000000000000000020130100000000000000000000000000000000000000000000000000000000002013020000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000010000000000000000000000000000000000000000000000000000000000020130100000000000000000000000000000000000000000000000000000000002013020000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000001000000000000000000000000000000000000000000000000000000000002013020000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000100000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000010000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000001000000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000100000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000010000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000000000000000000000000000000000000000000000000000000002013160000001000000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000000000000000000000000000000000000000000000000000000002013160000000000000000000000000000000000000000000000000000000000201317000000100000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000000000000000000000000000000000000000000000000000000002013160000000000000000000000000000000000000000000000000000000000201317000000000000000000000000000000000000000000000000000000000020131800000010000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f000000000000000000000000000000000000000000000000000000000020131000000000000000000000000000000000000000000000000000000000002013110000000000000000000000000000000000000000000000000000000000201312000000000000000000000000000000000000000000000000000000000020131300000000000000000000000000000000000000000000000000000000002013140000000000000000000000000000000000000000000000000000000000201315000000000000000000000000000000000000000000000000000000000020131600000000000000000000000000000000000000000000000000000000002013170000000000000000000000000000000000000000000000000000000000201318000000000000000000000000000000000000000000000000000000000020131900000010000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a00000010000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b00000010000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c00000010000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d00000010000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000100000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000010000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000001000000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000100000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000010000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000001000000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000100000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000010000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000000000000000000000000000000000000000000000000000000002013260000001000000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000000000000000000000000000000000000000000000000000000002013260000000000000000000000000000000000000000000000000000000000201327000000100000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000000000000000000000000000000000000000000000000000000002013260000000000000000000000000000000000000000000000000000000000201327000000000000000000000000000000000000000000000000000000000020132800000010000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f000000000000000000000000000000000000000000000000000000000020132000000000000000000000000000000000000000000000000000000000002013210000000000000000000000000000000000000000000000000000000000201322000000000000000000000000000000000000000000000000000000000020132300000000000000000000000000000000000000000000000000000000002013240000000000000000000000000000000000000000000000000000000000201325000000000000000000000000000000000000000000000000000000000020132600000000000000000000000000000000000000000000000000000000002013270000000000000000000000000000000000000000000000000000000000201328000000000000000000000000000000000000000000000000000000000020132900000010000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a00000010000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b00000010000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c00000010000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d00000010000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000100000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000010000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000001000000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000100000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000010000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000001000000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000100000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000010000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000000000000000000000000000000000000000000000000000000002013360000001000000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000000000000000000000000000000000000000000000000000000002013360000000000000000000000000000000000000000000000000000000000201337000000100000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000000000000000000000000000000000000000000000000000000002013360000000000000000000000000000000000000000000000000000000000201337000000000000000000000000000000000000000000000000000000000020133800000010000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f000000000000000000000000000000000000000000000000000000000020133000000000000000000000000000000000000000000000000000000000002013310000000000000000000000000000000000000000000000000000000000201332000000000000000000000000000000000000000000000000000000000020133300000000000000000000000000000000000000000000000000000000002013340000000000000000000000000000000000000000000000000000000000201335000000000000000000000000000000000000000000000000000000000020133600000000000000000000000000000000000000000000000000000000002013370000000000000000000000000000000000000000000000000000000000201338000000000000000000000000000000000000000000000000000000000020133900000010000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a00000010000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b00000010000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c00000010000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d00000010000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000100000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000010000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000001000000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000100000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000010000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000001000000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000100000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000010000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000000000000000000000000000000000000000000000000000000002013460000001000000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000000000000000000000000000000000000000000000000000000002013460000000000000000000000000000000000000000000000000000000000201347000000100000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000000000000000000000000000000000000000000000000000000002013460000000000000000000000000000000000000000000000000000000000201347000000000000000000000000000000000000000000000000000000000020134800000010000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f000000000000000000000000000000000000000000000000000000000020134000000000000000000000000000000000000000000000000000000000002013410000000000000000000000000000000000000000000000000000000000201342000000000000000000000000000000000000000000000000000000000020134300000000000000000000000000000000000000000000000000000000002013440000000000000000000000000000000000000000000000000000000000201345000000000000000000000000000000000000000000000000000000000020134600000000000000000000000000000000000000000000000000000000002013470000000000000000000000000000000000000000000000000000000000201348000000000000000000000000000000000000000000000000000000000020134900000010000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a00000010000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b00000010000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b000000000000000000000000000000000000000000000000000000000020134c00000010000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b000000000000000000000000000000000000000000000000000000000020134c000000000000000000000000000000000000000000000000000000000020134d00000010000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b000000000000000000000000000000000000000000000000000000000020134c000000000000000000000000000000000000000000000000000000000020134d000000000000000000000000000000000000000000000000000000000020134e000000100000000000", + "body": "0x00000004002f6758d65c619f5922877c499297945872c5f54488c6db5bb9337d006b58c2dc0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e080057602f85fdccac3117547ae1e9feedac263299a34f02b19ca229f6c203209000400355a496b2961dd5954f30f214fa0c5b7b9c4598ccc7882a3fc69dec50bb005c04946202e37fca2fa0bd7d0504c730ac1a707a410c0ed70bd65ad2adb15100dfea6f9eee8d32378436d7ca9e4dda0d48a5ccfb1c6f8ddec286fdf0cb9c81004f5ae4240cb04e72cf44cddb835bc0b5e7f100c01dc3f6678f979e27f19ede00f8ff8aa1edd0f0237d277f829b0847f656ee797c3adf2e7b1074d36f3f63ad00c90a15e3b4697bc2b603d24b615ed869c0f2b61ec8d8e316351996854246b600f24c2cff7402d9d57bd2791337df5a65f0b2f59a4ce3255d94c35f7cf13374400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049400000000000000000000000000000000000000000000000000000000000141300000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000010000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000001000000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000100000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000010000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000001000000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000100000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000010000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000001000000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000100000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000000000000000000000000000000000000000000000000000000014131800000010000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f000000000000000000000000000000000000000000000000000000000014131000000000000000000000000000000000000000000000000000000000001413110000000000000000000000000000000000000000000000000000000000141312000000000000000000000000000000000000000000000000000000000014131300000000000000000000000000000000000000000000000000000000001413140000000000000000000000000000000000000000000000000000000000141315000000000000000000000000000000000000000000000000000000000014131600000000000000000000000000000000000000000000000000000000001413170000000000000000000000000000000000000000000000000000000000141318000000000000000000000000000000000000000000000000000000000014131900000010000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a00000010000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b00000010000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c00000010000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d00000010000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000100000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000010000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000001000000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000100000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000010000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000001000000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000100000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000010000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000001000000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000100000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000000000000000000000000000000000000000000000000000000014132800000010000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f000000000000000000000000000000000000000000000000000000000014132000000000000000000000000000000000000000000000000000000000001413210000000000000000000000000000000000000000000000000000000000141322000000000000000000000000000000000000000000000000000000000014132300000000000000000000000000000000000000000000000000000000001413240000000000000000000000000000000000000000000000000000000000141325000000000000000000000000000000000000000000000000000000000014132600000000000000000000000000000000000000000000000000000000001413270000000000000000000000000000000000000000000000000000000000141328000000000000000000000000000000000000000000000000000000000014132900000010000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a00000010000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b00000010000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c00000010000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d00000010000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000100000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000010000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000001000000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000100000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000010000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000001000000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000100000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000010000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000001000000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000100000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000000000000000000000000000000000000000000000000000000014133800000010000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f000000000000000000000000000000000000000000000000000000000014133000000000000000000000000000000000000000000000000000000000001413310000000000000000000000000000000000000000000000000000000000141332000000000000000000000000000000000000000000000000000000000014133300000000000000000000000000000000000000000000000000000000001413340000000000000000000000000000000000000000000000000000000000141335000000000000000000000000000000000000000000000000000000000014133600000000000000000000000000000000000000000000000000000000001413370000000000000000000000000000000000000000000000000000000000141338000000000000000000000000000000000000000000000000000000000014133900000010000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a00000010000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b00000010000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c00000010000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d00000010000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000100000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000010000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000001000000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000100000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000010000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000001000000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000100000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000010000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000001000000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000100000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000000000000000000000000000000000000000000000000000000014134800000010000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f000000000000000000000000000000000000000000000000000000000014134000000000000000000000000000000000000000000000000000000000001413410000000000000000000000000000000000000000000000000000000000141342000000000000000000000000000000000000000000000000000000000014134300000000000000000000000000000000000000000000000000000000001413440000000000000000000000000000000000000000000000000000000000141345000000000000000000000000000000000000000000000000000000000014134600000000000000000000000000000000000000000000000000000000001413470000000000000000000000000000000000000000000000000000000000141348000000000000000000000000000000000000000000000000000000000014134900000010000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a00000010000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b00000010000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c00000010000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d00000010000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d000000000000000000000000000000000000000000000000000000000014134e000000100000000000001bfcbfa13aaab73602054696c6630c7c70b1db1a629728cf9aa30e80ce8982c20000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000018100100000000000000000000000000000000000000000000000000000000001810020000000000000000000000000000000000000000000000000000000000181003000000000000000000000000000000000000000000000000000000000018100400000000000000000000000000000000000000000000000000000000001810050000000000000000000000000000000000000000000000000000000000181006000000000000000000000000000000000000000000000000000000000018100700000000000000000000000000000000000000000000000000000000001810080000000000000000000000000000000000000000000000000000000000181009000000000000000000000000000000000000000000000000000000000018100a000000000000000000000000000000000000000000000000000000000018100b000000000000000000000000000000000000000000000000000000000018100c000000000000000000000000000000000000000000000000000000000018100d000000000000000000000000000000000000000000000000000000000018100e000000000000000000000000000000000000000000000000000000000018100f0000000000000000000000000000000000000000000000000000000000181010000000000000000000000000000000000000000000000000000000000018101100000000000000000000000000000000000000000000000000000000001810120000000000000000000000000000000000000000000000000000000000181013000000000000000000000000000000000000000000000000000000000018101400000000000000000000000000000000000000000000000000000000001810150000000000000000000000000000000000000000000000000000000000181016000000000000000000000000000000000000000000000000000000000018101700000000000000000000000000000000000000000000000000000000001810180000000000000000000000000000000000000000000000000000000000181019000000000000000000000000000000000000000000000000000000000018101a000000000000000000000000000000000000000000000000000000000018101b000000000000000000000000000000000000000000000000000000000018101c000000000000000000000000000000000000000000000000000000000018101d000000000000000000000000000000000000000000000000000000000018101e000000000000000000000000000000000000000000000000000000000018101f0000000000000000000000000000000000000000000000000000000000181020000000000000000000000000000000000000000000000000000000000018102100000000000000000000000000000000000000000000000000000000001810220000000000000000000000000000000000000000000000000000000000181023000000000000000000000000000000000000000000000000000000000018102400000000000000000000000000000000000000000000000000000000001810250000000000000000000000000000000000000000000000000000000000181026000000000000000000000000000000000000000000000000000000000018102700000000000000000000000000000000000000000000000000000000001810280000000000000000000000000000000000000000000000000000000000181029000000000000000000000000000000000000000000000000000000000018102a000000000000000000000000000000000000000000000000000000000018102b000000000000000000000000000000000000000000000000000000000018102c000000000000000000000000000000000000000000000000000000000018102d000000000000000000000000000000000000000000000000000000000018102e000000000000000000000000000000000000000000000000000000000018102f0000000000000000000000000000000000000000000000000000000000181030000000000000000000000000000000000000000000000000000000000018103100000000000000000000000000000000000000000000000000000000001810320000000000000000000000000000000000000000000000000000000000181033000000000000000000000000000000000000000000000000000000000018103400000000000000000000000000000000000000000000000000000000001810350000000000000000000000000000000000000000000000000000000000181036000000000000000000000000000000000000000000000000000000000018103700000000000000000000000000000000000000000000000000000000001810380000000000000000000000000000000000000000000000000000000000181039000000000000000000000000000000000000000000000000000000000018103a000000000000000000000000000000000000000000000000000000000018103b000000000000000000000000000000000000000000000000000000000018103c000000000000000000000000000000000000000000000000000000000018103d000000000000000000000000000000000000000000000000000000000018103e000000000000000000000000000000000000000000000000000000000018103f4000000000000000000000000000000000000000000000000000000000001800010000000000000000000000000000000000000000000000000000000000181100000000000000000000000000000000000000000000000000000000000018110100000000000000000000000000000000000000000000000000000000001811020000000000000000000000000000000000000000000000000000000000181103000000000000000000000000000000000000000000000000000000000018110400000000000000000000000000000000000000000000000000000000001811050000000000000000000000000000000000000000000000000000000000181106000000000000000000000000000000000000000000000000000000000018110700000000000000000000000000000000000000000000000000000000001811080000000000000000000000000000000000000000000000000000000000181109000000000000000000000000000000000000000000000000000000000018110a000000000000000000000000000000000000000000000000000000000018110b000000000000000000000000000000000000000000000000000000000018110c000000000000000000000000000000000000000000000000000000000018110d000000000000000000000000000000000000000000000000000000000018110e000000000000000000000000000000000000000000000000000000000018110f0000000000000000000000000000000000000000000000000000000000181110000000000000000000000000000000000000000000000000000000000018111100000000000000000000000000000000000000000000000000000000001811120000000000000000000000000000000000000000000000000000000000181113000000000000000000000000000000000000000000000000000000000018111400000000000000000000000000000000000000000000000000000000001811150000000000000000000000000000000000000000000000000000000000181116000000000000000000000000000000000000000000000000000000000018111700000000000000000000000000000000000000000000000000000000001811180000000000000000000000000000000000000000000000000000000000181119000000000000000000000000000000000000000000000000000000000018111a000000000000000000000000000000000000000000000000000000000018111b000000000000000000000000000000000000000000000000000000000018111c000000000000000000000000000000000000000000000000000000000018111d000000000000000000000000000000000000000000000000000000000018111e000000000000000000000000000000000000000000000000000000000018111f0000000000000000000000000000000000000000000000000000000000181120000000000000000000000000000000000000000000000000000000000018112100000000000000000000000000000000000000000000000000000000001811220000000000000000000000000000000000000000000000000000000000181123000000000000000000000000000000000000000000000000000000000018112400000000000000000000000000000000000000000000000000000000001811250000000000000000000000000000000000000000000000000000000000181126000000000000000000000000000000000000000000000000000000000018112700000000000000000000000000000000000000000000000000000000001811280000000000000000000000000000000000000000000000000000000000181129000000000000000000000000000000000000000000000000000000000018112a000000000000000000000000000000000000000000000000000000000018112b000000000000000000000000000000000000000000000000000000000018112c000000000000000000000000000000000000000000000000000000000018112d000000000000000000000000000000000000000000000000000000000018112e000000000000000000000000000000000000000000000000000000000018112f0000000000000000000000000000000000000000000000000000000000181130000000000000000000000000000000000000000000000000000000000018113100000000000000000000000000000000000000000000000000000000001811320000000000000000000000000000000000000000000000000000000000181133000000000000000000000000000000000000000000000000000000000018113400000000000000000000000000000000000000000000000000000000001811350000000000000000000000000000000000000000000000000000000000181136000000000000000000000000000000000000000000000000000000000018113700000000000000000000000000000000000000000000000000000000001811380000000000000000000000000000000000000000000000000000000000181139000000000000000000000000000000000000000000000000000000000018113a000000000000000000000000000000000000000000000000000000000018113b000000000000000000000000000000000000000000000000000000000018113c000000000000000000000000000000000000000000000000000000000018113d000000000000000000000000000000000000000000000000000000000018113e08001311d7be859fe766205679180604a937a8d4bd870d6d12edb2db749345b51c006a36f23a5cb4d19f855238d418170e140300192ead60f7ab35312e9c2513b800b26b2c0e63909e88d537840ceb7fc2e3ba764efc546dcccf0fe4c2cfd28c7100025242c4a697eccd73273bf6c4d1b5821c7dcf22789c590b7295100d20ccde00ef98046ac0b4095051c64b82fd69d051a08c3ac20e073f5656e3057b3eccbe00daa2f457ab065009361f9276765fa37f21053db780ce11b9a363dabfc735cf00443966d01fe9717b46d36f729e652c2657e2e7d56d5117ef966cfbd3add32e00ee29f87f39ab1c4c1201bdd331fa5a9a254a1030c1cbdbf6ee82d3fce25c2a400000000000000000000000000000000000000000000000000000000000182000000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182001000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182002000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182003000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182004000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182005000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820060000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018200700000000000000000000000000000000000000000000000000000000001820110000000000000000000000000000000000000000000000000000000000182008000000000000000000000000000000000000000000000000000000000018201200000000000000000000000000000000000000000000000000000000001820090000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182016000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182017000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182011000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182012000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820160000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018201700000000000000000000000000000000000000000000000000000000001820210000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018202200000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182026000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182027000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182021000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182022000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820260000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018202700000000000000000000000000000000000000000000000000000000001820310000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018203200000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182036000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182037000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182031000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182032000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018203f00000000000000000000000000000000000000000000000000000000001820360000000000000000000000000000000000000000000000000000000000182040000000000000000000000000000000000000000000000000000000000018203700000000000000000000000000000000000000000000000000000000001820410000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018204200000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182043000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182044000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182045000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182046000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182047000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182048000000000000000000000000000000000000000000000000000000000018203f0000000000000000000000000000000000000000000000000000000000182049400000000000000000000000000000000000000000000000000000000000181300000000000000000000000000000000000000000000000000000000000018130100000000000000000000000000000000000000000000000000000000001813020000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000010000000000000000000000000000000000000000000000000000000000018130100000000000000000000000000000000000000000000000000000000001813020000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000001000000000000000000000000000000000000000000000000000000000001813020000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000100000000000000000000000000000000000000000000000000000000000181303000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000010000000000000000000000000000000000000000000000000000000000018130400000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000001000000000000000000000000000000000000000000000000000000000001813050000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000100000000000000000000000000000000000000000000000000000000000181306000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000010000000000000000000000000000000000000000000000000000000000018130700000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000000000000000000000000000000000000000000000000000000001813160000001000000000000000000000000000000000000000000000000000000000001813080000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000000000000000000000000000000000000000000000000000000001813160000000000000000000000000000000000000000000000000000000000181317000000100000000000000000000000000000000000000000000000000000000000181309000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f00000000000000000000000000000000000000000000000000000000001813100000000000000000000000000000000000000000000000000000000000181311000000000000000000000000000000000000000000000000000000000018131200000000000000000000000000000000000000000000000000000000001813130000000000000000000000000000000000000000000000000000000000181314000000000000000000000000000000000000000000000000000000000018131500000000000000000000000000000000000000000000000000000000001813160000000000000000000000000000000000000000000000000000000000181317000000000000000000000000000000000000000000000000000000000018131800000010000000000000000000000000000000000000000000000000000000000018130a000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f000000000000000000000000000000000000000000000000000000000018131000000000000000000000000000000000000000000000000000000000001813110000000000000000000000000000000000000000000000000000000000181312000000000000000000000000000000000000000000000000000000000018131300000000000000000000000000000000000000000000000000000000001813140000000000000000000000000000000000000000000000000000000000181315000000000000000000000000000000000000000000000000000000000018131600000000000000000000000000000000000000000000000000000000001813170000000000000000000000000000000000000000000000000000000000181318000000000000000000000000000000000000000000000000000000000018131900000010000000000000000000000000000000000000000000000000000000000018130b000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a00000010000000000000000000000000000000000000000000000000000000000018130c000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b00000010000000000000000000000000000000000000000000000000000000000018130d000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c00000010000000000000000000000000000000000000000000000000000000000018130e000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d00000010000000000000000000000000000000000000000000000000000000000018130f0000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000100000000000000000000000000000000000000000000000000000000000181310000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000010000000000000000000000000000000000000000000000000000000000018131100000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000001000000000000000000000000000000000000000000000000000000000001813120000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000100000000000000000000000000000000000000000000000000000000000181313000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000010000000000000000000000000000000000000000000000000000000000018131400000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000001000000000000000000000000000000000000000000000000000000000001813150000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000100000000000000000000000000000000000000000000000000000000000181316000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000010000000000000000000000000000000000000000000000000000000000018131700000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000000000000000000000000000000000000000000000000000000001813260000001000000000000000000000000000000000000000000000000000000000001813180000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000000000000000000000000000000000000000000000000000000001813260000000000000000000000000000000000000000000000000000000000181327000000100000000000000000000000000000000000000000000000000000000000181319000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f00000000000000000000000000000000000000000000000000000000001813200000000000000000000000000000000000000000000000000000000000181321000000000000000000000000000000000000000000000000000000000018132200000000000000000000000000000000000000000000000000000000001813230000000000000000000000000000000000000000000000000000000000181324000000000000000000000000000000000000000000000000000000000018132500000000000000000000000000000000000000000000000000000000001813260000000000000000000000000000000000000000000000000000000000181327000000000000000000000000000000000000000000000000000000000018132800000010000000000000000000000000000000000000000000000000000000000018131a000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f000000000000000000000000000000000000000000000000000000000018132000000000000000000000000000000000000000000000000000000000001813210000000000000000000000000000000000000000000000000000000000181322000000000000000000000000000000000000000000000000000000000018132300000000000000000000000000000000000000000000000000000000001813240000000000000000000000000000000000000000000000000000000000181325000000000000000000000000000000000000000000000000000000000018132600000000000000000000000000000000000000000000000000000000001813270000000000000000000000000000000000000000000000000000000000181328000000000000000000000000000000000000000000000000000000000018132900000010000000000000000000000000000000000000000000000000000000000018131b000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a00000010000000000000000000000000000000000000000000000000000000000018131c000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b00000010000000000000000000000000000000000000000000000000000000000018131d000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c00000010000000000000000000000000000000000000000000000000000000000018131e000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d00000010000000000000000000000000000000000000000000000000000000000018131f0000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000100000000000000000000000000000000000000000000000000000000000181320000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000010000000000000000000000000000000000000000000000000000000000018132100000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000001000000000000000000000000000000000000000000000000000000000001813220000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000100000000000000000000000000000000000000000000000000000000000181323000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000010000000000000000000000000000000000000000000000000000000000018132400000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000001000000000000000000000000000000000000000000000000000000000001813250000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000100000000000000000000000000000000000000000000000000000000000181326000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000010000000000000000000000000000000000000000000000000000000000018132700000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000000000000000000000000000000000000000000000000000000001813360000001000000000000000000000000000000000000000000000000000000000001813280000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000000000000000000000000000000000000000000000000000000001813360000000000000000000000000000000000000000000000000000000000181337000000100000000000000000000000000000000000000000000000000000000000181329000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f00000000000000000000000000000000000000000000000000000000001813300000000000000000000000000000000000000000000000000000000000181331000000000000000000000000000000000000000000000000000000000018133200000000000000000000000000000000000000000000000000000000001813330000000000000000000000000000000000000000000000000000000000181334000000000000000000000000000000000000000000000000000000000018133500000000000000000000000000000000000000000000000000000000001813360000000000000000000000000000000000000000000000000000000000181337000000000000000000000000000000000000000000000000000000000018133800000010000000000000000000000000000000000000000000000000000000000018132a000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f000000000000000000000000000000000000000000000000000000000018133000000000000000000000000000000000000000000000000000000000001813310000000000000000000000000000000000000000000000000000000000181332000000000000000000000000000000000000000000000000000000000018133300000000000000000000000000000000000000000000000000000000001813340000000000000000000000000000000000000000000000000000000000181335000000000000000000000000000000000000000000000000000000000018133600000000000000000000000000000000000000000000000000000000001813370000000000000000000000000000000000000000000000000000000000181338000000000000000000000000000000000000000000000000000000000018133900000010000000000000000000000000000000000000000000000000000000000018132b000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a00000010000000000000000000000000000000000000000000000000000000000018132c000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b00000010000000000000000000000000000000000000000000000000000000000018132d000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c00000010000000000000000000000000000000000000000000000000000000000018132e000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d00000010000000000000000000000000000000000000000000000000000000000018132f0000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000100000000000000000000000000000000000000000000000000000000000181330000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000010000000000000000000000000000000000000000000000000000000000018133100000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000001000000000000000000000000000000000000000000000000000000000001813320000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000100000000000000000000000000000000000000000000000000000000000181333000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000010000000000000000000000000000000000000000000000000000000000018133400000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000001000000000000000000000000000000000000000000000000000000000001813350000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000100000000000000000000000000000000000000000000000000000000000181336000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000010000000000000000000000000000000000000000000000000000000000018133700000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000000000000000000000000000000000000000000000000000000001813460000001000000000000000000000000000000000000000000000000000000000001813380000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000000000000000000000000000000000000000000000000000000001813460000000000000000000000000000000000000000000000000000000000181347000000100000000000000000000000000000000000000000000000000000000000181339000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f00000000000000000000000000000000000000000000000000000000001813400000000000000000000000000000000000000000000000000000000000181341000000000000000000000000000000000000000000000000000000000018134200000000000000000000000000000000000000000000000000000000001813430000000000000000000000000000000000000000000000000000000000181344000000000000000000000000000000000000000000000000000000000018134500000000000000000000000000000000000000000000000000000000001813460000000000000000000000000000000000000000000000000000000000181347000000000000000000000000000000000000000000000000000000000018134800000010000000000000000000000000000000000000000000000000000000000018133a000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f000000000000000000000000000000000000000000000000000000000018134000000000000000000000000000000000000000000000000000000000001813410000000000000000000000000000000000000000000000000000000000181342000000000000000000000000000000000000000000000000000000000018134300000000000000000000000000000000000000000000000000000000001813440000000000000000000000000000000000000000000000000000000000181345000000000000000000000000000000000000000000000000000000000018134600000000000000000000000000000000000000000000000000000000001813470000000000000000000000000000000000000000000000000000000000181348000000000000000000000000000000000000000000000000000000000018134900000010000000000000000000000000000000000000000000000000000000000018133b000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a00000010000000000000000000000000000000000000000000000000000000000018133c000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b00000010000000000000000000000000000000000000000000000000000000000018133d000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b000000000000000000000000000000000000000000000000000000000018134c00000010000000000000000000000000000000000000000000000000000000000018133e000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b000000000000000000000000000000000000000000000000000000000018134c000000000000000000000000000000000000000000000000000000000018134d00000010000000000000000000000000000000000000000000000000000000000018133f0000000000000000000000000000000000000000000000000000000000181340000000000000000000000000000000000000000000000000000000000018134100000000000000000000000000000000000000000000000000000000001813420000000000000000000000000000000000000000000000000000000000181343000000000000000000000000000000000000000000000000000000000018134400000000000000000000000000000000000000000000000000000000001813450000000000000000000000000000000000000000000000000000000000181346000000000000000000000000000000000000000000000000000000000018134700000000000000000000000000000000000000000000000000000000001813480000000000000000000000000000000000000000000000000000000000181349000000000000000000000000000000000000000000000000000000000018134a000000000000000000000000000000000000000000000000000000000018134b000000000000000000000000000000000000000000000000000000000018134c000000000000000000000000000000000000000000000000000000000018134d000000000000000000000000000000000000000000000000000000000018134e000000100000000000000570f44c98859ce4a02331d666f2b4da06b82b3153c90965a75de098ba4029f600000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000001c100000000000000000000000000000000000000000000000000000000000001c100100000000000000000000000000000000000000000000000000000000001c100200000000000000000000000000000000000000000000000000000000001c100300000000000000000000000000000000000000000000000000000000001c100400000000000000000000000000000000000000000000000000000000001c100500000000000000000000000000000000000000000000000000000000001c100600000000000000000000000000000000000000000000000000000000001c100700000000000000000000000000000000000000000000000000000000001c100800000000000000000000000000000000000000000000000000000000001c100900000000000000000000000000000000000000000000000000000000001c100a00000000000000000000000000000000000000000000000000000000001c100b00000000000000000000000000000000000000000000000000000000001c100c00000000000000000000000000000000000000000000000000000000001c100d00000000000000000000000000000000000000000000000000000000001c100e00000000000000000000000000000000000000000000000000000000001c100f00000000000000000000000000000000000000000000000000000000001c101000000000000000000000000000000000000000000000000000000000001c101100000000000000000000000000000000000000000000000000000000001c101200000000000000000000000000000000000000000000000000000000001c101300000000000000000000000000000000000000000000000000000000001c101400000000000000000000000000000000000000000000000000000000001c101500000000000000000000000000000000000000000000000000000000001c101600000000000000000000000000000000000000000000000000000000001c101700000000000000000000000000000000000000000000000000000000001c101800000000000000000000000000000000000000000000000000000000001c101900000000000000000000000000000000000000000000000000000000001c101a00000000000000000000000000000000000000000000000000000000001c101b00000000000000000000000000000000000000000000000000000000001c101c00000000000000000000000000000000000000000000000000000000001c101d00000000000000000000000000000000000000000000000000000000001c101e00000000000000000000000000000000000000000000000000000000001c101f00000000000000000000000000000000000000000000000000000000001c102000000000000000000000000000000000000000000000000000000000001c102100000000000000000000000000000000000000000000000000000000001c102200000000000000000000000000000000000000000000000000000000001c102300000000000000000000000000000000000000000000000000000000001c102400000000000000000000000000000000000000000000000000000000001c102500000000000000000000000000000000000000000000000000000000001c102600000000000000000000000000000000000000000000000000000000001c102700000000000000000000000000000000000000000000000000000000001c102800000000000000000000000000000000000000000000000000000000001c102900000000000000000000000000000000000000000000000000000000001c102a00000000000000000000000000000000000000000000000000000000001c102b00000000000000000000000000000000000000000000000000000000001c102c00000000000000000000000000000000000000000000000000000000001c102d00000000000000000000000000000000000000000000000000000000001c102e00000000000000000000000000000000000000000000000000000000001c102f00000000000000000000000000000000000000000000000000000000001c103000000000000000000000000000000000000000000000000000000000001c103100000000000000000000000000000000000000000000000000000000001c103200000000000000000000000000000000000000000000000000000000001c103300000000000000000000000000000000000000000000000000000000001c103400000000000000000000000000000000000000000000000000000000001c103500000000000000000000000000000000000000000000000000000000001c103600000000000000000000000000000000000000000000000000000000001c103700000000000000000000000000000000000000000000000000000000001c103800000000000000000000000000000000000000000000000000000000001c103900000000000000000000000000000000000000000000000000000000001c103a00000000000000000000000000000000000000000000000000000000001c103b00000000000000000000000000000000000000000000000000000000001c103c00000000000000000000000000000000000000000000000000000000001c103d00000000000000000000000000000000000000000000000000000000001c103e00000000000000000000000000000000000000000000000000000000001c103f4000000000000000000000000000000000000000000000000000000000001c000100000000000000000000000000000000000000000000000000000000001c110000000000000000000000000000000000000000000000000000000000001c110100000000000000000000000000000000000000000000000000000000001c110200000000000000000000000000000000000000000000000000000000001c110300000000000000000000000000000000000000000000000000000000001c110400000000000000000000000000000000000000000000000000000000001c110500000000000000000000000000000000000000000000000000000000001c110600000000000000000000000000000000000000000000000000000000001c110700000000000000000000000000000000000000000000000000000000001c110800000000000000000000000000000000000000000000000000000000001c110900000000000000000000000000000000000000000000000000000000001c110a00000000000000000000000000000000000000000000000000000000001c110b00000000000000000000000000000000000000000000000000000000001c110c00000000000000000000000000000000000000000000000000000000001c110d00000000000000000000000000000000000000000000000000000000001c110e00000000000000000000000000000000000000000000000000000000001c110f00000000000000000000000000000000000000000000000000000000001c111000000000000000000000000000000000000000000000000000000000001c111100000000000000000000000000000000000000000000000000000000001c111200000000000000000000000000000000000000000000000000000000001c111300000000000000000000000000000000000000000000000000000000001c111400000000000000000000000000000000000000000000000000000000001c111500000000000000000000000000000000000000000000000000000000001c111600000000000000000000000000000000000000000000000000000000001c111700000000000000000000000000000000000000000000000000000000001c111800000000000000000000000000000000000000000000000000000000001c111900000000000000000000000000000000000000000000000000000000001c111a00000000000000000000000000000000000000000000000000000000001c111b00000000000000000000000000000000000000000000000000000000001c111c00000000000000000000000000000000000000000000000000000000001c111d00000000000000000000000000000000000000000000000000000000001c111e00000000000000000000000000000000000000000000000000000000001c111f00000000000000000000000000000000000000000000000000000000001c112000000000000000000000000000000000000000000000000000000000001c112100000000000000000000000000000000000000000000000000000000001c112200000000000000000000000000000000000000000000000000000000001c112300000000000000000000000000000000000000000000000000000000001c112400000000000000000000000000000000000000000000000000000000001c112500000000000000000000000000000000000000000000000000000000001c112600000000000000000000000000000000000000000000000000000000001c112700000000000000000000000000000000000000000000000000000000001c112800000000000000000000000000000000000000000000000000000000001c112900000000000000000000000000000000000000000000000000000000001c112a00000000000000000000000000000000000000000000000000000000001c112b00000000000000000000000000000000000000000000000000000000001c112c00000000000000000000000000000000000000000000000000000000001c112d00000000000000000000000000000000000000000000000000000000001c112e00000000000000000000000000000000000000000000000000000000001c112f00000000000000000000000000000000000000000000000000000000001c113000000000000000000000000000000000000000000000000000000000001c113100000000000000000000000000000000000000000000000000000000001c113200000000000000000000000000000000000000000000000000000000001c113300000000000000000000000000000000000000000000000000000000001c113400000000000000000000000000000000000000000000000000000000001c113500000000000000000000000000000000000000000000000000000000001c113600000000000000000000000000000000000000000000000000000000001c113700000000000000000000000000000000000000000000000000000000001c113800000000000000000000000000000000000000000000000000000000001c113900000000000000000000000000000000000000000000000000000000001c113a00000000000000000000000000000000000000000000000000000000001c113b00000000000000000000000000000000000000000000000000000000001c113c00000000000000000000000000000000000000000000000000000000001c113d00000000000000000000000000000000000000000000000000000000001c113e080032724de1d6ec869c131859afe6fd33f6f9671c22cb571cc5e694deb1866ccc00b42f417479d2716d26461d44cec542d856294c55df755cbaafb6d731d0102c000a929c0dc3f37349c75878e678bb82cd3f2ada39b278bb841812ec290aca3b00dfbe7d369fe3222f98c449724614c53b1fe2cab20e0ef5b32fa5e3a16756a500790e7c8e3dfe2b8148b0f8c85f89cab718bd1704af7413f510f6697c4baa3100a77eca326aa2a2c4b2c9ec7c2af94aa5f89ed7f5adda05b2c9312adfafac48005b58ed9e335da74a33db99830d12be3dc16a1515dc5538f2337167b9fe6c79007e2c83d687b981fe73fce5ea00b64d859548997e68c1d97ad7bbb62cc56b014000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c200100000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c200200000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c200300000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c200400000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c200500000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c200600000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c200700000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c200800000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c200900000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c204000000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c204100000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c204200000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c204300000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c204400000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c204500000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c204600000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c204700000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c204800000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c20494000000000000000000000000000000000000000000000000000000000001c130000000000000000000000000000000000000000000000000000000000001c130100000000000000000000000000000000000000000000000000000000001c130200000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f0000001000000000000000000000000000000000000000000000000000000000001c130100000000000000000000000000000000000000000000000000000000001c130200000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c13100000001000000000000000000000000000000000000000000000000000000000001c130200000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c13110000001000000000000000000000000000000000000000000000000000000000001c130300000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c13120000001000000000000000000000000000000000000000000000000000000000001c130400000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c13130000001000000000000000000000000000000000000000000000000000000000001c130500000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c13140000001000000000000000000000000000000000000000000000000000000000001c130600000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c13150000001000000000000000000000000000000000000000000000000000000000001c130700000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c13160000001000000000000000000000000000000000000000000000000000000000001c130800000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c13170000001000000000000000000000000000000000000000000000000000000000001c130900000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c13180000001000000000000000000000000000000000000000000000000000000000001c130a00000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c13190000001000000000000000000000000000000000000000000000000000000000001c130b00000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a0000001000000000000000000000000000000000000000000000000000000000001c130c00000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b0000001000000000000000000000000000000000000000000000000000000000001c130d00000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c0000001000000000000000000000000000000000000000000000000000000000001c130e00000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d0000001000000000000000000000000000000000000000000000000000000000001c130f00000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e0000001000000000000000000000000000000000000000000000000000000000001c131000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f0000001000000000000000000000000000000000000000000000000000000000001c131100000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c13200000001000000000000000000000000000000000000000000000000000000000001c131200000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c13210000001000000000000000000000000000000000000000000000000000000000001c131300000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c13220000001000000000000000000000000000000000000000000000000000000000001c131400000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c13230000001000000000000000000000000000000000000000000000000000000000001c131500000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c13240000001000000000000000000000000000000000000000000000000000000000001c131600000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c13250000001000000000000000000000000000000000000000000000000000000000001c131700000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c13260000001000000000000000000000000000000000000000000000000000000000001c131800000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c13270000001000000000000000000000000000000000000000000000000000000000001c131900000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c13280000001000000000000000000000000000000000000000000000000000000000001c131a00000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c13290000001000000000000000000000000000000000000000000000000000000000001c131b00000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a0000001000000000000000000000000000000000000000000000000000000000001c131c00000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b0000001000000000000000000000000000000000000000000000000000000000001c131d00000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c0000001000000000000000000000000000000000000000000000000000000000001c131e00000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d0000001000000000000000000000000000000000000000000000000000000000001c131f00000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e0000001000000000000000000000000000000000000000000000000000000000001c132000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f0000001000000000000000000000000000000000000000000000000000000000001c132100000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c13300000001000000000000000000000000000000000000000000000000000000000001c132200000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c13310000001000000000000000000000000000000000000000000000000000000000001c132300000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c13320000001000000000000000000000000000000000000000000000000000000000001c132400000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c13330000001000000000000000000000000000000000000000000000000000000000001c132500000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c13340000001000000000000000000000000000000000000000000000000000000000001c132600000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c13350000001000000000000000000000000000000000000000000000000000000000001c132700000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c13360000001000000000000000000000000000000000000000000000000000000000001c132800000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c13370000001000000000000000000000000000000000000000000000000000000000001c132900000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c13380000001000000000000000000000000000000000000000000000000000000000001c132a00000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c13390000001000000000000000000000000000000000000000000000000000000000001c132b00000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a0000001000000000000000000000000000000000000000000000000000000000001c132c00000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b0000001000000000000000000000000000000000000000000000000000000000001c132d00000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c0000001000000000000000000000000000000000000000000000000000000000001c132e00000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d0000001000000000000000000000000000000000000000000000000000000000001c132f00000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e0000001000000000000000000000000000000000000000000000000000000000001c133000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f0000001000000000000000000000000000000000000000000000000000000000001c133100000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c13400000001000000000000000000000000000000000000000000000000000000000001c133200000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c13410000001000000000000000000000000000000000000000000000000000000000001c133300000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c13420000001000000000000000000000000000000000000000000000000000000000001c133400000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c13430000001000000000000000000000000000000000000000000000000000000000001c133500000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c13440000001000000000000000000000000000000000000000000000000000000000001c133600000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c13450000001000000000000000000000000000000000000000000000000000000000001c133700000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c13460000001000000000000000000000000000000000000000000000000000000000001c133800000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c13470000001000000000000000000000000000000000000000000000000000000000001c133900000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c13480000001000000000000000000000000000000000000000000000000000000000001c133a00000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c13490000001000000000000000000000000000000000000000000000000000000000001c133b00000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a0000001000000000000000000000000000000000000000000000000000000000001c133c00000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b0000001000000000000000000000000000000000000000000000000000000000001c133d00000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b00000000000000000000000000000000000000000000000000000000001c134c0000001000000000000000000000000000000000000000000000000000000000001c133e00000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b00000000000000000000000000000000000000000000000000000000001c134c00000000000000000000000000000000000000000000000000000000001c134d0000001000000000000000000000000000000000000000000000000000000000001c133f00000000000000000000000000000000000000000000000000000000001c134000000000000000000000000000000000000000000000000000000000001c134100000000000000000000000000000000000000000000000000000000001c134200000000000000000000000000000000000000000000000000000000001c134300000000000000000000000000000000000000000000000000000000001c134400000000000000000000000000000000000000000000000000000000001c134500000000000000000000000000000000000000000000000000000000001c134600000000000000000000000000000000000000000000000000000000001c134700000000000000000000000000000000000000000000000000000000001c134800000000000000000000000000000000000000000000000000000000001c134900000000000000000000000000000000000000000000000000000000001c134a00000000000000000000000000000000000000000000000000000000001c134b00000000000000000000000000000000000000000000000000000000001c134c00000000000000000000000000000000000000000000000000000000001c134d00000000000000000000000000000000000000000000000000000000001c134e000000100000000000001d9306b33506d1c99c22acbcf94aa867067485ace3fc7d55e413ab1d9214837e0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000020100100000000000000000000000000000000000000000000000000000000002010020000000000000000000000000000000000000000000000000000000000201003000000000000000000000000000000000000000000000000000000000020100400000000000000000000000000000000000000000000000000000000002010050000000000000000000000000000000000000000000000000000000000201006000000000000000000000000000000000000000000000000000000000020100700000000000000000000000000000000000000000000000000000000002010080000000000000000000000000000000000000000000000000000000000201009000000000000000000000000000000000000000000000000000000000020100a000000000000000000000000000000000000000000000000000000000020100b000000000000000000000000000000000000000000000000000000000020100c000000000000000000000000000000000000000000000000000000000020100d000000000000000000000000000000000000000000000000000000000020100e000000000000000000000000000000000000000000000000000000000020100f0000000000000000000000000000000000000000000000000000000000201010000000000000000000000000000000000000000000000000000000000020101100000000000000000000000000000000000000000000000000000000002010120000000000000000000000000000000000000000000000000000000000201013000000000000000000000000000000000000000000000000000000000020101400000000000000000000000000000000000000000000000000000000002010150000000000000000000000000000000000000000000000000000000000201016000000000000000000000000000000000000000000000000000000000020101700000000000000000000000000000000000000000000000000000000002010180000000000000000000000000000000000000000000000000000000000201019000000000000000000000000000000000000000000000000000000000020101a000000000000000000000000000000000000000000000000000000000020101b000000000000000000000000000000000000000000000000000000000020101c000000000000000000000000000000000000000000000000000000000020101d000000000000000000000000000000000000000000000000000000000020101e000000000000000000000000000000000000000000000000000000000020101f0000000000000000000000000000000000000000000000000000000000201020000000000000000000000000000000000000000000000000000000000020102100000000000000000000000000000000000000000000000000000000002010220000000000000000000000000000000000000000000000000000000000201023000000000000000000000000000000000000000000000000000000000020102400000000000000000000000000000000000000000000000000000000002010250000000000000000000000000000000000000000000000000000000000201026000000000000000000000000000000000000000000000000000000000020102700000000000000000000000000000000000000000000000000000000002010280000000000000000000000000000000000000000000000000000000000201029000000000000000000000000000000000000000000000000000000000020102a000000000000000000000000000000000000000000000000000000000020102b000000000000000000000000000000000000000000000000000000000020102c000000000000000000000000000000000000000000000000000000000020102d000000000000000000000000000000000000000000000000000000000020102e000000000000000000000000000000000000000000000000000000000020102f0000000000000000000000000000000000000000000000000000000000201030000000000000000000000000000000000000000000000000000000000020103100000000000000000000000000000000000000000000000000000000002010320000000000000000000000000000000000000000000000000000000000201033000000000000000000000000000000000000000000000000000000000020103400000000000000000000000000000000000000000000000000000000002010350000000000000000000000000000000000000000000000000000000000201036000000000000000000000000000000000000000000000000000000000020103700000000000000000000000000000000000000000000000000000000002010380000000000000000000000000000000000000000000000000000000000201039000000000000000000000000000000000000000000000000000000000020103a000000000000000000000000000000000000000000000000000000000020103b000000000000000000000000000000000000000000000000000000000020103c000000000000000000000000000000000000000000000000000000000020103d000000000000000000000000000000000000000000000000000000000020103e000000000000000000000000000000000000000000000000000000000020103f4000000000000000000000000000000000000000000000000000000000002000010000000000000000000000000000000000000000000000000000000000201100000000000000000000000000000000000000000000000000000000000020110100000000000000000000000000000000000000000000000000000000002011020000000000000000000000000000000000000000000000000000000000201103000000000000000000000000000000000000000000000000000000000020110400000000000000000000000000000000000000000000000000000000002011050000000000000000000000000000000000000000000000000000000000201106000000000000000000000000000000000000000000000000000000000020110700000000000000000000000000000000000000000000000000000000002011080000000000000000000000000000000000000000000000000000000000201109000000000000000000000000000000000000000000000000000000000020110a000000000000000000000000000000000000000000000000000000000020110b000000000000000000000000000000000000000000000000000000000020110c000000000000000000000000000000000000000000000000000000000020110d000000000000000000000000000000000000000000000000000000000020110e000000000000000000000000000000000000000000000000000000000020110f0000000000000000000000000000000000000000000000000000000000201110000000000000000000000000000000000000000000000000000000000020111100000000000000000000000000000000000000000000000000000000002011120000000000000000000000000000000000000000000000000000000000201113000000000000000000000000000000000000000000000000000000000020111400000000000000000000000000000000000000000000000000000000002011150000000000000000000000000000000000000000000000000000000000201116000000000000000000000000000000000000000000000000000000000020111700000000000000000000000000000000000000000000000000000000002011180000000000000000000000000000000000000000000000000000000000201119000000000000000000000000000000000000000000000000000000000020111a000000000000000000000000000000000000000000000000000000000020111b000000000000000000000000000000000000000000000000000000000020111c000000000000000000000000000000000000000000000000000000000020111d000000000000000000000000000000000000000000000000000000000020111e000000000000000000000000000000000000000000000000000000000020111f0000000000000000000000000000000000000000000000000000000000201120000000000000000000000000000000000000000000000000000000000020112100000000000000000000000000000000000000000000000000000000002011220000000000000000000000000000000000000000000000000000000000201123000000000000000000000000000000000000000000000000000000000020112400000000000000000000000000000000000000000000000000000000002011250000000000000000000000000000000000000000000000000000000000201126000000000000000000000000000000000000000000000000000000000020112700000000000000000000000000000000000000000000000000000000002011280000000000000000000000000000000000000000000000000000000000201129000000000000000000000000000000000000000000000000000000000020112a000000000000000000000000000000000000000000000000000000000020112b000000000000000000000000000000000000000000000000000000000020112c000000000000000000000000000000000000000000000000000000000020112d000000000000000000000000000000000000000000000000000000000020112e000000000000000000000000000000000000000000000000000000000020112f0000000000000000000000000000000000000000000000000000000000201130000000000000000000000000000000000000000000000000000000000020113100000000000000000000000000000000000000000000000000000000002011320000000000000000000000000000000000000000000000000000000000201133000000000000000000000000000000000000000000000000000000000020113400000000000000000000000000000000000000000000000000000000002011350000000000000000000000000000000000000000000000000000000000201136000000000000000000000000000000000000000000000000000000000020113700000000000000000000000000000000000000000000000000000000002011380000000000000000000000000000000000000000000000000000000000201139000000000000000000000000000000000000000000000000000000000020113a000000000000000000000000000000000000000000000000000000000020113b000000000000000000000000000000000000000000000000000000000020113c000000000000000000000000000000000000000000000000000000000020113d000000000000000000000000000000000000000000000000000000000020113e08007028edb640521e1ff4bad393203e4295b7a3d56e56bb1f521e5c4e9b4005300036797701c3aaf3565c51441e1e5380670d18b202fe37553ecabfe7dc0b8f83009f8a18280b8f8a6ade36f92424bb3832d4a5f781a599db2443d893e9f6ade900b6f46198c6138158211376e12e634fe8277e87890072320d1cc11b9212526e007c1fd1abdb6e87968aa2bccf1a4ac7c7784a416ec5e3279f1c16c81b04f59300d54f3523d1db359f5666c0dd5d7fa65ff4d5a07a83e23899f327c34d872dc8006ad2dc7beeefd5dd6b474b723b971e2d0f5cf6a9b109b56480319d5afdd44e001b0acdd069674a0168231de30523bff9854818cd631fdd1c90622117acf7f8400000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202001000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202002000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202003000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202004000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202005000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020060000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020200700000000000000000000000000000000000000000000000000000000002020110000000000000000000000000000000000000000000000000000000000202008000000000000000000000000000000000000000000000000000000000020201200000000000000000000000000000000000000000000000000000000002020090000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202016000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202017000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202011000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202012000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020160000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020201700000000000000000000000000000000000000000000000000000000002020210000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020202200000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202026000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202027000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202021000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202022000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020260000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020202700000000000000000000000000000000000000000000000000000000002020310000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020203200000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202036000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202037000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202031000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202032000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020203f00000000000000000000000000000000000000000000000000000000002020360000000000000000000000000000000000000000000000000000000000202040000000000000000000000000000000000000000000000000000000000020203700000000000000000000000000000000000000000000000000000000002020410000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020204200000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202043000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202044000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202045000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202046000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202047000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202048000000000000000000000000000000000000000000000000000000000020203f0000000000000000000000000000000000000000000000000000000000202049400000000000000000000000000000000000000000000000000000000000201300000000000000000000000000000000000000000000000000000000000020130100000000000000000000000000000000000000000000000000000000002013020000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000010000000000000000000000000000000000000000000000000000000000020130100000000000000000000000000000000000000000000000000000000002013020000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000001000000000000000000000000000000000000000000000000000000000002013020000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000100000000000000000000000000000000000000000000000000000000000201303000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000010000000000000000000000000000000000000000000000000000000000020130400000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000001000000000000000000000000000000000000000000000000000000000002013050000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000100000000000000000000000000000000000000000000000000000000000201306000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000010000000000000000000000000000000000000000000000000000000000020130700000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000000000000000000000000000000000000000000000000000000002013160000001000000000000000000000000000000000000000000000000000000000002013080000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000000000000000000000000000000000000000000000000000000002013160000000000000000000000000000000000000000000000000000000000201317000000100000000000000000000000000000000000000000000000000000000000201309000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f00000000000000000000000000000000000000000000000000000000002013100000000000000000000000000000000000000000000000000000000000201311000000000000000000000000000000000000000000000000000000000020131200000000000000000000000000000000000000000000000000000000002013130000000000000000000000000000000000000000000000000000000000201314000000000000000000000000000000000000000000000000000000000020131500000000000000000000000000000000000000000000000000000000002013160000000000000000000000000000000000000000000000000000000000201317000000000000000000000000000000000000000000000000000000000020131800000010000000000000000000000000000000000000000000000000000000000020130a000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f000000000000000000000000000000000000000000000000000000000020131000000000000000000000000000000000000000000000000000000000002013110000000000000000000000000000000000000000000000000000000000201312000000000000000000000000000000000000000000000000000000000020131300000000000000000000000000000000000000000000000000000000002013140000000000000000000000000000000000000000000000000000000000201315000000000000000000000000000000000000000000000000000000000020131600000000000000000000000000000000000000000000000000000000002013170000000000000000000000000000000000000000000000000000000000201318000000000000000000000000000000000000000000000000000000000020131900000010000000000000000000000000000000000000000000000000000000000020130b000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a00000010000000000000000000000000000000000000000000000000000000000020130c000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b00000010000000000000000000000000000000000000000000000000000000000020130d000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c00000010000000000000000000000000000000000000000000000000000000000020130e000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d00000010000000000000000000000000000000000000000000000000000000000020130f0000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000100000000000000000000000000000000000000000000000000000000000201310000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000010000000000000000000000000000000000000000000000000000000000020131100000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000001000000000000000000000000000000000000000000000000000000000002013120000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000100000000000000000000000000000000000000000000000000000000000201313000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000010000000000000000000000000000000000000000000000000000000000020131400000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000001000000000000000000000000000000000000000000000000000000000002013150000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000100000000000000000000000000000000000000000000000000000000000201316000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000010000000000000000000000000000000000000000000000000000000000020131700000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000000000000000000000000000000000000000000000000000000002013260000001000000000000000000000000000000000000000000000000000000000002013180000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000000000000000000000000000000000000000000000000000000002013260000000000000000000000000000000000000000000000000000000000201327000000100000000000000000000000000000000000000000000000000000000000201319000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f00000000000000000000000000000000000000000000000000000000002013200000000000000000000000000000000000000000000000000000000000201321000000000000000000000000000000000000000000000000000000000020132200000000000000000000000000000000000000000000000000000000002013230000000000000000000000000000000000000000000000000000000000201324000000000000000000000000000000000000000000000000000000000020132500000000000000000000000000000000000000000000000000000000002013260000000000000000000000000000000000000000000000000000000000201327000000000000000000000000000000000000000000000000000000000020132800000010000000000000000000000000000000000000000000000000000000000020131a000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f000000000000000000000000000000000000000000000000000000000020132000000000000000000000000000000000000000000000000000000000002013210000000000000000000000000000000000000000000000000000000000201322000000000000000000000000000000000000000000000000000000000020132300000000000000000000000000000000000000000000000000000000002013240000000000000000000000000000000000000000000000000000000000201325000000000000000000000000000000000000000000000000000000000020132600000000000000000000000000000000000000000000000000000000002013270000000000000000000000000000000000000000000000000000000000201328000000000000000000000000000000000000000000000000000000000020132900000010000000000000000000000000000000000000000000000000000000000020131b000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a00000010000000000000000000000000000000000000000000000000000000000020131c000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b00000010000000000000000000000000000000000000000000000000000000000020131d000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c00000010000000000000000000000000000000000000000000000000000000000020131e000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d00000010000000000000000000000000000000000000000000000000000000000020131f0000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000100000000000000000000000000000000000000000000000000000000000201320000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000010000000000000000000000000000000000000000000000000000000000020132100000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000001000000000000000000000000000000000000000000000000000000000002013220000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000100000000000000000000000000000000000000000000000000000000000201323000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000010000000000000000000000000000000000000000000000000000000000020132400000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000001000000000000000000000000000000000000000000000000000000000002013250000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000100000000000000000000000000000000000000000000000000000000000201326000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000010000000000000000000000000000000000000000000000000000000000020132700000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000000000000000000000000000000000000000000000000000000002013360000001000000000000000000000000000000000000000000000000000000000002013280000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000000000000000000000000000000000000000000000000000000002013360000000000000000000000000000000000000000000000000000000000201337000000100000000000000000000000000000000000000000000000000000000000201329000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f00000000000000000000000000000000000000000000000000000000002013300000000000000000000000000000000000000000000000000000000000201331000000000000000000000000000000000000000000000000000000000020133200000000000000000000000000000000000000000000000000000000002013330000000000000000000000000000000000000000000000000000000000201334000000000000000000000000000000000000000000000000000000000020133500000000000000000000000000000000000000000000000000000000002013360000000000000000000000000000000000000000000000000000000000201337000000000000000000000000000000000000000000000000000000000020133800000010000000000000000000000000000000000000000000000000000000000020132a000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f000000000000000000000000000000000000000000000000000000000020133000000000000000000000000000000000000000000000000000000000002013310000000000000000000000000000000000000000000000000000000000201332000000000000000000000000000000000000000000000000000000000020133300000000000000000000000000000000000000000000000000000000002013340000000000000000000000000000000000000000000000000000000000201335000000000000000000000000000000000000000000000000000000000020133600000000000000000000000000000000000000000000000000000000002013370000000000000000000000000000000000000000000000000000000000201338000000000000000000000000000000000000000000000000000000000020133900000010000000000000000000000000000000000000000000000000000000000020132b000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a00000010000000000000000000000000000000000000000000000000000000000020132c000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b00000010000000000000000000000000000000000000000000000000000000000020132d000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c00000010000000000000000000000000000000000000000000000000000000000020132e000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d00000010000000000000000000000000000000000000000000000000000000000020132f0000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000100000000000000000000000000000000000000000000000000000000000201330000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000010000000000000000000000000000000000000000000000000000000000020133100000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000001000000000000000000000000000000000000000000000000000000000002013320000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000100000000000000000000000000000000000000000000000000000000000201333000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000010000000000000000000000000000000000000000000000000000000000020133400000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000001000000000000000000000000000000000000000000000000000000000002013350000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000100000000000000000000000000000000000000000000000000000000000201336000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000010000000000000000000000000000000000000000000000000000000000020133700000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000000000000000000000000000000000000000000000000000000002013460000001000000000000000000000000000000000000000000000000000000000002013380000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000000000000000000000000000000000000000000000000000000002013460000000000000000000000000000000000000000000000000000000000201347000000100000000000000000000000000000000000000000000000000000000000201339000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f00000000000000000000000000000000000000000000000000000000002013400000000000000000000000000000000000000000000000000000000000201341000000000000000000000000000000000000000000000000000000000020134200000000000000000000000000000000000000000000000000000000002013430000000000000000000000000000000000000000000000000000000000201344000000000000000000000000000000000000000000000000000000000020134500000000000000000000000000000000000000000000000000000000002013460000000000000000000000000000000000000000000000000000000000201347000000000000000000000000000000000000000000000000000000000020134800000010000000000000000000000000000000000000000000000000000000000020133a000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f000000000000000000000000000000000000000000000000000000000020134000000000000000000000000000000000000000000000000000000000002013410000000000000000000000000000000000000000000000000000000000201342000000000000000000000000000000000000000000000000000000000020134300000000000000000000000000000000000000000000000000000000002013440000000000000000000000000000000000000000000000000000000000201345000000000000000000000000000000000000000000000000000000000020134600000000000000000000000000000000000000000000000000000000002013470000000000000000000000000000000000000000000000000000000000201348000000000000000000000000000000000000000000000000000000000020134900000010000000000000000000000000000000000000000000000000000000000020133b000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a00000010000000000000000000000000000000000000000000000000000000000020133c000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b00000010000000000000000000000000000000000000000000000000000000000020133d000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b000000000000000000000000000000000000000000000000000000000020134c00000010000000000000000000000000000000000000000000000000000000000020133e000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b000000000000000000000000000000000000000000000000000000000020134c000000000000000000000000000000000000000000000000000000000020134d00000010000000000000000000000000000000000000000000000000000000000020133f0000000000000000000000000000000000000000000000000000000000201340000000000000000000000000000000000000000000000000000000000020134100000000000000000000000000000000000000000000000000000000002013420000000000000000000000000000000000000000000000000000000000201343000000000000000000000000000000000000000000000000000000000020134400000000000000000000000000000000000000000000000000000000002013450000000000000000000000000000000000000000000000000000000000201346000000000000000000000000000000000000000000000000000000000020134700000000000000000000000000000000000000000000000000000000002013480000000000000000000000000000000000000000000000000000000000201349000000000000000000000000000000000000000000000000000000000020134a000000000000000000000000000000000000000000000000000000000020134b000000000000000000000000000000000000000000000000000000000020134c000000000000000000000000000000000000000000000000000000000020134d000000000000000000000000000000000000000000000000000000000020134e000000100000000000", "header": { - "lastArchiveRoot": "0x0c87f76b6c5cc918111d2acc975bf7f2133f5c3cc23c8cf6cc1c3e78f5c84a3e", - "blockHeadersHash": "0x144dbe32a03df9ccc672207c93cd22099eb91e44a71e1676148cd3c6c6c98b9e", - "blobsHash": "0x008bd0b669b942b57ccf85d3401214db65cde3608afa0b2ae0e57f35ec60d72e", - "inHash": "0x006504de282a40084bb8098456a915c645d53482d351db52fa9433b6cd638763", + "lastArchiveRoot": "0x00d3e625cdc11065d6ad18a9a7967eacd8b84bf647d3df2b894b777da3a2ac32", + "blockHeadersHash": "0x15d38aca197fbcee23be755e2c2a0f64b6a1f3902f1473782726f879523f0842", + "blobsHash": "0x003de5b0ed125d119a3f841185d1c92e32174711e62bf150538c9d0a9073b5ae", + "inHash": "0x00de7b349d2306334734e4f58b1302a6ed5a6c796a706f6597a5641b6d468223", "outHash": "0x008a85da85a596471f2e5fe402fde332723da8d24b6e7affd60d16c7cb7e9020", "slotNumber": 102, - "timestamp": 1776858064, - "coinbase": "0x1d5bd52b8e64405fe3d780d652fd91748dfeb73d", - "feeRecipient": "0x2d0879b9f59bd771bad9c73f4e20e8058051165385c9e4054ae24b446881aa27", + "timestamp": 1782247073, + "coinbase": "0x8bc1a752ce8fb0b95bbf82e9963c8a3678016b09", + "feeRecipient": "0x2fc07d838bc8999ec3ae38955747cdd79344787c21ca670a7cc7ae85766578b0", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 19067000000 + "feePerL2Gas": 16620000000 }, "totalManaUsed": 0, "accumulatedFees": 0 }, - "headerHash": "0x00eb0f37a51d2df835ea48d6cdde28398df86078d8507d467f34434dac062456", + "headerHash": "0x00b400a7833b5fa29ed85bfa14a3d513b175ebedf16dfdca9a1c6c3ac3821c79", "numTxs": 4 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/single_tx_checkpoint_1.json b/l1-contracts/test/fixtures/single_tx_checkpoint_1.json index 83aa2756dd96..aa33a771a936 100644 --- a/l1-contracts/test/fixtures/single_tx_checkpoint_1.json +++ b/l1-contracts/test/fixtures/single_tx_checkpoint_1.json @@ -34,29 +34,29 @@ ] }, "checkpoint": { - "archive": "0x0f198bb13b63a3a8791a8b9994167bbe1554811a106fda0acb5e6c6539b1713e", - "blobCommitments": "0x01b4e2d0395514c10a86df75cfcff804644c36667f42c6d43c69417d245836cb5a692a9eb7bea2d699bf703f38dc98ef65", - "batchedBlobInputs": "0x01807b011cc24bf517cb92fad5bcdce098dcb6a1700603a18672cf7820afa9db0ce8b61e929d26b97f6ceaacca052b85e5ff74a48d20c9343cfc0be6a83711ab1672511948acfab3519535f83ed7373931a6eee6bf664dc4a9bb3a599e768f83b4e2d0395514c10a86df75cfcff804644c36667f42c6d43c69417d245836cb5a692a9eb7bea2d699bf703f38dc98ef65b4cccc25dcf329c7f6ef06286333ce1b97150657b106aecb887362fe453522d30b8a06edd4d55a2c94ff4969bc014c31", + "archive": "0x0634a736244f6c9497bd04bea84ed0475975c34fc2aeb8ce0a2d10d8469d9c50", + "blobCommitments": "0x0194ed2a4e9e1df97170068f380d59b73a0cb7f4254134dc7e3ff1b4f4ceb09b08278eb69f5a5765f52942ade23b526169", + "batchedBlobInputs": "0x019af493f253587f3b95f07e6bdec53ec1ed25faa1f618b7c125c7247f69007718d08a8d484ac8073c34d2c0cb217dd8f6ed2cb306f7fc2be96ef15815d44ca4477168cffdeadd4a80b9eb881d4b4c37961b9539a92d7a9171c82fd8e530c14a94ed2a4e9e1df97170068f380d59b73a0cb7f4254134dc7e3ff1b4f4ceb09b08278eb69f5a5765f52942ade23b5261699259ed3c413f9010e4e12fd6fd9a3f17003e0c27521279ccd75560453f8606911f778d623e36b458aa9bfbcd9dc8695b", "checkpointNumber": 1, - "body": "0x00000001002a25aa19195e2a46f0c7e141706aa949fcec686529a2352284e8076e25cd06fe0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e08004b8b814288544866292d9d0e66869207628fb0ef8120c59ec1d969a085d5d50075c5d0fc08d5578600928d2fc6cd1e63a2b87266a45558135a2912c5a7d6e60019574cfd6834b8c08012b12c6b178d65c27335e1001c1337996f4f460c2cf1000624d1d08e5c487711876584ae580b46b81854bc8e45e42e822ef18df136ff00b78383bdbff11e85552243f1429b8d83334d734dc92e1062b8a04371de5f88005b33017fa3cd1861669d2fd5621ba61db7a72646a9b459897a55780eeeb64e00a1d3d6c8bc4848ef2e4d256253773447d1b39deedd2d70248a2160c765afc200e1d211a34da229f26780fc7baa5a6ca0a35b7e0fea52ea082e35cd064db33d400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049400000000000000000000000000000000000000000000000000000000000041300000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000010000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000001000000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000100000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000010000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000001000000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000100000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000010000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000001000000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000100000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000000000000000000000000000000000000000000000000000000004131800000010000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f000000000000000000000000000000000000000000000000000000000004131000000000000000000000000000000000000000000000000000000000000413110000000000000000000000000000000000000000000000000000000000041312000000000000000000000000000000000000000000000000000000000004131300000000000000000000000000000000000000000000000000000000000413140000000000000000000000000000000000000000000000000000000000041315000000000000000000000000000000000000000000000000000000000004131600000000000000000000000000000000000000000000000000000000000413170000000000000000000000000000000000000000000000000000000000041318000000000000000000000000000000000000000000000000000000000004131900000010000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a00000010000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b00000010000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c00000010000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d00000010000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000100000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000010000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000001000000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000100000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000010000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000001000000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000100000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000010000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000001000000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000100000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000000000000000000000000000000000000000000000000000000004132800000010000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f000000000000000000000000000000000000000000000000000000000004132000000000000000000000000000000000000000000000000000000000000413210000000000000000000000000000000000000000000000000000000000041322000000000000000000000000000000000000000000000000000000000004132300000000000000000000000000000000000000000000000000000000000413240000000000000000000000000000000000000000000000000000000000041325000000000000000000000000000000000000000000000000000000000004132600000000000000000000000000000000000000000000000000000000000413270000000000000000000000000000000000000000000000000000000000041328000000000000000000000000000000000000000000000000000000000004132900000010000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a00000010000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b00000010000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c00000010000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d00000010000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000100000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000010000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000001000000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000100000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000010000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000001000000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000100000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000010000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000001000000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000100000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000000000000000000000000000000000000000000000000000000004133800000010000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f000000000000000000000000000000000000000000000000000000000004133000000000000000000000000000000000000000000000000000000000000413310000000000000000000000000000000000000000000000000000000000041332000000000000000000000000000000000000000000000000000000000004133300000000000000000000000000000000000000000000000000000000000413340000000000000000000000000000000000000000000000000000000000041335000000000000000000000000000000000000000000000000000000000004133600000000000000000000000000000000000000000000000000000000000413370000000000000000000000000000000000000000000000000000000000041338000000000000000000000000000000000000000000000000000000000004133900000010000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a00000010000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b00000010000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c00000010000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d00000010000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000100000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000010000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000001000000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000100000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000010000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000001000000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000100000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000010000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000001000000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000100000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000000000000000000000000000000000000000000000000000000004134800000010000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f000000000000000000000000000000000000000000000000000000000004134000000000000000000000000000000000000000000000000000000000000413410000000000000000000000000000000000000000000000000000000000041342000000000000000000000000000000000000000000000000000000000004134300000000000000000000000000000000000000000000000000000000000413440000000000000000000000000000000000000000000000000000000000041345000000000000000000000000000000000000000000000000000000000004134600000000000000000000000000000000000000000000000000000000000413470000000000000000000000000000000000000000000000000000000000041348000000000000000000000000000000000000000000000000000000000004134900000010000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a00000010000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b00000010000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c00000010000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d00000010000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d000000000000000000000000000000000000000000000000000000000004134e000000100000000000", + "body": "0x00000001000d857f7043af8ffb785ff7c4144097bc9875fd4603e16cafcd87fe5c714391cc0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e08004b8b814288544866292d9d0e66869207628fb0ef8120c59ec1d969a085d5d50075c5d0fc08d5578600928d2fc6cd1e63a2b87266a45558135a2912c5a7d6e60019574cfd6834b8c08012b12c6b178d65c27335e1001c1337996f4f460c2cf1000624d1d08e5c487711876584ae580b46b81854bc8e45e42e822ef18df136ff00b78383bdbff11e85552243f1429b8d83334d734dc92e1062b8a04371de5f88005b33017fa3cd1861669d2fd5621ba61db7a72646a9b459897a55780eeeb64e00a1d3d6c8bc4848ef2e4d256253773447d1b39deedd2d70248a2160c765afc200e1d211a34da229f26780fc7baa5a6ca0a35b7e0fea52ea082e35cd064db33d400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049400000000000000000000000000000000000000000000000000000000000041300000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000010000000000000000000000000000000000000000000000000000000000004130100000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000001000000000000000000000000000000000000000000000000000000000000413020000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000100000000000000000000000000000000000000000000000000000000000041303000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000010000000000000000000000000000000000000000000000000000000000004130400000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000001000000000000000000000000000000000000000000000000000000000000413050000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000100000000000000000000000000000000000000000000000000000000000041306000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000010000000000000000000000000000000000000000000000000000000000004130700000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000001000000000000000000000000000000000000000000000000000000000000413080000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000100000000000000000000000000000000000000000000000000000000000041309000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f00000000000000000000000000000000000000000000000000000000000413100000000000000000000000000000000000000000000000000000000000041311000000000000000000000000000000000000000000000000000000000004131200000000000000000000000000000000000000000000000000000000000413130000000000000000000000000000000000000000000000000000000000041314000000000000000000000000000000000000000000000000000000000004131500000000000000000000000000000000000000000000000000000000000413160000000000000000000000000000000000000000000000000000000000041317000000000000000000000000000000000000000000000000000000000004131800000010000000000000000000000000000000000000000000000000000000000004130a000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f000000000000000000000000000000000000000000000000000000000004131000000000000000000000000000000000000000000000000000000000000413110000000000000000000000000000000000000000000000000000000000041312000000000000000000000000000000000000000000000000000000000004131300000000000000000000000000000000000000000000000000000000000413140000000000000000000000000000000000000000000000000000000000041315000000000000000000000000000000000000000000000000000000000004131600000000000000000000000000000000000000000000000000000000000413170000000000000000000000000000000000000000000000000000000000041318000000000000000000000000000000000000000000000000000000000004131900000010000000000000000000000000000000000000000000000000000000000004130b000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a00000010000000000000000000000000000000000000000000000000000000000004130c000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b00000010000000000000000000000000000000000000000000000000000000000004130d000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c00000010000000000000000000000000000000000000000000000000000000000004130e000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d00000010000000000000000000000000000000000000000000000000000000000004130f0000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000100000000000000000000000000000000000000000000000000000000000041310000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000010000000000000000000000000000000000000000000000000000000000004131100000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000001000000000000000000000000000000000000000000000000000000000000413120000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000100000000000000000000000000000000000000000000000000000000000041313000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000010000000000000000000000000000000000000000000000000000000000004131400000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000001000000000000000000000000000000000000000000000000000000000000413150000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000100000000000000000000000000000000000000000000000000000000000041316000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000010000000000000000000000000000000000000000000000000000000000004131700000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000001000000000000000000000000000000000000000000000000000000000000413180000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000100000000000000000000000000000000000000000000000000000000000041319000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f00000000000000000000000000000000000000000000000000000000000413200000000000000000000000000000000000000000000000000000000000041321000000000000000000000000000000000000000000000000000000000004132200000000000000000000000000000000000000000000000000000000000413230000000000000000000000000000000000000000000000000000000000041324000000000000000000000000000000000000000000000000000000000004132500000000000000000000000000000000000000000000000000000000000413260000000000000000000000000000000000000000000000000000000000041327000000000000000000000000000000000000000000000000000000000004132800000010000000000000000000000000000000000000000000000000000000000004131a000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f000000000000000000000000000000000000000000000000000000000004132000000000000000000000000000000000000000000000000000000000000413210000000000000000000000000000000000000000000000000000000000041322000000000000000000000000000000000000000000000000000000000004132300000000000000000000000000000000000000000000000000000000000413240000000000000000000000000000000000000000000000000000000000041325000000000000000000000000000000000000000000000000000000000004132600000000000000000000000000000000000000000000000000000000000413270000000000000000000000000000000000000000000000000000000000041328000000000000000000000000000000000000000000000000000000000004132900000010000000000000000000000000000000000000000000000000000000000004131b000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a00000010000000000000000000000000000000000000000000000000000000000004131c000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b00000010000000000000000000000000000000000000000000000000000000000004131d000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c00000010000000000000000000000000000000000000000000000000000000000004131e000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d00000010000000000000000000000000000000000000000000000000000000000004131f0000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000100000000000000000000000000000000000000000000000000000000000041320000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000010000000000000000000000000000000000000000000000000000000000004132100000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000001000000000000000000000000000000000000000000000000000000000000413220000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000100000000000000000000000000000000000000000000000000000000000041323000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000010000000000000000000000000000000000000000000000000000000000004132400000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000001000000000000000000000000000000000000000000000000000000000000413250000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000100000000000000000000000000000000000000000000000000000000000041326000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000010000000000000000000000000000000000000000000000000000000000004132700000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000001000000000000000000000000000000000000000000000000000000000000413280000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000100000000000000000000000000000000000000000000000000000000000041329000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f00000000000000000000000000000000000000000000000000000000000413300000000000000000000000000000000000000000000000000000000000041331000000000000000000000000000000000000000000000000000000000004133200000000000000000000000000000000000000000000000000000000000413330000000000000000000000000000000000000000000000000000000000041334000000000000000000000000000000000000000000000000000000000004133500000000000000000000000000000000000000000000000000000000000413360000000000000000000000000000000000000000000000000000000000041337000000000000000000000000000000000000000000000000000000000004133800000010000000000000000000000000000000000000000000000000000000000004132a000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f000000000000000000000000000000000000000000000000000000000004133000000000000000000000000000000000000000000000000000000000000413310000000000000000000000000000000000000000000000000000000000041332000000000000000000000000000000000000000000000000000000000004133300000000000000000000000000000000000000000000000000000000000413340000000000000000000000000000000000000000000000000000000000041335000000000000000000000000000000000000000000000000000000000004133600000000000000000000000000000000000000000000000000000000000413370000000000000000000000000000000000000000000000000000000000041338000000000000000000000000000000000000000000000000000000000004133900000010000000000000000000000000000000000000000000000000000000000004132b000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a00000010000000000000000000000000000000000000000000000000000000000004132c000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b00000010000000000000000000000000000000000000000000000000000000000004132d000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c00000010000000000000000000000000000000000000000000000000000000000004132e000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d00000010000000000000000000000000000000000000000000000000000000000004132f0000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000100000000000000000000000000000000000000000000000000000000000041330000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000010000000000000000000000000000000000000000000000000000000000004133100000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000001000000000000000000000000000000000000000000000000000000000000413320000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000100000000000000000000000000000000000000000000000000000000000041333000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000010000000000000000000000000000000000000000000000000000000000004133400000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000001000000000000000000000000000000000000000000000000000000000000413350000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000100000000000000000000000000000000000000000000000000000000000041336000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000010000000000000000000000000000000000000000000000000000000000004133700000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000001000000000000000000000000000000000000000000000000000000000000413380000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000100000000000000000000000000000000000000000000000000000000000041339000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f00000000000000000000000000000000000000000000000000000000000413400000000000000000000000000000000000000000000000000000000000041341000000000000000000000000000000000000000000000000000000000004134200000000000000000000000000000000000000000000000000000000000413430000000000000000000000000000000000000000000000000000000000041344000000000000000000000000000000000000000000000000000000000004134500000000000000000000000000000000000000000000000000000000000413460000000000000000000000000000000000000000000000000000000000041347000000000000000000000000000000000000000000000000000000000004134800000010000000000000000000000000000000000000000000000000000000000004133a000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f000000000000000000000000000000000000000000000000000000000004134000000000000000000000000000000000000000000000000000000000000413410000000000000000000000000000000000000000000000000000000000041342000000000000000000000000000000000000000000000000000000000004134300000000000000000000000000000000000000000000000000000000000413440000000000000000000000000000000000000000000000000000000000041345000000000000000000000000000000000000000000000000000000000004134600000000000000000000000000000000000000000000000000000000000413470000000000000000000000000000000000000000000000000000000000041348000000000000000000000000000000000000000000000000000000000004134900000010000000000000000000000000000000000000000000000000000000000004133b000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a00000010000000000000000000000000000000000000000000000000000000000004133c000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b00000010000000000000000000000000000000000000000000000000000000000004133d000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c00000010000000000000000000000000000000000000000000000000000000000004133e000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d00000010000000000000000000000000000000000000000000000000000000000004133f0000000000000000000000000000000000000000000000000000000000041340000000000000000000000000000000000000000000000000000000000004134100000000000000000000000000000000000000000000000000000000000413420000000000000000000000000000000000000000000000000000000000041343000000000000000000000000000000000000000000000000000000000004134400000000000000000000000000000000000000000000000000000000000413450000000000000000000000000000000000000000000000000000000000041346000000000000000000000000000000000000000000000000000000000004134700000000000000000000000000000000000000000000000000000000000413480000000000000000000000000000000000000000000000000000000000041349000000000000000000000000000000000000000000000000000000000004134a000000000000000000000000000000000000000000000000000000000004134b000000000000000000000000000000000000000000000000000000000004134c000000000000000000000000000000000000000000000000000000000004134d000000000000000000000000000000000000000000000000000000000004134e000000100000000000", "header": { - "lastArchiveRoot": "0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5", - "blockHeadersHash": "0x07db5c24565ad9a2c9d39ef7d9a4446e9742d6090567ff28aef9a45f4738a5cb", - "blobsHash": "0x00ec2400a7cfc9d975cb0802980d49387588738160a0cf0301f07e1abad6456c", + "lastArchiveRoot": "0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc", + "blockHeadersHash": "0x1a24abddbfa42a306b141be575039cb75cab6edff7820f8ab43c250a682a45e2", + "blobsHash": "0x00740818b1a86012463383d4bcf172e866871d4799ae4078cb60c3c3361e6a1d", "inHash": "0x00de7b349d2306334734e4f58b1302a6ed5a6c796a706f6597a5641b6d468223", "outHash": "0x007c92c6cf05665e1c02a305370a4d38bcb8b555261c6b39c862f8c067d6bcb7", "slotNumber": 99, - "timestamp": 1776857833, - "coinbase": "0x0a5cdc1e748726e27e6c45030a2712fc899d035c", - "feeRecipient": "0x1e578f700af7bf775649ff4921d547668a899e29965a91200979d4090b0be79a", + "timestamp": 1782246847, + "coinbase": "0x3afab68c9343470cba11ccaf3038de2d8370dd56", + "feeRecipient": "0x118a8c14348c83f82385ae30e23241d12b6c676983a6c7fb4a6d63b1a960b594", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 292838000000 + "feePerL2Gas": 291266000000 }, "totalManaUsed": 0, "accumulatedFees": 0 }, - "headerHash": "0x00628120df9716928e25a69ca7b1ac2497f22fdaab439f64315ad4daf7bc5191", + "headerHash": "0x00cc6e5f5b9ab7cdb6241891368c3b5990d0a82cea7e6050c844c66e8f36116e", "numTxs": 1 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/single_tx_checkpoint_2.json b/l1-contracts/test/fixtures/single_tx_checkpoint_2.json index b4b8e0a60a51..504aa5ea41a6 100644 --- a/l1-contracts/test/fixtures/single_tx_checkpoint_2.json +++ b/l1-contracts/test/fixtures/single_tx_checkpoint_2.json @@ -34,29 +34,29 @@ ] }, "checkpoint": { - "archive": "0x26029a67c7542949b74500d2b24341646ab66f5742120a48d2c08e0dfc7ae1ef", - "blobCommitments": "0x01b14fdd2b556534d84fd00dc677a579ade2424e39d8d1fc2b9ae151a3b2d0b7b7657e91310544bf932d762d39a75f55c3", - "batchedBlobInputs": "0x013458d41fcb5b32b7d59b4f31e69efcd67d49b13882d8a4d41a99015056032816d452efe27bb963b0f6dc8c59acb013640096a9d3eacdb70b29ac5175d2cb4a5cdc9433fbe3d551730a6f79ebc9ff341c700dfa994c83030455f1c854b88b1b98335ef73088f807720683f947adfe0c96feaf444b01e079e0934ac81950614ac267dd15e4c5487106aa0969b0d69578a57afa8fbbe46c53b80a3eb8be0b2d3694b3fcfdf609a160848c92b4c88ac2f3c2532b3d25a9f3e2de4c597be28de64a", + "archive": "0x177700afceb71b4e3edcaea3c32936534c0eaf7fa18b4b79bb821459c682ae63", + "blobCommitments": "0x01a924beaaf090b993f53a9f59139e9d852b45453288f2c9eadbd7415852460226a0d5609f9983ef284639caae34a2f49a", + "batchedBlobInputs": "0x01c73cb0495b5705ab1e5e5de6777f8cee6331b5ebc4a94285cda668d200e8b807644f0794791795371b4ad1499654e6dfbaaee03e0ac1e51cfeae8fbb792bf8304d4e7e125e556232899ef6326fd9af27d888a6eca8b9b565aca0d2cc7d1c54b172927e602affe069e1b35223fc8295e39df2629184cc4e6058ec1d366ce51c7a4c855e7d4ae1ff44095f28375ac79ea883685655223495c426a2ee5a2efc642e36b0a479ff586dfa43c66a998c3e3d27aba3d8ecdd60aabfb5d9509b0775ac", "checkpointNumber": 2, - "body": "0x00000001002653bf12b9a346ab4256f118289ad19edf985daaee1bd2a949185da7fb750d790000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e080057602f85fdccac3117547ae1e9feedac263299a34f02b19ca229f6c203209000400355a496b2961dd5954f30f214fa0c5b7b9c4598ccc7882a3fc69dec50bb005c04946202e37fca2fa0bd7d0504c730ac1a707a410c0ed70bd65ad2adb15100dfea6f9eee8d32378436d7ca9e4dda0d48a5ccfb1c6f8ddec286fdf0cb9c81004f5ae4240cb04e72cf44cddb835bc0b5e7f100c01dc3f6678f979e27f19ede00f8ff8aa1edd0f0237d277f829b0847f656ee797c3adf2e7b1074d36f3f63ad00c90a15e3b4697bc2b603d24b615ed869c0f2b61ec8d8e316351996854246b600f24c2cff7402d9d57bd2791337df5a65f0b2f59a4ce3255d94c35f7cf13374400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049400000000000000000000000000000000000000000000000000000000000141300000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000010000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000001000000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000100000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000010000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000001000000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000100000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000010000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000001000000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000100000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000000000000000000000000000000000000000000000000000000014131800000010000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f000000000000000000000000000000000000000000000000000000000014131000000000000000000000000000000000000000000000000000000000001413110000000000000000000000000000000000000000000000000000000000141312000000000000000000000000000000000000000000000000000000000014131300000000000000000000000000000000000000000000000000000000001413140000000000000000000000000000000000000000000000000000000000141315000000000000000000000000000000000000000000000000000000000014131600000000000000000000000000000000000000000000000000000000001413170000000000000000000000000000000000000000000000000000000000141318000000000000000000000000000000000000000000000000000000000014131900000010000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a00000010000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b00000010000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c00000010000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d00000010000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000100000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000010000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000001000000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000100000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000010000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000001000000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000100000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000010000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000001000000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000100000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000000000000000000000000000000000000000000000000000000014132800000010000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f000000000000000000000000000000000000000000000000000000000014132000000000000000000000000000000000000000000000000000000000001413210000000000000000000000000000000000000000000000000000000000141322000000000000000000000000000000000000000000000000000000000014132300000000000000000000000000000000000000000000000000000000001413240000000000000000000000000000000000000000000000000000000000141325000000000000000000000000000000000000000000000000000000000014132600000000000000000000000000000000000000000000000000000000001413270000000000000000000000000000000000000000000000000000000000141328000000000000000000000000000000000000000000000000000000000014132900000010000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a00000010000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b00000010000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c00000010000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d00000010000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000100000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000010000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000001000000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000100000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000010000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000001000000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000100000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000010000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000001000000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000100000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000000000000000000000000000000000000000000000000000000014133800000010000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f000000000000000000000000000000000000000000000000000000000014133000000000000000000000000000000000000000000000000000000000001413310000000000000000000000000000000000000000000000000000000000141332000000000000000000000000000000000000000000000000000000000014133300000000000000000000000000000000000000000000000000000000001413340000000000000000000000000000000000000000000000000000000000141335000000000000000000000000000000000000000000000000000000000014133600000000000000000000000000000000000000000000000000000000001413370000000000000000000000000000000000000000000000000000000000141338000000000000000000000000000000000000000000000000000000000014133900000010000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a00000010000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b00000010000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c00000010000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d00000010000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000100000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000010000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000001000000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000100000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000010000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000001000000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000100000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000010000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000001000000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000100000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000000000000000000000000000000000000000000000000000000014134800000010000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f000000000000000000000000000000000000000000000000000000000014134000000000000000000000000000000000000000000000000000000000001413410000000000000000000000000000000000000000000000000000000000141342000000000000000000000000000000000000000000000000000000000014134300000000000000000000000000000000000000000000000000000000001413440000000000000000000000000000000000000000000000000000000000141345000000000000000000000000000000000000000000000000000000000014134600000000000000000000000000000000000000000000000000000000001413470000000000000000000000000000000000000000000000000000000000141348000000000000000000000000000000000000000000000000000000000014134900000010000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a00000010000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b00000010000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c00000010000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d00000010000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d000000000000000000000000000000000000000000000000000000000014134e000000100000000000", + "body": "0x00000001001f4369e1d4f1fbdb971bb45b0b6d13997624071ddd6f7243c0a8e5d231c061ba0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e080057602f85fdccac3117547ae1e9feedac263299a34f02b19ca229f6c203209000400355a496b2961dd5954f30f214fa0c5b7b9c4598ccc7882a3fc69dec50bb005c04946202e37fca2fa0bd7d0504c730ac1a707a410c0ed70bd65ad2adb15100dfea6f9eee8d32378436d7ca9e4dda0d48a5ccfb1c6f8ddec286fdf0cb9c81004f5ae4240cb04e72cf44cddb835bc0b5e7f100c01dc3f6678f979e27f19ede00f8ff8aa1edd0f0237d277f829b0847f656ee797c3adf2e7b1074d36f3f63ad00c90a15e3b4697bc2b603d24b615ed869c0f2b61ec8d8e316351996854246b600f24c2cff7402d9d57bd2791337df5a65f0b2f59a4ce3255d94c35f7cf13374400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049400000000000000000000000000000000000000000000000000000000000141300000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000010000000000000000000000000000000000000000000000000000000000014130100000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000001000000000000000000000000000000000000000000000000000000000001413020000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000100000000000000000000000000000000000000000000000000000000000141303000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000010000000000000000000000000000000000000000000000000000000000014130400000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000001000000000000000000000000000000000000000000000000000000000001413050000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000100000000000000000000000000000000000000000000000000000000000141306000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000010000000000000000000000000000000000000000000000000000000000014130700000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000001000000000000000000000000000000000000000000000000000000000001413080000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000100000000000000000000000000000000000000000000000000000000000141309000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f00000000000000000000000000000000000000000000000000000000001413100000000000000000000000000000000000000000000000000000000000141311000000000000000000000000000000000000000000000000000000000014131200000000000000000000000000000000000000000000000000000000001413130000000000000000000000000000000000000000000000000000000000141314000000000000000000000000000000000000000000000000000000000014131500000000000000000000000000000000000000000000000000000000001413160000000000000000000000000000000000000000000000000000000000141317000000000000000000000000000000000000000000000000000000000014131800000010000000000000000000000000000000000000000000000000000000000014130a000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f000000000000000000000000000000000000000000000000000000000014131000000000000000000000000000000000000000000000000000000000001413110000000000000000000000000000000000000000000000000000000000141312000000000000000000000000000000000000000000000000000000000014131300000000000000000000000000000000000000000000000000000000001413140000000000000000000000000000000000000000000000000000000000141315000000000000000000000000000000000000000000000000000000000014131600000000000000000000000000000000000000000000000000000000001413170000000000000000000000000000000000000000000000000000000000141318000000000000000000000000000000000000000000000000000000000014131900000010000000000000000000000000000000000000000000000000000000000014130b000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a00000010000000000000000000000000000000000000000000000000000000000014130c000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b00000010000000000000000000000000000000000000000000000000000000000014130d000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c00000010000000000000000000000000000000000000000000000000000000000014130e000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d00000010000000000000000000000000000000000000000000000000000000000014130f0000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000100000000000000000000000000000000000000000000000000000000000141310000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000010000000000000000000000000000000000000000000000000000000000014131100000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000001000000000000000000000000000000000000000000000000000000000001413120000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000100000000000000000000000000000000000000000000000000000000000141313000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000010000000000000000000000000000000000000000000000000000000000014131400000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000001000000000000000000000000000000000000000000000000000000000001413150000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000100000000000000000000000000000000000000000000000000000000000141316000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000010000000000000000000000000000000000000000000000000000000000014131700000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000001000000000000000000000000000000000000000000000000000000000001413180000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000100000000000000000000000000000000000000000000000000000000000141319000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f00000000000000000000000000000000000000000000000000000000001413200000000000000000000000000000000000000000000000000000000000141321000000000000000000000000000000000000000000000000000000000014132200000000000000000000000000000000000000000000000000000000001413230000000000000000000000000000000000000000000000000000000000141324000000000000000000000000000000000000000000000000000000000014132500000000000000000000000000000000000000000000000000000000001413260000000000000000000000000000000000000000000000000000000000141327000000000000000000000000000000000000000000000000000000000014132800000010000000000000000000000000000000000000000000000000000000000014131a000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f000000000000000000000000000000000000000000000000000000000014132000000000000000000000000000000000000000000000000000000000001413210000000000000000000000000000000000000000000000000000000000141322000000000000000000000000000000000000000000000000000000000014132300000000000000000000000000000000000000000000000000000000001413240000000000000000000000000000000000000000000000000000000000141325000000000000000000000000000000000000000000000000000000000014132600000000000000000000000000000000000000000000000000000000001413270000000000000000000000000000000000000000000000000000000000141328000000000000000000000000000000000000000000000000000000000014132900000010000000000000000000000000000000000000000000000000000000000014131b000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a00000010000000000000000000000000000000000000000000000000000000000014131c000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b00000010000000000000000000000000000000000000000000000000000000000014131d000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c00000010000000000000000000000000000000000000000000000000000000000014131e000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d00000010000000000000000000000000000000000000000000000000000000000014131f0000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000100000000000000000000000000000000000000000000000000000000000141320000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000010000000000000000000000000000000000000000000000000000000000014132100000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000001000000000000000000000000000000000000000000000000000000000001413220000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000100000000000000000000000000000000000000000000000000000000000141323000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000010000000000000000000000000000000000000000000000000000000000014132400000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000001000000000000000000000000000000000000000000000000000000000001413250000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000100000000000000000000000000000000000000000000000000000000000141326000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000010000000000000000000000000000000000000000000000000000000000014132700000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000001000000000000000000000000000000000000000000000000000000000001413280000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000100000000000000000000000000000000000000000000000000000000000141329000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f00000000000000000000000000000000000000000000000000000000001413300000000000000000000000000000000000000000000000000000000000141331000000000000000000000000000000000000000000000000000000000014133200000000000000000000000000000000000000000000000000000000001413330000000000000000000000000000000000000000000000000000000000141334000000000000000000000000000000000000000000000000000000000014133500000000000000000000000000000000000000000000000000000000001413360000000000000000000000000000000000000000000000000000000000141337000000000000000000000000000000000000000000000000000000000014133800000010000000000000000000000000000000000000000000000000000000000014132a000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f000000000000000000000000000000000000000000000000000000000014133000000000000000000000000000000000000000000000000000000000001413310000000000000000000000000000000000000000000000000000000000141332000000000000000000000000000000000000000000000000000000000014133300000000000000000000000000000000000000000000000000000000001413340000000000000000000000000000000000000000000000000000000000141335000000000000000000000000000000000000000000000000000000000014133600000000000000000000000000000000000000000000000000000000001413370000000000000000000000000000000000000000000000000000000000141338000000000000000000000000000000000000000000000000000000000014133900000010000000000000000000000000000000000000000000000000000000000014132b000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a00000010000000000000000000000000000000000000000000000000000000000014132c000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b00000010000000000000000000000000000000000000000000000000000000000014132d000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c00000010000000000000000000000000000000000000000000000000000000000014132e000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d00000010000000000000000000000000000000000000000000000000000000000014132f0000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000100000000000000000000000000000000000000000000000000000000000141330000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000010000000000000000000000000000000000000000000000000000000000014133100000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000001000000000000000000000000000000000000000000000000000000000001413320000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000100000000000000000000000000000000000000000000000000000000000141333000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000010000000000000000000000000000000000000000000000000000000000014133400000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000001000000000000000000000000000000000000000000000000000000000001413350000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000100000000000000000000000000000000000000000000000000000000000141336000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000010000000000000000000000000000000000000000000000000000000000014133700000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000001000000000000000000000000000000000000000000000000000000000001413380000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000100000000000000000000000000000000000000000000000000000000000141339000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f00000000000000000000000000000000000000000000000000000000001413400000000000000000000000000000000000000000000000000000000000141341000000000000000000000000000000000000000000000000000000000014134200000000000000000000000000000000000000000000000000000000001413430000000000000000000000000000000000000000000000000000000000141344000000000000000000000000000000000000000000000000000000000014134500000000000000000000000000000000000000000000000000000000001413460000000000000000000000000000000000000000000000000000000000141347000000000000000000000000000000000000000000000000000000000014134800000010000000000000000000000000000000000000000000000000000000000014133a000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f000000000000000000000000000000000000000000000000000000000014134000000000000000000000000000000000000000000000000000000000001413410000000000000000000000000000000000000000000000000000000000141342000000000000000000000000000000000000000000000000000000000014134300000000000000000000000000000000000000000000000000000000001413440000000000000000000000000000000000000000000000000000000000141345000000000000000000000000000000000000000000000000000000000014134600000000000000000000000000000000000000000000000000000000001413470000000000000000000000000000000000000000000000000000000000141348000000000000000000000000000000000000000000000000000000000014134900000010000000000000000000000000000000000000000000000000000000000014133b000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a00000010000000000000000000000000000000000000000000000000000000000014133c000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b00000010000000000000000000000000000000000000000000000000000000000014133d000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c00000010000000000000000000000000000000000000000000000000000000000014133e000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d00000010000000000000000000000000000000000000000000000000000000000014133f0000000000000000000000000000000000000000000000000000000000141340000000000000000000000000000000000000000000000000000000000014134100000000000000000000000000000000000000000000000000000000001413420000000000000000000000000000000000000000000000000000000000141343000000000000000000000000000000000000000000000000000000000014134400000000000000000000000000000000000000000000000000000000001413450000000000000000000000000000000000000000000000000000000000141346000000000000000000000000000000000000000000000000000000000014134700000000000000000000000000000000000000000000000000000000001413480000000000000000000000000000000000000000000000000000000000141349000000000000000000000000000000000000000000000000000000000014134a000000000000000000000000000000000000000000000000000000000014134b000000000000000000000000000000000000000000000000000000000014134c000000000000000000000000000000000000000000000000000000000014134d000000000000000000000000000000000000000000000000000000000014134e000000100000000000", "header": { - "lastArchiveRoot": "0x0f198bb13b63a3a8791a8b9994167bbe1554811a106fda0acb5e6c6539b1713e", - "blockHeadersHash": "0x12813725f2d16ce92088d2401ffa4a53ce6061bf75b77320ca7b8ef6c5145adf", - "blobsHash": "0x002b8ae4c9f405529e2b689b829852ad52f77acdac57d1dbac3dabea1760affc", - "inHash": "0x006504de282a40084bb8098456a915c645d53482d351db52fa9433b6cd638763", + "lastArchiveRoot": "0x0634a736244f6c9497bd04bea84ed0475975c34fc2aeb8ce0a2d10d8469d9c50", + "blockHeadersHash": "0x1fb6c351678d94756d1dd928b7279d247c60fa170e3fc0ceba201043ed7d3026", + "blobsHash": "0x00de8def56825a8598ec948a3ecf21f797f85fd0e4b7c14328a14acf0dcece5b", + "inHash": "0x00de7b349d2306334734e4f58b1302a6ed5a6c796a706f6597a5641b6d468223", "outHash": "0x0007eac1d76cddf92b28b8f11cd292f199f35dfc588376092986575cef487f59", "slotNumber": 102, - "timestamp": 1776858049, - "coinbase": "0x0a5cdc1e748726e27e6c45030a2712fc899d035c", - "feeRecipient": "0x1e578f700af7bf775649ff4921d547668a899e29965a91200979d4090b0be79a", + "timestamp": 1782247063, + "coinbase": "0x3afab68c9343470cba11ccaf3038de2d8370dd56", + "feeRecipient": "0x118a8c14348c83f82385ae30e23241d12b6c676983a6c7fb4a6d63b1a960b594", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 19067000000 + "feePerL2Gas": 16620000000 }, "totalManaUsed": 0, "accumulatedFees": 0 }, - "headerHash": "0x00f2d5075ed8fdbb50bc0171790cb495308b229325c0aa3e1c3fadd5772d11f4", + "headerHash": "0x003a69abb186709f73d40891b28a20253d3b3a4f74636e9399990dd46830986d", "numTxs": 1 } } \ No newline at end of file diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr index 42e699e8da82..c98326244c02 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr @@ -173,9 +173,9 @@ pub global MAX_CHECKPOINTS_PER_EPOCH: u32 = 32; pub global MAX_TX_LIFETIME: u64 = 86400; // 1 day. Arbitrarily chosen. // The genesis values are taken from world_state.test.cpp > WorldStateTest.GetInitialTreeInfoForAllTrees pub global GENESIS_BLOCK_HEADER_HASH: Field = - 0x0e7bf88e8833c27b0fca6be614ecc2c63def7bffa35b3ccfa1caff3e39e0c0d2; + 0x1302a9e6f643ec596522764c20e5d08d60d33988f11c1559ee13bcd2e2bd8e5d; pub global GENESIS_ARCHIVE_ROOT: Field = - 0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5; + 0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc; pub global EMPTY_EPOCH_OUT_HASH: Field = 0xc95e0ceb41951039e1592745ec2faea9866f6eaf01bf189a4463b4143af093; diff --git a/yarn-project/aztec/src/mainnet_compatibility.test.ts b/yarn-project/aztec/src/mainnet_compatibility.test.ts index 50e543c6f732..20ac9e63b6fa 100644 --- a/yarn-project/aztec/src/mainnet_compatibility.test.ts +++ b/yarn-project/aztec/src/mainnet_compatibility.test.ts @@ -28,7 +28,7 @@ describe.skip('Mainnet compatibility', () => { /* initial public data leaves */ [], ); expect(genesisArchiveRoot).toEqual( - Fr.fromHexString('0x177a4955b31ecaafad999753938a44e526b54c5ba5d536688227f85f15cfbdf5'), + Fr.fromHexString('0x063786f95f1ae8ebd17b22cb07d7ba122cefae9b0ecb975f5dc3e6e576a5bddc'), ); }); }); diff --git a/yarn-project/constants/src/constants.gen.ts b/yarn-project/constants/src/constants.gen.ts index e57889caba37..b646cfbd1fa3 100644 --- a/yarn-project/constants/src/constants.gen.ts +++ b/yarn-project/constants/src/constants.gen.ts @@ -103,8 +103,8 @@ export const FIELDS_PER_BLOB = 4096; export const BLOBS_PER_CHECKPOINT = 6; export const MAX_CHECKPOINTS_PER_EPOCH = 32; export const MAX_TX_LIFETIME = 86400; -export const GENESIS_BLOCK_HEADER_HASH = 6551417544883665873456328017782433997345264442591862482015827744892259451090n; -export const GENESIS_ARCHIVE_ROOT = 10619256997260439436842531499967995403253967496480475679746178797053672406517n; +export const GENESIS_BLOCK_HEADER_HASH = 8598650439066724948000066193149796839038760679756502675150822040102695177821n; +export const GENESIS_ARCHIVE_ROOT = 2811985237115337302441007096010206688216126612881585569089559449761808235996n; export const EMPTY_EPOCH_OUT_HASH = 355785372471781095838790036702437931769306153278986832745847530947941691539n; export const MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS = 3000; export const MAX_PACKED_BYTECODE_SIZE_PER_PRIVATE_FUNCTION_IN_FIELDS = 3000; diff --git a/yarn-project/end-to-end/src/e2e_deploy_contract/protocol_class_publish.test.ts b/yarn-project/end-to-end/src/e2e_deploy_contract/protocol_class_publish.test.ts new file mode 100644 index 000000000000..f278e923b596 --- /dev/null +++ b/yarn-project/end-to-end/src/e2e_deploy_contract/protocol_class_publish.test.ts @@ -0,0 +1,61 @@ +import type { AztecAddress } from '@aztec/aztec.js/addresses'; +import { publishContractClass } from '@aztec/aztec.js/deployment'; +import type { Logger } from '@aztec/aztec.js/log'; +import type { AztecNode } from '@aztec/aztec.js/node'; +import type { Wallet } from '@aztec/aztec.js/wallet'; +import { BundledProtocolContractsProvider } from '@aztec/protocol-contracts/providers/bundle'; +import { getContractClassFromArtifact } from '@aztec/stdlib/contract'; + +import { jest } from '@jest/globals'; + +import { AUTOMINE_E2E_OPTS, DUPLICATE_NULLIFIER_ERROR } from '../fixtures/fixtures.js'; +import { DeployTest } from './deploy_test.js'; + +// Regression test for A-1257. The world-state genesis seeds the protocol contract registration nullifiers (the siloed +// class-id nullifiers that ContractClassRegistry.publish would emit for each bundled protocol class). With those +// present at genesis, an on-chain re-publish of a bundled protocol class id pushes an already-existing nullifier, so the +// transaction is invalid (duplicate nullifier) and never reaches the archiver — which previously would throw on the +// block-0 preload key collision and stall L1 sync. +describe('e2e_deploy_contract publish protocol contract class', () => { + jest.setTimeout(900_000); + + const t = new DeployTest('protocol class publish'); + + let logger: Logger; + let wallet: Wallet; + let defaultAccountAddress: AztecAddress; + let aztecNode: AztecNode; + + beforeAll(async () => { + ({ logger, wallet, aztecNode, defaultAccountAddress } = await t.setup({ ...AUTOMINE_E2E_OPTS })); + }); + + afterAll(() => t.teardown()); + + it('rejects re-publishing a bundled protocol contract class as a duplicate nullifier', async () => { + // FeeJuice is a bundled protocol contract whose class is preloaded by the archiver at block 0 and whose class-id + // registration nullifier is now seeded at genesis. Publishing it via the normal class-registration path recomputes + // the same class id and pushes the same siloed nullifier, which already exists. + const provider = new BundledProtocolContractsProvider(); + const { artifact } = await provider.getProtocolContractArtifact('FeeJuice'); + + const contractClass = await getContractClassFromArtifact(artifact); + // Sanity check: the node already knows this class from its block-0 preload, confirming we are re-publishing an + // already-present protocol class rather than a fresh one. + expect(await aztecNode.getContractClass(contractClass.id)).toBeDefined(); + + logger.info(`Attempting to re-publish bundled protocol class ${contractClass.id.toString()}`); + const interaction = await publishContractClass(wallet, artifact); + + await expect(interaction.send({ from: defaultAccountAddress })).rejects.toThrow(DUPLICATE_NULLIFIER_ERROR); + }); + + // The protocol contract *instance* deployment cannot be tested the same way. ContractInstanceRegistry's + // `publish_for_public_execution` emits the *derived* contract address as the nullifier + // (AztecAddress::compute(public_keys, partial_address) — see contract_instance_registry_contract/src/main.nr), not the + // magic protocol address (1/2/3). The instance nullifiers seeded at genesis use those magic addresses, which no + // deployment can produce: there is no set of deployment parameters that hashes to a magic address, and no transaction + // can spoof one as msg_sender. So the seeded magic-address instance nullifier is unreachable on-chain and there is no + // duplicate-nullifier failure to trigger. Seeding it is harmless (it matches the canonical protocol deployment) but + // untestable via a publish, so we deliberately do not write an instance-publish case here. +}); diff --git a/yarn-project/p2p/src/msg_validators/tx_validator/tx_validator_bench.test.ts b/yarn-project/p2p/src/msg_validators/tx_validator/tx_validator_bench.test.ts index c4bc38f7103f..1aa13698dc08 100644 --- a/yarn-project/p2p/src/msg_validators/tx_validator/tx_validator_bench.test.ts +++ b/yarn-project/p2p/src/msg_validators/tx_validator/tx_validator_bench.test.ts @@ -3,7 +3,7 @@ import { BlockNumber } from '@aztec/foundation/branded-types'; import { padArrayEnd, times } from '@aztec/foundation/collection'; import { Fr } from '@aztec/foundation/curves/bn254'; import { Timer } from '@aztec/foundation/timer'; -import { ProtocolContractAddress } from '@aztec/protocol-contracts'; +import { DEFAULT_GENESIS_DATA, ProtocolContractAddress } from '@aztec/protocol-contracts'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import { AztecAddress } from '@aztec/stdlib/aztec-address'; import { BlockHash } from '@aztec/stdlib/block'; @@ -147,6 +147,7 @@ describe('TxValidator: Benchmarks', () => { // Create real LMDB-backed world state with fee payer balance const feePayerLeafSlot = await computeFeePayerBalanceLeafSlot(gasTx.data.feePayer); const genesis: GenesisData = { + ...DEFAULT_GENESIS_DATA, prefilledPublicData: [new PublicDataTreeLeaf(feePayerLeafSlot, new Fr(10n ** 18n))], genesisTimestamp: 0n, }; @@ -369,6 +370,7 @@ describe('TxValidator: Benchmarks', () => { // Create world state with fee payer balance only (initial tree size limits prefilled data) const feePayerLeafSlot = await computeFeePayerBalanceLeafSlot(gasTx.data.feePayer); localWs = await NativeWorldStateService.tmp(undefined, true, { + ...DEFAULT_GENESIS_DATA, prefilledPublicData: [new PublicDataTreeLeaf(feePayerLeafSlot, new Fr(10n ** 18n))], genesisTimestamp: 0n, }); diff --git a/yarn-project/protocol-contracts/src/genesis_data.ts b/yarn-project/protocol-contracts/src/genesis_data.ts new file mode 100644 index 000000000000..c3ba5f9a54a5 --- /dev/null +++ b/yarn-project/protocol-contracts/src/genesis_data.ts @@ -0,0 +1,16 @@ +import type { GenesisData } from '@aztec/stdlib/world-state'; + +import { ProtocolContractGenesisNullifiers } from './protocol_contract_data.js'; + +/** + * Canonical genesis data for a production network. Seeds the protocol contract registration nullifiers + * ({@link ProtocolContractGenesisNullifiers}) into the genesis nullifier tree so that an on-chain re-publish of a + * bundled protocol class id pushes an already-existing nullifier, making that transaction invalid (duplicate nullifier) + * before it ever reaches the archiver. Production world-state callers should construct genesis on top of this rather + * than `EMPTY_GENESIS_DATA` so the genesis roots match the canonical constants. + */ +export const DEFAULT_GENESIS_DATA: GenesisData = { + prefilledPublicData: [], + prefilledNullifiers: ProtocolContractGenesisNullifiers, + genesisTimestamp: 0n, +}; diff --git a/yarn-project/protocol-contracts/src/index.ts b/yarn-project/protocol-contracts/src/index.ts index b47cfa12fb8d..7b9fc23cfb9f 100644 --- a/yarn-project/protocol-contracts/src/index.ts +++ b/yarn-project/protocol-contracts/src/index.ts @@ -1,2 +1,3 @@ +export * from './genesis_data.js'; export * from './protocol_contract.js'; export * from './protocol_contract_data.js'; diff --git a/yarn-project/protocol-contracts/src/scripts/generate_data.ts b/yarn-project/protocol-contracts/src/scripts/generate_data.ts index e97b2909b948..a46406183d2a 100644 --- a/yarn-project/protocol-contracts/src/scripts/generate_data.ts +++ b/yarn-project/protocol-contracts/src/scripts/generate_data.ts @@ -19,7 +19,7 @@ import { computeInitializationHash, getContractClassFromArtifact, } from '@aztec/stdlib/contract'; -import { computeSiloedPrivateLogFirstField } from '@aztec/stdlib/hash'; +import { computeSiloedPrivateLogFirstField, siloNullifier } from '@aztec/stdlib/hash'; import { PublicKeys } from '@aztec/stdlib/keys'; import { type NoirCompiledContract } from '@aztec/stdlib/noir'; import { ProtocolContracts } from '@aztec/stdlib/tx'; @@ -207,6 +207,35 @@ async function generateProtocolContractsList(names: string[], contractData: Cont `; } +// Generates the siloed registration nullifiers that the protocol contracts would emit when published on-chain, so the +// world-state genesis can pre-insert them into the nullifier tree. With these present at genesis, an on-chain re-publish +// of a bundled protocol class id pushes an already-existing nullifier, making the transaction invalid (duplicate +// nullifier) so it never reaches the archiver. For each contract we seed: +// - the class nullifier: siloNullifier(ContractClassRegistry, classId) — matches ContractClassRegistry.publish, which +// emits `class_id` as a nullifier siloed with its own (class registry) address; +// - the instance nullifier: siloNullifier(ContractInstanceRegistry, magicAddress) — uses the magic protocol address +// (1/2/3), not the derived address, for consistency with the node's block-0 preload. +// The emitted list is sorted ascending by field value because the indexed nullifier tree requires its initial leaves to +// be unique and strictly increasing. +async function generateGenesisNullifiers(names: string[], contractData: ContractData[]) { + const classRegistry = new AztecAddress(new Fr(CONTRACT_CLASS_REGISTRY_CONTRACT_ADDRESS)); + const instanceRegistry = new AztecAddress(new Fr(CONTRACT_INSTANCE_REGISTRY_CONTRACT_ADDRESS)); + + const nullifiers: Fr[] = []; + for (let i = 0; i < names.length; i++) { + const magicAddress = new AztecAddress(new Fr(contractAddressMapping[names[i]])); + nullifiers.push(await siloNullifier(classRegistry, contractData[i].classId)); + nullifiers.push(await siloNullifier(instanceRegistry, magicAddress.toField())); + } + nullifiers.sort((a, b) => (a.toBigInt() < b.toBigInt() ? -1 : 1)); + + return ` + export const ProtocolContractGenesisNullifiers: Fr[] = [ + ${nullifiers.map(n => `Fr.fromString('${n.toString()}')`).join(',\n')} + ]; + `; +} + // Generate the siloed log tags for events emitted via private logs. async function generateLogTags() { return ` @@ -237,6 +266,8 @@ async function generateOutputFile(names: string[], contractData: ContractData[]) ${await generateProtocolContractsList(names, contractData)} + ${await generateGenesisNullifiers(names, contractData)} + ${await generateLogTags()} `; await fs.writeFile(outputFilePath, content); diff --git a/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.bench.test.ts b/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.bench.test.ts index 907368ea83ab..2fad74104f63 100644 --- a/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.bench.test.ts +++ b/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.bench.test.ts @@ -4,7 +4,7 @@ import { timesAsync } from '@aztec/foundation/collection'; import { Fr } from '@aztec/foundation/curves/bn254'; import { createLogger } from '@aztec/foundation/log'; import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; -import { ProtocolContractsList } from '@aztec/protocol-contracts'; +import { DEFAULT_GENESIS_DATA, ProtocolContractsList } from '@aztec/protocol-contracts'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import { PublicDataWrite } from '@aztec/stdlib/avm'; import { AztecAddress } from '@aztec/stdlib/aztec-address'; @@ -45,6 +45,7 @@ describe('LightweightCheckpointBuilder benchmarks', () => { feePayerBalance = new Fr(10n ** 20n); const feePayerSlot = await computeFeePayerBalanceLeafSlot(feePayer); const genesis: GenesisData = { + ...DEFAULT_GENESIS_DATA, prefilledPublicData: [new PublicDataTreeLeaf(feePayerSlot, feePayerBalance)], genesisTimestamp: 0n, }; diff --git a/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.test.ts b/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.test.ts index 7ed3e2623b23..bb6f636a07f4 100644 --- a/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.test.ts +++ b/yarn-project/prover-client/src/light/lightweight_checkpoint_builder.test.ts @@ -3,7 +3,7 @@ import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/bra import { timesAsync } from '@aztec/foundation/collection'; import { Fr } from '@aztec/foundation/curves/bn254'; import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; -import { ProtocolContractsList } from '@aztec/protocol-contracts'; +import { DEFAULT_GENESIS_DATA, ProtocolContractsList } from '@aztec/protocol-contracts'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import { PublicDataWrite } from '@aztec/stdlib/avm'; import { AztecAddress } from '@aztec/stdlib/aztec-address'; @@ -32,6 +32,7 @@ describe('LightweightCheckpointBuilder', () => { feePayerBalance = new Fr(10n ** 20n); const feePayerSlot = await computeFeePayerBalanceLeafSlot(feePayer); const genesis: GenesisData = { + ...DEFAULT_GENESIS_DATA, prefilledPublicData: [new PublicDataTreeLeaf(feePayerSlot, feePayerBalance)], genesisTimestamp: 0n, }; diff --git a/yarn-project/prover-client/src/mocks/test_context.ts b/yarn-project/prover-client/src/mocks/test_context.ts index 065e19142844..a3c1296e9c73 100644 --- a/yarn-project/prover-client/src/mocks/test_context.ts +++ b/yarn-project/prover-client/src/mocks/test_context.ts @@ -8,7 +8,7 @@ import type { Logger } from '@aztec/foundation/log'; import { SerialQueue } from '@aztec/foundation/queue'; import type { FieldsOf } from '@aztec/foundation/types'; import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; -import { ProtocolContractsList } from '@aztec/protocol-contracts'; +import { DEFAULT_GENESIS_DATA, ProtocolContractsList } from '@aztec/protocol-contracts'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import { PublicDataWrite } from '@aztec/stdlib/avm'; import { AztecAddress } from '@aztec/stdlib/aztec-address'; @@ -90,6 +90,7 @@ export class TestContext { const initialFeePayerBalance = new Fr(10n ** 20n); const feePayerSlot = await computeFeePayerBalanceLeafSlot(feePayer); const genesis: GenesisData = { + ...DEFAULT_GENESIS_DATA, prefilledPublicData: [new PublicDataTreeLeaf(feePayerSlot, initialFeePayerBalance)], genesisTimestamp: 0n, }; diff --git a/yarn-project/stdlib/src/world-state/genesis_data.ts b/yarn-project/stdlib/src/world-state/genesis_data.ts index 2efc5c900296..5fe1b3fc528b 100644 --- a/yarn-project/stdlib/src/world-state/genesis_data.ts +++ b/yarn-project/stdlib/src/world-state/genesis_data.ts @@ -1,16 +1,31 @@ +import type { Fr } from '@aztec/foundation/curves/bn254'; + import type { PublicDataTreeLeaf } from '../trees/index.js'; /** Data used to initialize the genesis block, including prefilled public state and an optional timestamp. */ export type GenesisData = { /** Public data tree leaves to pre-populate in the genesis state (e.g. fee juice balances). */ prefilledPublicData: PublicDataTreeLeaf[]; + /** + * Nullifiers to pre-insert into the genesis nullifier tree. Must be unique and strictly increasing in field value. + * Production callers pass `DEFAULT_GENESIS_DATA.prefilledNullifiers` from `@aztec/protocol-contracts` (the canonical + * protocol contract registration nullifiers); this cannot be defaulted here because `@aztec/stdlib` does not depend + * on `@aztec/protocol-contracts`. Pass an explicit empty array for a truly-empty nullifier tree (e.g. low-level tree + * unit tests). + */ + prefilledNullifiers: Fr[]; /** Timestamp for the genesis block header. Defaults to 0 (canonical empty genesis) in production. */ genesisTimestamp: bigint; }; -/** An empty genesis data with no prefilled state and a zero timestamp. */ +/** + * An empty genesis data with no prefilled state and a zero timestamp. Note this seeds an empty nullifier tree, so the + * resulting genesis roots do not match the canonical production roots; production code should use `DEFAULT_GENESIS_DATA` + * from `@aztec/protocol-contracts` instead. Use this only for low-level tree tests that want a truly-empty genesis. + */ export const EMPTY_GENESIS_DATA: GenesisData = { prefilledPublicData: [], + prefilledNullifiers: [], genesisTimestamp: 0n, }; @@ -21,6 +36,8 @@ export function isGenesisData(obj: any): obj is GenesisData { typeof obj === 'object' && 'prefilledPublicData' in obj && Array.isArray(obj.prefilledPublicData) && + 'prefilledNullifiers' in obj && + Array.isArray(obj.prefilledNullifiers) && 'genesisTimestamp' in obj && typeof obj.genesisTimestamp === 'bigint' ); diff --git a/yarn-project/world-state/src/native/native_world_state.test.ts b/yarn-project/world-state/src/native/native_world_state.test.ts index 865c9fdfaff2..087a7a11c10d 100644 --- a/yarn-project/world-state/src/native/native_world_state.test.ts +++ b/yarn-project/world-state/src/native/native_world_state.test.ts @@ -16,6 +16,7 @@ import { Fr } from '@aztec/foundation/curves/bn254'; import { EthAddress } from '@aztec/foundation/eth-address'; import { retryUntil } from '@aztec/foundation/retry'; import type { SiblingPath } from '@aztec/foundation/trees'; +import { DEFAULT_GENESIS_DATA } from '@aztec/protocol-contracts'; import { PublicDataWrite } from '@aztec/stdlib/avm'; import { L2Block } from '@aztec/stdlib/block'; import { DatabaseVersionManager } from '@aztec/stdlib/database-version/manager'; @@ -1438,8 +1439,10 @@ describe('NativeWorldState', () => { const ws = await NativeWorldStateService.new(EthAddress.random(), dataDir, wsTreeMapSizes); const { state: initialState, ...initialRest } = ws.getInitialHeader(); - // With prefilled. + // With prefilled. Spread DEFAULT_GENESIS_DATA so the nullifier tree matches the default-genesis baseline above + // (which now seeds the canonical protocol contract registration nullifiers); only the public data differs. const genesis: GenesisData = { + ...DEFAULT_GENESIS_DATA, prefilledPublicData: [ new PublicDataTreeLeaf(new Fr(1000), new Fr(2000)), new PublicDataTreeLeaf(new Fr(3000), new Fr(4000)), diff --git a/yarn-project/world-state/src/native/native_world_state.ts b/yarn-project/world-state/src/native/native_world_state.ts index 4253a04df6b0..bed29d5fbc78 100644 --- a/yarn-project/world-state/src/native/native_world_state.ts +++ b/yarn-project/world-state/src/native/native_world_state.ts @@ -5,6 +5,7 @@ import { Fr } from '@aztec/foundation/curves/bn254'; import { EthAddress } from '@aztec/foundation/eth-address'; import { tryRmDir } from '@aztec/foundation/fs'; import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log'; +import { DEFAULT_GENESIS_DATA } from '@aztec/protocol-contracts'; import type { L2Block } from '@aztec/stdlib/block'; import { DatabaseVersionManager } from '@aztec/stdlib/database-version/manager'; import type { @@ -15,7 +16,7 @@ import type { import type { SnapshotDataKeys } from '@aztec/stdlib/snapshots'; import { MerkleTreeId, NullifierLeaf, type NullifierLeafPreimage, PublicDataTreeLeaf } from '@aztec/stdlib/trees'; import { BlockHeader, GlobalVariables, PartialStateReference, StateReference } from '@aztec/stdlib/tx'; -import { EMPTY_GENESIS_DATA, type GenesisData, WorldStateRevision } from '@aztec/stdlib/world-state'; +import { type GenesisData, WorldStateRevision } from '@aztec/stdlib/world-state'; import { getTelemetryClient } from '@aztec/telemetry-client'; import assert from 'assert/strict'; @@ -76,7 +77,7 @@ export class NativeWorldStateService implements MerkleTreeDatabase { protected instance: NativeWorldState, protected readonly worldStateInstrumentation: WorldStateInstrumentation, protected readonly log: Logger, - private readonly genesis: GenesisData = EMPTY_GENESIS_DATA, + private readonly genesis: GenesisData = DEFAULT_GENESIS_DATA, private readonly cleanup = () => Promise.resolve(), ) {} @@ -89,7 +90,7 @@ export class NativeWorldStateService implements MerkleTreeDatabase { rollupAddress: EthAddress, dataDir: string, wsTreeMapSizes: WorldStateTreeMapSizes, - genesis: GenesisData = EMPTY_GENESIS_DATA, + genesis: GenesisData = DEFAULT_GENESIS_DATA, instrumentation = new WorldStateInstrumentation(getTelemetryClient()), bindings?: LoggerBindings, cleanup = () => Promise.resolve(), @@ -138,7 +139,7 @@ export class NativeWorldStateService implements MerkleTreeDatabase { static async tmp( rollupAddress = EthAddress.ZERO, cleanupTmpDir = true, - genesis: GenesisData = EMPTY_GENESIS_DATA, + genesis: GenesisData = DEFAULT_GENESIS_DATA, instrumentation = new WorldStateInstrumentation(getTelemetryClient()), bindings?: LoggerBindings, ): Promise { @@ -164,7 +165,7 @@ export class NativeWorldStateService implements MerkleTreeDatabase { * there is no on-disk schema to bind to and no rollup address is taken. */ static async ephemeral( - genesis: GenesisData = EMPTY_GENESIS_DATA, + genesis: GenesisData = DEFAULT_GENESIS_DATA, instrumentation = new WorldStateInstrumentation(getTelemetryClient()), bindings?: LoggerBindings, ): Promise { diff --git a/yarn-project/world-state/src/native/native_world_state_instance.ts b/yarn-project/world-state/src/native/native_world_state_instance.ts index 22394ae387ab..16137804bafd 100644 --- a/yarn-project/world-state/src/native/native_world_state_instance.ts +++ b/yarn-project/world-state/src/native/native_world_state_instance.ts @@ -10,8 +10,9 @@ import { } from '@aztec/constants'; import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log'; import { NativeWorldState as BaseNativeWorldState, MsgpackChannel } from '@aztec/native'; +import { DEFAULT_GENESIS_DATA } from '@aztec/protocol-contracts'; import { MerkleTreeId } from '@aztec/stdlib/trees'; -import { EMPTY_GENESIS_DATA, type GenesisData } from '@aztec/stdlib/world-state'; +import type { GenesisData } from '@aztec/stdlib/world-state'; import assert from 'assert'; import { cpus } from 'os'; @@ -55,7 +56,7 @@ export class NativeWorldState implements NativeWorldStateInstance { constructor( private readonly dataDir: string, private readonly wsTreeMapSizes: WorldStateTreeMapSizes, - private readonly genesis: GenesisData = EMPTY_GENESIS_DATA, + private readonly genesis: GenesisData = DEFAULT_GENESIS_DATA, private readonly instrumentation: WorldStateInstrumentation, bindings?: LoggerBindings, private readonly log: Logger = createLogger('world-state:database', bindings), @@ -71,6 +72,18 @@ export class NativeWorldState implements NativeWorldStateInstance { d.slot.toBuffer(), d.value.toBuffer(), ]); + // The canonical protocol contract registration nullifiers are seeded by default (via DEFAULT_GENESIS_DATA) so that + // an on-chain re-publish of a bundled protocol class id is rejected as a duplicate nullifier. Callers opt out (e.g. + // low-level tree tests) by passing an explicit empty array. The native indexed tree requires its prefilled leaves + // to be unique and strictly increasing, so we enforce that here before handing them over rather than failing deep + // inside the C++ tree construction. + for (let i = 1; i < genesis.prefilledNullifiers.length; i++) { + assert( + genesis.prefilledNullifiers[i].toBigInt() > genesis.prefilledNullifiers[i - 1].toBigInt(), + 'Prefilled genesis nullifiers must be unique and strictly increasing', + ); + } + const prefilledNullifiersBufferArray = genesis.prefilledNullifiers.map(n => n.toBuffer()); const ws = new BaseNativeWorldState( dataDir, { @@ -85,6 +98,7 @@ export class NativeWorldState implements NativeWorldStateInstance { [MerkleTreeId.PUBLIC_DATA_TREE]: 2 * MAX_TOTAL_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX, }, prefilledPublicDataBufferArray, + prefilledNullifiersBufferArray, DomainSeparator.BLOCK_HEADER_HASH, Number(genesis.genesisTimestamp), { diff --git a/yarn-project/world-state/src/synchronizer/factory.ts b/yarn-project/world-state/src/synchronizer/factory.ts index f306ea1aedd2..91d8d3da6d68 100644 --- a/yarn-project/world-state/src/synchronizer/factory.ts +++ b/yarn-project/world-state/src/synchronizer/factory.ts @@ -1,8 +1,9 @@ import type { LoggerBindings } from '@aztec/foundation/log'; +import { DEFAULT_GENESIS_DATA } from '@aztec/protocol-contracts'; import type { L2BlockSource } from '@aztec/stdlib/block'; import type { DataStoreConfig } from '@aztec/stdlib/kv-store'; import type { L1ToL2MessageSource } from '@aztec/stdlib/messaging'; -import { EMPTY_GENESIS_DATA, type GenesisData, isGenesisData } from '@aztec/stdlib/world-state'; +import { type GenesisData, isGenesisData } from '@aztec/stdlib/world-state'; import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-client'; import { WorldStateInstrumentation } from '../instrumentation/instrumentation.js'; @@ -44,7 +45,7 @@ export async function createWorldState( | 'publicDataTreeMapSizeKb' > & Pick, - genesis: GenesisData = EMPTY_GENESIS_DATA, + genesis: GenesisData = DEFAULT_GENESIS_DATA, instrumentation: WorldStateInstrumentation = new WorldStateInstrumentation(getTelemetryClient()), bindings?: LoggerBindings, ) { diff --git a/yarn-project/world-state/src/testing.ts b/yarn-project/world-state/src/testing.ts index 14347f010556..90f80e111ac1 100644 --- a/yarn-project/world-state/src/testing.ts +++ b/yarn-project/world-state/src/testing.ts @@ -1,5 +1,6 @@ import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants'; import { Fr } from '@aztec/foundation/curves/bn254'; +import { DEFAULT_GENESIS_DATA } from '@aztec/protocol-contracts'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import type { AztecAddress } from '@aztec/stdlib/aztec-address'; import { MerkleTreeId, PublicDataTreeLeaf } from '@aztec/stdlib/trees'; @@ -8,7 +9,13 @@ import type { GenesisData } from '@aztec/stdlib/world-state'; import { NativeWorldStateService } from './native/index.js'; async function generateGenesisValues(genesis: GenesisData) { - if (!genesis.prefilledPublicData.length && genesis.genesisTimestamp === 0n) { + // The GENESIS_ARCHIVE_ROOT constant already reflects the canonical prefilled nullifiers (DEFAULT_GENESIS_DATA), so we + // can short-circuit only when this genesis adds no public data and no custom timestamp on top of that default. + if ( + !genesis.prefilledPublicData.length && + genesis.genesisTimestamp === 0n && + genesis.prefilledNullifiers === DEFAULT_GENESIS_DATA.prefilledNullifiers + ) { return { genesisArchiveRoot: new Fr(GENESIS_ARCHIVE_ROOT), }; @@ -44,7 +51,9 @@ export async function getGenesisValues( prefilledPublicData.sort((a, b) => (b.slot.lt(a.slot) ? 1 : -1)); - const genesis: GenesisData = { prefilledPublicData, genesisTimestamp }; + // Build on top of DEFAULT_GENESIS_DATA so the canonical protocol contract registration nullifiers are always seeded; + // only the deployment-specific public data and timestamp vary. + const genesis: GenesisData = { ...DEFAULT_GENESIS_DATA, prefilledPublicData, genesisTimestamp }; const { genesisArchiveRoot } = await generateGenesisValues(genesis); return { From 35c2820d11159a3accb2f27549f0e913d15f9559 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 23 Jun 2026 16:13:26 -0300 Subject: [PATCH 2/3] fix(types): update genesis nullifier-tree root in block header hash tests (A-1257) The genesis nullifier-tree root changed to 0x1bcda34f33b87d40db8bb8ee1378ef7123c16c197da1ded6ea47659230559f42 after seeding protocol-contract registration nullifiers, so update the two test sites that hardcode the old stale root. --- .../crates/types/src/abis/block_header.nr | 2 +- yarn-project/stdlib/src/block/l2_block.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/abis/block_header.nr b/noir-projects/noir-protocol-circuits/crates/types/src/abis/block_header.nr index 6eebe3656f4c..72c70330fc17 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/abis/block_header.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/abis/block_header.nr @@ -84,7 +84,7 @@ fn hash_of_genesis_block_header() { header.state.partial.note_hash_tree.root = 0x2590f2aab19dd791700b4a43d3f52bb88ef2409a3731da8e848663559202e4c6; header.state.partial.nullifier_tree.root = - 0x18935581a8ed73d08ffd00386fba55ba6c89f3ab848a76b8fedfa9034cee0454; + 0x1bcda34f33b87d40db8bb8ee1378ef7123c16c197da1ded6ea47659230559f42; header.state.partial.nullifier_tree.next_available_leaf_index = 128; header.state.partial.public_data_tree.root = 0x1bef38b621017d3c7416663d0cd81369424560710526a3fbaaec13e356b9d084; diff --git a/yarn-project/stdlib/src/block/l2_block.test.ts b/yarn-project/stdlib/src/block/l2_block.test.ts index 2efeb534d359..0a5e58a7a2f8 100644 --- a/yarn-project/stdlib/src/block/l2_block.test.ts +++ b/yarn-project/stdlib/src/block/l2_block.test.ts @@ -32,7 +32,7 @@ describe('L2Block', () => { '0x2590f2aab19dd791700b4a43d3f52bb88ef2409a3731da8e848663559202e4c6', ); emptyBlockHeader.state.partial.nullifierTree.root = Fr.fromString( - '0x18935581a8ed73d08ffd00386fba55ba6c89f3ab848a76b8fedfa9034cee0454', + '0x1bcda34f33b87d40db8bb8ee1378ef7123c16c197da1ded6ea47659230559f42', ); emptyBlockHeader.state.partial.nullifierTree.nextAvailableLeafIndex = 128; emptyBlockHeader.state.partial.publicDataTree.root = Fr.fromString( From b9f8f1f11fbe240505bd3547192f5825ddbb49e5 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 23 Jun 2026 19:45:30 -0300 Subject: [PATCH 3/3] test(avm): regenerate minimal_tx golden testdata for seeded genesis nullifiers (A-1257) The genesis defaults in NativeWorldStateService now use DEFAULT_GENESIS_DATA, which seeds 6 protocol-contract registration nullifiers into the nullifier tree at genesis. This changes the nullifier-tree root embedded in the serialized AvmCircuitInputs, so the golden binary used by avm_minimal.test.ts and the C++ hinting_dbs tests must be regenerated. Regenerated with: AZTEC_GENERATE_TEST_DATA=1 yarn workspace @aztec/simulator test \ src/public/public_tx_simulator/apps_tests/avm_minimal.test.ts Verification: TS test passes without env var; C++ vm2_tests HintingDBs suite passes (15/15). --- .../vm2/testing/minimal_tx.testdata.bin | Bin 188945 -> 188945 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/barretenberg/cpp/src/barretenberg/vm2/testing/minimal_tx.testdata.bin b/barretenberg/cpp/src/barretenberg/vm2/testing/minimal_tx.testdata.bin index 3d2a09db25c89f197e7dc357f42f84fcad511428..a66e459270f119daec7198bf26bce659d3ed22aa 100644 GIT binary patch delta 846 zcmbPugnQxfJ)yikQd_@T#^=^q&FPF7w{)1AF%>q)=K4`n1K zui>dx&t0&CJmt=f z;<8q?X^p~bn^Qw#rM@t4p2%0kMV#Z}bg_M6^>hfoW9_>SytQ)9vNw_fBip>y*a*h`MQ5A^HM8HJo8dgD=srYK=tM>*(JQh zIbA?bj2LG~PTs2BUthT#WS4hprsuus`vQI% z$gk-6mwQA(JNaCR=0BTv2YG%dnYV?nJ^A3V&V8pBoK>xAtJW=C;2wQML2cPtmjzp< zY`Epg^pN@H%w<12eIhQMxxS-za~@auTf?oB|Lb%qh_9||ce(v(Horma&9m}N;ae9k z*L}Tt@o|rDBA)j$Z~6h_yoF`5uF)z5@pW$|GQHh1{b+P=?4Qr={B{#BzrD{8Y_MBT x$dxbTGB>eFsD)*7rbQzQagnixCwOzI?ZI$jVnm`jZ)$tqRL1RjQ<)a~0028;iiH3G delta 769 zcmbPugnQx8e8^S_uQ-;Mj9`rAr2wJFC<{%&+mLH_M3SFy5e!`%j~35F}zDz!~9 z+BUg4;PCDrpV%LDIdyNI$XCQgoa5r;I3_zwnlsi1LY-OpLSJTJAP#5=WevbL;J{YntWGcP5z;xYpSG%U?T=GHGM zNG!>?!=QCUfmg3&=OuZ5o&~#^{)IDTY@bwauEe*gM(=^8ph2{k<(4A~Vzrw%wU=JY zztb^QJ4Yo;<)v+CN#5kPl%4*I(=N@Jx+y6T}*;mZ(HrE&#FbI ze+o;U6J&jF?&SYET?+bl7aZPD;B)4<=T(yp42mzFN&Rk~#aZi@o|G1zx?;LEFq&Fe zChHolQedxCoA=MI*{J-~nPnS(b@a1kyxw!!!K61u{@49W2c4!98|y7Bn=>sMS%?eo eH9WzaOKlH^6BFnX&3RMX^QJOx&zs7$*arYilv{8B