diff --git a/README.md b/README.md index 21e00bb7..2a837c5b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ **Complete Starknet library in Rust[™](https://www.reddit.com/r/rust/comments/12e7tdb/rust_trademark_policy_feedback_form/)** ![starknet-version-v0.13.0](https://img.shields.io/badge/Starknet_Version-v0.13.0-2ea44f?logo=ethereum) -[![jsonrpc-spec-v0.6.0](https://img.shields.io/badge/JSON--RPC-v0.6.0-2ea44f?logo=ethereum)](https://github.com/starkware-libs/starknet-specs/tree/v0.6.0) +[![jsonrpc-spec-v0.7.1](https://img.shields.io/badge/JSON--RPC-v0.7.1-2ea44f?logo=ethereum)](https://github.com/starkware-libs/starknet-specs/tree/v0.7.1) [![linting-badge](https://github.com/xJonathanLEI/starknet-rs/actions/workflows/lint.yaml/badge.svg?branch=master)](https://github.com/xJonathanLEI/starknet-rs/actions/workflows/lint.yaml) [![crates-badge](https://img.shields.io/crates/v/starknet.svg)](https://crates.io/crates/starknet) @@ -74,21 +74,21 @@ For instructions on running the benchmark yourself, check [here](./BENCHMARK.md) Examples can be found in the [examples folder](./examples): -1. [Get the latest block from `alpha-goerli` testnet](./examples/get_block.rs) +1. [Get the latest block from `alpha-sepolia` testnet](./examples/get_block.rs) -2. [Deploy contract to `alpha-goerli` testnet via UDC](./examples/deploy_contract.rs) +2. [Deploy contract to `alpha-sepolia` testnet via UDC](./examples/deploy_contract.rs) -3. [Mint yourself 1,000 TST tokens on `alpha-goerli`](./examples/mint_tokens.rs) +3. [Mint yourself 1,000 TST tokens on `alpha-sepolia`](./examples/mint_tokens.rs) - Make sure your account has some L2 Goerli ETH to pay for the transaction fee. You can use [this faucet](https://faucet.goerli.starknet.io/) to fund your account. + Make sure your account has some L2 Sepolia ETH to pay for the transaction fee. -4. [Declare Cairo 1 contract on `alpha-goerli` testnet](./examples/declare_cairo1_contract.rs) +4. [Declare Cairo 1 contract on `alpha-sepolia` testnet](./examples/declare_cairo1_contract.rs) - Make sure your account has some L2 Goerli ETH to pay for the transaction fee. You can use [this faucet](https://faucet.goerli.starknet.io/) to fund your account. + Make sure your account has some L2 Sepolia ETH to pay for the transaction fee. -5. [Declare legacy Cairo 0 contract on `alpha-goerli` testnet](./examples/declare_cairo0_contract.rs) +5. [Declare legacy Cairo 0 contract on `alpha-sepolia` testnet](./examples/declare_cairo0_contract.rs) - Make sure your account has some L2 Goerli ETH to pay for the transaction fee. You can use [this faucet](https://faucet.goerli.starknet.io/) to fund your account. + Make sure your account has some L2 Sepolia ETH to pay for the transaction fee. 6. [Query the latest block number with JSON-RPC](./examples/jsonrpc.rs) diff --git a/examples/declare_cairo0_contract.rs b/examples/declare_cairo0_contract.rs index 7aaf3add..1d5248f6 100644 --- a/examples/declare_cairo0_contract.rs +++ b/examples/declare_cairo0_contract.rs @@ -19,7 +19,7 @@ async fn main() { serde_json::from_reader(std::fs::File::open("/path/to/contract/artifact.json").unwrap()) .unwrap(); let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let signer = LocalWallet::from(SigningKey::from_secret_scalar( @@ -31,7 +31,7 @@ async fn main() { provider, signer, address, - chain_id::TESTNET, + chain_id::SEPOLIA, ExecutionEncoding::New, ); diff --git a/examples/declare_cairo1_contract.rs b/examples/declare_cairo1_contract.rs index 9ba549d3..a10af0e2 100644 --- a/examples/declare_cairo1_contract.rs +++ b/examples/declare_cairo1_contract.rs @@ -25,7 +25,7 @@ async fn main() { FieldElement::from_hex_be("COMPILED_CASM_CLASS_HASH_IN_HEX_HERE").unwrap(); let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let signer = LocalWallet::from(SigningKey::from_secret_scalar( @@ -37,7 +37,7 @@ async fn main() { provider, signer, address, - chain_id::TESTNET, + chain_id::SEPOLIA, ExecutionEncoding::New, ); diff --git a/examples/deploy_argent_account.rs b/examples/deploy_argent_account.rs index c0f7ca53..9c040785 100644 --- a/examples/deploy_argent_account.rs +++ b/examples/deploy_argent_account.rs @@ -18,7 +18,7 @@ async fn main() { let salt = felt!("12345678"); let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let signer = LocalWallet::from(SigningKey::from_secret_scalar( @@ -27,7 +27,7 @@ async fn main() { let factory = ArgentAccountFactory::new( class_hash, - chain_id::TESTNET, + chain_id::SEPOLIA, FieldElement::ZERO, signer, provider, diff --git a/examples/deploy_contract.rs b/examples/deploy_contract.rs index 0e9c6474..3b61f8f4 100644 --- a/examples/deploy_contract.rs +++ b/examples/deploy_contract.rs @@ -24,7 +24,7 @@ async fn main() { let class_hash = contract_artifact.class_hash().unwrap(); let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let signer = LocalWallet::from(SigningKey::from_secret_scalar( @@ -35,7 +35,7 @@ async fn main() { provider, signer, address, - chain_id::TESTNET, + chain_id::SEPOLIA, ExecutionEncoding::New, ); diff --git a/examples/erc20_balance.rs b/examples/erc20_balance.rs index ac2b994f..96f60288 100644 --- a/examples/erc20_balance.rs +++ b/examples/erc20_balance.rs @@ -10,7 +10,7 @@ use starknet::{ #[tokio::main] async fn main() { let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let tst_token_address = diff --git a/examples/get_block.rs b/examples/get_block.rs index a1f34cf2..7a486772 100644 --- a/examples/get_block.rs +++ b/examples/get_block.rs @@ -9,7 +9,7 @@ use starknet::{ #[tokio::main] async fn main() { let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let latest_block = provider diff --git a/examples/jsonrpc.rs b/examples/jsonrpc.rs index 13f2b247..c28a1a8d 100644 --- a/examples/jsonrpc.rs +++ b/examples/jsonrpc.rs @@ -6,7 +6,7 @@ use starknet::providers::{ #[tokio::main] async fn main() { let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let block_number = provider.block_number().await.unwrap(); diff --git a/examples/mint_tokens.rs b/examples/mint_tokens.rs index bf6045e5..94a50cd7 100644 --- a/examples/mint_tokens.rs +++ b/examples/mint_tokens.rs @@ -15,7 +15,7 @@ use starknet::{ #[tokio::main] async fn main() { let provider = JsonRpcClient::new(HttpTransport::new( - Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(), + Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(), )); let signer = LocalWallet::from(SigningKey::from_secret_scalar( @@ -31,7 +31,7 @@ async fn main() { provider, signer, address, - chain_id::TESTNET, + chain_id::SEPOLIA, ExecutionEncoding::New, ); diff --git a/starknet-accounts/tests/single_owner_account.rs b/starknet-accounts/tests/single_owner_account.rs index f193ecee..44013edb 100644 --- a/starknet-accounts/tests/single_owner_account.rs +++ b/starknet-accounts/tests/single_owner_account.rs @@ -27,12 +27,12 @@ const CHAIN_ID: FieldElement = FieldElement::from_mont([ ]); fn create_sequencer_client() -> SequencerGatewayProvider { - SequencerGatewayProvider::starknet_alpha_goerli() + SequencerGatewayProvider::starknet_alpha_sepolia() } fn create_jsonrpc_client() -> JsonRpcClient { let rpc_url = std::env::var("STARKNET_RPC") - .unwrap_or("https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_6".into()); + .unwrap_or("https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_7".into()); JsonRpcClient::new(HttpTransport::new(url::Url::parse(&rpc_url).unwrap())) } diff --git a/starknet-contract/src/factory.rs b/starknet-contract/src/factory.rs index 3fb1b1b4..af4dbb32 100644 --- a/starknet-contract/src/factory.rs +++ b/starknet-contract/src/factory.rs @@ -199,13 +199,13 @@ mod tests { ) .unwrap(), SingleOwnerAccount::new( - SequencerGatewayProvider::starknet_alpha_goerli(), + SequencerGatewayProvider::starknet_alpha_sepolia(), LocalWallet::from_signing_key(SigningKey::from_random()), FieldElement::from_hex_be( "0xb1461de04c6a1aa3375bdf9b7723a8779c082ffe21311d683a0b15c078b5dc", ) .unwrap(), - chain_id::TESTNET, + chain_id::SEPOLIA, ExecutionEncoding::Legacy, ), ); diff --git a/starknet-contract/tests/contract_deployment.rs b/starknet-contract/tests/contract_deployment.rs index fc6f1d9e..f27d227a 100644 --- a/starknet-contract/tests/contract_deployment.rs +++ b/starknet-contract/tests/contract_deployment.rs @@ -19,7 +19,7 @@ const CHAIN_ID: FieldElement = FieldElement::from_mont([ #[tokio::test] async fn can_deploy_contract_to_alpha_sepolia() { let rpc_url = std::env::var("STARKNET_RPC") - .unwrap_or("https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_6".into()); + .unwrap_or("https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_7".into()); let provider = JsonRpcClient::new(HttpTransport::new(Url::parse(&rpc_url).unwrap())); let signer = LocalWallet::from(SigningKey::from_secret_scalar( FieldElement::from_hex_be( diff --git a/starknet-core/src/chain_id.rs b/starknet-core/src/chain_id.rs index 999435ec..eac0ec51 100644 --- a/starknet-core/src/chain_id.rs +++ b/starknet-core/src/chain_id.rs @@ -7,6 +7,7 @@ pub const MAINNET: FieldElement = FieldElement::from_mont([ 502562008147966918, ]); +#[deprecated = "The Goerli testnet has been shutdown"] pub const TESTNET: FieldElement = FieldElement::from_mont([ 3753493103916128178, 18446744073709548950, @@ -14,6 +15,7 @@ pub const TESTNET: FieldElement = FieldElement::from_mont([ 398700013197595345, ]); +#[deprecated = "The Goerli testnet has been shutdown"] pub const TESTNET2: FieldElement = FieldElement::from_mont([ 1663542769632127759, 18446744073708869172, @@ -35,6 +37,7 @@ mod test { use super::*; #[test] + #[allow(deprecated)] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_chain_ids() { for (text, felt) in [ diff --git a/starknet-core/src/types/codegen.rs b/starknet-core/src/types/codegen.rs index 4d9ac60a..b2647da9 100644 --- a/starknet-core/src/types/codegen.rs +++ b/starknet-core/src/types/codegen.rs @@ -3,7 +3,10 @@ // https://github.com/xJonathanLEI/starknet-jsonrpc-codegen // Code generated with version: -// https://github.com/xJonathanLEI/starknet-jsonrpc-codegen#5bbd4a4b24e18cbc12bfef96c9bbd8de81082031 +// https://github.com/xJonathanLEI/starknet-jsonrpc-codegen#1dd2923818eb6ac2a44e685af25ab9d0b9fa4413 + +// These types are ignored from code generation. Implement them manually: +// - `RECEIPT_BLOCK` // Code generation requested but not implemented for these types: // - `BLOCK_ID` @@ -17,7 +20,6 @@ // - `DEPLOY_ACCOUNT_TXN` // - `EXECUTE_INVOCATION` // - `INVOKE_TXN` -// - `PENDING_TXN_RECEIPT` // - `TRANSACTION_TRACE` // - `TXN` // - `TXN_RECEIPT` @@ -69,6 +71,43 @@ pub enum BlockTag { Pending, } +/// Block with transactions and receipts. +/// +/// The block object. +#[serde_as] +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] +pub struct BlockWithReceipts { + /// Status + pub status: BlockStatus, + /// Block hash + #[serde_as(as = "UfeHex")] + pub block_hash: FieldElement, + /// The hash of this block's parent + #[serde_as(as = "UfeHex")] + pub parent_hash: FieldElement, + /// The block number (its height) + pub block_number: u64, + /// The new global state root + #[serde_as(as = "UfeHex")] + pub new_root: FieldElement, + /// The time in which the block was created, encoded in Unix time + pub timestamp: u64, + /// The Starknet identity of the sequencer submitting this block + #[serde_as(as = "UfeHex")] + pub sequencer_address: FieldElement, + /// The price of L1 gas in the block + pub l1_gas_price: ResourcePrice, + /// The price of L1 data gas in the block + pub l1_data_gas_price: ResourcePrice, + /// Specifies whether the data of this block is published via blob data or calldata + pub l1_da_mode: L1DataAvailabilityMode, + /// Semver of the current Starknet protocol + pub starknet_version: String, + /// The transactions in this block + pub transactions: Vec, +} + /// Block with transaction hashes. /// /// The block object. @@ -96,6 +135,10 @@ pub struct BlockWithTxHashes { pub sequencer_address: FieldElement, /// The price of L1 gas in the block pub l1_gas_price: ResourcePrice, + /// The price of L1 data gas in the block + pub l1_data_gas_price: ResourcePrice, + /// Specifies whether the data of this block is published via blob data or calldata + pub l1_da_mode: L1DataAvailabilityMode, /// Semver of the current Starknet protocol pub starknet_version: String, /// The hashes of the transactions included in this block @@ -130,6 +173,10 @@ pub struct BlockWithTxs { pub sequencer_address: FieldElement, /// The price of L1 gas in the block pub l1_gas_price: ResourcePrice, + /// The price of L1 data gas in the block + pub l1_data_gas_price: ResourcePrice, + /// Specifies whether the data of this block is published via blob data or calldata + pub l1_da_mode: L1DataAvailabilityMode, /// Semver of the current Starknet protocol pub starknet_version: String, /// The transactions in this block @@ -331,6 +378,43 @@ pub struct CompressedLegacyContractClass { pub abi: Option>, } +/// Computation resources. +/// +/// The resources consumed by the vm. +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] +pub struct ComputationResources { + /// The number of cairo steps used + pub steps: u64, + /// The number of unused memory cells (each cell is roughly equivalent to a step) + #[serde(skip_serializing_if = "Option::is_none")] + pub memory_holes: Option, + /// The number of range_check builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub range_check_builtin_applications: Option, + /// The number of pedersen builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub pedersen_builtin_applications: Option, + /// The number of poseidon builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub poseidon_builtin_applications: Option, + /// The number of ec_op builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub ec_op_builtin_applications: Option, + /// The number of ecdsa builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub ecdsa_builtin_applications: Option, + /// The number of bitwise builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub bitwise_builtin_applications: Option, + /// The number of keccak builtin instances + #[serde(skip_serializing_if = "Option::is_none")] + pub keccak_builtin_applications: Option, + /// The number of accesses to the segment arena + #[serde(skip_serializing_if = "Option::is_none")] + pub segment_arena_builtin: Option, +} + /// More data about the execution failure. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] @@ -363,6 +447,24 @@ pub enum DataAvailabilityMode { L2, } +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] +pub struct DataAvailabilityResources { + /// The gas consumed by this transaction's data, 0 if it uses data gas for da + pub l1_gas: u64, + /// The data gas consumed by this transaction's data, 0 if it uses gas for da + pub l1_data_gas: u64, +} + +/// Dataresources. +/// +/// The data-availability resources of this transaction. +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] +pub struct DataResources { + pub data_availability: DataAvailabilityResources, +} + /// Declare transaction receipt. #[derive(Debug, Clone, PartialEq, Eq)] pub struct DeclareTransactionReceipt { @@ -370,19 +472,14 @@ pub struct DeclareTransactionReceipt { pub transaction_hash: FieldElement, /// The fee that was charged by the sequencer pub actual_fee: FeePayment, - /// Finality status + /// Finality status of the tx pub finality_status: TransactionFinalityStatus, - /// Block hash - pub block_hash: FieldElement, - /// Block number - pub block_number: u64, /// Messages sent pub messages_sent: Vec, /// The events emitted as part of this transaction pub events: Vec, /// The resources consumed by the transaction pub execution_resources: ExecutionResources, - /// Transaction execution result pub execution_result: ExecutionResult, } @@ -393,6 +490,8 @@ pub struct DeclareTransactionTrace { pub fee_transfer_invocation: Option, /// The state diffs induced by the transaction pub state_diff: Option, + /// The resources consumed by the transaction, includes both computation and data + pub execution_resources: ExecutionResources, } /// Declare contract transaction v0. @@ -505,19 +604,14 @@ pub struct DeployAccountTransactionReceipt { pub transaction_hash: FieldElement, /// The fee that was charged by the sequencer pub actual_fee: FeePayment, - /// Finality status + /// Finality status of the tx pub finality_status: TransactionFinalityStatus, - /// Block hash - pub block_hash: FieldElement, - /// Block number - pub block_number: u64, /// Messages sent pub messages_sent: Vec, /// The events emitted as part of this transaction pub events: Vec, /// The resources consumed by the transaction pub execution_resources: ExecutionResources, - /// Transaction execution result pub execution_result: ExecutionResult, /// The address of the deployed contract pub contract_address: FieldElement, @@ -533,6 +627,8 @@ pub struct DeployAccountTransactionTrace { pub fee_transfer_invocation: Option, /// The state diffs induced by the transaction pub state_diff: Option, + /// The resources consumed by the transaction, includes both computation and data + pub execution_resources: ExecutionResources, } /// Deploy account transaction. @@ -610,19 +706,14 @@ pub struct DeployTransactionReceipt { pub transaction_hash: FieldElement, /// The fee that was charged by the sequencer pub actual_fee: FeePayment, - /// Finality status + /// Finality status of the tx pub finality_status: TransactionFinalityStatus, - /// Block hash - pub block_hash: FieldElement, - /// Block number - pub block_number: u64, /// Messages sent pub messages_sent: Vec, /// The events emitted as part of this transaction pub events: Vec, /// The resources consumed by the transaction pub execution_resources: ExecutionResources, - /// Transaction execution result pub execution_result: ExecutionResult, /// The address of the deployed contract pub contract_address: FieldElement, @@ -760,39 +851,14 @@ pub struct EventsChunk { /// Execution resources. /// -/// The resources consumed by the vm. +/// The resources consumed by the transaction, includes both computation and data. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct ExecutionResources { - /// The number of cairo steps used - pub steps: u64, - /// The number of unused memory cells (each cell is roughly equivalent to a step) - #[serde(skip_serializing_if = "Option::is_none")] - pub memory_holes: Option, - /// The number of range_check builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub range_check_builtin_applications: Option, - /// The number of pedersen builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub pedersen_builtin_applications: Option, - /// The number of poseidon builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub poseidon_builtin_applications: Option, - /// The number of ec_op builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub ec_op_builtin_applications: Option, - /// The number of ecdsa builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub ecdsa_builtin_applications: Option, - /// The number of bitwise builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub bitwise_builtin_applications: Option, - /// The number of keccak builtin instances - #[serde(skip_serializing_if = "Option::is_none")] - pub keccak_builtin_applications: Option, - /// The number of accesses to the segment arena - #[serde(skip_serializing_if = "Option::is_none")] - pub segment_arena_builtin: Option, + #[serde(flatten)] + pub computation_resources: ComputationResources, + #[serde(flatten)] + pub data_resources: DataResources, } /// Fee estimation. @@ -800,16 +866,22 @@ pub struct ExecutionResources { #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct FeeEstimate { - /// The Ethereum gas cost of the transaction (see - /// https://docs.starknet.io/docs/fees/fee-mechanism for more info) + /// The Ethereum gas consumption of the transaction #[serde_as(as = "UfeHex")] pub gas_consumed: FieldElement, - /// The gas price (in gwei or fri, depending on the tx version) that was used in the cost + /// The gas price (in wei or fri, depending on the tx version) that was used in the cost /// estimation #[serde_as(as = "UfeHex")] pub gas_price: FieldElement, - /// The estimated fee for the transaction (in gwei or fri, depending on the tx version), product - /// of gas_consumed and gas_price + /// The Ethereum data gas consumption of the transaction + #[serde_as(as = "UfeHex")] + pub data_gas_consumed: FieldElement, + /// The data gas price (in wei or fri, depending on the tx version) that was used in the cost + /// estimation + #[serde_as(as = "UfeHex")] + pub data_gas_price: FieldElement, + /// The estimated fee for the transaction (in wei or fri, depending on the tx version), equals + /// to gas_consumed*gas_price + data_gas_consumed*data_gas_price #[serde_as(as = "UfeHex")] pub overall_fee: FieldElement, /// Units in which the fee is given @@ -894,8 +966,9 @@ pub struct FunctionInvocation { pub events: Vec, /// The messages sent by this invocation to L1 pub messages: Vec, - /// Resources consumed by the internal call - pub execution_resources: ExecutionResources, + /// Resources consumed by the internal call. This is named execution_resources for legacy + /// reasons + pub execution_resources: ComputationResources, } /// Function state mutability type. @@ -912,19 +985,14 @@ pub struct InvokeTransactionReceipt { pub transaction_hash: FieldElement, /// The fee that was charged by the sequencer pub actual_fee: FeePayment, - /// Finality status + /// Finality status of the tx pub finality_status: TransactionFinalityStatus, - /// Block hash - pub block_hash: FieldElement, - /// Block number - pub block_number: u64, /// Messages sent pub messages_sent: Vec, /// The events emitted as part of this transaction pub events: Vec, /// The resources consumed by the transaction pub execution_resources: ExecutionResources, - /// Transaction execution result pub execution_result: ExecutionResult, } @@ -936,6 +1004,8 @@ pub struct InvokeTransactionTrace { pub fee_transfer_invocation: Option, /// The state diffs induced by the transaction pub state_diff: Option, + /// The resources consumed by the transaction, includes both computation and data + pub execution_resources: ExecutionResources, } /// Invoke transaction v0. @@ -1007,6 +1077,15 @@ pub struct InvokeTransactionV3 { pub fee_data_availability_mode: DataAvailabilityMode, } +/// L1 da mode. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)] +pub enum L1DataAvailabilityMode { + #[serde(rename = "BLOB")] + Blob, + #[serde(rename = "CALLDATA")] + Calldata, +} + /// L1 handler transaction. #[derive(Debug, Clone, PartialEq, Eq)] pub struct L1HandlerTransaction { @@ -1036,19 +1115,14 @@ pub struct L1HandlerTransactionReceipt { pub transaction_hash: FieldElement, /// The fee that was charged by the sequencer pub actual_fee: FeePayment, - /// Finality status + /// Finality status of the tx pub finality_status: TransactionFinalityStatus, - /// Block hash - pub block_hash: FieldElement, - /// Block number - pub block_number: u64, /// Messages sent pub messages_sent: Vec, /// The events emitted as part of this transaction pub events: Vec, /// The resources consumed by the transaction pub execution_resources: ExecutionResources, - /// Transaction execution result pub execution_result: ExecutionResult, } @@ -1060,6 +1134,8 @@ pub struct L1HandlerTransactionTrace { pub function_invocation: FunctionInvocation, /// The state diffs induced by the transaction pub state_diff: Option, + /// The resources consumed by the transaction, includes both computation and data + pub execution_resources: ExecutionResources, } /// Deprecated cairo entry point. @@ -1277,6 +1353,34 @@ pub struct OrderedMessage { pub payload: Vec, } +/// Pending block with transactions and receipts. +/// +/// The dynamic block being constructed by the sequencer. Note that this object will be deprecated +/// upon decentralization. +#[serde_as] +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] +pub struct PendingBlockWithReceipts { + /// The transactions in this block + pub transactions: Vec, + /// The hash of this block's parent + #[serde_as(as = "UfeHex")] + pub parent_hash: FieldElement, + /// The time in which the block was created, encoded in Unix time + pub timestamp: u64, + /// The Starknet identity of the sequencer submitting this block + #[serde_as(as = "UfeHex")] + pub sequencer_address: FieldElement, + /// The price of L1 gas in the block + pub l1_gas_price: ResourcePrice, + /// The price of L1 data gas in the block + pub l1_data_gas_price: ResourcePrice, + /// Specifies whether the data of this block is published via blob data or calldata + pub l1_da_mode: L1DataAvailabilityMode, + /// Semver of the current Starknet protocol + pub starknet_version: String, +} + /// Pending block with transaction hashes. /// /// The dynamic block being constructed by the sequencer. Note that this object will be deprecated @@ -1298,6 +1402,10 @@ pub struct PendingBlockWithTxHashes { pub sequencer_address: FieldElement, /// The price of L1 gas in the block pub l1_gas_price: ResourcePrice, + /// The price of L1 data gas in the block + pub l1_data_gas_price: ResourcePrice, + /// Specifies whether the data of this block is published via blob data or calldata + pub l1_da_mode: L1DataAvailabilityMode, /// Semver of the current Starknet protocol pub starknet_version: String, } @@ -1322,84 +1430,14 @@ pub struct PendingBlockWithTxs { pub sequencer_address: FieldElement, /// The price of L1 gas in the block pub l1_gas_price: ResourcePrice, + /// The price of L1 data gas in the block + pub l1_data_gas_price: ResourcePrice, + /// Specifies whether the data of this block is published via blob data or calldata + pub l1_da_mode: L1DataAvailabilityMode, /// Semver of the current Starknet protocol pub starknet_version: String, } -/// Declare transaction receipt. -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct PendingDeclareTransactionReceipt { - /// The hash identifying the transaction - pub transaction_hash: FieldElement, - /// The fee that was charged by the sequencer - pub actual_fee: FeePayment, - /// Messages sent - pub messages_sent: Vec, - /// The events emitted as part of this transaction - pub events: Vec, - /// The resources consumed by the transaction - pub execution_resources: ExecutionResources, - /// Transaction execution result - pub execution_result: ExecutionResult, -} - -/// Deploy account transaction receipt. -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct PendingDeployAccountTransactionReceipt { - /// The hash identifying the transaction - pub transaction_hash: FieldElement, - /// The fee that was charged by the sequencer - pub actual_fee: FeePayment, - /// Messages sent - pub messages_sent: Vec, - /// The events emitted as part of this transaction - pub events: Vec, - /// The resources consumed by the transaction - pub execution_resources: ExecutionResources, - /// Transaction execution result - pub execution_result: ExecutionResult, - /// The address of the deployed contract - pub contract_address: FieldElement, -} - -/// Invoke transaction receipt. -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct PendingInvokeTransactionReceipt { - /// The hash identifying the transaction - pub transaction_hash: FieldElement, - /// The fee that was charged by the sequencer - pub actual_fee: FeePayment, - /// Messages sent - pub messages_sent: Vec, - /// The events emitted as part of this transaction - pub events: Vec, - /// The resources consumed by the transaction - pub execution_resources: ExecutionResources, - /// Transaction execution result - pub execution_result: ExecutionResult, -} - -/// L1 handler transaction receipt. -/// -/// Receipt for L1 handler transaction. -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct PendingL1HandlerTransactionReceipt { - /// The message hash as it appears on the L1 core contract - pub message_hash: Hash256, - /// The hash identifying the transaction - pub transaction_hash: FieldElement, - /// The fee that was charged by the sequencer - pub actual_fee: FeePayment, - /// Messages sent - pub messages_sent: Vec, - /// The events emitted as part of this transaction - pub events: Vec, - /// The resources consumed by the transaction - pub execution_resources: ExecutionResources, - /// Transaction execution result - pub execution_result: ExecutionResult, -} - /// Pending state update. /// /// Pending state update. @@ -1781,6 +1819,15 @@ pub enum TransactionFinalityStatus { AcceptedOnL1, } +/// Transaction receipt with block info. +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +pub struct TransactionReceiptWithBlockInfo { + #[serde(flatten)] + pub receipt: TransactionReceipt, + #[serde(flatten)] + pub block: ReceiptBlock, +} + /// A single pair of transaction hash and corresponding trace. #[serde_as] #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] @@ -1791,6 +1838,16 @@ pub struct TransactionTraceWithHash { pub trace_root: TransactionTrace, } +/// Transaction and receipt. +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] +pub struct TransactionWithReceipt { + /// Transaction + pub transaction: Transaction, + /// Receipt + pub receipt: TransactionReceipt, +} + /// Request for method starknet_addDeclareTransaction #[derive(Debug, Clone, PartialEq, Eq)] pub struct AddDeclareTransactionRequest { @@ -1907,6 +1964,19 @@ pub struct GetBlockTransactionCountRequestRef<'a> { pub block_id: &'a BlockId, } +/// Request for method starknet_getBlockWithReceipts +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct GetBlockWithReceiptsRequest { + /// The hash of the requested block, or number (height) of the requested block, or a block tag + pub block_id: BlockId, +} + +/// Reference version of [GetBlockWithReceiptsRequest]. +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct GetBlockWithReceiptsRequestRef<'a> { + pub block_id: &'a BlockId, +} + /// Request for method starknet_getBlockWithTxHashes #[derive(Debug, Clone, PartialEq, Eq)] pub struct GetBlockWithTxHashesRequest { @@ -2869,9 +2939,6 @@ impl Serialize for DeclareTransactionReceipt { pub transaction_hash: &'a FieldElement, pub actual_fee: &'a FeePayment, pub finality_status: &'a TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: &'a FieldElement, - pub block_number: &'a u64, pub messages_sent: &'a [MsgToL1], pub events: &'a [Event], pub execution_resources: &'a ExecutionResources, @@ -2886,8 +2953,6 @@ impl Serialize for DeclareTransactionReceipt { transaction_hash: &self.transaction_hash, actual_fee: &self.actual_fee, finality_status: &self.finality_status, - block_hash: &self.block_hash, - block_number: &self.block_number, messages_sent: &self.messages_sent, events: &self.events, execution_resources: &self.execution_resources, @@ -2902,16 +2967,12 @@ impl<'de> Deserialize<'de> for DeclareTransactionReceipt { fn deserialize>(deserializer: D) -> Result { #[serde_as] #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] struct Tagged { pub r#type: Option, #[serde_as(as = "UfeHex")] pub transaction_hash: FieldElement, pub actual_fee: FeePayment, pub finality_status: TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: FieldElement, - pub block_number: u64, pub messages_sent: Vec, pub events: Vec, pub execution_resources: ExecutionResources, @@ -2931,8 +2992,6 @@ impl<'de> Deserialize<'de> for DeclareTransactionReceipt { transaction_hash: tagged.transaction_hash, actual_fee: tagged.actual_fee, finality_status: tagged.finality_status, - block_hash: tagged.block_hash, - block_number: tagged.block_number, messages_sent: tagged.messages_sent, events: tagged.events, execution_resources: tagged.execution_resources, @@ -2951,6 +3010,7 @@ impl Serialize for DeclareTransactionTrace { pub fee_transfer_invocation: &'a Option, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: &'a Option, + pub execution_resources: &'a ExecutionResources, pub r#type: &'a str, } @@ -2960,6 +3020,7 @@ impl Serialize for DeclareTransactionTrace { validate_invocation: &self.validate_invocation, fee_transfer_invocation: &self.fee_transfer_invocation, state_diff: &self.state_diff, + execution_resources: &self.execution_resources, r#type, }; @@ -2978,6 +3039,7 @@ impl<'de> Deserialize<'de> for DeclareTransactionTrace { pub fee_transfer_invocation: Option, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: Option, + pub execution_resources: ExecutionResources, pub r#type: Option, } @@ -2993,6 +3055,7 @@ impl<'de> Deserialize<'de> for DeclareTransactionTrace { validate_invocation: tagged.validate_invocation, fee_transfer_invocation: tagged.fee_transfer_invocation, state_diff: tagged.state_diff, + execution_resources: tagged.execution_resources, }) } } @@ -3392,9 +3455,6 @@ impl Serialize for DeployAccountTransactionReceipt { pub transaction_hash: &'a FieldElement, pub actual_fee: &'a FeePayment, pub finality_status: &'a TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: &'a FieldElement, - pub block_number: &'a u64, pub messages_sent: &'a [MsgToL1], pub events: &'a [Event], pub execution_resources: &'a ExecutionResources, @@ -3411,8 +3471,6 @@ impl Serialize for DeployAccountTransactionReceipt { transaction_hash: &self.transaction_hash, actual_fee: &self.actual_fee, finality_status: &self.finality_status, - block_hash: &self.block_hash, - block_number: &self.block_number, messages_sent: &self.messages_sent, events: &self.events, execution_resources: &self.execution_resources, @@ -3429,15 +3487,11 @@ impl<'de> Deserialize<'de> for DeployAccountTransactionReceipt { fn deserialize>(deserializer: D) -> Result { #[serde_as] #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] struct Tagged { #[serde_as(as = "UfeHex")] pub transaction_hash: FieldElement, pub actual_fee: FeePayment, pub finality_status: TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: FieldElement, - pub block_number: u64, pub messages_sent: Vec, pub events: Vec, pub execution_resources: ExecutionResources, @@ -3460,8 +3514,6 @@ impl<'de> Deserialize<'de> for DeployAccountTransactionReceipt { transaction_hash: tagged.transaction_hash, actual_fee: tagged.actual_fee, finality_status: tagged.finality_status, - block_hash: tagged.block_hash, - block_number: tagged.block_number, messages_sent: tagged.messages_sent, events: tagged.events, execution_resources: tagged.execution_resources, @@ -3482,6 +3534,7 @@ impl Serialize for DeployAccountTransactionTrace { pub fee_transfer_invocation: &'a Option, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: &'a Option, + pub execution_resources: &'a ExecutionResources, pub r#type: &'a str, } @@ -3492,6 +3545,7 @@ impl Serialize for DeployAccountTransactionTrace { constructor_invocation: &self.constructor_invocation, fee_transfer_invocation: &self.fee_transfer_invocation, state_diff: &self.state_diff, + execution_resources: &self.execution_resources, r#type, }; @@ -3511,6 +3565,7 @@ impl<'de> Deserialize<'de> for DeployAccountTransactionTrace { pub fee_transfer_invocation: Option, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: Option, + pub execution_resources: ExecutionResources, pub r#type: Option, } @@ -3527,6 +3582,7 @@ impl<'de> Deserialize<'de> for DeployAccountTransactionTrace { constructor_invocation: tagged.constructor_invocation, fee_transfer_invocation: tagged.fee_transfer_invocation, state_diff: tagged.state_diff, + execution_resources: tagged.execution_resources, }) } } @@ -3818,9 +3874,6 @@ impl Serialize for DeployTransactionReceipt { pub transaction_hash: &'a FieldElement, pub actual_fee: &'a FeePayment, pub finality_status: &'a TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: &'a FieldElement, - pub block_number: &'a u64, pub messages_sent: &'a [MsgToL1], pub events: &'a [Event], pub execution_resources: &'a ExecutionResources, @@ -3837,8 +3890,6 @@ impl Serialize for DeployTransactionReceipt { transaction_hash: &self.transaction_hash, actual_fee: &self.actual_fee, finality_status: &self.finality_status, - block_hash: &self.block_hash, - block_number: &self.block_number, messages_sent: &self.messages_sent, events: &self.events, execution_resources: &self.execution_resources, @@ -3855,15 +3906,11 @@ impl<'de> Deserialize<'de> for DeployTransactionReceipt { fn deserialize>(deserializer: D) -> Result { #[serde_as] #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] struct Tagged { #[serde_as(as = "UfeHex")] pub transaction_hash: FieldElement, pub actual_fee: FeePayment, pub finality_status: TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: FieldElement, - pub block_number: u64, pub messages_sent: Vec, pub events: Vec, pub execution_resources: ExecutionResources, @@ -3886,8 +3933,6 @@ impl<'de> Deserialize<'de> for DeployTransactionReceipt { transaction_hash: tagged.transaction_hash, actual_fee: tagged.actual_fee, finality_status: tagged.finality_status, - block_hash: tagged.block_hash, - block_number: tagged.block_number, messages_sent: tagged.messages_sent, events: tagged.events, execution_resources: tagged.execution_resources, @@ -3907,9 +3952,6 @@ impl Serialize for InvokeTransactionReceipt { pub transaction_hash: &'a FieldElement, pub actual_fee: &'a FeePayment, pub finality_status: &'a TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: &'a FieldElement, - pub block_number: &'a u64, pub messages_sent: &'a [MsgToL1], pub events: &'a [Event], pub execution_resources: &'a ExecutionResources, @@ -3924,8 +3966,6 @@ impl Serialize for InvokeTransactionReceipt { transaction_hash: &self.transaction_hash, actual_fee: &self.actual_fee, finality_status: &self.finality_status, - block_hash: &self.block_hash, - block_number: &self.block_number, messages_sent: &self.messages_sent, events: &self.events, execution_resources: &self.execution_resources, @@ -3940,16 +3980,12 @@ impl<'de> Deserialize<'de> for InvokeTransactionReceipt { fn deserialize>(deserializer: D) -> Result { #[serde_as] #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] struct Tagged { pub r#type: Option, #[serde_as(as = "UfeHex")] pub transaction_hash: FieldElement, pub actual_fee: FeePayment, pub finality_status: TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: FieldElement, - pub block_number: u64, pub messages_sent: Vec, pub events: Vec, pub execution_resources: ExecutionResources, @@ -3969,8 +4005,6 @@ impl<'de> Deserialize<'de> for InvokeTransactionReceipt { transaction_hash: tagged.transaction_hash, actual_fee: tagged.actual_fee, finality_status: tagged.finality_status, - block_hash: tagged.block_hash, - block_number: tagged.block_number, messages_sent: tagged.messages_sent, events: tagged.events, execution_resources: tagged.execution_resources, @@ -3990,6 +4024,7 @@ impl Serialize for InvokeTransactionTrace { pub fee_transfer_invocation: &'a Option, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: &'a Option, + pub execution_resources: &'a ExecutionResources, pub r#type: &'a str, } @@ -4000,6 +4035,7 @@ impl Serialize for InvokeTransactionTrace { execute_invocation: &self.execute_invocation, fee_transfer_invocation: &self.fee_transfer_invocation, state_diff: &self.state_diff, + execution_resources: &self.execution_resources, r#type, }; @@ -4019,6 +4055,7 @@ impl<'de> Deserialize<'de> for InvokeTransactionTrace { pub fee_transfer_invocation: Option, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: Option, + pub execution_resources: ExecutionResources, pub r#type: Option, } @@ -4035,6 +4072,7 @@ impl<'de> Deserialize<'de> for InvokeTransactionTrace { execute_invocation: tagged.execute_invocation, fee_transfer_invocation: tagged.fee_transfer_invocation, state_diff: tagged.state_diff, + execution_resources: tagged.execution_resources, }) } } @@ -4417,9 +4455,6 @@ impl Serialize for L1HandlerTransactionReceipt { pub transaction_hash: &'a FieldElement, pub actual_fee: &'a FeePayment, pub finality_status: &'a TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: &'a FieldElement, - pub block_number: &'a u64, pub messages_sent: &'a [MsgToL1], pub events: &'a [Event], pub execution_resources: &'a ExecutionResources, @@ -4435,8 +4470,6 @@ impl Serialize for L1HandlerTransactionReceipt { transaction_hash: &self.transaction_hash, actual_fee: &self.actual_fee, finality_status: &self.finality_status, - block_hash: &self.block_hash, - block_number: &self.block_number, messages_sent: &self.messages_sent, events: &self.events, execution_resources: &self.execution_resources, @@ -4451,7 +4484,6 @@ impl<'de> Deserialize<'de> for L1HandlerTransactionReceipt { fn deserialize>(deserializer: D) -> Result { #[serde_as] #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] struct Tagged { pub r#type: Option, pub message_hash: Hash256, @@ -4459,9 +4491,6 @@ impl<'de> Deserialize<'de> for L1HandlerTransactionReceipt { pub transaction_hash: FieldElement, pub actual_fee: FeePayment, pub finality_status: TransactionFinalityStatus, - #[serde_as(as = "UfeHex")] - pub block_hash: FieldElement, - pub block_number: u64, pub messages_sent: Vec, pub events: Vec, pub execution_resources: ExecutionResources, @@ -4482,8 +4511,6 @@ impl<'de> Deserialize<'de> for L1HandlerTransactionReceipt { transaction_hash: tagged.transaction_hash, actual_fee: tagged.actual_fee, finality_status: tagged.finality_status, - block_hash: tagged.block_hash, - block_number: tagged.block_number, messages_sent: tagged.messages_sent, events: tagged.events, execution_resources: tagged.execution_resources, @@ -4499,6 +4526,7 @@ impl Serialize for L1HandlerTransactionTrace { pub function_invocation: &'a FunctionInvocation, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: &'a Option, + pub execution_resources: &'a ExecutionResources, pub r#type: &'a str, } @@ -4507,6 +4535,7 @@ impl Serialize for L1HandlerTransactionTrace { let tagged = Tagged { function_invocation: &self.function_invocation, state_diff: &self.state_diff, + execution_resources: &self.execution_resources, r#type, }; @@ -4522,6 +4551,7 @@ impl<'de> Deserialize<'de> for L1HandlerTransactionTrace { pub function_invocation: FunctionInvocation, #[serde(skip_serializing_if = "Option::is_none")] pub state_diff: Option, + pub execution_resources: ExecutionResources, pub r#type: Option, } @@ -4536,324 +4566,7 @@ impl<'de> Deserialize<'de> for L1HandlerTransactionTrace { Ok(Self { function_invocation: tagged.function_invocation, state_diff: tagged.state_diff, - }) - } -} - -impl Serialize for PendingDeclareTransactionReceipt { - fn serialize(&self, serializer: S) -> Result { - #[serde_as] - #[derive(Serialize)] - struct Tagged<'a> { - pub r#type: &'a str, - #[serde_as(as = "UfeHex")] - pub transaction_hash: &'a FieldElement, - pub actual_fee: &'a FeePayment, - pub messages_sent: &'a [MsgToL1], - pub events: &'a [Event], - pub finality_status: &'a TransactionFinalityStatus, - pub execution_resources: &'a ExecutionResources, - #[serde(flatten)] - pub execution_result: &'a ExecutionResult, - } - - let r#type = "DECLARE"; - - let finality_status = &TransactionFinalityStatus::AcceptedOnL2; - - let tagged = Tagged { - r#type, - transaction_hash: &self.transaction_hash, - actual_fee: &self.actual_fee, - messages_sent: &self.messages_sent, - events: &self.events, - finality_status, - execution_resources: &self.execution_resources, - execution_result: &self.execution_result, - }; - - Tagged::serialize(&tagged, serializer) - } -} - -impl<'de> Deserialize<'de> for PendingDeclareTransactionReceipt { - fn deserialize>(deserializer: D) -> Result { - #[serde_as] - #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] - struct Tagged { - pub r#type: Option, - #[serde_as(as = "UfeHex")] - pub transaction_hash: FieldElement, - pub actual_fee: FeePayment, - pub messages_sent: Vec, - pub events: Vec, - pub finality_status: TransactionFinalityStatus, - pub execution_resources: ExecutionResources, - #[serde(flatten)] - pub execution_result: ExecutionResult, - } - - let tagged = Tagged::deserialize(deserializer)?; - - if let Some(tag_field) = &tagged.r#type { - if tag_field != "DECLARE" { - return Err(serde::de::Error::custom("invalid `type` value")); - } - } - - if tagged.finality_status != TransactionFinalityStatus::AcceptedOnL2 { - return Err(serde::de::Error::custom("invalid `finality_status` value")); - } - - Ok(Self { - transaction_hash: tagged.transaction_hash, - actual_fee: tagged.actual_fee, - messages_sent: tagged.messages_sent, - events: tagged.events, - execution_resources: tagged.execution_resources, - execution_result: tagged.execution_result, - }) - } -} - -impl Serialize for PendingDeployAccountTransactionReceipt { - fn serialize(&self, serializer: S) -> Result { - #[serde_as] - #[derive(Serialize)] - struct Tagged<'a> { - #[serde_as(as = "UfeHex")] - pub transaction_hash: &'a FieldElement, - pub actual_fee: &'a FeePayment, - pub messages_sent: &'a [MsgToL1], - pub events: &'a [Event], - pub finality_status: &'a TransactionFinalityStatus, - pub execution_resources: &'a ExecutionResources, - #[serde(flatten)] - pub execution_result: &'a ExecutionResult, - pub r#type: &'a str, - #[serde_as(as = "UfeHex")] - pub contract_address: &'a FieldElement, - } - - let finality_status = &TransactionFinalityStatus::AcceptedOnL2; - - let r#type = "DEPLOY_ACCOUNT"; - - let tagged = Tagged { - transaction_hash: &self.transaction_hash, - actual_fee: &self.actual_fee, - messages_sent: &self.messages_sent, - events: &self.events, - finality_status, - execution_resources: &self.execution_resources, - execution_result: &self.execution_result, - r#type, - contract_address: &self.contract_address, - }; - - Tagged::serialize(&tagged, serializer) - } -} - -impl<'de> Deserialize<'de> for PendingDeployAccountTransactionReceipt { - fn deserialize>(deserializer: D) -> Result { - #[serde_as] - #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] - struct Tagged { - #[serde_as(as = "UfeHex")] - pub transaction_hash: FieldElement, - pub actual_fee: FeePayment, - pub messages_sent: Vec, - pub events: Vec, - pub finality_status: TransactionFinalityStatus, - pub execution_resources: ExecutionResources, - #[serde(flatten)] - pub execution_result: ExecutionResult, - pub r#type: Option, - #[serde_as(as = "UfeHex")] - pub contract_address: FieldElement, - } - - let tagged = Tagged::deserialize(deserializer)?; - - if tagged.finality_status != TransactionFinalityStatus::AcceptedOnL2 { - return Err(serde::de::Error::custom("invalid `finality_status` value")); - } - - if let Some(tag_field) = &tagged.r#type { - if tag_field != "DEPLOY_ACCOUNT" { - return Err(serde::de::Error::custom("invalid `type` value")); - } - } - - Ok(Self { - transaction_hash: tagged.transaction_hash, - actual_fee: tagged.actual_fee, - messages_sent: tagged.messages_sent, - events: tagged.events, execution_resources: tagged.execution_resources, - execution_result: tagged.execution_result, - contract_address: tagged.contract_address, - }) - } -} - -impl Serialize for PendingInvokeTransactionReceipt { - fn serialize(&self, serializer: S) -> Result { - #[serde_as] - #[derive(Serialize)] - struct Tagged<'a> { - pub r#type: &'a str, - #[serde_as(as = "UfeHex")] - pub transaction_hash: &'a FieldElement, - pub actual_fee: &'a FeePayment, - pub messages_sent: &'a [MsgToL1], - pub events: &'a [Event], - pub finality_status: &'a TransactionFinalityStatus, - pub execution_resources: &'a ExecutionResources, - #[serde(flatten)] - pub execution_result: &'a ExecutionResult, - } - - let r#type = "INVOKE"; - - let finality_status = &TransactionFinalityStatus::AcceptedOnL2; - - let tagged = Tagged { - r#type, - transaction_hash: &self.transaction_hash, - actual_fee: &self.actual_fee, - messages_sent: &self.messages_sent, - events: &self.events, - finality_status, - execution_resources: &self.execution_resources, - execution_result: &self.execution_result, - }; - - Tagged::serialize(&tagged, serializer) - } -} - -impl<'de> Deserialize<'de> for PendingInvokeTransactionReceipt { - fn deserialize>(deserializer: D) -> Result { - #[serde_as] - #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] - struct Tagged { - pub r#type: Option, - #[serde_as(as = "UfeHex")] - pub transaction_hash: FieldElement, - pub actual_fee: FeePayment, - pub messages_sent: Vec, - pub events: Vec, - pub finality_status: TransactionFinalityStatus, - pub execution_resources: ExecutionResources, - #[serde(flatten)] - pub execution_result: ExecutionResult, - } - - let tagged = Tagged::deserialize(deserializer)?; - - if let Some(tag_field) = &tagged.r#type { - if tag_field != "INVOKE" { - return Err(serde::de::Error::custom("invalid `type` value")); - } - } - - if tagged.finality_status != TransactionFinalityStatus::AcceptedOnL2 { - return Err(serde::de::Error::custom("invalid `finality_status` value")); - } - - Ok(Self { - transaction_hash: tagged.transaction_hash, - actual_fee: tagged.actual_fee, - messages_sent: tagged.messages_sent, - events: tagged.events, - execution_resources: tagged.execution_resources, - execution_result: tagged.execution_result, - }) - } -} - -impl Serialize for PendingL1HandlerTransactionReceipt { - fn serialize(&self, serializer: S) -> Result { - #[serde_as] - #[derive(Serialize)] - struct Tagged<'a> { - pub r#type: &'a str, - pub message_hash: &'a Hash256, - #[serde_as(as = "UfeHex")] - pub transaction_hash: &'a FieldElement, - pub actual_fee: &'a FeePayment, - pub messages_sent: &'a [MsgToL1], - pub events: &'a [Event], - pub finality_status: &'a TransactionFinalityStatus, - pub execution_resources: &'a ExecutionResources, - #[serde(flatten)] - pub execution_result: &'a ExecutionResult, - } - - let r#type = "L1_HANDLER"; - - let finality_status = &TransactionFinalityStatus::AcceptedOnL2; - - let tagged = Tagged { - r#type, - message_hash: &self.message_hash, - transaction_hash: &self.transaction_hash, - actual_fee: &self.actual_fee, - messages_sent: &self.messages_sent, - events: &self.events, - finality_status, - execution_resources: &self.execution_resources, - execution_result: &self.execution_result, - }; - - Tagged::serialize(&tagged, serializer) - } -} - -impl<'de> Deserialize<'de> for PendingL1HandlerTransactionReceipt { - fn deserialize>(deserializer: D) -> Result { - #[serde_as] - #[derive(Deserialize)] - #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] - struct Tagged { - pub r#type: Option, - pub message_hash: Hash256, - #[serde_as(as = "UfeHex")] - pub transaction_hash: FieldElement, - pub actual_fee: FeePayment, - pub messages_sent: Vec, - pub events: Vec, - pub finality_status: TransactionFinalityStatus, - pub execution_resources: ExecutionResources, - #[serde(flatten)] - pub execution_result: ExecutionResult, - } - - let tagged = Tagged::deserialize(deserializer)?; - - if let Some(tag_field) = &tagged.r#type { - if tag_field != "L1_HANDLER" { - return Err(serde::de::Error::custom("invalid `type` value")); - } - } - - if tagged.finality_status != TransactionFinalityStatus::AcceptedOnL2 { - return Err(serde::de::Error::custom("invalid `finality_status` value")); - } - - Ok(Self { - message_hash: tagged.message_hash, - transaction_hash: tagged.transaction_hash, - actual_fee: tagged.actual_fee, - messages_sent: tagged.messages_sent, - events: tagged.events, - execution_resources: tagged.execution_resources, - execution_result: tagged.execution_result, }) } } @@ -5586,6 +5299,83 @@ impl<'de> Deserialize<'de> for GetBlockTransactionCountRequest { } } +impl Serialize for GetBlockWithReceiptsRequest { + fn serialize(&self, serializer: S) -> Result { + #[derive(Serialize)] + #[serde(transparent)] + struct Field0<'a> { + pub block_id: &'a BlockId, + } + + use serde::ser::SerializeSeq; + + let mut seq = serializer.serialize_seq(None)?; + + seq.serialize_element(&Field0 { + block_id: &self.block_id, + })?; + + seq.end() + } +} + +impl<'a> Serialize for GetBlockWithReceiptsRequestRef<'a> { + fn serialize(&self, serializer: S) -> Result { + #[derive(Serialize)] + #[serde(transparent)] + struct Field0<'a> { + pub block_id: &'a BlockId, + } + + use serde::ser::SerializeSeq; + + let mut seq = serializer.serialize_seq(None)?; + + seq.serialize_element(&Field0 { + block_id: self.block_id, + })?; + + seq.end() + } +} + +impl<'de> Deserialize<'de> for GetBlockWithReceiptsRequest { + fn deserialize>(deserializer: D) -> Result { + #[serde_as] + #[derive(Deserialize)] + struct AsObject { + pub block_id: BlockId, + } + + #[derive(Deserialize)] + #[serde(transparent)] + struct Field0 { + pub block_id: BlockId, + } + + let temp = serde_json::Value::deserialize(deserializer)?; + + if let Ok(mut elements) = Vec::::deserialize(&temp) { + let field0 = serde_json::from_value::( + elements + .pop() + .ok_or_else(|| serde::de::Error::custom("invalid sequence length"))?, + ) + .map_err(|err| serde::de::Error::custom(format!("failed to parse element: {}", err)))?; + + Ok(Self { + block_id: field0.block_id, + }) + } else if let Ok(object) = AsObject::deserialize(&temp) { + Ok(Self { + block_id: object.block_id, + }) + } else { + Err(serde::de::Error::custom("invalid sequence length")) + } + } +} + impl Serialize for GetBlockWithTxHashesRequest { fn serialize(&self, serializer: S) -> Result { #[derive(Serialize)] diff --git a/starknet-core/src/types/mod.rs b/starknet-core/src/types/mod.rs index a0fd44c0..28a526a9 100644 --- a/starknet-core/src/types/mod.rs +++ b/starknet-core/src/types/mod.rs @@ -14,31 +14,31 @@ mod serde_impls; // TODO: better namespacing of exports? mod codegen; pub use codegen::{ - BlockStatus, BlockTag, BlockWithTxHashes, BlockWithTxs, BroadcastedDeclareTransactionV1, - BroadcastedDeclareTransactionV2, BroadcastedDeclareTransactionV3, - BroadcastedDeployAccountTransactionV1, BroadcastedDeployAccountTransactionV3, - BroadcastedInvokeTransactionV1, BroadcastedInvokeTransactionV3, CallType, - CompressedLegacyContractClass, ContractErrorData, ContractStorageDiffItem, - DataAvailabilityMode, DeclareTransactionReceipt, DeclareTransactionTrace, DeclareTransactionV0, + BlockStatus, BlockTag, BlockWithReceipts, BlockWithTxHashes, BlockWithTxs, + BroadcastedDeclareTransactionV1, BroadcastedDeclareTransactionV2, + BroadcastedDeclareTransactionV3, BroadcastedDeployAccountTransactionV1, + BroadcastedDeployAccountTransactionV3, BroadcastedInvokeTransactionV1, + BroadcastedInvokeTransactionV3, CallType, CompressedLegacyContractClass, ComputationResources, + ContractErrorData, ContractStorageDiffItem, DataAvailabilityMode, DataAvailabilityResources, + DataResources, DeclareTransactionReceipt, DeclareTransactionTrace, DeclareTransactionV0, DeclareTransactionV1, DeclareTransactionV2, DeclareTransactionV3, DeclaredClassItem, DeployAccountTransactionReceipt, DeployAccountTransactionTrace, DeployAccountTransactionV1, DeployAccountTransactionV3, DeployTransaction, DeployTransactionReceipt, DeployedContractItem, EmittedEvent, EntryPointType, EntryPointsByType, Event, EventFilter, EventFilterWithPage, EventsChunk, ExecutionResources, FeeEstimate, FeePayment, FlattenedSierraClass, FunctionCall, FunctionInvocation, FunctionStateMutability, InvokeTransactionReceipt, InvokeTransactionTrace, - InvokeTransactionV0, InvokeTransactionV1, InvokeTransactionV3, L1HandlerTransaction, - L1HandlerTransactionReceipt, L1HandlerTransactionTrace, LegacyContractEntryPoint, - LegacyEntryPointsByType, LegacyEventAbiEntry, LegacyEventAbiType, LegacyFunctionAbiEntry, - LegacyFunctionAbiType, LegacyStructAbiEntry, LegacyStructAbiType, LegacyStructMember, - LegacyTypedParameter, MsgFromL1, MsgToL1, NoTraceAvailableErrorData, NonceUpdate, OrderedEvent, - OrderedMessage, PendingBlockWithTxHashes, PendingBlockWithTxs, - PendingDeclareTransactionReceipt, PendingDeployAccountTransactionReceipt, - PendingInvokeTransactionReceipt, PendingL1HandlerTransactionReceipt, PendingStateUpdate, - PriceUnit, ReplacedClassItem, ResourceBounds, ResourceBoundsMapping, ResourcePrice, - ResultPageRequest, RevertedInvocation, SequencerTransactionStatus, SierraEntryPoint, - SimulatedTransaction, SimulationFlag, SimulationFlagForEstimateFee, StarknetError, StateDiff, - StateUpdate, StorageEntry, SyncStatus, TransactionExecutionErrorData, - TransactionExecutionStatus, TransactionFinalityStatus, TransactionTraceWithHash, + InvokeTransactionV0, InvokeTransactionV1, InvokeTransactionV3, L1DataAvailabilityMode, + L1HandlerTransaction, L1HandlerTransactionReceipt, L1HandlerTransactionTrace, + LegacyContractEntryPoint, LegacyEntryPointsByType, LegacyEventAbiEntry, LegacyEventAbiType, + LegacyFunctionAbiEntry, LegacyFunctionAbiType, LegacyStructAbiEntry, LegacyStructAbiType, + LegacyStructMember, LegacyTypedParameter, MsgFromL1, MsgToL1, NoTraceAvailableErrorData, + NonceUpdate, OrderedEvent, OrderedMessage, PendingBlockWithReceipts, PendingBlockWithTxHashes, + PendingBlockWithTxs, PendingStateUpdate, PriceUnit, ReplacedClassItem, ResourceBounds, + ResourceBoundsMapping, ResourcePrice, ResultPageRequest, RevertedInvocation, + SequencerTransactionStatus, SierraEntryPoint, SimulatedTransaction, SimulationFlag, + SimulationFlagForEstimateFee, StarknetError, StateDiff, StateUpdate, StorageEntry, SyncStatus, + TransactionExecutionErrorData, TransactionExecutionStatus, TransactionFinalityStatus, + TransactionReceiptWithBlockInfo, TransactionTraceWithHash, TransactionWithReceipt, }; pub mod eth_address; @@ -50,6 +50,9 @@ pub use hash_256::Hash256; mod execution_result; pub use execution_result::ExecutionResult; +mod receipt_block; +pub use receipt_block::ReceiptBlock; + mod msg; pub use msg::MsgToL2; @@ -75,9 +78,9 @@ pub enum MaybePendingBlockWithTxs { #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] #[serde(untagged)] -pub enum MaybePendingTransactionReceipt { - Receipt(TransactionReceipt), - PendingReceipt(PendingTransactionReceipt), +pub enum MaybePendingBlockWithReceipts { + Block(BlockWithReceipts), + PendingBlock(PendingBlockWithReceipts), } #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] @@ -272,19 +275,6 @@ pub enum TransactionReceipt { DeployAccount(DeployAccountTransactionReceipt), } -#[derive(Debug, Clone, PartialEq, Eq, Deserialize)] -#[serde(tag = "type")] -pub enum PendingTransactionReceipt { - #[serde(rename = "INVOKE")] - Invoke(PendingInvokeTransactionReceipt), - #[serde(rename = "L1_HANDLER")] - L1Handler(PendingL1HandlerTransactionReceipt), - #[serde(rename = "DECLARE")] - Declare(PendingDeclareTransactionReceipt), - #[serde(rename = "DEPLOY_ACCOUNT")] - DeployAccount(PendingDeployAccountTransactionReceipt), -} - #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] #[serde(untagged)] pub enum LegacyContractAbiEntry { @@ -361,6 +351,15 @@ impl MaybePendingBlockWithTxs { } } +impl MaybePendingBlockWithReceipts { + pub fn transactions(&self) -> &[TransactionWithReceipt] { + match self { + MaybePendingBlockWithReceipts::Block(block) => &block.transactions, + MaybePendingBlockWithReceipts::PendingBlock(block) => &block.transactions, + } + } +} + impl TransactionStatus { pub fn finality_status(&self) -> SequencerTransactionStatus { match self { @@ -414,29 +413,6 @@ impl DeployAccountTransaction { } } -impl MaybePendingTransactionReceipt { - pub fn transaction_hash(&self) -> &FieldElement { - match self { - MaybePendingTransactionReceipt::Receipt(receipt) => receipt.transaction_hash(), - MaybePendingTransactionReceipt::PendingReceipt(receipt) => receipt.transaction_hash(), - } - } - - pub fn finality_status(&self) -> &TransactionFinalityStatus { - match self { - MaybePendingTransactionReceipt::Receipt(receipt) => receipt.finality_status(), - MaybePendingTransactionReceipt::PendingReceipt(receipt) => receipt.finality_status(), - } - } - - pub fn execution_result(&self) -> &ExecutionResult { - match self { - MaybePendingTransactionReceipt::Receipt(receipt) => receipt.execution_result(), - MaybePendingTransactionReceipt::PendingReceipt(receipt) => receipt.execution_result(), - } - } -} - impl TransactionReceipt { pub fn transaction_hash(&self) -> &FieldElement { match self { @@ -469,30 +445,6 @@ impl TransactionReceipt { } } -impl PendingTransactionReceipt { - pub fn transaction_hash(&self) -> &FieldElement { - match self { - PendingTransactionReceipt::Invoke(receipt) => &receipt.transaction_hash, - PendingTransactionReceipt::L1Handler(receipt) => &receipt.transaction_hash, - PendingTransactionReceipt::Declare(receipt) => &receipt.transaction_hash, - PendingTransactionReceipt::DeployAccount(receipt) => &receipt.transaction_hash, - } - } - - pub fn finality_status(&self) -> &TransactionFinalityStatus { - &TransactionFinalityStatus::AcceptedOnL2 - } - - pub fn execution_result(&self) -> &ExecutionResult { - match self { - PendingTransactionReceipt::Invoke(receipt) => &receipt.execution_result, - PendingTransactionReceipt::L1Handler(receipt) => &receipt.execution_result, - PendingTransactionReceipt::Declare(receipt) => &receipt.execution_result, - PendingTransactionReceipt::DeployAccount(receipt) => &receipt.execution_result, - } - } -} - impl L1HandlerTransaction { pub fn parse_msg_to_l2(&self) -> Result { self.calldata.split_first().map_or( diff --git a/starknet-core/src/types/receipt_block.rs b/starknet-core/src/types/receipt_block.rs new file mode 100644 index 00000000..56bd1ba5 --- /dev/null +++ b/starknet-core/src/types/receipt_block.rs @@ -0,0 +1,119 @@ +use serde::{Deserialize, Serialize}; +use serde_with::serde_as; + +use crate::types::FieldElement; + +/// A more idiomatic way to access `execution_status` and `revert_reason`. +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum ReceiptBlock { + Pending, + Block { + block_hash: FieldElement, + block_number: u64, + }, +} + +impl ReceiptBlock { + /// Returns `true` if and only if it's the `Pending` variant. + pub fn is_pending(&self) -> bool { + match self { + ReceiptBlock::Pending => true, + ReceiptBlock::Block { .. } => false, + } + } + + /// Returns `true` if and only if it's the `Block` variant. + pub fn is_block(&self) -> bool { + match self { + ReceiptBlock::Pending => false, + ReceiptBlock::Block { .. } => true, + } + } + + /// Returns `None` if block is not `Block`. + /// + /// A more idiomatic way of accessing the block hash is to match the `Block` enum variant. + pub fn block_hash(&self) -> Option { + match self { + ReceiptBlock::Pending => None, + ReceiptBlock::Block { block_hash, .. } => Some(*block_hash), + } + } + + /// Returns `None` if block is not `Block`. + /// + /// A more idiomatic way of accessing the block number is to match the `Block` enum variant. + pub fn block_number(&self) -> Option { + match self { + ReceiptBlock::Pending => None, + ReceiptBlock::Block { block_number, .. } => Some(*block_number), + } + } +} + +impl Serialize for ReceiptBlock { + fn serialize(&self, serializer: S) -> Result + where + S: serde::Serializer, + { + #[derive(Serialize)] + #[serde_as] + struct Raw<'a> { + #[serde_as(as = "Option")] + #[serde(skip_serializing_if = "Option::is_none")] + block_hash: Option<&'a FieldElement>, + #[serde(skip_serializing_if = "Option::is_none")] + block_number: Option<&'a u64>, + } + + let raw = match self { + Self::Pending => Raw { + block_hash: None, + block_number: None, + }, + Self::Block { + block_hash, + block_number, + } => Raw { + block_hash: Some(block_hash), + block_number: Some(block_number), + }, + }; + + Raw::serialize(&raw, serializer) + } +} + +impl<'de> Deserialize<'de> for ReceiptBlock { + fn deserialize(deserializer: D) -> Result + where + D: serde::Deserializer<'de>, + { + #[derive(Deserialize)] + #[serde_as] + #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] + struct Raw { + #[serde_as(as = "Option")] + #[serde(skip_serializing_if = "Option::is_none")] + block_hash: Option, + #[serde(skip_serializing_if = "Option::is_none")] + block_number: Option, + } + + let raw = Raw::deserialize(deserializer)?; + + match (raw.block_hash, raw.block_number) { + (Some(block_hash), Some(block_number)) => Ok(Self::Block { + block_hash, + block_number, + }), + (None, None) => Ok(Self::Pending), + (Some(_), None) => Err(serde::de::Error::custom( + "field `block_hash` must not exist when `block_number` is missing", + )), + (None, Some(_)) => Err(serde::de::Error::custom( + "field `block_number` must not exist when `block_hash` is missing", + )), + } + } +} diff --git a/starknet-core/src/types/requests.rs b/starknet-core/src/types/requests.rs index 324b9421..d327e976 100644 --- a/starknet-core/src/types/requests.rs +++ b/starknet-core/src/types/requests.rs @@ -5,15 +5,16 @@ pub use super::codegen::{ BlockNumberRequest, CallRequest, CallRequestRef, ChainIdRequest, EstimateFeeRequest, EstimateFeeRequestRef, EstimateMessageFeeRequest, EstimateMessageFeeRequestRef, GetBlockTransactionCountRequest, GetBlockTransactionCountRequestRef, - GetBlockWithTxHashesRequest, GetBlockWithTxHashesRequestRef, GetBlockWithTxsRequest, - GetBlockWithTxsRequestRef, GetClassAtRequest, GetClassAtRequestRef, GetClassHashAtRequest, - GetClassHashAtRequestRef, GetClassRequest, GetClassRequestRef, GetEventsRequest, - GetEventsRequestRef, GetNonceRequest, GetNonceRequestRef, GetStateUpdateRequest, - GetStateUpdateRequestRef, GetStorageAtRequest, GetStorageAtRequestRef, - GetTransactionByBlockIdAndIndexRequest, GetTransactionByBlockIdAndIndexRequestRef, - GetTransactionByHashRequest, GetTransactionByHashRequestRef, GetTransactionReceiptRequest, - GetTransactionReceiptRequestRef, GetTransactionStatusRequest, GetTransactionStatusRequestRef, - SimulateTransactionsRequest, SimulateTransactionsRequestRef, SpecVersionRequest, - SyncingRequest, TraceBlockTransactionsRequest, TraceBlockTransactionsRequestRef, - TraceTransactionRequest, TraceTransactionRequestRef, + GetBlockWithReceiptsRequest, GetBlockWithReceiptsRequestRef, GetBlockWithTxHashesRequest, + GetBlockWithTxHashesRequestRef, GetBlockWithTxsRequest, GetBlockWithTxsRequestRef, + GetClassAtRequest, GetClassAtRequestRef, GetClassHashAtRequest, GetClassHashAtRequestRef, + GetClassRequest, GetClassRequestRef, GetEventsRequest, GetEventsRequestRef, GetNonceRequest, + GetNonceRequestRef, GetStateUpdateRequest, GetStateUpdateRequestRef, GetStorageAtRequest, + GetStorageAtRequestRef, GetTransactionByBlockIdAndIndexRequest, + GetTransactionByBlockIdAndIndexRequestRef, GetTransactionByHashRequest, + GetTransactionByHashRequestRef, GetTransactionReceiptRequest, GetTransactionReceiptRequestRef, + GetTransactionStatusRequest, GetTransactionStatusRequestRef, SimulateTransactionsRequest, + SimulateTransactionsRequestRef, SpecVersionRequest, SyncingRequest, + TraceBlockTransactionsRequest, TraceBlockTransactionsRequestRef, TraceTransactionRequest, + TraceTransactionRequestRef, }; diff --git a/starknet-core/src/types/serde_impls.rs b/starknet-core/src/types/serde_impls.rs index 81d98889..589cadb3 100644 --- a/starknet-core/src/types/serde_impls.rs +++ b/starknet-core/src/types/serde_impls.rs @@ -375,17 +375,6 @@ mod enum_ser_impls { } } - impl Serialize for PendingTransactionReceipt { - fn serialize(&self, serializer: S) -> Result { - match self { - Self::Invoke(variant) => variant.serialize(serializer), - Self::L1Handler(variant) => variant.serialize(serializer), - Self::Declare(variant) => variant.serialize(serializer), - Self::DeployAccount(variant) => variant.serialize(serializer), - } - } - } - impl Serialize for TransactionTrace { fn serialize(&self, serializer: S) -> Result { match self { diff --git a/starknet-core/test-data/raw_gateway_responses/generate_responses.sh b/starknet-core/test-data/raw_gateway_responses/generate_responses.sh index c7462bf9..0c88ebe0 100755 --- a/starknet-core/test-data/raw_gateway_responses/generate_responses.sh +++ b/starknet-core/test-data/raw_gateway_responses/generate_responses.sh @@ -11,145 +11,148 @@ mkdir -p ./get_transaction_status/ mkdir -p ./get_transaction_trace/ # ./get_block/1_with_transactions.txt -curl -o ./get_block/1_with_transactions.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=100" +curl -o ./get_block/1_with_transactions.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=100" # ./get_block/2_with_messages.txt -curl -o ./get_block/2_with_messages.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=102" +curl -o ./get_block/2_with_messages.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=25" # ./get_block/3_with_events.txt -curl -o ./get_block/3_with_events.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=70000" +curl -o ./get_block/3_with_events.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=4" # ./get_block/4_pending.txt (non-deterministic) -curl -o ./get_block/4_pending.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=pending" +curl -o ./get_block/4_pending.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=pending" -# NOTE: block with the same criteria not found in goerli-integration yet +# NOTE: block with the same criteria not found in alpha-sepolia yet # ./get_block/5_with_class_hash_and_actual_fee.txt -curl -o ./get_block/5_with_class_hash_and_actual_fee.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=1" +curl -o ./get_block/5_with_class_hash_and_actual_fee.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=1" # ./get_block/6_with_sequencer_address.txt -curl -o ./get_block/6_with_sequencer_address.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=200000" +curl -o ./get_block/6_with_sequencer_address.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=100" # ./get_block/7_with_declare_tx.txt -curl -o ./get_block/7_with_declare_tx.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=209679" +curl -o ./get_block/7_with_declare_tx.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=7" # ./get_block/8_with_starknet_version.txt -curl -o ./get_block/8_with_starknet_version.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=200000" +curl -o ./get_block/8_with_starknet_version.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=100" -# NOTE: block with the same criteria not found in goerli-integration yet +# NOTE: block with the same criteria not found in alpha-sepolia yet # ./get_block/9_with_messages_without_nonce.txt -curl -o ./get_block/9_with_messages_without_nonce.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=1" +curl -o ./get_block/9_with_messages_without_nonce.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=1" # ./get_block/10_with_l1_handler.txt -curl -o ./get_block/10_with_l1_handler.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=77881" +curl -o ./get_block/10_with_l1_handler.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=6" -# NOTE: block with the same criteria not found in goerli-integration yet +# NOTE: block with the same criteria not found in alpha-sepolia yet # ./get_block/11_without_execution_resources.txt -curl -o ./get_block/11_without_execution_resources.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=1" +curl -o ./get_block/11_without_execution_resources.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=1" -# NOTE: block with the same criteria not found in goerli-integration yet +# NOTE: block with the same criteria not found in alpha-sepolia yet # ./get_block/12_l1_handler_without_nonce.txt curl -o ./get_block/12_l1_handler_without_nonce.txt "https://alpha-mainnet.starknet.io/feeder_gateway/get_block?blockNumber=1" -# NOTE: block with the same criteria not found in goerli-integration yet +# NOTE: block with the same criteria not found in alpha-sepolia yet # ./get_block/13_without_entry_point.txt -curl -o ./get_block/13_without_entry_point.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=1" +curl -o ./get_block/13_without_entry_point.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=1" # ./get_block/14_deploy_account.txt -curl -o ./get_block/14_deploy_account.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=228457" +curl -o ./get_block/14_deploy_account.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=7" # ./get_block/15_declare_v2.txt -curl -o ./get_block/15_declare_v2.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=283364" +curl -o ./get_block/15_declare_v2.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=7" -# NOTE: block with the same criteria not found in goerli-integration yet +# NOTE: block with the same criteria not found in alpha-sepolia yet # ./get_block/16_with_reverted_tx.txt -curl -o ./get_block/16_with_reverted_tx.txt "https://external.integration.starknet.io/feeder_gateway/get_block?blockNumber=1" +curl -o ./get_block/16_with_reverted_tx.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block?blockNumber=1" # ./get_transaction/1_invoke.txt -curl -o ./get_transaction/1_invoke.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x6c26da8c26aa61dc40ed36b9078536f3b5b0532e884a8f0b7488480580bf3c9" +curl -o ./get_transaction/1_invoke.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0xcc475316c44b764c852e4ce721b15afcc8b9c53a5a54c85020f5dee067b8ce" +# NOTE: transaction with the same criteria not found in alpha-sepolia yet # ./get_transaction/2_deploy.txt -curl -o ./get_transaction/2_deploy.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x2cce6f468d865bf93476c7a96b7ce0ca3d26a6ffbb4ba93a027a67f0d2e2773" +curl -o ./get_transaction/2_deploy.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x1" # ./get_transaction/3_not_received.txt -curl -o ./get_transaction/3_not_received.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" +curl -o ./get_transaction/3_not_received.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" -# NOTE: transaction with the same criteria not found in goerli-integration yet +# NOTE: transaction with the same criteria not found in alpha-sepolia yet # ./get_transaction/4_failure.txt -curl -o ./get_transaction/4_failure.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x1" +curl -o ./get_transaction/4_failure.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x1" # ./get_transaction/5_declare_v1.txt -curl -o ./get_transaction/5_declare_v1.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x42d25cc0876a5885be10d59d9d665821ac17965fcb47dd6c0c633dbcc7c4bb6" +curl -o ./get_transaction/5_declare_v1.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185" # ./get_transaction/6_declare_v2.txt -curl -o ./get_transaction/6_declare_v2.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x722b666ce83ec69c18190aae6149f79e6ad4b9c051b171cc6c309c9e0c28129" +curl -o ./get_transaction/6_declare_v2.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944" -# NOTE: transaction with the same criteria not found in goerli-integration yet +# NOTE: transaction with the same criteria not found in alpha-sepolia yet # ./get_transaction/7_reverted.txt -curl -o ./get_transaction/7_reverted.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x1" +curl -o ./get_transaction/7_reverted.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x1" # ./get_transaction/8_invoke_v3.txt -curl -o ./get_transaction/8_invoke_v3.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x4eaf2732c8459e8de553f50d6aeb989f4b1173a9ff5579a55e8aea8b01d0a44" +curl -o ./get_transaction/8_invoke_v3.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x45cbde9a600beb9beb77a54f16842ba2871a8ead541dd2803c9397e1f097ed4" # ./get_transaction/9_declare_v3.txt -curl -o ./get_transaction/9_declare_v3.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x41d1f5206ef58a443e7d3d1ca073171ec25fa75313394318fc83a074a6631c3" +curl -o ./get_transaction/9_declare_v3.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x54270d103c875a613e013d1fd555edcff2085feca9d7b4532243a8257fd5cf3" # ./get_transaction/10_deploy_account_v3.txt -curl -o ./get_transaction/10_deploy_account_v3.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x29fd7881f14380842414cdfdd8d6c0b1f2174f8916edcfeb1ede1eb26ac3ef0" +curl -o ./get_transaction/10_deploy_account_v3.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction?transactionHash=0x11c67fb3a9a623b3190c9ac41ebf7f5dd421f2583344c498a30a7280c660f01" # ./get_transaction_status/1_accepted.txt -curl -o ./get_transaction_status/1_accepted.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0x6c26da8c26aa61dc40ed36b9078536f3b5b0532e884a8f0b7488480580bf3c9" +curl -o ./get_transaction_status/1_accepted.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0xcc475316c44b764c852e4ce721b15afcc8b9c53a5a54c85020f5dee067b8ce" # ./get_transaction_status/2_not_received.txt -curl -o ./get_transaction_status/2_not_received.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0x7cb73f737a8ea0c5c94d7799c2d01a47c81f4cb34287408741264d3f09655d" +curl -o ./get_transaction_status/2_not_received.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" -# NOTE: transaction with the same criteria not found in goerli-integration yet +# NOTE: transaction with the same criteria not found in alpha-sepolia yet # ./get_transaction_status/3_failure.txt -curl -o ./get_transaction_status/3_failure.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0x1" +curl -o ./get_transaction_status/3_failure.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0x1" -# NOTE: transaction with the same criteria not found in goerli-integration yet +# NOTE: transaction with the same criteria not found in alpha-sepolia yet # ./get_transaction_status/4_reverted.txt -curl -o ./get_transaction_status/4_reverted.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0x1" +curl -o ./get_transaction_status/4_reverted.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_status?transactionHash=0x1" # ./get_state_update/1_success.txt -curl -o ./get_state_update/1_success.txt "https://external.integration.starknet.io/feeder_gateway/get_state_update?blockNumber=70004" +curl -o ./get_state_update/1_success.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=100" # ./get_state_update/2_pending_block.txt (non-deterministic) -curl -o ./get_state_update/2_pending_block.txt "https://external.integration.starknet.io/feeder_gateway/get_state_update?blockNumber=pending" +curl -o ./get_state_update/2_pending_block.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=pending" # ./get_state_update/3_with_declarations.txt -curl -o ./get_state_update/3_with_declarations.txt "https://external.integration.starknet.io/feeder_gateway/get_state_update?blockNumber=283364" +curl -o ./get_state_update/3_with_declarations.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=7" # ./get_state_update/4_with_nonce_changes.txt -curl -o ./get_state_update/4_with_nonce_changes.txt "https://external.integration.starknet.io/feeder_gateway/get_state_update?blockNumber=306608" +curl -o ./get_state_update/4_with_nonce_changes.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=7" # ./get_state_update/5_with_declare_v2.txt -curl -o ./get_state_update/5_with_declare_v2.txt "https://external.integration.starknet.io/feeder_gateway/get_state_update?blockNumber=283364" +curl -o ./get_state_update/5_with_declare_v2.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=7" # ./get_state_update/6_with_replaced_classes.txt -# NOTE: block with the same criteria not found in goerli-integration yet -curl -o ./get_state_update/6_with_replaced_classes.txt "https://external.integration.starknet.io/feeder_gateway/get_state_update?blockNumber=1" +# NOTE: block with the same criteria not found in alpha-sepolia yet +curl -o ./get_state_update/6_with_replaced_classes.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=1" + +# ./get_state_update/7_with_deployed_contracts.txt +curl -o ./get_state_update/7_with_deployed_contracts.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_state_update?blockNumber=7" # ./get_transaction_trace/1_with_messages.txt -curl -o ./get_transaction_trace/1_with_messages.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0xbf7dc15a05a3a20af67cede6d6b01dc51527a66c76d62e65e3786f6859658d" +curl -o ./get_transaction_trace/1_with_messages.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x3ba5c1e16a9b431b7ccae15f2d377539cf3dcefbfe854dd1a7533b8577fae87" # ./get_transaction_trace/2_with_events.txt -curl -o ./get_transaction_trace/2_with_events.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x7d0d0dcc9e8d18a70c7ee767132be57fef01182c5924adeb5796fcbc8bee967" +curl -o ./get_transaction_trace/2_with_events.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x3ba5c1e16a9b431b7ccae15f2d377539cf3dcefbfe854dd1a7533b8577fae87" # ./get_transaction_trace/3_with_call_type.txt -curl -o ./get_transaction_trace/3_with_call_type.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x4eaf2732c8459e8de553f50d6aeb989f4b1173a9ff5579a55e8aea8b01d0a44" +curl -o ./get_transaction_trace/3_with_call_type.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x3ba5c1e16a9b431b7ccae15f2d377539cf3dcefbfe854dd1a7533b8577fae87" -# NOTE: transaction with the same criteria not found in goerli-integration yet # ./get_transaction_trace/4_with_validation.txt -curl -o ./get_transaction_trace/4_with_validation.txt "https://external.integration.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x1" +curl -o ./get_transaction_trace/4_with_validation.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_transaction_trace?transactionHash=0x3ba5c1e16a9b431b7ccae15f2d377539cf3dcefbfe854dd1a7533b8577fae87" # ./get_class_by_hash/1_cairo_0.txt -curl -o ./get_class_by_hash/1_cairo_0.txt "https://external.integration.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x025ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918" +curl -o ./get_class_by_hash/1_cairo_0.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x025ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918" # ./get_class_by_hash/2_not_declared.txt -curl -o ./get_class_by_hash/2_not_declared.txt "https://external.integration.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x111111111111111111111111" +curl -o ./get_class_by_hash/2_not_declared.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x111111111111111111111111" # ./get_class_by_hash/3_cairo_1.txt -curl -o ./get_class_by_hash/3_cairo_1.txt "https://external.integration.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x01a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003" +curl -o ./get_class_by_hash/3_cairo_1.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x01a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003" # ./get_block_traces/1_success.txt -curl -o ./get_block_traces/1_success.txt "https://external.integration.starknet.io/feeder_gateway/get_block_traces?blockNumber=267588" +curl -o ./get_block_traces/1_success.txt "https://alpha-sepolia.starknet.io/feeder_gateway/get_block_traces?blockNumber=100" diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/10_with_l1_handler.txt b/starknet-core/test-data/raw_gateway_responses/get_block/10_with_l1_handler.txt index caf0ce6f..17e66221 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/10_with_l1_handler.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/10_with_l1_handler.txt @@ -1 +1 @@ -{"block_hash": "0x1474d03859dc30b43a447451c17fdee793bda9cb14abeb82d45aca354797a86", "parent_block_hash": "0x22180db9352fe1c389547d5b7b4bc339068a084551b21a90c7224928cde6a97", "block_number": 77881, "state_root": "0x4b59f41718eeeb75576a375393ab2b9ec710bf02721d48fc54a2f36c0afaee1", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x4861a1e73e730dee2108d51e94dac5e24bdfa38d5143e31f2526e1ead8cf755", "version": "0x0", "contract_address": "0x824ecb6cf460f89d415542e90928eaae78cb9353e02c3005c699b77a720c2d", "contract_address_salt": "0xe4518980ea5d9088853bf5298332a33d3358e2535e3992ce6b2393e812dbd2", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x21c8e8c97fab810f6d2d4f36d984718508f8eed337a8b7e7095e16f8c72c4c8", "0x326e2488fa5982d4319c6f3c8f86f6bd9c5b57e9d70a658eddd07e0d2f6529d"], "type": "DEPLOY"}, {"transaction_hash": "0x2c47a9c11dd2914b090973afeb63646f62e16aaeab866064cc2acd7feec55ec", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x75e303bbf8e5947ba2d47c7736f834090718feb59b4cc10c6ccbe287cd9328f", "0x257484faeb356bf4a95008ed74e3e1ab62212adb1464be7e7f6df566302eff9", "0x4c321a18bc69410a43c8bb2e8e02dae542e485f24ee61ae685473f79b187f3"], "contract_address": "0x9a152fb3a0bf681e905c5b42fd7a5b963b3f0f2c8c18407a9d0be6a3fd7df0", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3b52f1d4c854467f2bec0db22e24ec567c8885495583d45c40eeb5083ce5bbc", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x6e958af60d3b314977779417a132260440b102ad4e01dcccc69ca9584a482c7", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x1", "0x6f781da4abcdd5abc9a7ea9df0b0bdccea9ad99b"], "contract_address": "0x65fb0171d69309cfd3be2dcb98cc086d7af00136b3cc63ec179eb98ecbad5d1", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5dcf4e77ba4777d49e0630a519782e0f5501b2dc3e5ae550f06b40b599ac9fc", "version": "0x0", "contract_address": "0x231d1c35701a578cb940494458b74df267ddbd97a75e98597ad9fae406d824c", "contract_address_salt": "0x43d1dddbf71edcf0e970a760b885600eedeacb22be97472a113d9b0eba1cad9", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x705929acd70a652ffa949e2c387851db7bd2b566d7540bd3f367d3af2b33944", "0x598e4601760b552cc7f3aae75a715a53a8489e918f56d7be96db19537421c7a"], "type": "DEPLOY"}, {"transaction_hash": "0x3c4c15cea338d93e14b37f7cfe6bd368c70b28582b911f662d328b128563a52", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0x5403449dc7d3d56081f6a02b228e467e680f40362350e5793b9816d55760dfe", "0x7c5567170be4c694df9d26f32b17ee732d64b70aa730a441fa0186a0b886491"], "contract_address": "0x225798daa24cafcfa7ae199e99bd99f8d06ecfe9a59b145ede3fc7ee82bcbee", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xf0ff0d294fc5b9bc43c997c70b52a3fbe85a333e726a58d6f456b8bb1b2101", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x18759b9eec2c97e78b32adc284d3c622f259fdcb7ee16aa194719e367397179", "0x2"], "contract_address": "0x917ed8516c4ad1fedc3c2e0d43afce9ff2cfa966f4188d0df17a1803f6843b", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x118c922ed7a25bf66fb895cc121ce873b76299cea53faf626d6407e41fcacb", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0xa3f0112f1b5dcee04c0ba2fc27530430275fd0e14439f996f4b7fdc9e68c20", "0x2", "0x782357d66de8a35bd58930fb9d35cfd7a8e6572ec45f881e7c8aa2c2b3581c2", "0x6667ab5413221346431231a260650a4061b69f39eda77ed611b35e0bd68a0ef"], "contract_address": "0x20dc1af68084ed5b4b1971e5e175f32d50ea406546be4549655cbe5bf8e2cd9", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3dcb24887a21ea95059adee7e13fd5924add694b9d7177fab3224c423d1b0db", "version": "0x0", "contract_address": "0x65a86f899a7feb9fe34d74157a066e6232466046213a22fbecf091dd93e78a6", "contract_address_salt": "0x12f44ab836bc818f79104def9350c0355b01649ec40ce3226bedc8fb201a214", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x77760231507bf1ae94569dd957eb67d9c262934fe36724418d0e59827c0a3d1", "0x1848905b6c3f7f99e6eee04d5428ad708eb7e7e0c8e976e088b3d1830ec1a04"], "type": "DEPLOY"}, {"transaction_hash": "0x48608be84f42a268f32ba8ed0d8013414e175389bf9ffe17b1190de331b8743", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x2", "0x4cbb15af597e0c93e6cb1bcf72bd72164c3e1a5d0513b9081f8a9a9e57f0f31", "0x59c93a4859092557d9fe805131b58fe318d92f48492cab45b0009e5a711df83", "0x2", "0x259eae0a060aaa61ec6a8a9585b550b973b660bb5eed18a41b99f9b0d7406fe", "0x2159c24e9ec0d1646ba5c6fd9e2a91e66ea5e9bd3f546c299fa006ab139cafb"], "contract_address": "0x1b33c9a1ca042472623c789e65129505c36a7eab96bf2d1a7d36f79a299abcb", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x62d854269e24963f8061dfebe7100fafc9124e6f69d5c59c16a2bfea04d1da6", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x2bb76bf9706095f45ace43ee8e9f04bb6d094104f775869abc55001096db69d", "0x193f9eb43273650b534139f791de458050b6c4ef7102a82183ab5a5bdd66eef", "0x798ba7efc9da0123366587a4229fa2511834101afa9cff6203cccff774b8879"], "contract_address": "0x4717515e91a24fa8387bee9fe74423a142cf61646087225286bf6e294659250", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x703ceed118c0db506e97b42329beb867dd8260a00a0c9cc7e6bf40b7c487250", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x29d3877b7f1ca2ae1c99e4f6d37f4d57e1a7cc66db1cb0438bfd0729e7b88b1", "0x51806cea2614b75c54376290065e14e94b0e77a8b03d5b2094210db4ad1383d", "0x47105d6f1fd08a748fdacddbdda4a18922b0f482d196134423fca18e1c87f37"], "contract_address": "0x520b1a59ec6893643a50f348fd7faf5fb51a44f8efc1ae11aa72a02b52cd955", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1face980a838ce3c85a6d15092a40d3c74b55dff237f9a75acecb176256ce70", "version": "0x0", "contract_address": "0x6d67bd94eca6f8950aae042400e78a1938dfa6fa0231d504b6767a957805236", "contract_address_salt": "0x2abcce75f94db6970952562abc41cc31638c3d54418c5d6298bc4562191d1ec", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x4c1b7f57e17fc9816a8b223787b6ef4629fe2abc9f9fc874eed1e1392cffc11", "0x7972ade636bc377f3288bf26a69b5f09abecf7d279a1784001ececbec8cde42"], "type": "DEPLOY"}, {"transaction_hash": "0x28812b2dea33436806eaac2bfbe6e32fe665dc2f9439c71112073c0ed1007e9", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x20992e0b1c49574775a45f39070a7ff3063f9df1b20d3ed3273601e78aed58", "0x0"], "contract_address": "0x2e846c18b2eaa220e72c8c3bc7234c92563a6f4b64d8b130ebb47a172abe2b3", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6df1fdf2dfa0a9d7be8ed5a672631d7a1d39c4f52ef2c41ffc4e1fb7db04d0f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x1de0733cdbfcbd4e12728770dc0dec6bf96770cc69b7d6563cc400e755145dc", "0x1e21f3d95fe31fef4e8fecf4f13ec0ee118a5b92b4027ff9dab68449ee40e51", "0x6186f22f839688a8e14f03fa1a3acb2edff1e08a850f069c7112482444949b5"], "contract_address": "0x73cfa7b477ce04d5089619f01c41c13f75d58573f38a302110ce88cd2dbbb8f", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x52b4e4d500d32f1b2414fd572001c6d87e88cf60721ab31c9f81cf4b7d651d3", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x47a5d9c7d377ba607e7c5a47d9f687eeaa094f4d9b264dc0be6a127fcced1f2", "0x2", "0xcdbc2c39a8fff73be5ce87dba0efcc10d135ca4c45c33ccd3af01474d17ecd", "0x75b3aff59ec69eba54c9f57f796c0b28775b5ca480329a0cedec48293e03375"], "contract_address": "0x30c75af99ad64940bd0a3819f31f3716babb7e5c77eee7ba2e24c1f4d4bb6b", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6e8f2b5ac3c0caee4bc7fb580671f8fff345af0b6abdc3ed3fe14767cf90fe2", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x2e0c9b16a3f2e3eec3e33aad49d2c354e057d4d7d3d0ac11c44fe33b74b36ed", "0x684983aa65fca4f651e693ad0507661adfcf7bbfd7c2609c012de3b4505bae9", "0x4b138534bedff982ef69080f24751b755e07e2acfcd5ac50d237db6999cff93"], "contract_address": "0x7a5860c276ac3a89469c9825d3049c4925595185de33d6a58ce8a0ab49ce15e", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6f0effefe58324bd1502356a46a2c4db46a7cf209c74c56dfa6a12d52771b8b", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x2957ec724192d14ea7daf4258378172765d1f8efef1a54863958cc44be99405", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x2", "0x42fa7077bcb8694b738f576754055c3b2ab1766b5723d268402ef71d1950d0a", "0x406303206589467b45de5b163f932ce7c44931c681cb331502fc20bca227966"], "contract_address": "0x6188a98c0a4f38bdb7ee88bf30f761adb385e3488b2eece895bfa320b527843", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x53099713c88770203cbb729567845b4d77e6968436a3383fda6ce556c3e6cbf", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0xf6a8bdbcdbfb00f7652f45537871abf5da05fdcd"], "contract_address": "0x50884779399554ac17bd9423f141bec9204baf1567597143c4795d0f83df977", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x113924d47ff6c19ffaa5255c058962812a91c6d66c91c089f17a1424ac9aa44", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x4", "0x71cca413233ebdd7069ceaa26a44fe4abec737051c676f18e87349672f2221b", "0x6b66dae17f35744ab17fdd7fefd8b4e437321779fe102dcc0ee23fc2aa3f77a", "0x3fda85850c114df80b57a1664ad6e6ac317064c9bd9609991f85830cf2a6509", "0x7f6c8967accdf0fdfdd88887033f8781d5fb3649cf18f93ab874244190888f4", "0x9", "0x38318e8e2026846f6e6649d5f31f4aa2f8b7d94b923c8bd65facad5171dde20", "0x1945c1d63cea4360ec479f7f87402452f3a92875528595d5472721d6455d834", "0x4c8b6e0c943d2f775f5d6a2832fec1610de63fc377659e97d19bd7abf3c20b1", "0x648ea9c9ff34161c98deacdd0d53a4818c2fc68bdfda514837f79cf23b785d6", "0x590f398e4d7580c61e9555d508067301cb98c47bdb305a06782897ddef38707", "0x3c1121557230bb212568416f1311874d8f214fb9a69dcf1487677a9b5f39b85", "0x3cdb2f0616fc430c324a48192d89734189aefda28be5fc612ba424a793a6c88", "0x2f1afe846e58110227c444dad0a0ca19fa7787f6af17de37c600c37036cd37c", "0x41411d9d5a21f0f54e0a9c1ae10ae05eac2c47f78a3c0818238e869f3651da5"], "contract_address": "0x76248006a32c5d54a3380ff1fc1e4f93af3d68072d0c8cd3b3ffc286643e483", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x65b0af6465aef77f590428dac2df2ff275b970fc11ab35fd6292fc376375cef", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x7d1cf55793df979723ad136b8b0cc662e5798f73c1d7217f36a62cd116cf661", "0x1"], "contract_address": "0x50b670ddb447c4a4cde3997a23e2c27849b9e32d5f9a70c60206cc375bfc598", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1b57029eca34e60d94a30df47eb155bfd7c154b4c5ba7ca058d2a65e73c4796", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x226b819085eec4038b6ae6210c3635c99de7c9c0c1267a5df714589fde63720", "0x2", "0x50fa20a34f65f20e23c3e21840b0b61a0dbf75f3da8908493e7e64f0854f6f7", "0x4405bff603d3d55071515172c4d61e1082569755d385afdb671b24970925b47"], "contract_address": "0x3f19bce933d20fadff92b806c1c7df8aa646786e28e7f8570d3f511dd6b785c", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x193301636a26ac0cc8dfda59121ce1b146b4eb31764105c5d5f98170be02bd9", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x58514143dc243e81746313104915b90e2624b253cf0120cb932daa21844281c", "0x2bbbb53c7f39900c9d79f26bbf7258dc49967642ededca336bb2737f32ff1d4", "0x42c6393ff55860ffd42c9846125c19630ff47968e7a148bc9a6a52c491c6a87"], "contract_address": "0x3a6eb938a88e7847df3a93bccf9c64ec813cb640128fe77322489030671fc15", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3099fee3ce67fd952cdd9e6560f6f076231fdcbc5c8dd68072f189fd0b80dd9", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x86531d70c33969b77f9ed2a35e8b7ecd9a91b2566e912edbaef4279d8b2fed", "0x2", "0x4eba5af081fbf7a407d4c7d60431d2c95e8f9d9808175613a05c1ee9716469a", "0x1166e473ef881b45ca623cb422b0da1ed2ccd5d1880d270391bc3eeae2a9284"], "contract_address": "0x11675493efdda3fdea4acf3829aa7f88d4f97460cbc3875ce58874f397a5279", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x2a93ac61920b895100518654c24abf3cb2a53a4c55fbe36739589ed259ec90f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x86531d70c33969b77f9ed2a35e8b7ecd9a91b2566e912edbaef4279d8b2fed", "0x2", "0x4eba5af081fbf7a407d4c7d60431d2c95e8f9d9808175613a05c1ee9716469a", "0x1bc0c448630aef2cc6c404246aa4af895a9a3b294a4e27b0f162106647f4d9f"], "contract_address": "0x11675493efdda3fdea4acf3829aa7f88d4f97460cbc3875ce58874f397a5279", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x482b88ef55d49606d2bd4bd385d94c8c319c8bd32c3fe0fadb9299152ae7800", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x2c31ab82497a4f0c7cd0dd555814d608a4d8bab8a28884e5fb283ea0f962408", "0x2", "0x2f1676e6602dbd86b98765209719513b2cb249a3ad02cc5c6a89a67fa4ee6b5", "0x497added079008c9b0b569a716a622d963d14fa05e10b2a14d212800c02592"], "contract_address": "0x57cff44aed2971ac6ccbe181a8f8801f74d429be44c9cd9732cc06d76836b58", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x260e8e2acb2a5319534b04f2a8b3e5c848bbf285498566e7c47c55b217b8e6e", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x51be03e836c49d682ecca1294ca29a9a87240e3b1e9bad218aa1ad1a460a88e", "0x1"], "contract_address": "0x10e67a2c538fc0902a954d712bc7b43788ad152976a20fef8e5f9327178f594", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x22377e31d75ae74f4ae3889bd59f9575f232d4d573632cbc7c4d0e76e669f9f", "version": "0x0", "contract_address": "0x7e829edae4832b140c73ba615e02f2d593122d43724352e21716daff98bd1da", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0x0", "calldata": ["0x552d0ae6ac009c771c308a9e853c43a76a19167", "0x587a8075a2b0bfd4d7b99164b300f744f65d4fdf14ca7f0c268d1c3318476c5", "0x5dc", "0x0"], "type": "L1_HANDLER"}, {"transaction_hash": "0xd6db9d9d838d38597643774cea8d35449671fcc4b988a1133cc4fad732ae83", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x22c5da58ad42475a1731b0c1c5bd41b77573e313c55e2f23f277b1625cafed3", "0x1184321f592e89768b7761a50f3151a26ab392ac2c9945943183f593c7d49da"], "contract_address": "0x77d7762ec6b8ee33a1f37640f3fa430e321c814a0690ca4bf163f047a4ecc71", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x420bce5822d57c169d78bb50b110c2da47021c00d3976935e8519b34f7282c2", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0x424f5ddd7a91dfffd11cdc0be9d1e54cad362a05"], "contract_address": "0x11dc7fccce1df61b183927614739c3ce238fbe5a5cc24167a7fac9b25622b01", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1d47ff55b0d6d0953e4dcd7779f325cda30ed9bd8d03262e9c3c9951871a3e6", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0x6a8a39a106c4793fd479a9dd3e79685270afb96d1420adfa63b565ab346841b", "0x3b8f4c4c74e60a35fc2a2e8aa3c7a2284841b4b46a9285e3560d52c71a85228"], "contract_address": "0x2c310c84dcc0efa068ab306f1f97403a9d34628c0ffddde7ca5ef00f32ad2e4", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5bc57f14b4eef0f72119b694b3e98fc2422431f0ae9778068651fdd3b185aab", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x6b61859ec13599f94dc858a78d5f162f04ba5e626a698792f15b9d58144d937", "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "0x2", "0x16e0d82fa033f97b6b6392225c94dc1396c35ff2297105990e6c361daa7ad91", "0x1"], "contract_address": "0x26cbb6ceec79ac33208061614da94a22100bb3e98309252e399ac6efc83a9bd", "type": "INVOKE_FUNCTION"}], "timestamp": 1646151671, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x4861a1e73e730dee2108d51e94dac5e24bdfa38d5143e31f2526e1ead8cf755", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x2c47a9c11dd2914b090973afeb63646f62e16aaeab866064cc2acd7feec55ec", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 180, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x3b52f1d4c854467f2bec0db22e24ec567c8885495583d45c40eeb5083ce5bbc", "l2_to_l1_messages": [{"from_address": "0x6e958af60d3b314977779417a132260440b102ad4e01dcccc69ca9584a482c7", "to_address": "0x6F781da4AbcDD5Abc9A7ea9DF0b0BDCcEA9aD99B", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 71, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x5dcf4e77ba4777d49e0630a519782e0f5501b2dc3e5ae550f06b40b599ac9fc", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x3c4c15cea338d93e14b37f7cfe6bd368c70b28582b911f662d328b128563a52", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0xf0ff0d294fc5b9bc43c997c70b52a3fbe85a333e726a58d6f456b8bb1b2101", "l2_to_l1_messages": [{"from_address": "0x917ed8516c4ad1fedc3c2e0d43afce9ff2cfa966f4188d0df17a1803f6843b", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}, {"from_address": "0x917ed8516c4ad1fedc3c2e0d43afce9ff2cfa966f4188d0df17a1803f6843b", "to_address": "0x0000000000000000000000000000000000000002", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 426, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x118c922ed7a25bf66fb895cc121ce873b76299cea53faf626d6407e41fcacb", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0x3dcb24887a21ea95059adee7e13fd5924add694b9d7177fab3224c423d1b0db", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0x48608be84f42a268f32ba8ed0d8013414e175389bf9ffe17b1190de331b8743", "l2_to_l1_messages": [], "events": [{"from_address": "0x1b33c9a1ca042472623c789e65129505c36a7eab96bf2d1a7d36f79a299abcb", "keys": ["0x4cbb15af597e0c93e6cb1bcf72bd72164c3e1a5d0513b9081f8a9a9e57f0f31", "0x59c93a4859092557d9fe805131b58fe318d92f48492cab45b0009e5a711df83"], "data": ["0x259eae0a060aaa61ec6a8a9585b550b973b660bb5eed18a41b99f9b0d7406fe", "0x2159c24e9ec0d1646ba5c6fd9e2a91e66ea5e9bd3f546c299fa006ab139cafb"]}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 4}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 9, "transaction_hash": "0x62d854269e24963f8061dfebe7100fafc9124e6f69d5c59c16a2bfea04d1da6", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 176, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 10, "transaction_hash": "0x703ceed118c0db506e97b42329beb867dd8260a00a0c9cc7e6bf40b7c487250", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 176, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 11, "transaction_hash": "0x1face980a838ce3c85a6d15092a40d3c74b55dff237f9a75acecb176256ce70", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 12, "transaction_hash": "0x28812b2dea33436806eaac2bfbe6e32fe665dc2f9439c71112073c0ed1007e9", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 238, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 13, "transaction_hash": "0x6df1fdf2dfa0a9d7be8ed5a672631d7a1d39c4f52ef2c41ffc4e1fb7db04d0f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 180, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 14, "transaction_hash": "0x52b4e4d500d32f1b2414fd572001c6d87e88cf60721ab31c9f81cf4b7d651d3", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 169, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 15, "transaction_hash": "0x6e8f2b5ac3c0caee4bc7fb580671f8fff345af0b6abdc3ed3fe14767cf90fe2", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 180, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 16, "transaction_hash": "0x6f0effefe58324bd1502356a46a2c4db46a7cf209c74c56dfa6a12d52771b8b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 65, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 2}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 17, "transaction_hash": "0x53099713c88770203cbb729567845b4d77e6968436a3383fda6ce556c3e6cbf", "l2_to_l1_messages": [{"from_address": "0x50884779399554ac17bd9423f141bec9204baf1567597143c4795d0f83df977", "to_address": "0xF6a8bdbcDBFb00F7652F45537871ABF5dA05fDCD", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 18, "transaction_hash": "0x113924d47ff6c19ffaa5255c058962812a91c6d66c91c089f17a1424ac9aa44", "l2_to_l1_messages": [], "events": [{"from_address": "0x76248006a32c5d54a3380ff1fc1e4f93af3d68072d0c8cd3b3ffc286643e483", "keys": ["0x71cca413233ebdd7069ceaa26a44fe4abec737051c676f18e87349672f2221b", "0x6b66dae17f35744ab17fdd7fefd8b4e437321779fe102dcc0ee23fc2aa3f77a", "0x3fda85850c114df80b57a1664ad6e6ac317064c9bd9609991f85830cf2a6509", "0x7f6c8967accdf0fdfdd88887033f8781d5fb3649cf18f93ab874244190888f4"], "data": ["0x38318e8e2026846f6e6649d5f31f4aa2f8b7d94b923c8bd65facad5171dde20", "0x1945c1d63cea4360ec479f7f87402452f3a92875528595d5472721d6455d834", "0x4c8b6e0c943d2f775f5d6a2832fec1610de63fc377659e97d19bd7abf3c20b1", "0x648ea9c9ff34161c98deacdd0d53a4818c2fc68bdfda514837f79cf23b785d6", "0x590f398e4d7580c61e9555d508067301cb98c47bdb305a06782897ddef38707", "0x3c1121557230bb212568416f1311874d8f214fb9a69dcf1487677a9b5f39b85", "0x3cdb2f0616fc430c324a48192d89734189aefda28be5fc612ba424a793a6c88", "0x2f1afe846e58110227c444dad0a0ca19fa7787f6af17de37c600c37036cd37c", "0x41411d9d5a21f0f54e0a9c1ae10ae05eac2c47f78a3c0818238e869f3651da5"]}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 13}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 19, "transaction_hash": "0x65b0af6465aef77f590428dac2df2ff275b970fc11ab35fd6292fc376375cef", "l2_to_l1_messages": [{"from_address": "0x50b670ddb447c4a4cde3997a23e2c27849b9e32d5f9a70c60206cc375bfc598", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 332, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 20, "transaction_hash": "0x1b57029eca34e60d94a30df47eb155bfd7c154b4c5ba7ca058d2a65e73c4796", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 21, "transaction_hash": "0x193301636a26ac0cc8dfda59121ce1b146b4eb31764105c5d5f98170be02bd9", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 180, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 22, "transaction_hash": "0x3099fee3ce67fd952cdd9e6560f6f076231fdcbc5c8dd68072f189fd0b80dd9", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 23, "transaction_hash": "0x2a93ac61920b895100518654c24abf3cb2a53a4c55fbe36739589ed259ec90f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 24, "transaction_hash": "0x482b88ef55d49606d2bd4bd385d94c8c319c8bd32c3fe0fadb9299152ae7800", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 169, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 25, "transaction_hash": "0x260e8e2acb2a5319534b04f2a8b3e5c848bbf285498566e7c47c55b217b8e6e", "l2_to_l1_messages": [{"from_address": "0x10e67a2c538fc0902a954d712bc7b43788ad152976a20fef8e5f9327178f594", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 332, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 26, "transaction_hash": "0x22377e31d75ae74f4ae3889bd59f9575f232d4d573632cbc7c4d0e76e669f9f", "l1_to_l2_consumed_message": {"from_address": "0x0552D0AE6ac009C771c308A9e853c43a76A19167", "to_address": "0x7e829edae4832b140c73ba615e02f2d593122d43724352e21716daff98bd1da", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x587a8075a2b0bfd4d7b99164b300f744f65d4fdf14ca7f0c268d1c3318476c5", "0x5dc", "0x0"], "nonce": "0x0"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x7e829edae4832b140c73ba615e02f2d593122d43724352e21716daff98bd1da", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x587a8075a2b0bfd4d7b99164b300f744f65d4fdf14ca7f0c268d1c3318476c5", "0x5dc", "0x0"]}], "execution_resources": {"n_steps": 575, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 12, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 24}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 27, "transaction_hash": "0xd6db9d9d838d38597643774cea8d35449671fcc4b988a1133cc4fad732ae83", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 28, "transaction_hash": "0x420bce5822d57c169d78bb50b110c2da47021c00d3976935e8519b34f7282c2", "l2_to_l1_messages": [{"from_address": "0x11dc7fccce1df61b183927614739c3ce238fbe5a5cc24167a7fac9b25622b01", "to_address": "0x424f5Ddd7A91dFFFd11CDc0be9D1e54caD362a05", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 29, "transaction_hash": "0x1d47ff55b0d6d0953e4dcd7779f325cda30ed9bd8d03262e9c3c9951871a3e6", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 30, "transaction_hash": "0x5bc57f14b4eef0f72119b694b3e98fc2422431f0ae9778068651fdd3b185aab", "l2_to_l1_messages": [{"from_address": "0x6b61859ec13599f94dc858a78d5f162f04ba5e626a698792f15b9d58144d937", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 372, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 2}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x7e16179ff54fa8bb1533fe2eea930e9e2bd658faaf9972533c9d3a9303171fc", "parent_block_hash": "0x13b390a0b2c48f907cda28c73a12aa31b96d51bc1be004ba5f71174d8d70e4f", "block_number": 6, "state_root": "0x2729a9ded030fa182a4802b9accf662d071d23fdfb2011504d1777927c9abaf", "transaction_commitment": "0x444c6162583b532826dedb2be39c91a5d01c97692050bdcfbfac408bc321fa6", "event_commitment": "0xbe9049bd97da9886c30ebbdfb16ef6d34b1c69649cf5be3d348bb642f29b91", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9aca12", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x785c2ada3f53fbc66078d47715c27718f92e6e48b96372b36e5197de69b82b5", "version": "0x0", "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0x0", "calldata": ["0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0xde0b6b3a7640000", "0x0"], "type": "L1_HANDLER"}], "timestamp": 1700483673, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x785c2ada3f53fbc66078d47715c27718f92e6e48b96372b36e5197de69b82b5", "l1_to_l2_consumed_message": {"from_address": "0x8453FC6Cd1bCfE8D4dFC069C400B433054d47bDc", "to_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0xde0b6b3a7640000", "0x0"], "nonce": "0x0"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x0", "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0xde0b6b3a7640000", "0x0"]}, {"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0xde0b6b3a7640000", "0x0"]}], "execution_resources": {"n_steps": 8057, "builtin_instance_counter": {"range_check_builtin": 168, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/11_without_execution_resources.txt b/starknet-core/test-data/raw_gateway_responses/get_block/11_without_execution_resources.txt index 707da6e9..e3fc3e48 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/11_without_execution_resources.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/11_without_execution_resources.txt @@ -1 +1 @@ -{"block_hash": "0x34e815552e42c5eb5233b99de2d3d7fd396e575df2719bf98e7ed2794494f86", "parent_block_hash": "0x3ae41b0f023e53151b0c8ab8b9caafb7005d5f41c9ab260276d5bdc49726279", "block_number": 1, "state_root": "0x74abfb3f55d3f9c3967014e1a5ec7205949130ff8912dba0565daf70299144c", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "version": "0x0", "contract_address": "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5", "contract_address_salt": "0x6030390b01fe79d844330de00821c68206959c389ef744b2d315e27078f0ad", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x782142c3526899d48e6f1ce725f56b11cb462586c9f1340e4cfbcbebdd174f2", "0x7dee1fa95f31fd5ffb0ad1c3313aa51d82d66adfbb65efb982eae696c4309b7"], "type": "DEPLOY"}, {"transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "version": "0x0", "contract_address": "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b", "contract_address_salt": "0x13b7e67ff6b2e1a5aac25134cc2765ea2a1bf36a7b94c92aa3fc4690978d1c5", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x26a1e7e74188cbc724a793c972ad09d5aba110c4c06dfae51ae078b321e957", "0x461226574f9663500fc330295cea93b295389618c9eab30c3362fa14975d54c"], "type": "DEPLOY"}, {"transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "version": "0x0", "contract_address": "0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352", "contract_address_salt": "0x25c239a162c5a7ace888ca39f295aad52b75174952f4ea8f3afed13cde4490a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x1a315d6be5adafdd493b45672137525190b23b7f3a0ec91feafaa6ab48b0828", "0x24740a6b71ae76d658a1ec1efb6f201ba9794ebeed49ca59c0efe63f4a3cca2"], "type": "DEPLOY"}, {"transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x64ed79a8ebe97485d3357bbfdf5f6bea0d9db3b5f1feb6e80d564a179122dc6", "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32"], "contract_address": "0x7b196a359045d4d0c10f73bdf244a9e1205a615dbb754b8df40173364288534", "type": "INVOKE_FUNCTION"}], "timestamp": 1638978017, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x78b67b11f8c23850041e11fb0f3b39db0bcb2c99d756d5a81321d1b483d79f6", "parent_block_hash": "0x5c627d4aeb51280058bed93c7889bce78114d63baad1be0f0aeb32496d5f19c", "block_number": 1, "state_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "transaction_commitment": "0x301a3e7f3ae29c3463a5f753da62e63dc0b6738c36cb17e3d1696926457a40c", "event_commitment": "0x0", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9ada0f", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "version": "0x0", "max_fee": "0x0", "signature": [], "nonce": "0x0", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "sender_address": "0x1", "type": "DECLARE"}], "timestamp": 1700474724, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 2711, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/12_l1_handler_without_nonce.txt b/starknet-core/test-data/raw_gateway_responses/get_block/12_l1_handler_without_nonce.txt index 04e73d89..a615884e 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/12_l1_handler_without_nonce.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/12_l1_handler_without_nonce.txt @@ -1 +1 @@ -{"block_hash": "0x2a70fb03fe363a2d6be843343a1d81ce6abeda1e9bd5cc6ad8fa9f45e30fdeb", "parent_block_hash": "0x47c3637b57c2b079b93c61539950c17e868a28f46cdef28f88521067f21e943", "block_number": 1, "state_root": "0x525aed4da9cc6cce2de31ba79059546b0828903279e4eaa38768de33e2cac32", "status": "ACCEPTED_ON_L1", "gas_price": "0x0", "transactions": [{"transaction_hash": "0x2f07a65f9f7a6445b2a0b1fb90ef12f5fd3b94128d06a67712efd3b2f163533", "version": "0x0", "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "contract_address_salt": "0x3a6b18fc3415b7d749f18483393b0d6a1aef168435016c0f5f5d8902a84a36f", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x4184fa5a6d40f47a127b046ed6facfa3e6bc3437b393da65cc74afe47ca6c6e", "0x1ef78e458502cd457745885204a4ae89f3880ec24db2d8ca97979dce15fedc"], "type": "DEPLOY"}, {"transaction_hash": "0x214c14f39b8aa2dcecfdca68e540957624e8db6c3a9012939ff1399975910a0", "version": "0x0", "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "contract_address_salt": "0x90677b5114f8df8bb7dd5e57a90cceabe385540cb0ca857ed68e22bd76e20a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x10212fa2be788e5d943714d6a9eac5e07d8b4b48ead96b8d0a0cbe7a6dc3832", "0x8a81230a7e3ffa40abe541786a9b69fbb601434cec9536d5d5b2ee4df90383"], "type": "DEPLOY"}, {"transaction_hash": "0x71eed7f033331c8d7bd1a4dca8eedf16951a904de3e195005e49aae9e502ca6", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "0x0"], "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1059391b8c4fba9743b531ba371908195ccb5dcf2a9532fac247256fb48912f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x4", "0x5bd24b507fcc2fd77dc7847babb8df01363d58e9b0bbcd2d06d982e1f3e0c86", "0x2", "0x26b5943d4a0c420607cee8030a8cdd859bf2814a06633d165820960a42c6aed", "0x1518eec76afd5397cefd14eda48d01ad59981f9ce9e70c233ca67acd8754008"], "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x73fe0b59ac28a2c3c28b4d8713f4f84d4463c48245539644838cf1e8526b536", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "0x1"], "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x169d35e8210a26fd2439207d77ef2f0abe77471acbc2da8d5eeab5127d8d57b", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0x9c47c96a115dad3a7dbbdafb2369fdaa2835d0d4"], "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x68a8426d72bcac7dc3c84c52d90f39f64ffdc10e50b86f8d6f047ee243e2ba1", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x2c4301154e2f60000ce44af78b14619806dda3b52abe8bc224d49765a0924c1", "0x2", "0x2b36318931915f71777f7e59246ecab3189db48408952cefda72f4b7977be51", "0x7e928dcf189b05e4a3dae0bc2cb98e447f1843f7debbbf574151eb67cda8797"], "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7eff4524ae42c2ffa72ff228cee4729bf7f31c2a0aefe3ee1c8abe546442158", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "0x1aed933fd362faecd8ea54ee749092bd21f89901b7d1872312584ac5b636c6d"], "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "type": "INVOKE_FUNCTION"}], "timestamp": 1637072695, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x2f07a65f9f7a6445b2a0b1fb90ef12f5fd3b94128d06a67712efd3b2f163533", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x214c14f39b8aa2dcecfdca68e540957624e8db6c3a9012939ff1399975910a0", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x71eed7f033331c8d7bd1a4dca8eedf16951a904de3e195005e49aae9e502ca6", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 238, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x1059391b8c4fba9743b531ba371908195ccb5dcf2a9532fac247256fb48912f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 209, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 8, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 24}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x73fe0b59ac28a2c3c28b4d8713f4f84d4463c48245539644838cf1e8526b536", "l2_to_l1_messages": [{"from_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 332, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x169d35e8210a26fd2439207d77ef2f0abe77471acbc2da8d5eeab5127d8d57b", "l2_to_l1_messages": [{"from_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "to_address": "0x9c47c96a115daD3a7dBBdafB2369FdAa2835d0d4", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x68a8426d72bcac7dc3c84c52d90f39f64ffdc10e50b86f8d6f047ee243e2ba1", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0x7eff4524ae42c2ffa72ff228cee4729bf7f31c2a0aefe3ee1c8abe546442158", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x2a70fb03fe363a2d6be843343a1d81ce6abeda1e9bd5cc6ad8fa9f45e30fdeb", "parent_block_hash": "0x47c3637b57c2b079b93c61539950c17e868a28f46cdef28f88521067f21e943", "block_number": 1, "state_root": "0x525aed4da9cc6cce2de31ba79059546b0828903279e4eaa38768de33e2cac32", "transaction_commitment": "0x0", "event_commitment": "0x0", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x0", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x2f07a65f9f7a6445b2a0b1fb90ef12f5fd3b94128d06a67712efd3b2f163533", "version": "0x0", "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "contract_address_salt": "0x3a6b18fc3415b7d749f18483393b0d6a1aef168435016c0f5f5d8902a84a36f", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x4184fa5a6d40f47a127b046ed6facfa3e6bc3437b393da65cc74afe47ca6c6e", "0x1ef78e458502cd457745885204a4ae89f3880ec24db2d8ca97979dce15fedc"], "type": "DEPLOY"}, {"transaction_hash": "0x214c14f39b8aa2dcecfdca68e540957624e8db6c3a9012939ff1399975910a0", "version": "0x0", "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "contract_address_salt": "0x90677b5114f8df8bb7dd5e57a90cceabe385540cb0ca857ed68e22bd76e20a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x10212fa2be788e5d943714d6a9eac5e07d8b4b48ead96b8d0a0cbe7a6dc3832", "0x8a81230a7e3ffa40abe541786a9b69fbb601434cec9536d5d5b2ee4df90383"], "type": "DEPLOY"}, {"transaction_hash": "0x71eed7f033331c8d7bd1a4dca8eedf16951a904de3e195005e49aae9e502ca6", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "0x0"], "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1059391b8c4fba9743b531ba371908195ccb5dcf2a9532fac247256fb48912f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x4", "0x5bd24b507fcc2fd77dc7847babb8df01363d58e9b0bbcd2d06d982e1f3e0c86", "0x2", "0x26b5943d4a0c420607cee8030a8cdd859bf2814a06633d165820960a42c6aed", "0x1518eec76afd5397cefd14eda48d01ad59981f9ce9e70c233ca67acd8754008"], "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x73fe0b59ac28a2c3c28b4d8713f4f84d4463c48245539644838cf1e8526b536", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "0x1"], "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x169d35e8210a26fd2439207d77ef2f0abe77471acbc2da8d5eeab5127d8d57b", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0x9c47c96a115dad3a7dbbdafb2369fdaa2835d0d4"], "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x68a8426d72bcac7dc3c84c52d90f39f64ffdc10e50b86f8d6f047ee243e2ba1", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x2c4301154e2f60000ce44af78b14619806dda3b52abe8bc224d49765a0924c1", "0x2", "0x2b36318931915f71777f7e59246ecab3189db48408952cefda72f4b7977be51", "0x7e928dcf189b05e4a3dae0bc2cb98e447f1843f7debbbf574151eb67cda8797"], "contract_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7eff4524ae42c2ffa72ff228cee4729bf7f31c2a0aefe3ee1c8abe546442158", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "0x1aed933fd362faecd8ea54ee749092bd21f89901b7d1872312584ac5b636c6d"], "contract_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "type": "INVOKE_FUNCTION"}], "timestamp": 1637072695, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x2f07a65f9f7a6445b2a0b1fb90ef12f5fd3b94128d06a67712efd3b2f163533", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x214c14f39b8aa2dcecfdca68e540957624e8db6c3a9012939ff1399975910a0", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x71eed7f033331c8d7bd1a4dca8eedf16951a904de3e195005e49aae9e502ca6", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 238, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x1059391b8c4fba9743b531ba371908195ccb5dcf2a9532fac247256fb48912f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 209, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 8, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x73fe0b59ac28a2c3c28b4d8713f4f84d4463c48245539644838cf1e8526b536", "l2_to_l1_messages": [{"from_address": "0x327d34747122d7a40f4670265b098757270a449ec80c4871450fffdab7c2fa8", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 332, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x169d35e8210a26fd2439207d77ef2f0abe77471acbc2da8d5eeab5127d8d57b", "l2_to_l1_messages": [{"from_address": "0x6538fdd3aa353af8a87f5fe77d1f533ea82815076e30a86d65b72d3eb4f0b80", "to_address": "0x9c47c96a115daD3a7dBBdafB2369FdAa2835d0d4", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x68a8426d72bcac7dc3c84c52d90f39f64ffdc10e50b86f8d6f047ee243e2ba1", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0x7eff4524ae42c2ffa72ff228cee4729bf7f31c2a0aefe3ee1c8abe546442158", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/13_without_entry_point.txt b/starknet-core/test-data/raw_gateway_responses/get_block/13_without_entry_point.txt index 707da6e9..e3fc3e48 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/13_without_entry_point.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/13_without_entry_point.txt @@ -1 +1 @@ -{"block_hash": "0x34e815552e42c5eb5233b99de2d3d7fd396e575df2719bf98e7ed2794494f86", "parent_block_hash": "0x3ae41b0f023e53151b0c8ab8b9caafb7005d5f41c9ab260276d5bdc49726279", "block_number": 1, "state_root": "0x74abfb3f55d3f9c3967014e1a5ec7205949130ff8912dba0565daf70299144c", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "version": "0x0", "contract_address": "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5", "contract_address_salt": "0x6030390b01fe79d844330de00821c68206959c389ef744b2d315e27078f0ad", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x782142c3526899d48e6f1ce725f56b11cb462586c9f1340e4cfbcbebdd174f2", "0x7dee1fa95f31fd5ffb0ad1c3313aa51d82d66adfbb65efb982eae696c4309b7"], "type": "DEPLOY"}, {"transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "version": "0x0", "contract_address": "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b", "contract_address_salt": "0x13b7e67ff6b2e1a5aac25134cc2765ea2a1bf36a7b94c92aa3fc4690978d1c5", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x26a1e7e74188cbc724a793c972ad09d5aba110c4c06dfae51ae078b321e957", "0x461226574f9663500fc330295cea93b295389618c9eab30c3362fa14975d54c"], "type": "DEPLOY"}, {"transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "version": "0x0", "contract_address": "0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352", "contract_address_salt": "0x25c239a162c5a7ace888ca39f295aad52b75174952f4ea8f3afed13cde4490a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x1a315d6be5adafdd493b45672137525190b23b7f3a0ec91feafaa6ab48b0828", "0x24740a6b71ae76d658a1ec1efb6f201ba9794ebeed49ca59c0efe63f4a3cca2"], "type": "DEPLOY"}, {"transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x64ed79a8ebe97485d3357bbfdf5f6bea0d9db3b5f1feb6e80d564a179122dc6", "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32"], "contract_address": "0x7b196a359045d4d0c10f73bdf244a9e1205a615dbb754b8df40173364288534", "type": "INVOKE_FUNCTION"}], "timestamp": 1638978017, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x78b67b11f8c23850041e11fb0f3b39db0bcb2c99d756d5a81321d1b483d79f6", "parent_block_hash": "0x5c627d4aeb51280058bed93c7889bce78114d63baad1be0f0aeb32496d5f19c", "block_number": 1, "state_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "transaction_commitment": "0x301a3e7f3ae29c3463a5f753da62e63dc0b6738c36cb17e3d1696926457a40c", "event_commitment": "0x0", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9ada0f", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "version": "0x0", "max_fee": "0x0", "signature": [], "nonce": "0x0", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "sender_address": "0x1", "type": "DECLARE"}], "timestamp": 1700474724, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 2711, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/14_deploy_account.txt b/starknet-core/test-data/raw_gateway_responses/get_block/14_deploy_account.txt index a6efc3f8..69094e28 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/14_deploy_account.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/14_deploy_account.txt @@ -1 +1 @@ -{"block_hash": "0x357dd542a2df5a5a85c22eca3eea3303fcd02b460efabda5cb6db2874f88164", "parent_block_hash": "0x723291afb02722d20718992790f5f5957793da26e80b558ea8f9106eac95a47", "block_number": 228457, "state_root": "0x6e31e5f1af729acdb4454e9f9af70ac91783b39bcd576bc66de24a4e7ab2c39", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x14f93ca8", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x1d6f35c0239183ebd25e3e878227d4c0247c31b62811cad8d6f3143c54a9aea", "version": "0x1", "max_fee": "0x1c8482b480e", "signature": ["0x6325a9678f7601a6ea05f0bb96e474e0e2be447bf4762cd64194f29f23aed73", "0x36562c1f8f6775c29004395604f702f80bbea6f6653391867286f2d18f93777"], "nonce": "0x0", "contract_address": "0x39696a0665e4c9806a709c7872030c63ca82b551925b2f517ed1985066217b8", "contract_address_salt": "0x6ccdf35bc37d9c5030215e2fb39b97de8f755c8ed43dd52a4c30e5ab96e61b", "class_hash": "0x1fac3074c9d5282f0acc5c69a4781a1c711efea5e73c550c5d9fb253cf7fd3d", "constructor_calldata": ["0x539f848975104309396ee8ebaee0a45acb0238e0b13da9df0f855c082a3b7f3"], "type": "DEPLOY_ACCOUNT"}], "timestamp": 1665044362, "sequencer_address": "0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x1d6f35c0239183ebd25e3e878227d4c0247c31b62811cad8d6f3143c54a9aea", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 41, "builtin_instance_counter": {}, "n_memory_holes": 0}, "actual_fee": "0x19ecd3e9e98"}], "starknet_version": "0.10.1"} \ No newline at end of file +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "parent_block_hash": "0x7e16179ff54fa8bb1533fe2eea930e9e2bd658faaf9972533c9d3a9303171fc", "block_number": 7, "state_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "transaction_commitment": "0x5b209de02dadbe60f29809c4409541b3b1c8cac7260005e1ecad82bf8a9c524", "event_commitment": "0x41faa348153f17105f3452f598e76ae4f37643fa9e02555a3ac6336488bcd47", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x1a06b2979", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x2ac4c6315d54499d1c8133e4501e9034d8f70534afc013a272bab03995fa040", "version": "0x0", "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0x1", "calldata": ["0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"], "type": "L1_HANDLER"}, {"transaction_hash": "0x24ed6b82e2f6d3a811ec180a25c1ccd0bdc7bdba8ebd709de2ed697a1e82193", "version": "0x1", "max_fee": "0x1e3723604552", "signature": ["0x7f7282f79203f23ee8cd86db05a67166cf8f365415c472b3c3e0a8adfd45c58", "0x14132fea675b197eb5ac3c29665ae9bc92939e3b50bd4d2cbdd13ce64000421"], "nonce": "0x0", "contract_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "contract_address_salt": "0x0", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6", "constructor_calldata": ["0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x30a10763fc93c0e02959352754d11dbb03dcabb0c1e786b4dc02c77170ab017", "0x3ae5a2e11c72bbda3ef9621856d26f3f9d82b3ce7b9825a59ecd1e28dd0ae29"], "nonce": "0x1", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x2d288985b7201cae604c1ea879de93f6d41dcc617cbf27934a90c35b02b14c2", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x4cb34009319879a40498361bfc390247f341626836c1d256dac660f980cf931", "0xb1d8991d6b15554ea591e9987ebcadc3dc7ae257b7157c316d470d760dd8c3"], "nonce": "0x2", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x3f6e39d90aa084585ac59fa4c19429499951eb7a279427bbe0a7718c8d9072f", "version": "0x1", "max_fee": "0x1a1b07d31668", "signature": ["0x1a9c4f3464fe4a8b1575855cdb7745e14a2d825f4c0e9213d4d802899001016", "0x1063cb02e19c26a09b57f4727e339494d8ed0cdaf5e2de28ead36f93007fe86"], "nonce": "0x3", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "0x0", "0x3", "0x3", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x38d7ea4c68000", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6d574ba9be0979817a41c2a62fc646246bc7327cf6fedccee3a8c978347fb78", "version": "0x1", "max_fee": "0x15a5753ffe7f", "signature": [], "nonce": "0x0", "contract_address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "contract_address_salt": "0x0", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "constructor_calldata": [], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x48153df38b1e3bc5736b6501f736325f0261defe4e32a2e4069f452ef007acb", "version": "0x1", "max_fee": "0x3700276a4b50", "signature": [], "nonce": "0x1", "sender_address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "calldata": ["0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xe022165192e2125a82029ed50194dd9c405f7405dc327887b3fdf3e4ccfe85", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x29cb2b4becb97be8bac6ddd7e69d5ba32e019ae87a522065e586362cccfd6b6", "0xb360de930a34c30899cc5646715ec9f4fdd84801b1f3219d597aed89dbf425"], "nonce": "0x4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x1889b8347f0ad35735b245d1ba7660b52eba88283971baf204d235c15749e65", "version": "0x1", "max_fee": "0x1e558e676676", "signature": ["0x5230f26e1177d1de4d01f2c51b0b750ec407b911aeefcdf2a8352a0a351d629", "0x13093b74a819ebd42c381e072d49103179ca913a9d44f9575a05be178292deb"], "nonce": "0x5", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", "0x0", "0x4", "0x4", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "0x0", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x4ab3e77908396c66b39326f52334b447fe878d1d899a287c9e3cf7bd09839ea", "0x79a56f9e61eb834f1ac524eb35da33cccf92ff3b01a7a8eaf68cbb64bebdba9"], "nonce": "0x6", "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0xb2d88f64d9655a7d47a5519d66b969168d02d0d33f6476f0d2539c51686329", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x3609667964a8ed946bc507721ec35a851d97a097d159ef0ec2af8fab490223f", "0x68846bad9f0f010fac4eeaf39f9dd609b28765fd2336b70ce026e33e2421c15"], "nonce": "0x7", "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x6be43a9866326cd9b227cfc528e05fdd89ffe32b6e0c9a8f54c6047ba1bb697", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x5de837c93ef3f99c3bcaeb9ff55b1954918d26405d05e1b7e9c10c5214ae452", "0xa1f38c7489e52d8fa5185c4a0710118facada52464d22200b891e0d8dc65b8"], "nonce": "0x8", "class_hash": "0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x817027a1a1d85e6dffde72e7114deef81a09c86846ed92057eb986518c9864", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x2845820af4fa0a3ed35913d519e7fffdc740fa5f5022749c17cd61ff094412a", "0x72d0850851912178f77a2f6de715a848d64c5e082df1cba17f8498ca5516ef2"], "nonce": "0x9", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x5d858a06bb8b7a899cda2bd7962c4009c6c40dbf3e747dc786d13de7d8c8031", "version": "0x1", "max_fee": "0x1e558e676676", "signature": ["0x76fbfa1b81f3ef360c28f6823567b0132c3aa28111a52b6c53ed3130a86e7a7", "0x4f2ad78394ff64a91eb385c38bbea7ac398f61ef3c8a0bea9d57311adcac5be"], "nonce": "0xa", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", "0x0", "0x4", "0x4", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x0", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x778b9b6dfbad28d3627e33d1017d0ee1332b0a83e5a9676969940ef1f9e47fe", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x705739869fe95129300df3fb885657e961e53ad8f1e7206e522ec5c044050f4", "0x3697ff8920d3e34cf7ec1b8d6b57c86a7a4a894dd15cbbe1220e968450874a5"], "nonce": "0xb", "class_hash": "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x2bbb0dca331b5e5b9109a4ccac405894095952fb8f0747e022311114edde6be", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x7f42046a4cca79291f1de2614caacc73f23aceee3a3780274d0f654dc1da615", "0x5e377877f2a37cecc38a7c2e1b51a28d5e5c1637c7cb06ff8a064b5f690ab1b"], "nonce": "0xc", "class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x763d3144ac9f23421a87be901a0fb80402b296960c6abd323002fcf21d1cd8a", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x5f26bf3ce5d19ea663ee944f66be5dfb85bd7a621f4062e83e42bcfa3dc04a8", "0x564147077f9316f8dc63a173e4814d373af20cac19ab96d6549421c1b41f364"], "nonce": "0xd", "class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}], "timestamp": 1700717101, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x2ac4c6315d54499d1c8133e4501e9034d8f70534afc013a272bab03995fa040", "l1_to_l2_consumed_message": {"from_address": "0x8453FC6Cd1bCfE8D4dFC069C400B433054d47bDc", "to_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"], "nonce": "0x1"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x0", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"]}, {"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"]}], "execution_resources": {"n_steps": 8053, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 168}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x24ed6b82e2f6d3a811ec180a25c1ccd0bdc7bdba8ebd709de2ed697a1e82193", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b77f19d564b", "0x0"]}], "execution_resources": {"n_steps": 3863, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x1b77f19d564b"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "ecdsa_builtin": 1, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x2d288985b7201cae604c1ea879de93f6d41dcc617cbf27934a90c35b02b14c2", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x3f6e39d90aa084585ac59fa4c19429499951eb7a279427bbe0a7718c8d9072f", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x38d7ea4c68000", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17bb7b7a145f", "0x0"]}], "execution_resources": {"n_steps": 6260, "builtin_instance_counter": {"range_check_builtin": 143, "pedersen_builtin": 20, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17bb7b7a145f"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x6d574ba9be0979817a41c2a62fc646246bc7327cf6fedccee3a8c978347fb78", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x13adb068b8d1", "0x0"]}], "execution_resources": {"n_steps": 3640, "builtin_instance_counter": {"pedersen_builtin": 23, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x13adb068b8d1"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x48153df38b1e3bc5736b6501f736325f0261defe4e32a2e4069f452ef007acb", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b8013b525a8", "0x0"]}], "execution_resources": {"n_steps": 4396, "builtin_instance_counter": {"range_check_builtin": 99, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x1b8013b525a8"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0xe022165192e2125a82029ed50194dd9c405f7405dc327887b3fdf3e4ccfe85", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0x1889b8347f0ad35735b245d1ba7660b52eba88283971baf204d235c15749e65", "l2_to_l1_messages": [], "events": [{"from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "keys": ["0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d"], "data": ["0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x0", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "0x0", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b9398bb1754", "0x0"]}], "execution_resources": {"n_steps": 5570, "builtin_instance_counter": {"range_check_builtin": 123, "ecdsa_builtin": 1, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x1b9398bb1754"}, {"execution_status": "SUCCEEDED", "transaction_index": 9, "transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}, {"execution_status": "SUCCEEDED", "transaction_index": 10, "transaction_hash": "0xb2d88f64d9655a7d47a5519d66b969168d02d0d33f6476f0d2539c51686329", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 11, "transaction_hash": "0x6be43a9866326cd9b227cfc528e05fdd89ffe32b6e0c9a8f54c6047ba1bb697", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 12, "transaction_hash": "0x817027a1a1d85e6dffde72e7114deef81a09c86846ed92057eb986518c9864", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 13, "transaction_hash": "0x5d858a06bb8b7a899cda2bd7962c4009c6c40dbf3e747dc786d13de7d8c8031", "l2_to_l1_messages": [], "events": [{"from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "keys": ["0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d"], "data": ["0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x0", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x0", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b9398bb1754", "0x0"]}], "execution_resources": {"n_steps": 5570, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 123}, "n_memory_holes": 0}, "actual_fee": "0x1b9398bb1754"}, {"execution_status": "SUCCEEDED", "transaction_index": 14, "transaction_hash": "0x778b9b6dfbad28d3627e33d1017d0ee1332b0a83e5a9676969940ef1f9e47fe", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 15, "transaction_hash": "0x2bbb0dca331b5e5b9109a4ccac405894095952fb8f0747e022311114edde6be", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}, {"execution_status": "SUCCEEDED", "transaction_index": 16, "transaction_hash": "0x763d3144ac9f23421a87be901a0fb80402b296960c6abd323002fcf21d1cd8a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/15_declare_v2.txt b/starknet-core/test-data/raw_gateway_responses/get_block/15_declare_v2.txt index ef2490df..69094e28 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/15_declare_v2.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/15_declare_v2.txt @@ -1 +1 @@ -{"block_hash": "0x67d24961077de7a1f49b6b1da78903ee80217662d026c155e14d7abedc04034", "parent_block_hash": "0x3b7f89c33765c069bf208fef2d4e7df7b0675bbd55d79ac404767b0a7321a10", "block_number": 283364, "state_root": "0x16faa4c43f71b49facab6b0585094195c989ea6168e69f235fdcef86428cd42", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x2c9480b720", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x7dc35a7ebf3601ad36a1050d7d4e3db755702d2f90250f6d78d545ba369bd0a", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x5f6e7ac6c9093079d4d9df10e453efe3225693343b936e00e3f5be48efe893b", "0x4f3d99dd247af4fd815e9cbd8df605f956a05547b02ccb696a9223d7176e298"], "nonce": "0xa", "sender_address": "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a", "calldata": ["0x1", "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x0", "0x1", "0x1", "0x88dceacb9d2ffe56eece1f54dc1919cdc2ebac47"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5d6bc25ac6724cf96c328f791616c1aa05f35ef823299f6b690c63de390d759", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x189884c2e3f90f8ca6f575de70c7856e2a6129975a926bc5263096a4b6b4c93", "0x29dc24752411aae197df94803e6f44140e5b692b6182be48a8809df39430f5c"], "nonce": "0xb", "sender_address": "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a", "calldata": ["0x1", "0x24dbaeb7bf551b2e6c403957a5e4c1b19596c2d6b9c77d677ed85af73007fc", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x0", "0x2", "0x2", "0x1469414c13009d9841e8cf4d8abd32ae6d59fe66c8e555271dc2231f45c7a6d", "0x1c0f34928344fecbeed32e6087bd0c8ec049c1f33b6b115568f2b11c94a9ab6"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x4f0bb5862a1c8740a014ba6905ef51641cb2735ba7b66546ecbb3819b540129", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x405c726fded746ecf651bf45b983544c87a5dbcfcc82bce5470ebcd13a31b7d", "0x3911487a9ae3ee542e6cfad8fdd07bc27c4ef16688713fd8c311be0b5871249"], "nonce": "0xc", "sender_address": "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a", "calldata": ["0x1", "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x0", "0x2", "0x2", "0x6bfbb0f2bdec6f6e4a6eb5de2bfad5722a48bbcf7db16dbb361edf1b15eaa65", "0x5a887e8eea583dd5ffa62dff9a127c2b851c63d40d6694932143fa7d30ee"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x722b666ce83ec69c18190aae6149f79e6ad4b9c051b171cc6c309c9e0c28129", "version": "0x2", "max_fee": "0x38d7ea4c68000", "signature": ["0x6f3070288fb33359289f5995190c1074de5ff00d181b1a7d6be87346d9957fe", "0x4ab2d251d18a75f8e1ad03aba2a77bd3d978abf571dc262c592fb07920dc50d"], "nonce": "0x1", "class_hash": "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c", "compiled_class_hash": "0x711c0c3e56863e29d3158804aac47f424241eda64db33e2cc2999d60ee5105", "sender_address": "0x2fd67a7bcca0d984408143255c41563b14e6c8a0846b5c9e092e7d56cf1a862", "type": "DECLARE"}, {"transaction_hash": "0x159646f465579273f24e64206d35924f9864b4d080bc87335970a6bc943d8e7", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x461c362598dbf21382fa449b8e48b2dcd65aecfc300138bc567305507102019", "0x4906840e5011243798c2d97f86c31a44271f584138294d473500184c402d9f9"], "nonce": "0x4", "sender_address": "0x733dead6027a46717d7e79be28bf059bb8f5b02db2854c742ff652392d94506", "calldata": ["0x1", "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", "0x0", "0x5", "0x5", "0x4631b6b3fa31e140524b7d21ba784cea223e618bffe60b5bbdca44a8b45be04", "0x5406259a8ebc73b0b15b9d036530ccebe1510ad4c4e497470a20a33322a83a5", "0x2", "0x633cce43561d71b1f82035f5f0af626da6b22bea7a0ff9f942a6fd4f039fe51", "0x126a5919e999f9195ae166f349429f050380f691fc4ea5b2f4d8585d050bf12"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x64e399ffac3fb93fc4ca13dbeb5de7034fc6c6604fdb575b5cc2990a7642b9f", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x20225295ba412d6010fb5374d2c520ba76e13518150b0d3c3104eefcca6d478", "0x436758380e377381057c0cffb8678f879a05310ff4a6173d0ce975594160cfa"], "nonce": "0x5", "sender_address": "0x733dead6027a46717d7e79be28bf059bb8f5b02db2854c742ff652392d94506", "calldata": ["0x1", "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x0", "0x1", "0x1", "0xf21ae0bbafccd3e11e0206f4b1dfa2ed5b6131a4"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1a8a02e2d141b7701f72302f6032d66199b86ff6ce62588cdc3de0dea42fa42", "version": "0x1", "max_fee": "0x16976e40cd091", "signature": ["0x4f3a131d7ea1dc697c05715dfa1119c584141612d66ca7840998b9762cd3056", "0x7afaae13c021d96001575f051d38c0db2cc4187fc65cf04ae36a09c2d2c6547"], "nonce": "0x2", "sender_address": "0x2fd67a7bcca0d984408143255c41563b14e6c8a0846b5c9e092e7d56cf1a862", "calldata": ["0x1", "0x2fd67a7bcca0d984408143255c41563b14e6c8a0846b5c9e092e7d56cf1a862", "0x2730079d734ee55315f4f141eaed376bddd8c2133523d223a344c5604e0f7f8", "0x0", "0x4", "0x4", "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c", "0x66ab46b3e2dfa3581ccc442059bd629d11547d834c85170e08bf45caf1d6c21", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6cedd13f84d1a3de319771023b70fa8227738c77a6f53885d2c5cbe923e7e9c", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0xa0db9be3f5f0e11cb0ab80206078e9d6f9578ea11d3c133daae9c28b06e025", "0x1a1651e6352819f3b6010840917f4f901600b8d016e79df7cf749df99e11b3e"], "nonce": "0xd", "sender_address": "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a", "calldata": ["0x1", "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "0x0", "0x3", "0x3", "0x355fe760e42a88280d47a4031ec2fb6ad65347bdcec440b4b7104f69a588850", "0x69deb1aaf37c520b687dfa5e23b60d10822ac65875446c2f3a26d9251f12e93", "0x1c65c2f72ab9a8589d1594e4c367a499d663af5de0184d387af8f5009048a31"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x22b9c9549eaa5b684262aaa4d18ce3df7249ec5c72038d09f628ff879c2d62", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x5d0e4b17b6dbbdeaca6bd3dfa52a422b2ffd0b84a49b07088cb397f0ca38413", "0x499961797e6ea9aca6515e30623f52497929942bb943dc95dc2bae8541e29c"], "nonce": "0xe", "sender_address": "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a", "calldata": ["0x1", "0x24dbaeb7bf551b2e6c403957a5e4c1b19596c2d6b9c77d677ed85af73007fc", "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "0x0", "0x2", "0x2", "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "0x1"], "type": "INVOKE_FUNCTION"}], "timestamp": 1677079834, "sequencer_address": "0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x7dc35a7ebf3601ad36a1050d7d4e3db755702d2f90250f6d78d545ba369bd0a", "l2_to_l1_messages": [{"from_address": "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "to_address": "0x88DCEacB9D2FFe56EeCe1F54dC1919CDC2eBAc47", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 173, "builtin_instance_counter": {"range_check_builtin": 2}, "n_memory_holes": 3}, "actual_fee": "0x14017c6b2dea40"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x5d6bc25ac6724cf96c328f791616c1aa05f35ef823299f6b690c63de390d759", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 167, "builtin_instance_counter": {"range_check_builtin": 2}, "n_memory_holes": 3}, "actual_fee": "0x286c27360be40"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x4f0bb5862a1c8740a014ba6905ef51641cb2735ba7b66546ecbb3819b540129", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 167, "builtin_instance_counter": {"range_check_builtin": 2}, "n_memory_holes": 3}, "actual_fee": "0x286c27360be40"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x722b666ce83ec69c18190aae6149f79e6ad4b9c051b171cc6c309c9e0c28129", "l2_to_l1_messages": [], "events": [], "actual_fee": "0xd9d9b0fee160"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x159646f465579273f24e64206d35924f9864b4d080bc87335970a6bc943d8e7", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 229, "builtin_instance_counter": {"range_check_builtin": 3}, "n_memory_holes": 5}, "actual_fee": "0x2f2e6af9cf6e0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x64e399ffac3fb93fc4ca13dbeb5de7034fc6c6604fdb575b5cc2990a7642b9f", "l2_to_l1_messages": [{"from_address": "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265", "to_address": "0xf21aE0BbafCCD3E11E0206f4B1DFa2ed5b6131A4", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 173, "builtin_instance_counter": {"range_check_builtin": 2}, "n_memory_holes": 3}, "actual_fee": "0x14017c6b2dea40"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x1a8a02e2d141b7701f72302f6032d66199b86ff6ce62588cdc3de0dea42fa42", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 218, "builtin_instance_counter": {"range_check_builtin": 3}, "n_memory_holes": 5}, "actual_fee": "0x1489aa0c5d4e0"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0x6cedd13f84d1a3de319771023b70fa8227738c77a6f53885d2c5cbe923e7e9c", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 318, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 8, "bitwise_builtin": 2}, "n_memory_holes": 25}, "actual_fee": "0x35c6e384e74a0"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0x22b9c9549eaa5b684262aaa4d18ce3df7249ec5c72038d09f628ff879c2d62", "l2_to_l1_messages": [{"from_address": "0x24dbaeb7bf551b2e6c403957a5e4c1b19596c2d6b9c77d677ed85af73007fc", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 478, "builtin_instance_counter": {"range_check_builtin": 2}, "n_memory_holes": 3}, "actual_fee": "0x175b7a84725b20"}], "starknet_version": "0.11.0"} \ No newline at end of file +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "parent_block_hash": "0x7e16179ff54fa8bb1533fe2eea930e9e2bd658faaf9972533c9d3a9303171fc", "block_number": 7, "state_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "transaction_commitment": "0x5b209de02dadbe60f29809c4409541b3b1c8cac7260005e1ecad82bf8a9c524", "event_commitment": "0x41faa348153f17105f3452f598e76ae4f37643fa9e02555a3ac6336488bcd47", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x1a06b2979", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x2ac4c6315d54499d1c8133e4501e9034d8f70534afc013a272bab03995fa040", "version": "0x0", "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0x1", "calldata": ["0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"], "type": "L1_HANDLER"}, {"transaction_hash": "0x24ed6b82e2f6d3a811ec180a25c1ccd0bdc7bdba8ebd709de2ed697a1e82193", "version": "0x1", "max_fee": "0x1e3723604552", "signature": ["0x7f7282f79203f23ee8cd86db05a67166cf8f365415c472b3c3e0a8adfd45c58", "0x14132fea675b197eb5ac3c29665ae9bc92939e3b50bd4d2cbdd13ce64000421"], "nonce": "0x0", "contract_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "contract_address_salt": "0x0", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6", "constructor_calldata": ["0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x30a10763fc93c0e02959352754d11dbb03dcabb0c1e786b4dc02c77170ab017", "0x3ae5a2e11c72bbda3ef9621856d26f3f9d82b3ce7b9825a59ecd1e28dd0ae29"], "nonce": "0x1", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x2d288985b7201cae604c1ea879de93f6d41dcc617cbf27934a90c35b02b14c2", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x4cb34009319879a40498361bfc390247f341626836c1d256dac660f980cf931", "0xb1d8991d6b15554ea591e9987ebcadc3dc7ae257b7157c316d470d760dd8c3"], "nonce": "0x2", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x3f6e39d90aa084585ac59fa4c19429499951eb7a279427bbe0a7718c8d9072f", "version": "0x1", "max_fee": "0x1a1b07d31668", "signature": ["0x1a9c4f3464fe4a8b1575855cdb7745e14a2d825f4c0e9213d4d802899001016", "0x1063cb02e19c26a09b57f4727e339494d8ed0cdaf5e2de28ead36f93007fe86"], "nonce": "0x3", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "0x0", "0x3", "0x3", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x38d7ea4c68000", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6d574ba9be0979817a41c2a62fc646246bc7327cf6fedccee3a8c978347fb78", "version": "0x1", "max_fee": "0x15a5753ffe7f", "signature": [], "nonce": "0x0", "contract_address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "contract_address_salt": "0x0", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "constructor_calldata": [], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x48153df38b1e3bc5736b6501f736325f0261defe4e32a2e4069f452ef007acb", "version": "0x1", "max_fee": "0x3700276a4b50", "signature": [], "nonce": "0x1", "sender_address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "calldata": ["0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xe022165192e2125a82029ed50194dd9c405f7405dc327887b3fdf3e4ccfe85", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x29cb2b4becb97be8bac6ddd7e69d5ba32e019ae87a522065e586362cccfd6b6", "0xb360de930a34c30899cc5646715ec9f4fdd84801b1f3219d597aed89dbf425"], "nonce": "0x4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x1889b8347f0ad35735b245d1ba7660b52eba88283971baf204d235c15749e65", "version": "0x1", "max_fee": "0x1e558e676676", "signature": ["0x5230f26e1177d1de4d01f2c51b0b750ec407b911aeefcdf2a8352a0a351d629", "0x13093b74a819ebd42c381e072d49103179ca913a9d44f9575a05be178292deb"], "nonce": "0x5", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", "0x0", "0x4", "0x4", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "0x0", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x4ab3e77908396c66b39326f52334b447fe878d1d899a287c9e3cf7bd09839ea", "0x79a56f9e61eb834f1ac524eb35da33cccf92ff3b01a7a8eaf68cbb64bebdba9"], "nonce": "0x6", "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0xb2d88f64d9655a7d47a5519d66b969168d02d0d33f6476f0d2539c51686329", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x3609667964a8ed946bc507721ec35a851d97a097d159ef0ec2af8fab490223f", "0x68846bad9f0f010fac4eeaf39f9dd609b28765fd2336b70ce026e33e2421c15"], "nonce": "0x7", "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x6be43a9866326cd9b227cfc528e05fdd89ffe32b6e0c9a8f54c6047ba1bb697", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x5de837c93ef3f99c3bcaeb9ff55b1954918d26405d05e1b7e9c10c5214ae452", "0xa1f38c7489e52d8fa5185c4a0710118facada52464d22200b891e0d8dc65b8"], "nonce": "0x8", "class_hash": "0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x817027a1a1d85e6dffde72e7114deef81a09c86846ed92057eb986518c9864", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x2845820af4fa0a3ed35913d519e7fffdc740fa5f5022749c17cd61ff094412a", "0x72d0850851912178f77a2f6de715a848d64c5e082df1cba17f8498ca5516ef2"], "nonce": "0x9", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x5d858a06bb8b7a899cda2bd7962c4009c6c40dbf3e747dc786d13de7d8c8031", "version": "0x1", "max_fee": "0x1e558e676676", "signature": ["0x76fbfa1b81f3ef360c28f6823567b0132c3aa28111a52b6c53ed3130a86e7a7", "0x4f2ad78394ff64a91eb385c38bbea7ac398f61ef3c8a0bea9d57311adcac5be"], "nonce": "0xa", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", "0x0", "0x4", "0x4", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x0", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x778b9b6dfbad28d3627e33d1017d0ee1332b0a83e5a9676969940ef1f9e47fe", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x705739869fe95129300df3fb885657e961e53ad8f1e7206e522ec5c044050f4", "0x3697ff8920d3e34cf7ec1b8d6b57c86a7a4a894dd15cbbe1220e968450874a5"], "nonce": "0xb", "class_hash": "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x2bbb0dca331b5e5b9109a4ccac405894095952fb8f0747e022311114edde6be", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x7f42046a4cca79291f1de2614caacc73f23aceee3a3780274d0f654dc1da615", "0x5e377877f2a37cecc38a7c2e1b51a28d5e5c1637c7cb06ff8a064b5f690ab1b"], "nonce": "0xc", "class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x763d3144ac9f23421a87be901a0fb80402b296960c6abd323002fcf21d1cd8a", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x5f26bf3ce5d19ea663ee944f66be5dfb85bd7a621f4062e83e42bcfa3dc04a8", "0x564147077f9316f8dc63a173e4814d373af20cac19ab96d6549421c1b41f364"], "nonce": "0xd", "class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}], "timestamp": 1700717101, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x2ac4c6315d54499d1c8133e4501e9034d8f70534afc013a272bab03995fa040", "l1_to_l2_consumed_message": {"from_address": "0x8453FC6Cd1bCfE8D4dFC069C400B433054d47bDc", "to_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"], "nonce": "0x1"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x0", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"]}, {"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"]}], "execution_resources": {"n_steps": 8053, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 168}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x24ed6b82e2f6d3a811ec180a25c1ccd0bdc7bdba8ebd709de2ed697a1e82193", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b77f19d564b", "0x0"]}], "execution_resources": {"n_steps": 3863, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x1b77f19d564b"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "ecdsa_builtin": 1, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x2d288985b7201cae604c1ea879de93f6d41dcc617cbf27934a90c35b02b14c2", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x3f6e39d90aa084585ac59fa4c19429499951eb7a279427bbe0a7718c8d9072f", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x38d7ea4c68000", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17bb7b7a145f", "0x0"]}], "execution_resources": {"n_steps": 6260, "builtin_instance_counter": {"range_check_builtin": 143, "pedersen_builtin": 20, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17bb7b7a145f"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x6d574ba9be0979817a41c2a62fc646246bc7327cf6fedccee3a8c978347fb78", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x13adb068b8d1", "0x0"]}], "execution_resources": {"n_steps": 3640, "builtin_instance_counter": {"pedersen_builtin": 23, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x13adb068b8d1"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x48153df38b1e3bc5736b6501f736325f0261defe4e32a2e4069f452ef007acb", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b8013b525a8", "0x0"]}], "execution_resources": {"n_steps": 4396, "builtin_instance_counter": {"range_check_builtin": 99, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x1b8013b525a8"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0xe022165192e2125a82029ed50194dd9c405f7405dc327887b3fdf3e4ccfe85", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0x1889b8347f0ad35735b245d1ba7660b52eba88283971baf204d235c15749e65", "l2_to_l1_messages": [], "events": [{"from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "keys": ["0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d"], "data": ["0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x0", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "0x0", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b9398bb1754", "0x0"]}], "execution_resources": {"n_steps": 5570, "builtin_instance_counter": {"range_check_builtin": 123, "ecdsa_builtin": 1, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x1b9398bb1754"}, {"execution_status": "SUCCEEDED", "transaction_index": 9, "transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}, {"execution_status": "SUCCEEDED", "transaction_index": 10, "transaction_hash": "0xb2d88f64d9655a7d47a5519d66b969168d02d0d33f6476f0d2539c51686329", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 11, "transaction_hash": "0x6be43a9866326cd9b227cfc528e05fdd89ffe32b6e0c9a8f54c6047ba1bb697", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 12, "transaction_hash": "0x817027a1a1d85e6dffde72e7114deef81a09c86846ed92057eb986518c9864", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 13, "transaction_hash": "0x5d858a06bb8b7a899cda2bd7962c4009c6c40dbf3e747dc786d13de7d8c8031", "l2_to_l1_messages": [], "events": [{"from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "keys": ["0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d"], "data": ["0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x0", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x0", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b9398bb1754", "0x0"]}], "execution_resources": {"n_steps": 5570, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 123}, "n_memory_holes": 0}, "actual_fee": "0x1b9398bb1754"}, {"execution_status": "SUCCEEDED", "transaction_index": 14, "transaction_hash": "0x778b9b6dfbad28d3627e33d1017d0ee1332b0a83e5a9676969940ef1f9e47fe", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 15, "transaction_hash": "0x2bbb0dca331b5e5b9109a4ccac405894095952fb8f0747e022311114edde6be", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}, {"execution_status": "SUCCEEDED", "transaction_index": 16, "transaction_hash": "0x763d3144ac9f23421a87be901a0fb80402b296960c6abd323002fcf21d1cd8a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/16_with_reverted_tx.txt b/starknet-core/test-data/raw_gateway_responses/get_block/16_with_reverted_tx.txt index 707da6e9..e3fc3e48 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/16_with_reverted_tx.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/16_with_reverted_tx.txt @@ -1 +1 @@ -{"block_hash": "0x34e815552e42c5eb5233b99de2d3d7fd396e575df2719bf98e7ed2794494f86", "parent_block_hash": "0x3ae41b0f023e53151b0c8ab8b9caafb7005d5f41c9ab260276d5bdc49726279", "block_number": 1, "state_root": "0x74abfb3f55d3f9c3967014e1a5ec7205949130ff8912dba0565daf70299144c", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "version": "0x0", "contract_address": "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5", "contract_address_salt": "0x6030390b01fe79d844330de00821c68206959c389ef744b2d315e27078f0ad", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x782142c3526899d48e6f1ce725f56b11cb462586c9f1340e4cfbcbebdd174f2", "0x7dee1fa95f31fd5ffb0ad1c3313aa51d82d66adfbb65efb982eae696c4309b7"], "type": "DEPLOY"}, {"transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "version": "0x0", "contract_address": "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b", "contract_address_salt": "0x13b7e67ff6b2e1a5aac25134cc2765ea2a1bf36a7b94c92aa3fc4690978d1c5", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x26a1e7e74188cbc724a793c972ad09d5aba110c4c06dfae51ae078b321e957", "0x461226574f9663500fc330295cea93b295389618c9eab30c3362fa14975d54c"], "type": "DEPLOY"}, {"transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "version": "0x0", "contract_address": "0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352", "contract_address_salt": "0x25c239a162c5a7ace888ca39f295aad52b75174952f4ea8f3afed13cde4490a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x1a315d6be5adafdd493b45672137525190b23b7f3a0ec91feafaa6ab48b0828", "0x24740a6b71ae76d658a1ec1efb6f201ba9794ebeed49ca59c0efe63f4a3cca2"], "type": "DEPLOY"}, {"transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x64ed79a8ebe97485d3357bbfdf5f6bea0d9db3b5f1feb6e80d564a179122dc6", "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32"], "contract_address": "0x7b196a359045d4d0c10f73bdf244a9e1205a615dbb754b8df40173364288534", "type": "INVOKE_FUNCTION"}], "timestamp": 1638978017, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x78b67b11f8c23850041e11fb0f3b39db0bcb2c99d756d5a81321d1b483d79f6", "parent_block_hash": "0x5c627d4aeb51280058bed93c7889bce78114d63baad1be0f0aeb32496d5f19c", "block_number": 1, "state_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "transaction_commitment": "0x301a3e7f3ae29c3463a5f753da62e63dc0b6738c36cb17e3d1696926457a40c", "event_commitment": "0x0", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9ada0f", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "version": "0x0", "max_fee": "0x0", "signature": [], "nonce": "0x0", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "sender_address": "0x1", "type": "DECLARE"}], "timestamp": 1700474724, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 2711, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/1_with_transactions.txt b/starknet-core/test-data/raw_gateway_responses/get_block/1_with_transactions.txt index aef81855..c431fa03 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/1_with_transactions.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/1_with_transactions.txt @@ -1 +1 @@ -{"block_hash": "0x42553deb16a14de4153f28312971f825e83d924e0f2883c1178de86a64a398f", "parent_block_hash": "0x315571f683fadc29bccd6bc6b666562d3fee101b6dcb8b12cf62821ecba9b62", "block_number": 100, "state_root": "0x4be6496e74b3877db0b958a197b32ad797b3d2b1045e0697c01c1481501ea39", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x2cce6f468d865bf93476c7a96b7ce0ca3d26a6ffbb4ba93a027a67f0d2e2773", "version": "0x0", "contract_address": "0x3272141143bc48b691d2037401c6957aef95f8e5ac0228b8d4518c8a0ef4b9f", "contract_address_salt": "0x7388987d7b2b134b2607a5bcb16cf4d2a746c5b195cceb3bd642109a3c111f0", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x733f7cf7e65348e0de5e7da675c243254fb225031575efa12b3baf9528cec6c", "0x600139c4376cff21a74f59f76bd2ffbd834e3944efcd9b712887bdd73b025db"], "type": "DEPLOY"}, {"transaction_hash": "0x2258d22b67b91625a4fa0b382787d3d22497c941a4cfe5839f14dddf9bc2dcc", "version": "0x0", "contract_address": "0x51e85932cee8a876fad5406e260d8b35c7ec181c9ce921f0cd1c8539d187e2a", "contract_address_salt": "0x7186ad1959aaf89e6c4a7835ba2eb8a89704018b9f339835b6c771b5a00e4df", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x145269486f7776d82292863ab8ca51e5b75de049a1a0d24926ba76a42eed5b9", "0x57d1eb0164ab13261149136d825b9968f7af98b11cc3f0d3c8345b26d3a61c1"], "type": "DEPLOY"}, {"transaction_hash": "0x6c26da8c26aa61dc40ed36b9078536f3b5b0532e884a8f0b7488480580bf3c9", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x1b16ae63c8a3ca48ad7df4b7699750d1dbb1570f528628384e7ae76fa9b18dc", "0x33ce93a3eececa5c9fc70da05f4aff3b00e1820b79587924d514bc76788991a", "0x1", "0x0"], "contract_address": "0x12d1e51756ee5642f08f32d6a63f661e0af3ad44f8f253ae8060368712029b1", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x26699471faacb1f3a4f1da4b0dacb16b2e7b7fe0019d84f5971efe50c3bcded", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0x29b0cd7db5834d7db252fc218d1c6e22b3d7270dd28a699e2d718ba5a3af795", "0x65d6725ca6901828f58a45d340e51a59f373302a504dcf2f55a6acd4f6dbfbd"], "contract_address": "0x53f3bb33d1690fb40f108e76dfa2e2df8d71d575588426a4b0f6d882c4313ac", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x39fe0e1e4a3311850fc6aa3fab4fcb3a4534b04d338a00d5a5a576ce3bc161", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0x645a5ced0a6ea39b08298daead96bfa5ada4bbff"], "contract_address": "0x1b16ae63c8a3ca48ad7df4b7699750d1dbb1570f528628384e7ae76fa9b18dc", "type": "INVOKE_FUNCTION"}], "timestamp": 1638987140, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x2cce6f468d865bf93476c7a96b7ce0ca3d26a6ffbb4ba93a027a67f0d2e2773", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x2258d22b67b91625a4fa0b382787d3d22497c941a4cfe5839f14dddf9bc2dcc", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x6c26da8c26aa61dc40ed36b9078536f3b5b0532e884a8f0b7488480580bf3c9", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 63, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x26699471faacb1f3a4f1da4b0dacb16b2e7b7fe0019d84f5971efe50c3bcded", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x39fe0e1e4a3311850fc6aa3fab4fcb3a4534b04d338a00d5a5a576ce3bc161", "l2_to_l1_messages": [{"from_address": "0x1b16ae63c8a3ca48ad7df4b7699750d1dbb1570f528628384e7ae76fa9b18dc", "to_address": "0x645A5CED0A6EA39b08298dAEAD96Bfa5ada4bBFf", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x1b2aa5b3d3549f4d20e5da0c4e883569062bba77b83deaf05023ff25ed263ab", "parent_block_hash": "0x327e636238a2f721b6ec76d8e9ac80409ec7d97a1abb8e8e8984a2498dcd64b", "block_number": 100, "state_root": "0x51098918fd96edda4e251f695181c063e21fb0666352e3469db507c7fd62b89", "transaction_commitment": "0x576db32d35cf011694a73c6ce400d5d77f768cbd77ee7cf87d12902e0f9b4ec", "event_commitment": "0x1c972780140fd16dde94639226ca25818e4f24ecd5b5c3065cc1f5f5fc410f9", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x41a6eb9e", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x3e11636b9c79ead698fcbd706f22ab0e9d16526d9f8f46837a5b5ca35e80619", "0x41d6b131ad80ad0f8a4d3cd769b47343b498f69d051fb892f1d7a6679fee7a0"], "nonce": "0xf7", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", "0x0", "0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1eafc2526500296b7208c5fe476e4a8cedb57382df56be48d9d7fafc8065450", "0x2", "0x4", "0x6", "0x55fd2c884e34463a9417db82657224ff", "0xc4adb99a3ff4b2e42860f07759eb9bed", "0xf3dab5f4e79bcdc0beb8e40326b0d8d6", "0xdc94a5b96f0033caedd78bad9580de64", "0x291d4450b96580ccf5ca4df3e2bd1ec7", "0x16bf6384530c7aeff7a24b77973ba9fb"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x6bcd46d8c5fad65dbb645de3b70f3eec69f8c9db0deb0d073d694e5b8948dd5", "0x578f2cd665ba4c17fa62f48afe6e76082022476464b488edf96b0b0357d987c"], "nonce": "0xf8", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x0", "0x9", "0x9", "0x6", "0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923", "0x1", "0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x40d444a5ef3d561b84bdf890427cb7705f0de017a12ab218455ede5f88bc646", "0x6343e1b64b19426bab64569f4c8ca7bdafd415530bb12d7cfb9bb4328a22db8"], "nonce": "0xf9", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1146dc478b3f7aefc53dbbbb6d068505c5a99f8e3438fdd2d38b91044a79300", "0x0", "0x4", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x4", "0x2", "0x6", "0xfb3b60118ad52416e9543a7d8c0ce3ca", "0xc0a6096ef173003a7ac1a9b33d5514ec", "0xf7c5dc678b3e71efd3b96d4eeb62a8c4", "0xbcb38cae02ce6921074be5ea8e220fc4", "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x22f2c75fa521003217e4e2b3dc1dd3928ec8f12cb333d126457df61e387efbf", "0x735340fc08822817104f69b2616b1fd4bde88dfbc3d8d8796f19147b7ee40c5"], "nonce": "0xfa", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x0", "0x4", "0x4", "0x42e1618965efe6306c0f13c8daefbf6d7f9b5a8f1023e809e2b48ccefd8a0b1", "0x2", "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8", "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"], "type": "INVOKE_FUNCTION"}], "timestamp": 1701111712, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x28efb4aa64c", "0x0"]}], "execution_resources": {"n_steps": 10552, "builtin_instance_counter": {"range_check_builtin": 463, "ecdsa_builtin": 1, "pedersen_builtin": 16}, "n_memory_holes": 0}, "actual_fee": "0x28efb4aa64c"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52", "l2_to_l1_messages": [], "events": [{"from_address": "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "keys": ["0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923"], "data": ["0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27f982b6d44", "0x0"]}], "execution_resources": {"n_steps": 4503, "builtin_instance_counter": {"pedersen_builtin": 16, "range_check_builtin": 105, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x27f982b6d44"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x4f7c06e29a2", "0x0"]}], "execution_resources": {"n_steps": 6243, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 172, "pedersen_builtin": 16}, "n_memory_holes": 0}, "actual_fee": "0x4f7c06e29a2"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x62e0f63d26e", "0x0"]}], "execution_resources": {"n_steps": 4808, "builtin_instance_counter": {"pedersen_builtin": 18, "ecdsa_builtin": 1, "range_check_builtin": 110}, "n_memory_holes": 0}, "actual_fee": "0x62e0f63d26e"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/2_with_messages.txt b/starknet-core/test-data/raw_gateway_responses/get_block/2_with_messages.txt index 28849529..ee747a90 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/2_with_messages.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/2_with_messages.txt @@ -1 +1 @@ -{"block_hash": "0x74cfd4248411f1c1f9a772dfab593d8567903409cd28d53b9999b075be7fde0", "parent_block_hash": "0x5b346e034baaadbd76fdcdc1cd2c66a952d8c2c0a5c13efd6f870cb598a790a", "block_number": 102, "state_root": "0x7f99e1098cf1bce26d5ba04ebdf6359d223d85c564c3dbd463bc1b86be8e519", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0xbf7dc15a05a3a20af67cede6d6b01dc51527a66c76d62e65e3786f6859658d", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0xfe6bfff9cc3a865e6a4c5a32f1ce6c1edaa8a20c"], "contract_address": "0x3e591c0f03fa44890270a10afcc20cd2955c230d3a5f23e9e878472d30de894", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xaf6a0198fb059b6191567251ea91289401e3b21c30eaae80b14fd488296d3f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x838154919880a519aa34274066150498421b0e457a29e402fdc031b42e57c1", "0x5a81ca3fe1e5124d3213a3d954c720f58fee76e67a4865375e9f510776dff32"], "contract_address": "0x6eb02b1b1de08371b4040fed26cd4bc7e0e20869e4101d5805b55de928c9a30", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x21d1eee03dd6d65dd21566f7cdb9d9adcdf19ab348e7dec69c1f3fe3b30d6d8", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x428bb1b6ccf6d6f453d1bc541e979cbdebc430a8b88bb9ef609124778189662", "0x1"], "contract_address": "0x43c33f9fd75b39e85e2e5be148af0789509e2dff3d27c190ba968899e7e0eca", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x69acd104e3e67a279ff97a7888267338e49079e5f285554c6615e0330607171", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x32abe45df04186f254d536dc09ff417552f4f6ce56aa98e566844a46ed27f88", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x4", "0x27f0e2d287cfd186965790e011f6ed645a2a187b856d454d910dada87df8ce0", "0x2", "0x6023a97527d85b7ac20137432157ca417bac994d482148b3f9a14756f4c55dd", "0x7566eaa8a44e269354271a238b066b13a5614530ddbd8be5f6859677ac91a63"], "contract_address": "0x79631f37538379fc32739605910733219b836b050766a2349e93ec375e62885", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7d6be64ce22c9336649c18c1007cfeac5a3ae1c0c70d752378c93b68740d874", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x267d07be3b4a438180cb8e6f5b738afab61b802afd2d7e9cc1b940ca42c103", "0x2"], "contract_address": "0x7bd521e81062d3b6033a38ee88e3072600e3a5bed2b5c8cf05e4ed0463e37c9", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x4859ce9a202e89cdcb420f5a8ea28e185196a5aaf9db4426aea71fc456c5c4d", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x3886f6f7afa7f499b90d16131f34eee70e0422a10fca83f1bde2bfcc44afce8", "0x2"], "contract_address": "0x838154919880a519aa34274066150498421b0e457a29e402fdc031b42e57c1", "type": "INVOKE_FUNCTION"}], "timestamp": 1638987334, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0xbf7dc15a05a3a20af67cede6d6b01dc51527a66c76d62e65e3786f6859658d", "l2_to_l1_messages": [{"from_address": "0x3e591c0f03fa44890270a10afcc20cd2955c230d3a5f23e9e878472d30de894", "to_address": "0xFE6bFfF9cc3A865E6A4c5a32f1CE6c1EDaA8a20C", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0xaf6a0198fb059b6191567251ea91289401e3b21c30eaae80b14fd488296d3f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x21d1eee03dd6d65dd21566f7cdb9d9adcdf19ab348e7dec69c1f3fe3b30d6d8", "l2_to_l1_messages": [{"from_address": "0x43c33f9fd75b39e85e2e5be148af0789509e2dff3d27c190ba968899e7e0eca", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 332, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x69acd104e3e67a279ff97a7888267338e49079e5f285554c6615e0330607171", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 209, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 8, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 24}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x7d6be64ce22c9336649c18c1007cfeac5a3ae1c0c70d752378c93b68740d874", "l2_to_l1_messages": [{"from_address": "0x7bd521e81062d3b6033a38ee88e3072600e3a5bed2b5c8cf05e4ed0463e37c9", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}, {"from_address": "0x7bd521e81062d3b6033a38ee88e3072600e3a5bed2b5c8cf05e4ed0463e37c9", "to_address": "0x0000000000000000000000000000000000000002", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 426, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x4859ce9a202e89cdcb420f5a8ea28e185196a5aaf9db4426aea71fc456c5c4d", "l2_to_l1_messages": [{"from_address": "0x838154919880a519aa34274066150498421b0e457a29e402fdc031b42e57c1", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}, {"from_address": "0x838154919880a519aa34274066150498421b0e457a29e402fdc031b42e57c1", "to_address": "0x0000000000000000000000000000000000000002", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 426, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x24225ec2f80e564a087e193931906e7103a49955baa51a22106f83e2087d8f1", "parent_block_hash": "0x51c1222fb6d7d3d82111c0bd1a2861aa559e423883e2740f384c83dfb2d93bc", "block_number": 25, "state_root": "0xe3c918db7b63acb952a1cd410b1bffc8342f23f0c627fa5334278ca5d3ba89", "transaction_commitment": "0x7af778b73fd5bf6c5795ddc9ef7ac64447f289dba7a28f210b1fb3fa57cb951", "event_commitment": "0x525c92ba1889d6686e2db9c6ec2538e8da4c187ee1c0f4455339da3142a4dda", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x419c7a9a", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x7cf66fec3006ca0f784cdc7c7c9f3ccaf20db6bb00334cd30362bade33d974f", "version": "0x0", "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0xc", "calldata": ["0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", "0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x15fb7f9b8c38000", "0x0"], "type": "L1_HANDLER"}, {"transaction_hash": "0x772254908adfaafa10376cb70693f19675103fe95d2cfee88114d3513f885d7", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x7c2f59d077641f209be3cb019dda19eba45e4b72916e06644c1aa330bca0bfc", "0x254f5a9dc7ddb7f4088af21ee09e8b84bc9d140a414a86a8333f8f5468418d6"], "nonce": "0x1", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "sender_address": "0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "type": "DECLARE"}, {"transaction_hash": "0xd4e476154db54cd9fc49b627f9b63787e8c693eda5cfe057c8379a82b2c94a", "version": "0x2", "max_fee": "0x2386f26fc10000", "signature": ["0x7a9375d38199764a50ff7108d33acca086a24203d0f2f5c3625a2d0ac27156", "0x7ebe93498b7726e8f76f95dd3dd2a59aafec58dcf7d48c21dbe05f1573c7cdf"], "nonce": "0x2", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "compiled_class_hash": "0x23aa051c898413c4d59308d521855658620de8870482483385891e8221fc46", "sender_address": "0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "type": "DECLARE"}, {"transaction_hash": "0x51bd38b46e3fc54fd96256ba66d1ef2f0df7fa864a90f1c0e4e0d25936bb505", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x8b277e7d2d564ea69ae60520562acf1855dc3234e9cac93de29740b9c24ab5", "0x2aebdf63d0a15dcf9dd9b2173259226c4c8b60bb09641e87eaefbe80c96b398"], "nonce": "0x3", "class_hash": "0x78401746828463e2c3f92ebb261fc82f7d4d4c8d9a80a356c44580dab124cb0", "sender_address": "0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "type": "DECLARE"}, {"transaction_hash": "0x2a04faa47831bcedf3198960b219931ceacde29a7742d758bf80e4ba4fee7a1", "version": "0x0", "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0xd", "calldata": ["0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x15fb7f9b8c38000", "0x0"], "type": "L1_HANDLER"}, {"transaction_hash": "0x6a5e36cff6db2cd2408e31a4e264aca5d953def47b9ca9ae0efc482e685c7e9", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x1ce92152bb4e0afca1a6b90eae62e4da6c879c0ed52bc3de8e96e20b265e32d", "0x1e9e7d627ab70b3f9ee679fd2bfedd630070e9d0cf1468bfa5193b5978973e1"], "nonce": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address_salt": "0x6b080d0ebe0f43f8a2b32b81e042749867922781ee29d77bbf2482c53bb4e8e", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "constructor_calldata": ["0x406a640b3b70dad390d661c088df1fbaeb5162a07d57cf29ba794e2b0e3c804"], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x5e718fff13674e2b113f30c62a6b9c9dfad98c25822afa13b5ce0d9df3f85b4", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x7262a2af4ea305f7528bbcdf3327d7bee9f254ecd7ef215736f40615a98a7f2", "0x138de2a2b636852078985d3621152e922b614b5bcd9e3dd1bf0d33f53bfafa8"], "nonce": "0x1", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x2730079d734ee55315f4f141eaed376bddd8c2133523d223a344c5604e0f7f8", "0x0", "0x4", "0x4", "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "0x6c7c440fa119a73233941287b90e21512eb13b5f9535127906749ff99e8b208", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x76e8f73a0d70bee6f40440a6c2675241ef4d111d0227f0bd29b66ba8b47ce83", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x2f74516471094ae42cb3358ee368e7d8b0efee10a1b0904703668729ba1a08e", "0x7201d1a509e29f3d89a9c63ac4b2da2dc6db516287f0275f696cfab58f71528"], "nonce": "0x2", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x2730079d734ee55315f4f141eaed376bddd8c2133523d223a344c5604e0f7f8", "0x0", "0x6", "0x6", "0x78401746828463e2c3f92ebb261fc82f7d4d4c8d9a80a356c44580dab124cb0", "0x6c7c440fa119a73233941287b90e21512eb13b5f9535127906749ff99e8b208", "0x2", "0x7c7", "0x7e7", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x251c19526b9333ff4dba12122e5e78475a145b09d8af86d82110e55edbd9d73", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x13ec3104861d1b8bd8f2bb0dd9e856b509a00f34b46998842771b0408f997bf", "0x2f8e337e3b5af6437bb08e3ea8567fbb01e0898304dcfe624a280bce7dbd26d"], "nonce": "0x3", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x2730079d734ee55315f4f141eaed376bddd8c2133523d223a344c5604e0f7f8", "0x0", "0x4", "0x4", "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "0x6c7c440fa119a73233941287b90e21512eb13b5f9535127906749ff99e8b209", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x308e89ead50e89e40d60ff18bf29e104f9dc0e268a61eea5c859271008d7ad9", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x2682d8d8048d54a59f2e54ab3872e75c1ce00e145123a07894904b56c770838", "0x2bb78d586b557108344b19c6a693f2dc046a9033446792a580ead0c686d6bfa"], "nonce": "0x4", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x2730079d734ee55315f4f141eaed376bddd8c2133523d223a344c5604e0f7f8", "0x0", "0x6", "0x6", "0x78401746828463e2c3f92ebb261fc82f7d4d4c8d9a80a356c44580dab124cb0", "0x6c7c440fa119a73233941287b90e21512eb13b5f9535127906749ff99e8b209", "0x2", "0x7c7", "0x7e7", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3ba5c1e16a9b431b7ccae15f2d377539cf3dcefbfe854dd1a7533b8577fae87", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x674855e87b6d33cde07596caf7a58ac107883b83835e7dd0879edb70d303220", "0x1f7857f7acce0ce8f935c547ebb20307d3213c4dc8a2f855922de98363a5a4b"], "nonce": "0x5", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "type": "INVOKE_FUNCTION"}], "timestamp": 1701096911, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x7cf66fec3006ca0f784cdc7c7c9f3ccaf20db6bb00334cd30362bade33d974f", "l1_to_l2_consumed_message": {"from_address": "0x8453FC6Cd1bCfE8D4dFC069C400B433054d47bDc", "to_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x15fb7f9b8c38000", "0x0"], "nonce": "0xc"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x0", "0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x15fb7f9b8c38000", "0x0"]}, {"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x15fb7f9b8c38000", "0x0"]}], "execution_resources": {"n_steps": 8053, "builtin_instance_counter": {"range_check_builtin": 168, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x772254908adfaafa10376cb70693f19675103fe95d2cfee88114d3513f885d7", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27ad70e4412", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x27ad70e4412"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0xd4e476154db54cd9fc49b627f9b63787e8c693eda5cfe057c8379a82b2c94a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x3b48b387462", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 63, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x3b48b387462"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x51bd38b46e3fc54fd96256ba66d1ef2f0df7fa864a90f1c0e4e0d25936bb505", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x472aa8128e01eb0df145810c9511a92852d62a68ba8198ce5fa414e6337a365", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27ad70e4412", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x27ad70e4412"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x2a04faa47831bcedf3198960b219931ceacde29a7742d758bf80e4ba4fee7a1", "l1_to_l2_consumed_message": {"from_address": "0x8453FC6Cd1bCfE8D4dFC069C400B433054d47bDc", "to_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x15fb7f9b8c38000", "0x0"], "nonce": "0xd"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x0", "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x15fb7f9b8c38000", "0x0"]}, {"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x15fb7f9b8c38000", "0x0"]}], "execution_resources": {"n_steps": 8053, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 168}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x6a5e36cff6db2cd2408e31a4e264aca5d953def47b9ca9ae0efc482e685c7e9", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x453f56a568e", "0x0"]}], "execution_resources": {"n_steps": 3863, "builtin_instance_counter": {"pedersen_builtin": 23, "ecdsa_builtin": 1, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x453f56a568e"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x5e718fff13674e2b113f30c62a6b9c9dfad98c25822afa13b5ce0d9df3f85b4", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x592469525b2", "0x0"]}], "execution_resources": {"n_steps": 5647, "builtin_instance_counter": {"range_check_builtin": 124, "pedersen_builtin": 23, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x592469525b2"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0x76e8f73a0d70bee6f40440a6c2675241ef4d111d0227f0bd29b66ba8b47ce83", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x592469525b2", "0x0"]}], "execution_resources": {"n_steps": 5607, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 122}, "n_memory_holes": 0}, "actual_fee": "0x592469525b2"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0x251c19526b9333ff4dba12122e5e78475a145b09d8af86d82110e55edbd9d73", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x592469525b2", "0x0"]}], "execution_resources": {"n_steps": 5647, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 124, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x592469525b2"}, {"execution_status": "SUCCEEDED", "transaction_index": 9, "transaction_hash": "0x308e89ead50e89e40d60ff18bf29e104f9dc0e268a61eea5c859271008d7ad9", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x592469525b2", "0x0"]}], "execution_resources": {"n_steps": 5607, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 122, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x592469525b2"}, {"execution_status": "SUCCEEDED", "transaction_index": 10, "transaction_hash": "0x3ba5c1e16a9b431b7ccae15f2d377539cf3dcefbfe854dd1a7533b8577fae87", "l2_to_l1_messages": [{"from_address": "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "to_address": "0x882a7A6F609eABdcAE71a4EF2F52ff4E49AEaEBc", "payload": ["0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"]}], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"]}], "execution_resources": {"n_steps": 4753, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 16, "range_check_builtin": 108}, "n_memory_holes": 0}, "actual_fee": "0x1eacd891dfe0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/3_with_events.txt b/starknet-core/test-data/raw_gateway_responses/get_block/3_with_events.txt index 1aa710a9..39575153 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/3_with_events.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/3_with_events.txt @@ -1 +1 @@ -{"block_hash": "0x5f73a3f0d5f241b791a29dfa84eb6ed525963948a30b355a1d961016c81e589", "parent_block_hash": "0x1d2fbcba52c72cc6d0da86403990c87041f3389f29e767b162fc92f130516b8", "block_number": 70000, "state_root": "0x737ad6b017450d6ff7df697398cedbe0677dfa7e3dcafc889591b432b8ea2e9", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x45480d68c7c77a7356702c4e4fe143e549db81cc3172533e5485d45f9d097c6", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0x1779a6bbf5cfb4466ca61556a0598eee6f1954e91d79e63900d7af2a686f155", "0x56ece85bd20a9fc563c56fe92fa641af0534eb57f56b134a97ef5d81afa7bcf"], "contract_address": "0x7228ecef5152a55b25e80c934421ee119679050ebf7ed67eeee160787b1d9d6", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x783f5f53d8be9f373c04c190d0681359a64af59dd3fe3017e0410ea524e3187", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x6f64e4d1d2179b68a5021e26d980dfde015e87e21e9eb32cad830a0ef3b27a3", "0x6604a6a8f78a143aee0bf37ecbce04a4a15694c0bf059ac68116c0fe33e8c62"], "contract_address": "0x4708dcc9ac93ff92e3c9923f9dd694b68aaadaf8366211641c03a5f593de48a", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x4bce43e903723dfe7e953b5489c17f86762e7b3920f00bd5b00966d87efceb0", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x501b0235c0c63d6aadc8e76cbd3ea25c061aaa42599fba714c0ce7d30001816", "0xe8f69bd941db5b0bff2e416c63d46f067fcdfad558c528f9fd102ba368cb5f", "0x1", "0x7a28732a5215ab63564721ce88a804fecc1d307eb1fc59c56670ce3e99e8ee7"], "contract_address": "0x7a28732a5215ab63564721ce88a804fecc1d307eb1fc59c56670ce3e99e8ee7", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7d0d0dcc9e8d18a70c7ee767132be57fef01182c5924adeb5796fcbc8bee967", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x8", "0x5310ba60cc041e1257880106159e014acd7f2db250577bfb95bf9a83936f127", "0x1cb4b3d6d873d4e399a0dd19e455cacf0614a944ca61c85496b9b20d5f51dd5", "0xbd65265d8c7afe085be7c3daefb875bbb2fc5cde9b97ea5ade799660ab360f", "0x62806861a4ba85af8d328ee0b7f1adec629232b873d66b94919d3e3ec503e62", "0x3434892122606509e984778cd29b30a200536b7e84e37f128f3ac8c74418c87", "0x72af1bff57cf5e0e888814c2a22faa7d20ecf71f2b976de4c871d609ebdc587", "0x547a1d7b3939ee1e0e2161ba091f7d2502163e0cef20c05408e13faa730e804", "0xd49e57e8597ea10b2c48dd26a46bc79fd6cd7bd14c50b77fa39e586bb13f7b", "0x0"], "contract_address": "0x49672cf4a6780b060f57d49b26634de69d3fa463e6428e060a35ef5e5f453d6", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x365443224a71163776e1151793b91256b5250e62a9022a8f954af3b6d626ec5", "version": "0x0", "contract_address": "0x5e9b5442790a86665210776d8f319a5078d513794cbc9d5e0d32bbc688cc465", "contract_address_salt": "0x14bea9e5734d23a299a7618115dee6120a71230bdb5e9299219d5df0a28c205", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x2c4d16c6cea48d54d372323a59d8fd07cf42ee3d2dfc52ef53e546c2f8dcba8", "0x25abce17c9c866a83366822c70269907050e78d897b96e1527766629dcb2152"], "type": "DEPLOY"}, {"transaction_hash": "0x1ec0a402dee51fd2e80ffe6f57b05b0fe97fb8fefb2a442958834410500b75b", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x3eee811f0ce0125556d107349527635c9608f4d92cc212ccb00a3886c589b6a", "0x4feae2da30518c23699bbfb8741ea74ff431686d97ea005985664fad2684e93", "0x4c7c1281a72153a640f646ea23493652231d68703f6951078631ba82b00244"], "contract_address": "0x3413314089cf4472a93bc0c01dfa8e50d8b9117581cfd599298760ddc1b2ba", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x49a0a7beb5dfc899246c24f63ee99bd9b72a35984e304b8403e871937c7a6c0", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x654c2643276c7eb300179e1c13f1b55bb01c9844889e2d093f8032c0cdf132d", "0x2", "0x2869ffbddb896887c368fed572842ca3a41aaec1ddc3c4af32f1755e0c4988d", "0x7ed91c5bd7fea8c429bfc4c83654049472a67c07d05d327d82e2f6b0b01b4a7"], "contract_address": "0x6cc8516b61dc0ca6f5d4b2a5490c8fcf4436be076cf82afb91fd8757f8d9cac", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1284222b0f76cdd7d8cca907e34151a909446ffff2599fd13c3cf97db3efacd", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0xec3cd6cd0aa34aefb7b1a8dfe017d037bf7ce1ec"], "contract_address": "0xc24061333e526687d5491c74bdbff5c6c6d5da7debecc9d8c338abf8aeff62", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xc8fc6b6649debed9e183153073289c46cfb771c7f4841ec67a89f3320f2937", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x272551f4a741752df8b5cb8141aeadce38b63d3fb52b6aa44cdb995a59dd250", "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "0x3", "0x5ef80dd7281ec441824e7df3996609cc3e85e8e1e478fbf616043bf4a84f3ce", "0x5c073069314821a6790c051638a96ba9270b0c5c09fa0747751fe5dbd4a65e5", "0x437dca708406d580cffa739f99e309e5aedcb89c02cb110b64da80d8ee61cd"], "contract_address": "0x66bdfe961edf1352452a641fb86f656dc5077a744e2c1d5fa477b94f58c529e", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x14d72e03a3125ea98b0e7479f0553a05091473090b60da0cd25f25a863e347c", "version": "0x0", "contract_address": "0x6ebb8bcfce45913c1f9907524bb490f277b4d9a706ad555eb9f423f4dc4d6f4", "contract_address_salt": "0x6b171945ba4eabb1b8d07efd86dc1ab57da2663cbf016719a23d7110ead11c", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x39735044cbbf83c70d80db0104466d54d7e372051bf86951809420f813b3c7b", "0x769df227181e5afd70f59787a1282e880b16cfc6161bf070912846b886c078b"], "type": "DEPLOY"}, {"transaction_hash": "0x6120d9e650b82583b0b7508265768f80938e9ab37eecda08fe6270087e5183d", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x39f84409dba89f9c0c74cc293d7fe50b3fcd3755e85ae2e4d16067e9713b5e7", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x10", "0xa", "0x5ce11395cbd46bef58a625df562013e402a0ffb812d2a6f6e255d5e9ce99132", "0x7b49694aed7e22d80c3dd0cf8bc7e66f3f0ac3ec6f2dc95a2a3aa31ade10fe6", "0x8e0db511faf5813677a496dbb63c56b4e4196cc7f3848736629531b6d7f435", "0x6a8946ecfef32ea73422f3c5c728be26d9b7b2d5c62540c7989f31a6bb7c69", "0x3ccddaef498867483adafab3d656c382a7d6591d84e42c53bb63e0d1d169cc8", "0xa910ae715060c5dbcbf83ed3e25f7cb38e918d25d8ceda40670fcd0d5f6acc", "0x5c541063be02acb9b4ac0ac64c6b667d83d1f3c7763c739cd75b9f0fb1dc4c2", "0x713fc0becf102cb413a735814b72f1c2bafa98beb02b24e4b51d4a94dcfb42d", "0x645076103910f6c0225ca310a263024c40769bc0dea79e4fa945c96f24af279", "0x28a30cb5ff8568d3bd92b1b4cb98642073fc87400b0d9d76c135addd6aa7042", "0x4", "0x2f79cbe79749f66ba3c1ac75cf025cbbe650d9987f511e762be98112565b37c", "0x269443a3c261c03b9f16ab306ae2f51a64393fabe9e4123e5e6e909d165c2a3", "0x68dc069cd98c4be8751266a1c91a61ae90a1359afe19b110d70449ebf5f1f3f", "0x63bdbc9f341ce93139bad075b600a4e8be86316c3fc5d3b0295f24d2cf42247"], "contract_address": "0x236f827a05e25f89f42f377595dc778bd86219686d43abf3b4592686ba5a7e2", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x695d84928c6280e7c86f62a7e5b4c08a1bde299133465724cb8dcea74a0fdf4", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x0", "0x9", "0x401c754c2e47492288f9c31b59e95cdd2fc08a6b492ef1ca57488b443f0f037", "0x44c3b2c6bd2486a62ecd3e72f8301fdddc05a366f8089251b1d045a1834c538", "0x7542d02a20e301af53444459d010b51de3fca4bb66413203a8bc62727d80339", "0xfeb1deb411d86ab3e6d2c3802bb2c462f820167545baeaa5689c93a256ae40", "0x6f7505bff568471f9fb31cb87924d701c8ae7ae29ad3bb2a3e76c4356ebc7f5", "0x20dd412078adebb7e89c4cd89b163993cb1980183a33163ed258d1f62e77104", "0x4e7e1f71bc93bdfaf9a1468fabcb7d25596ca64bf12106c5f3b2b1f766266ca", "0x4cf59b9e387cdc5c853e2782b2c6c6ae9b6c46503f9773338e5c2eacd35a8f6", "0x1393882a0bf7cf3f3581340649823e673ccd2a5b6f8b985346da8cc34333235"], "contract_address": "0x7b0b8c41295cd6b6ad7796c5fe9c408ccb02b8e397bbcec850a5451ddd5169e", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x516fdfa0d3067caced6965ea7886584cab8f8b46c25cdf8601522f22805b342", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x8", "0x9e14323d0ef4819b3a94a16a0338424fac4c2e20d67941e8b1d3e5183e4070", "0x7ab65d212e696f3f80b65b311ae700893cd39f88ab5d64498bb281e9aaf748c", "0x19119f25e66249421b2b1560df004eb3b2e742b2ff604c71cc6161113d956af", "0x5364743eb6ca468666df6695068ad0029efea046d1a7f10fc96a7e75af0e5a6", "0x2ef79e8c792eb95e28739630a8bd7b06f70c2f0c74a515466b1f672aeb3bad4", "0x51fecba9375a4edcefeb9afb2094e8fe1c922543ce8bad9535400273f5b6425", "0x7ddfb50fd8a5d07fc33f9b893743856a54d489e84e2aafad45fe443c1bb757d", "0x5520f3ebd3071770963ba259bf2917872d881f2f51820b5cf50b7ff42ba8d2d", "0x7", "0x61655d6d28ad2f81b1bf5eb96694fc70bca77daff80b2ecf9eaf9dd82bdc4eb", "0x7e6722f12f7236584686cabb9ade34d86cebdc18c461f3fc1aa835ce3c3bc3e", "0x7bacd92feee3b5b35ee05823e5cc247f377f013dcceeddbd158d2d1d1d1fcf7", "0x6b52711a47173a64e60762040997a4ea12ae9a3451ba9f1af5b62aed3ea4ef7", "0x5474c5eceaf854486fb68c4bc49c8f7cc646bbfd3f10862af0e58f622af3760", "0x509698671ece2993e2ca8b23fd19a39720e87975d4d1e754f387ef064db4d90", "0x6d11a7eb43587bf9fb9ad3da8cb6ec069dbf08c80e2d5721fca283fcbca70ea"], "contract_address": "0x3ef8eee1e1385aec7f9743deea61fe0aa03a66ee846b1fcd0a21b74197c71ce", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5477c8ecb618528c12754430fa83079d579134a3769b6cb8decae172dd55f95", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0xbe879043367d723a38419a3cd338b9b3cfbc122dd2aece7f3873989293890f", "0x79ae463ad50440c60b36d97dcae39986bc1dc44b095a5dc5d7f92019ec69f2f"], "contract_address": "0x6f64e4d1d2179b68a5021e26d980dfde015e87e21e9eb32cad830a0ef3b27a3", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x32cfe494284525c661e4ff049281b975029086e392898112eff5ea028745565", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0xbe879043367d723a38419a3cd338b9b3cfbc122dd2aece7f3873989293890f", "0x7ca45bf5f5ce72f11f25837c957e7ff702d2b1720b5fc53f40a4680b0e48bdc"], "contract_address": "0x6f64e4d1d2179b68a5021e26d980dfde015e87e21e9eb32cad830a0ef3b27a3", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x71544050425e074a65bb72e98c785a560f3f6cba9983650542bfe583d0fdf8b", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x123bcd1d32390a8d0b90960e3a546f5cf8354140f4c04b38af946f973258dfd", "0x0"], "contract_address": "0x5b0f6e792e730b613a8f1aa7cc5301f00a2781f99e03bc0704b548f5f7ab449", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x411d10cf1b45cade1b1953f201b38052c24bb1d4f4105f06a558421d66dab7a", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "calldata": ["0x18b67b1eabbdf554d55c50b2f7509e51766aef70dbf4be120634f6f447ada03", "0x2fc828c2c87793239d1a25ddd2491ca1a74c130fc91b5b2b3a042deda6cfb6f", "0x22fb050c515c91b4151f7960df6d05711f2534c61a16d16e158c156f5967880"], "contract_address": "0xa49d814d20eccf18f0b5549d004583b5b1ecedcbb874c2d2af09d7ab89ac86", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1f613818adc5895dba4a03be718cc27129e8a8f883aa4179c96a25dba9da8a3", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x66073d7a5295cff18120d23522fa081365e9b02809d5b500dac5e5be7da6aaa", "0xe8f69bd941db5b0bff2e416c63d46f067fcdfad558c528f9fd102ba368cb5f", "0x1", "0xaa0732c01146f731bef77cc912c085537a6b7246611042139292ef30ddbae0"], "contract_address": "0xaa0732c01146f731bef77cc912c085537a6b7246611042139292ef30ddbae0", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x2c6a8369457f48b437db449d9a3a9e654eb723be36167dff58ed85df3da46e4", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x5", "0x66aaee780b90557cea0887799bdb36892d205ad6191efd574ff762b0fd7b33d", "0x69188f118a09adc404a9cce0166e33e8be61f49df75e77bab1c0dc89ab53b4f", "0x37804353521f4a3fabe61dc72d231c3996c0bc35695029d0aa72e0a2126dfaa", "0x13fd53692830343e9cae457b3388173963bede4f072bf7f11b5842825f6e266", "0x5e3c1908c18036502a12db0528bdf9f8ec6b7c163024aebb04d1ac23a53a95a", "0x7", "0x21b4cd30ebab98a0012ef4be199a2576c10cd884c5c8819cb8224b94bd48c04", "0x37b6a72bef3ca5e7ea1497aba700e3066aa8762de876abc7c577049d54993e3", "0x55f410ae20ae06c7d8ac1caf34f393ed4d0a065f75e871ce693def2fbc72a2f", "0x2418435f4f844e3adf74bb948683bd5c803c5c407eb5c4490bcd30c3c76d669", "0x35dc90e6712b52f465f62bfa23297ea96a0d73311dcbbe2f783b848e76fe36f", "0x39c206ebbfd1dc0040d6840618e99355f96bb45fd46099d1ce573a242dbf4e9", "0x1c031359e271e659b02217b056b6831fea5a4d48a8668ca27da683e81552b36"], "contract_address": "0x3e3693bca6b60c874bb7a5f7347c56b71af29941fd5038ca45d4d60a37be7fa", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6da04d25f783178cc2ffb502ae025af7a091296b6923d1709e4bcb5291c3541", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x55210dcf67dd790624f97739b37e228c892096e57c09131f8401e6c03b77430", "0x1"], "contract_address": "0x724f962a474eb4cc67144b535c4d8fbe9b8636b32f24fdd64ab1d57c47e9585", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1722f3955335e9ebd9624ee901553bbc47f4b62abf2cc2d9c17bb80559acb56", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x539ca3c27699afdc284c5f7c317d7d7f9bea07e0c819d2124883dbb1d33c14e", "0x6bca532bc4116c099564d64052b1a77aa5738b312c1d9a2fce9b314fcfad0e"], "contract_address": "0x1eeb89ea38aaf19bf172192d68f29527ed1c8e943e10b95c53c8f7fb07bae72", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xe3531a6c94a3ea21d549afaa220b7962901daaa65b5fee4e2727739339fec5", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0x5f5ff5d50afbddc01b7e84d6cc18ee4efdcaeddb"], "contract_address": "0x36bca11100ce8e2db3c5ec276ea46579a7f661e268eaea1e5e403b07842198c", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x35b0fdd3a876bec243d126e46629e08a25ad55f31b2b619e03cbc3a597a9ab8", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x54b8df06a176ff1b0cf06ede457612bad9999377d1fd570aaa77036ff3b4b04", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x1", "0x52af090589def28a7c4a1acc9ca97e1357fbbb5a"], "contract_address": "0x243be9f0b6a942472ed3030f7f8f2941ef20af43bd8f2a7f62634ea5028d2aa", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x2d528f3819b8a1b655fb732572dcf5d989a6e3efb4b3a1a238b9f61ea752485", "version": "0x0", "contract_address": "0x2b000045ede953239d1e787b2931c238b7fac52cff150c9cf3cd6f0438a03ae", "contract_address_salt": "0x3e0ab12f8cac1023160dca247fbaca2658b60ea7253036624aedebefe6386a9", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1", "constructor_calldata": ["0x3606ded8e925b56a80ca3fc07b2751ba80ffd58230cd32526e1a90e7008ace7", "0x2fc491c1badd99ec7eb323fd21f1970e73acd926b1248fb061cfd57823d2f7b"], "type": "DEPLOY"}, {"transaction_hash": "0x7b993953532ed4237e0d2dc6e1ff31ca81a063ae81339d4831def939eb77e91", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0xad314e0ef8b1a675f06d604719ed53df547fe863c2c186c0d688def2df4a7d", "0x2", "0x2a131f11bf1c2287139a8679e42956065b797a7ad824f192fd271840847a3ea", "0x721e8ee5b3b1ecacc09e3c339d240a9b30b3469d71c6559bdd54e685b62f534"], "contract_address": "0x6cbf6713c51cc11f36d3cd1a01f27fae53dfe2a2480ecae6a021117fada8301", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x2d2121b7ea7b8b3dd5a3a6c2e4e57876b7c2e9fb20c91e859147ceebb82d3d6", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x1a78e3e76edbb07b376e9bb1d4f43d1745b0f3a086192246d4546ca13fdf6a0", "0x2", "0x4a46c5d795827901c253454067b825727aca86dd85cc169847bbbfc45306e23", "0x72dd24cc1483c29250b62303889713fbb1638ce35e00ffe43a8d4df1f33cdb4"], "contract_address": "0x6b3e16df2df0a529f85b8404d4d98153a1e328dd6be79d910e00cb9c254a845", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x736bca6e1d2bbba1c230d70e160eb08a0514f58c7e01ec0e66806c4addc5407", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x7241422365c5847df0328df87a3e243a56820407f8356dd376cb9545e875716", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x1", "0xa54c446b067d7dd93784a3b6aca0bec3d0bbe329"], "contract_address": "0x643bbde9105eb11024243f477358a0e14cb73386598097c13986abe88459562", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x63443b1e675abeb386415b5c43948428cb135d2b315b67b7b76999606dd73fd", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x7428ad8cb71b73865008352fad1c3cd3cc90f7e4957147051552e24a7fb156a", "0x6b54debd0b797b9ce191a57df03a48dd821f43af3dfff3b087db2186ca40d27"], "contract_address": "0x4982f14595a09a3aadf83b283bfbdfed24a6570baf9a0d5d4a26d20938291e0", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5c98a9bf43c4371c7d896c42c8137c648f9bb194a7894a668d5fb80b7dbf634", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "calldata": ["0x3abe219747d5e7ae96ea0bf6dd05edfc30ea4162f185e10d54dab3c43527eb6", "0x0"], "contract_address": "0x33cad2b769abe3546c76a39ab1aa61c8061449832fa017ac35c749f77e6bd74", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1bf4f094bb36e6277e90ef3f8309b66daf0da06a878fc14340e87ecdb852862", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "calldata": ["0x5a5e898c40cf9560d81945fc8a7c51649e73dcece9cd92496f5ab98534efc1f", "0x2", "0x3ebfbb44530b7face7b91fa9253108a5530ed849c278803dd4fd645e4307003", "0x5b3f044da7c5e1e479ad41a2c12802800f3c72e65de850b650ce20c1ee4fb84"], "contract_address": "0x5193dad1f4d63a91b80ad95edc0d98dbabaf21bc5c56a1d722c64805665fe2b", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x33c7fe25e1f346a641e5291b82c8a8031df193b82c2aa831024ff6eaff2cbf5", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "calldata": ["0x6224e888a578127b5d37078ea9c25c65b1ed11493e7f8ace785b88ac533dba3", "0x189c344d5a78796fb399c116831b7962d184dc86de92a92ec143414de39b19b"], "contract_address": "0x51f12b8cdeb98ff647fd7117ace0fa0060176e79a870e1f8bc942c361cbeed3", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x2cc81e2ec4d1e948d186e162072beaf1b63fcd08a9538d47cd9cf2c13ec6956", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x6d13757ae80ce107ea7a6ae1aaab61ccf159c6bea0657e09a1f168a119922b2", "0x2446d40ece2ca1e65b0a1ec7d0115ef957cc3580438ab31fbb5093e823661f8"], "contract_address": "0x6f64e4d1d2179b68a5021e26d980dfde015e87e21e9eb32cad830a0ef3b27a3", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xaca7807b3b35f8884ae5195be920624f8c88f3b3776e2ec0457a6fd2e0e5dd", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "calldata": ["0xc4fc6bc65cba5cfa71ddabec8bfdb6dcd286dbd7"], "contract_address": "0x2a8f1cd39b9054c1098cce17558247ff9ef2ea2a073b8a921f51cdd47e305ff", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x13805a1a562f718fa7d01d3252ec70ef121f4c79c9bb90de588279c32c62680", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "calldata": ["0x3", "0x47d7e1bc15ed644405553ffcb567b484b06ab79d31dc1b0a6cb4201e8599fb1", "0x75ab9daa9276d75144c8b418422c8b380b9809792a19a33c868f2f02d9afa89", "0x1b607a14aeca5ec09ca756486999a519bf48de8d7e1c2a5f42db14fe722d758", "0x5", "0x3a334be1d122ec293c81e2f5865109416726d7f02e39e7d25e29b4a43bb695d", "0x33b432cb02ff47eaaa2b97c359eb2873412676111a112909438d7d0e5617473", "0x4ec98b85f7458e37728e54352f1d5cd125f2eac49911d0c0255ee9acf58ce33", "0x741f8bf524b4b2b789a6976057d7d3122eba071b919052c22ae43a8ad4d7a97", "0x65aa706256baa0f6824f6f723cc1aa462b8288d9b478d42240c6c2175ad2255"], "contract_address": "0x5d580581be3fc15ec7e9d19416e2dd2ca1036b1bd0973125ad828e9d1c6f41d", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6bd9f22bd59849d598ea05e920645cda053f948f37db51f6f0ab4b40559f026", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x3840956ef986b67a1d8a5bc695ceed79082d0250c1ef317d3e3ce1bdec69466", "0xe8f69bd941db5b0bff2e416c63d46f067fcdfad558c528f9fd102ba368cb5f", "0x1", "0x7428ad8cb71b73865008352fad1c3cd3cc90f7e4957147051552e24a7fb156a"], "contract_address": "0x7428ad8cb71b73865008352fad1c3cd3cc90f7e4957147051552e24a7fb156a", "type": "INVOKE_FUNCTION"}], "timestamp": 1645437333, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x45480d68c7c77a7356702c4e4fe143e549db81cc3172533e5485d45f9d097c6", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x783f5f53d8be9f373c04c190d0681359a64af59dd3fe3017e0410ea524e3187", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x4bce43e903723dfe7e953b5489c17f86762e7b3920f00bd5b00966d87efceb0", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 63, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x7d0d0dcc9e8d18a70c7ee767132be57fef01182c5924adeb5796fcbc8bee967", "l2_to_l1_messages": [], "events": [{"from_address": "0x49672cf4a6780b060f57d49b26634de69d3fa463e6428e060a35ef5e5f453d6", "keys": ["0x5310ba60cc041e1257880106159e014acd7f2db250577bfb95bf9a83936f127", "0x1cb4b3d6d873d4e399a0dd19e455cacf0614a944ca61c85496b9b20d5f51dd5", "0xbd65265d8c7afe085be7c3daefb875bbb2fc5cde9b97ea5ade799660ab360f", "0x62806861a4ba85af8d328ee0b7f1adec629232b873d66b94919d3e3ec503e62", "0x3434892122606509e984778cd29b30a200536b7e84e37f128f3ac8c74418c87", "0x72af1bff57cf5e0e888814c2a22faa7d20ecf71f2b976de4c871d609ebdc587", "0x547a1d7b3939ee1e0e2161ba091f7d2502163e0cef20c05408e13faa730e804", "0xd49e57e8597ea10b2c48dd26a46bc79fd6cd7bd14c50b77fa39e586bb13f7b"], "data": []}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 8}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x365443224a71163776e1151793b91256b5250e62a9022a8f954af3b6d626ec5", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x1ec0a402dee51fd2e80ffe6f57b05b0fe97fb8fefb2a442958834410500b75b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 176, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x49a0a7beb5dfc899246c24f63ee99bd9b72a35984e304b8403e871937c7a6c0", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 169, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0x1284222b0f76cdd7d8cca907e34151a909446ffff2599fd13c3cf97db3efacd", "l2_to_l1_messages": [{"from_address": "0xc24061333e526687d5491c74bdbff5c6c6d5da7debecc9d8c338abf8aeff62", "to_address": "0xEC3CD6CD0AA34AEfb7B1a8dfe017D037bF7CE1ec", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0xc8fc6b6649debed9e183153073289c46cfb771c7f4841ec67a89f3320f2937", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 220, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 23}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 9, "transaction_hash": "0x14d72e03a3125ea98b0e7479f0553a05091473090b60da0cd25f25a863e347c", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 10, "transaction_hash": "0x6120d9e650b82583b0b7508265768f80938e9ab37eecda08fe6270087e5183d", "l2_to_l1_messages": [], "events": [{"from_address": "0x39f84409dba89f9c0c74cc293d7fe50b3fcd3755e85ae2e4d16067e9713b5e7", "keys": ["0x5ce11395cbd46bef58a625df562013e402a0ffb812d2a6f6e255d5e9ce99132", "0x7b49694aed7e22d80c3dd0cf8bc7e66f3f0ac3ec6f2dc95a2a3aa31ade10fe6", "0x8e0db511faf5813677a496dbb63c56b4e4196cc7f3848736629531b6d7f435", "0x6a8946ecfef32ea73422f3c5c728be26d9b7b2d5c62540c7989f31a6bb7c69", "0x3ccddaef498867483adafab3d656c382a7d6591d84e42c53bb63e0d1d169cc8", "0xa910ae715060c5dbcbf83ed3e25f7cb38e918d25d8ceda40670fcd0d5f6acc", "0x5c541063be02acb9b4ac0ac64c6b667d83d1f3c7763c739cd75b9f0fb1dc4c2", "0x713fc0becf102cb413a735814b72f1c2bafa98beb02b24e4b51d4a94dcfb42d", "0x645076103910f6c0225ca310a263024c40769bc0dea79e4fa945c96f24af279", "0x28a30cb5ff8568d3bd92b1b4cb98642073fc87400b0d9d76c135addd6aa7042"], "data": ["0x2f79cbe79749f66ba3c1ac75cf025cbbe650d9987f511e762be98112565b37c", "0x269443a3c261c03b9f16ab306ae2f51a64393fabe9e4123e5e6e909d165c2a3", "0x68dc069cd98c4be8751266a1c91a61ae90a1359afe19b110d70449ebf5f1f3f", "0x63bdbc9f341ce93139bad075b600a4e8be86316c3fc5d3b0295f24d2cf42247"]}], "execution_resources": {"n_steps": 83, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 3, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 30}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 11, "transaction_hash": "0x695d84928c6280e7c86f62a7e5b4c08a1bde299133465724cb8dcea74a0fdf4", "l2_to_l1_messages": [], "events": [{"from_address": "0x7b0b8c41295cd6b6ad7796c5fe9c408ccb02b8e397bbcec850a5451ddd5169e", "keys": [], "data": ["0x401c754c2e47492288f9c31b59e95cdd2fc08a6b492ef1ca57488b443f0f037", "0x44c3b2c6bd2486a62ecd3e72f8301fdddc05a366f8089251b1d045a1834c538", "0x7542d02a20e301af53444459d010b51de3fca4bb66413203a8bc62727d80339", "0xfeb1deb411d86ab3e6d2c3802bb2c462f820167545baeaa5689c93a256ae40", "0x6f7505bff568471f9fb31cb87924d701c8ae7ae29ad3bb2a3e76c4356ebc7f5", "0x20dd412078adebb7e89c4cd89b163993cb1980183a33163ed258d1f62e77104", "0x4e7e1f71bc93bdfaf9a1468fabcb7d25596ca64bf12106c5f3b2b1f766266ca", "0x4cf59b9e387cdc5c853e2782b2c6c6ae9b6c46503f9773338e5c2eacd35a8f6", "0x1393882a0bf7cf3f3581340649823e673ccd2a5b6f8b985346da8cc34333235"]}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 9}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 12, "transaction_hash": "0x516fdfa0d3067caced6965ea7886584cab8f8b46c25cdf8601522f22805b342", "l2_to_l1_messages": [], "events": [{"from_address": "0x3ef8eee1e1385aec7f9743deea61fe0aa03a66ee846b1fcd0a21b74197c71ce", "keys": ["0x9e14323d0ef4819b3a94a16a0338424fac4c2e20d67941e8b1d3e5183e4070", "0x7ab65d212e696f3f80b65b311ae700893cd39f88ab5d64498bb281e9aaf748c", "0x19119f25e66249421b2b1560df004eb3b2e742b2ff604c71cc6161113d956af", "0x5364743eb6ca468666df6695068ad0029efea046d1a7f10fc96a7e75af0e5a6", "0x2ef79e8c792eb95e28739630a8bd7b06f70c2f0c74a515466b1f672aeb3bad4", "0x51fecba9375a4edcefeb9afb2094e8fe1c922543ce8bad9535400273f5b6425", "0x7ddfb50fd8a5d07fc33f9b893743856a54d489e84e2aafad45fe443c1bb757d", "0x5520f3ebd3071770963ba259bf2917872d881f2f51820b5cf50b7ff42ba8d2d"], "data": ["0x61655d6d28ad2f81b1bf5eb96694fc70bca77daff80b2ecf9eaf9dd82bdc4eb", "0x7e6722f12f7236584686cabb9ade34d86cebdc18c461f3fc1aa835ce3c3bc3e", "0x7bacd92feee3b5b35ee05823e5cc247f377f013dcceeddbd158d2d1d1d1fcf7", "0x6b52711a47173a64e60762040997a4ea12ae9a3451ba9f1af5b62aed3ea4ef7", "0x5474c5eceaf854486fb68c4bc49c8f7cc646bbfd3f10862af0e58f622af3760", "0x509698671ece2993e2ca8b23fd19a39720e87975d4d1e754f387ef064db4d90", "0x6d11a7eb43587bf9fb9ad3da8cb6ec069dbf08c80e2d5721fca283fcbca70ea"]}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 15}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 13, "transaction_hash": "0x5477c8ecb618528c12754430fa83079d579134a3769b6cb8decae172dd55f95", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 14, "transaction_hash": "0x32cfe494284525c661e4ff049281b975029086e392898112eff5ea028745565", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 15, "transaction_hash": "0x71544050425e074a65bb72e98c785a560f3f6cba9983650542bfe583d0fdf8b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 238, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 16, "transaction_hash": "0x411d10cf1b45cade1b1953f201b38052c24bb1d4f4105f06a558421d66dab7a", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 176, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 6, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 17, "transaction_hash": "0x1f613818adc5895dba4a03be718cc27129e8a8f883aa4179c96a25dba9da8a3", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 63, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 18, "transaction_hash": "0x2c6a8369457f48b437db449d9a3a9e654eb723be36167dff58ed85df3da46e4", "l2_to_l1_messages": [], "events": [{"from_address": "0x3e3693bca6b60c874bb7a5f7347c56b71af29941fd5038ca45d4d60a37be7fa", "keys": ["0x66aaee780b90557cea0887799bdb36892d205ad6191efd574ff762b0fd7b33d", "0x69188f118a09adc404a9cce0166e33e8be61f49df75e77bab1c0dc89ab53b4f", "0x37804353521f4a3fabe61dc72d231c3996c0bc35695029d0aa72e0a2126dfaa", "0x13fd53692830343e9cae457b3388173963bede4f072bf7f11b5842825f6e266", "0x5e3c1908c18036502a12db0528bdf9f8ec6b7c163024aebb04d1ac23a53a95a"], "data": ["0x21b4cd30ebab98a0012ef4be199a2576c10cd884c5c8819cb8224b94bd48c04", "0x37b6a72bef3ca5e7ea1497aba700e3066aa8762de876abc7c577049d54993e3", "0x55f410ae20ae06c7d8ac1caf34f393ed4d0a065f75e871ce693def2fbc72a2f", "0x2418435f4f844e3adf74bb948683bd5c803c5c407eb5c4490bcd30c3c76d669", "0x35dc90e6712b52f465f62bfa23297ea96a0d73311dcbbe2f783b848e76fe36f", "0x39c206ebbfd1dc0040d6840618e99355f96bb45fd46099d1ce573a242dbf4e9", "0x1c031359e271e659b02217b056b6831fea5a4d48a8668ca27da683e81552b36"]}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 12}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 19, "transaction_hash": "0x6da04d25f783178cc2ffb502ae025af7a091296b6923d1709e4bcb5291c3541", "l2_to_l1_messages": [{"from_address": "0x724f962a474eb4cc67144b535c4d8fbe9b8636b32f24fdd64ab1d57c47e9585", "to_address": "0x0000000000000000000000000000000000000001", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 332, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 20, "transaction_hash": "0x1722f3955335e9ebd9624ee901553bbc47f4b62abf2cc2d9c17bb80559acb56", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 21, "transaction_hash": "0xe3531a6c94a3ea21d549afaa220b7962901daaa65b5fee4e2727739339fec5", "l2_to_l1_messages": [{"from_address": "0x36bca11100ce8e2db3c5ec276ea46579a7f661e268eaea1e5e403b07842198c", "to_address": "0x5F5fF5d50afBddc01b7E84d6Cc18ee4EFDcAeDdb", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 22, "transaction_hash": "0x35b0fdd3a876bec243d126e46629e08a25ad55f31b2b619e03cbc3a597a9ab8", "l2_to_l1_messages": [{"from_address": "0x54b8df06a176ff1b0cf06ede457612bad9999377d1fd570aaa77036ff3b4b04", "to_address": "0x52Af090589Def28A7C4a1aCC9ca97E1357fBbB5a", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 71, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 23, "transaction_hash": "0x2d528f3819b8a1b655fb732572dcf5d989a6e3efb4b3a1a238b9f61ea752485", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 24, "transaction_hash": "0x7b993953532ed4237e0d2dc6e1ff31ca81a063ae81339d4831def939eb77e91", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 169, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 25, "transaction_hash": "0x2d2121b7ea7b8b3dd5a3a6c2e4e57876b7c2e9fb20c91e859147ceebb82d3d6", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 169, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 20}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 26, "transaction_hash": "0x736bca6e1d2bbba1c230d70e160eb08a0514f58c7e01ec0e66806c4addc5407", "l2_to_l1_messages": [{"from_address": "0x7241422365c5847df0328df87a3e243a56820407f8356dd376cb9545e875716", "to_address": "0xA54c446b067D7dD93784a3B6acA0bEC3d0bBe329", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 71, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 27, "transaction_hash": "0x63443b1e675abeb386415b5c43948428cb135d2b315b67b7b76999606dd73fd", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 28, "transaction_hash": "0x5c98a9bf43c4371c7d896c42c8137c648f9bb194a7894a668d5fb80b7dbf634", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 238, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 29, "transaction_hash": "0x1bf4f094bb36e6277e90ef3f8309b66daf0da06a878fc14340e87ecdb852862", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 165, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 22}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 30, "transaction_hash": "0x33c7fe25e1f346a641e5291b82c8a8031df193b82c2aa831024ff6eaff2cbf5", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 25, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 31, "transaction_hash": "0x2cc81e2ec4d1e948d186e162072beaf1b63fcd08a9538d47cd9cf2c13ec6956", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 32, "transaction_hash": "0xaca7807b3b35f8884ae5195be920624f8c88f3b3776e2ec0457a6fd2e0e5dd", "l2_to_l1_messages": [{"from_address": "0x2a8f1cd39b9054c1098cce17558247ff9ef2ea2a073b8a921f51cdd47e305ff", "to_address": "0xc4FC6Bc65CBa5cfa71DdaBEC8BFdb6DCD286dbd7", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 33, "transaction_hash": "0x13805a1a562f718fa7d01d3252ec70ef121f4c79c9bb90de588279c32c62680", "l2_to_l1_messages": [], "events": [{"from_address": "0x5d580581be3fc15ec7e9d19416e2dd2ca1036b1bd0973125ad828e9d1c6f41d", "keys": ["0x47d7e1bc15ed644405553ffcb567b484b06ab79d31dc1b0a6cb4201e8599fb1", "0x75ab9daa9276d75144c8b418422c8b380b9809792a19a33c868f2f02d9afa89", "0x1b607a14aeca5ec09ca756486999a519bf48de8d7e1c2a5f42db14fe722d758"], "data": ["0x3a334be1d122ec293c81e2f5865109416726d7f02e39e7d25e29b4a43bb695d", "0x33b432cb02ff47eaaa2b97c359eb2873412676111a112909438d7d0e5617473", "0x4ec98b85f7458e37728e54352f1d5cd125f2eac49911d0c0255ee9acf58ce33", "0x741f8bf524b4b2b789a6976057d7d3122eba071b919052c22ae43a8ad4d7a97", "0x65aa706256baa0f6824f6f723cc1aa462b8288d9b478d42240c6c2175ad2255"]}], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 8}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 34, "transaction_hash": "0x6bd9f22bd59849d598ea05e920645cda053f948f37db51f6f0ab4b40559f026", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 63, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 1, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 1}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x445152a69e628774b0f78a952e6f9ba0ffcda1374724b314140928fd2f31f4c", "parent_block_hash": "0x37644818236ee05b7e3b180bed64ea70ee3dd1553ca334a5c2a290ee276f380", "block_number": 4, "state_root": "0xe290a369aa37fb11008ffea52cf207cd5e2a66fed9ad4e551aa46ec0ed58b", "transaction_commitment": "0x69e3b5485916dd0c3faf2568bd5c9520363a8a3ebf8728497b5dcd10e2d3ed4", "event_commitment": "0x49ab436426f304955088d1093ff5eeef9dc1b5d6b9362510a6a428889884201", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9aca12", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x3c9dfcd3fe66be18b661ee4ebb62520bb4f13d4182b040b3c2be9a12dbcc09b", "version": "0x1", "max_fee": "0x0", "signature": ["0x67f921af8ead287fa21a8c0c168ab3cfecb4542fec5dd0c16a4b8708a92ff9c", "0x7e8c6a9289e49b2f61b5c8af5225225b3190f13b922e3219c63055295deafa5"], "nonce": "0x7", "sender_address": "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "calldata": ["0x1", "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "0xd43941048da98e5d91155f568f15da2ac665270f823156af4a151cc6f01869", "0x0", "0x8", "0x8", "0x23be95f90bf41685e18a4356e57b0cfdc1da22bf382ead8b64108353915c1e5", "0x0", "0x4", "0x4574686572", "0x455448", "0x12", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x24ae8900d238a120e927d6a5f2e4ddf85419e97020d92c1fadc615bff666ab1", "version": "0x1", "max_fee": "0x0", "signature": ["0x666c1b3e14548468b2e15d414dee1cdecb76f9d2a88da657450b8fa60e7f73c", "0x5755d4ca07ac85c1494db9a0b6916eba26427bfcf919e9d21f20ed8774ac861"], "nonce": "0x8", "sender_address": "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "calldata": ["0x1", "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "0xed163e8350935d550d16de1f53fd8284b06f37685f9d20c7f1735f719f336e", "0x0", "0x8", "0x8", "0x23be95f90bf41685e18a4356e57b0cfdc1da22bf382ead8b64108353915c1e5", "0x0", "0x4", "0x4574686572", "0x455448", "0x12", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x48f6c73e794a46f4199fc94ce21f5697c8c3b1e5812de6bf9cd8e4867d82608", "version": "0x1", "max_fee": "0x0", "signature": ["0xadf40654702062788735a62944c47c0a453ae72b8efd1767cf8765edb90581", "0x696fb410d281aadba4c5806f37fd6cba819f01fbda59be2122582841053f472"], "nonce": "0x9", "sender_address": "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "calldata": ["0x1", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "0xd43941048da98e5d91155f568f15da2ac665270f823156af4a151cc6f01869", "0x0", "0x5", "0x5", "0x6d8ff7b212b08760c82e4a8f354f6ebc69d748290fa38e92eb859726a88f379", "0x0", "0x1", "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3aab0f1723f38bb12db2c417f39b143c713621122233b9c3bbc02095be8a50e", "version": "0x1", "max_fee": "0x0", "signature": ["0x7143551fc3355fc90a7b5564a8c0120d850d8142b8efbf3f87bd161daf4ad", "0x305aeaedcac5742f085c0abd0422bf8dda3e74d41de49e7c9c29e037ae9a462"], "nonce": "0xa", "sender_address": "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "calldata": ["0x1", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "0xed163e8350935d550d16de1f53fd8284b06f37685f9d20c7f1735f719f336e", "0x0", "0x5", "0x5", "0x6d8ff7b212b08760c82e4a8f354f6ebc69d748290fa38e92eb859726a88f379", "0x0", "0x1", "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0x0"], "type": "INVOKE_FUNCTION"}], "timestamp": 1700480071, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x3c9dfcd3fe66be18b661ee4ebb62520bb4f13d4182b040b3c2be9a12dbcc09b", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x2e8a4ec40a36a027111fafdb6a46746ff1b0125d5067fbaebd8b5f227185a1e"], "data": ["0x23be95f90bf41685e18a4356e57b0cfdc1da22bf382ead8b64108353915c1e5", "0x0", "0x4", "0x4574686572", "0x455448", "0x12", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "0x0"]}], "execution_resources": {"n_steps": 5140, "builtin_instance_counter": {"range_check_builtin": 111, "pedersen_builtin": 27, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x24ae8900d238a120e927d6a5f2e4ddf85419e97020d92c1fadc615bff666ab1", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x1205ec81562fc65c367136bd2fe1c0fff2d1986f70e4ba365e5dd747bd08753"], "data": ["0x23be95f90bf41685e18a4356e57b0cfdc1da22bf382ead8b64108353915c1e5", "0x0", "0x4", "0x4574686572", "0x455448", "0x12", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f"]}], "execution_resources": {"n_steps": 7587, "builtin_instance_counter": {"range_check_builtin": 156, "pedersen_builtin": 28, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x48f6c73e794a46f4199fc94ce21f5697c8c3b1e5812de6bf9cd8e4867d82608", "l2_to_l1_messages": [], "events": [{"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x2e8a4ec40a36a027111fafdb6a46746ff1b0125d5067fbaebd8b5f227185a1e"], "data": ["0x6d8ff7b212b08760c82e4a8f354f6ebc69d748290fa38e92eb859726a88f379", "0x0", "0x1", "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "0x0"]}], "execution_resources": {"n_steps": 5100, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 111, "pedersen_builtin": 24}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x3aab0f1723f38bb12db2c417f39b143c713621122233b9c3bbc02095be8a50e", "l2_to_l1_messages": [], "events": [{"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x1205ec81562fc65c367136bd2fe1c0fff2d1986f70e4ba365e5dd747bd08753"], "data": ["0x6d8ff7b212b08760c82e4a8f354f6ebc69d748290fa38e92eb859726a88f379", "0x0", "0x1", "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8"]}], "execution_resources": {"n_steps": 7296, "builtin_instance_counter": {"pedersen_builtin": 25, "range_check_builtin": 154, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/4_pending.txt b/starknet-core/test-data/raw_gateway_responses/get_block/4_pending.txt index 3639c246..c4ded863 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/4_pending.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/4_pending.txt @@ -1 +1 @@ -{"parent_block_hash": "0x101f1bbeecabb9afa027412df8f6224b21f66633891cffa798c7ab9dbb987e9", "status": "PENDING", "eth_l1_gas_price": "0x3b9aca0c", "strk_l1_gas_price": "0x5f5e101", "transactions": [{"transaction_hash": "0x47b4000598758d1746ec2174d2ef9b1ab7f610fc1866e7af06b795ef1d018fb", "version": "0x3", "signature": ["0x416249e3679975127dce51b754a277be0663d61bc7ae5c014f782007dda6a08", "0x4a8ebcc83d587605781b93b93326099c084bc453d716ebc35ffcfb7259b7dfe"], "nonce": "0x2343", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x186a0", "max_price_per_unit": "0x5af3107a4000"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "calldata": ["0x1", "0x47ad6a25df680763e5663bd0eba3d2bfd18b24b1e8f6bd36b71c37433c63ed0", "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "0x2", "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "0x1663bb79bcf59fe5c8e7586e92485b8d1bdd9f92127213acf2b954f7806ce8d"], "account_deployment_data": [], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x1a8bf22d7f9745c97eb37f7ac8a374cdbed5260af38cf1e71b77c5704cba2ca", "version": "0x3", "signature": ["0x70be0a076c82aa24ca496c1f6da944b17ddad0af6b66d0949ddd25ada266c91", "0x747c5ea051e57908e9323353de22863092d2593b4e355dea0f07f3267f10c58"], "nonce": "0x2344", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x186a0", "max_price_per_unit": "0x5af3107a4000"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "calldata": ["0x1", "0x47ad6a25df680763e5663bd0eba3d2bfd18b24b1e8f6bd36b71c37433c63ed0", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x13", "0x9", "0x623f05ab950f48f4c7de96ada26e6ef575b83094cf09c69317ea7228afc4271", "0x79bf37f3c3b3d202aaaae8d01158839c06da467f7b6c0437e819ef91ac86c3d", "0x3452b9f33bb0f17c137423f9951d2f39092ce81406121deb2ba192ba4289900", "0x2edf461da90078be0eb9fa962e4a13d8646abde903b1154f78c09b6d8c94969", "0x5d7ed511126f10ca47585c47ff948ccbfc6ed749a6aa8f1cb40fb1a5c91606", "0x619b15058e71a7b327187707c51aab86e6352c3f59c8fd50554b7ec3ff6faac", "0x5aa866df28cce2303580746fb77da118a142065c956f9dd45ddfacd7739b830", "0x3dd0fa50e5a58c506174a348f790e1cb6d8d155f0f638deb2bb3aced24a3592", "0x4981463f158a2ab203a7859c121b6d54507108815ab7d6217dedb47f2b3f3c3", "0x8", "0x356ce49c69372038309c98b74c087dac97853895486e44fc7c547c40e5b6a87", "0x61c6d8e5a805ac84d323fb7a5a77b210beae6708dc54b46ef0701249d65d0f5", "0x6c3278d355d9fed4f8c26cfe94a6f512b5671b55d3573bc8dc5b1a416119615", "0x64f495d917053b7e3c3636ed15793cfbd7610a09afde991017c30bb6927fd06", "0x3a4cdf44d58f27303c89db17c4f01c09a6bc93f777657073a35800d885b281b", "0x42bf85a3a716d499c6e4bd598583a042360a8347ac0dabce490b40073aeec49", "0x2f62a9b2ee4ef077153f08c32ac2690aa9c41219d98cd492558ddcf77a0688", "0x4f15bd9ba25dac9596e29a58c84bd5d637ebeef4b54bb1019b1be5c28460b78"], "account_deployment_data": [], "type": "INVOKE_FUNCTION"}], "timestamp": 1702110166, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x47b4000598758d1746ec2174d2ef9b1ab7f610fc1866e7af06b795ef1d018fb", "l2_to_l1_messages": [], "events": [{"from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"], "data": ["0xacbcafb7fb", "0x0"]}, {"from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", "keys": ["0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd"], "data": ["0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", "0x4a05f6bcf69cf21", "0x0", "0x4a060188c19871c", "0x0"]}], "execution_resources": {"n_steps": 850, "builtin_instance_counter": {"range_check_builtin": 15}, "n_memory_holes": 1}, "actual_fee": "0xacbcafb7fb"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x1a8bf22d7f9745c97eb37f7ac8a374cdbed5260af38cf1e71b77c5704cba2ca", "l2_to_l1_messages": [], "events": [{"from_address": "0x47ad6a25df680763e5663bd0eba3d2bfd18b24b1e8f6bd36b71c37433c63ed0", "keys": ["0x623f05ab950f48f4c7de96ada26e6ef575b83094cf09c69317ea7228afc4271", "0x79bf37f3c3b3d202aaaae8d01158839c06da467f7b6c0437e819ef91ac86c3d", "0x3452b9f33bb0f17c137423f9951d2f39092ce81406121deb2ba192ba4289900", "0x2edf461da90078be0eb9fa962e4a13d8646abde903b1154f78c09b6d8c94969", "0x5d7ed511126f10ca47585c47ff948ccbfc6ed749a6aa8f1cb40fb1a5c91606", "0x619b15058e71a7b327187707c51aab86e6352c3f59c8fd50554b7ec3ff6faac", "0x5aa866df28cce2303580746fb77da118a142065c956f9dd45ddfacd7739b830", "0x3dd0fa50e5a58c506174a348f790e1cb6d8d155f0f638deb2bb3aced24a3592", "0x4981463f158a2ab203a7859c121b6d54507108815ab7d6217dedb47f2b3f3c3"], "data": ["0x356ce49c69372038309c98b74c087dac97853895486e44fc7c547c40e5b6a87", "0x61c6d8e5a805ac84d323fb7a5a77b210beae6708dc54b46ef0701249d65d0f5", "0x6c3278d355d9fed4f8c26cfe94a6f512b5671b55d3573bc8dc5b1a416119615", "0x64f495d917053b7e3c3636ed15793cfbd7610a09afde991017c30bb6927fd06", "0x3a4cdf44d58f27303c89db17c4f01c09a6bc93f777657073a35800d885b281b", "0x42bf85a3a716d499c6e4bd598583a042360a8347ac0dabce490b40073aeec49", "0x2f62a9b2ee4ef077153f08c32ac2690aa9c41219d98cd492558ddcf77a0688", "0x4f15bd9ba25dac9596e29a58c84bd5d637ebeef4b54bb1019b1be5c28460b78"]}, {"from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"], "data": ["0x3ab84aa3da", "0x0"]}, {"from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", "keys": ["0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd"], "data": ["0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", "0x4a060188c19871c", "0x0", "0x4a0605344642af6", "0x0"]}], "execution_resources": {"n_steps": 1520, "builtin_instance_counter": {"range_check_builtin": 34}, "n_memory_holes": 1}, "actual_fee": "0x3ab84aa3da"}], "starknet_version": "0.13.0"} \ No newline at end of file +{"parent_block_hash": "0x48b13869663fc4a4ef97c91f7374404886a0061e6586fb29f42e7fc8d167c00", "status": "PENDING", "l1_da_mode": "BLOB", "l1_gas_price": {"price_in_wei": "0x4a817c800", "price_in_fri": "0x1d1a94a20000"}, "l1_data_gas_price": {"price_in_wei": "0x2d9635b633", "price_in_fri": "0x12ea30532603e"}, "transactions": [{"transaction_hash": "0x5c331ec018c360e57a87fda0febbaf731d5a093d7bad26063aff008f82ba64e", "version": "0x1", "max_fee": "0xf87dc5a62b32", "signature": ["0x16cab081f4c37f9bd2221a746c6599eecadee0757833faf343acad7e9715ae", "0x571ad0b1a0254f7d6251eaa8faa5cf314615c305e4792f595d877a07d2c99a2"], "nonce": "0x2e7", "sender_address": "0x3231e1d09ec74fcc419cd4ac7dd62db82896c02dac41cf49fdb542c5c5d963c", "calldata": ["0x2", "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", "0x5", "0x5265736f6c766552616e646f6d4576656e74", "0x3", "0x0", "0x1", "0x4d8", "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", "0x7", "0x457874726163745265736f7572636546696e697368", "0x5", "0x5", "0x1044", "0x1", "0x1", "0x4d8"], "type": "INVOKE_FUNCTION"}], "timestamp": 1712093987, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x5c331ec018c360e57a87fda0febbaf731d5a093d7bad26063aff008f82ba64e", "l2_to_l1_messages": [], "events": [{"from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", "keys": ["0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", "0x43726577", "0x1"], "data": ["0x1", "0x4d80001", "0x3231e1d09ec74fcc419cd4ac7dd62db82896c02dac41cf49fdb542c5c5d963c", "0x5", "0x61ab", "0x619d", "0x6198", "0x61c0", "0x61c1", "0x6601660d", "0x660beabf", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0"]}, {"from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", "keys": ["0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", "0x496e76656e746f7279"], "data": ["0x2", "0xebe0005", "0x2", "0xa", "0x1", "0x73cfa4a18", "0x74ec07ca3", "0x97faebe0", "0x5d77c1b4", "0x17", "0x21", "0x3d811", "0x29", "0x354", "0x9", "0x10531e", "0x18", "0x8ac81e", "0x2d", "0x74d4", "0x2e", "0x9ee", "0x2f", "0x208", "0x30", "0xd34", "0x31", "0x618", "0x4e", "0x514", "0x6", "0x4da281", "0x3a", "0x72eab", "0x17", "0x4d9f0", "0x4a", "0x102c3", "0x19", "0x5a88", "0x6c", "0x3e9", "0x1b", "0xd3f16", "0x2", "0xfb", "0x2c", "0x40fe0", "0x7", "0x843e9e", "0x1", "0x396b18", "0x81", "0x9c4", "0xb", "0x10bd39"]}, {"from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", "keys": ["0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", "0x457874726163746f72"], "data": ["0x2", "0x10440005", "0x1", "0x1", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0"]}, {"from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", "keys": ["0x3b79c1330b2be99d66b412f90e606ac683ff72acd4715551f21d2e97f53e6c7"], "data": ["0x5", "0x1044", "0x1", "0x9", "0xff117", "0x5", "0xebe", "0x2", "0x1", "0x4d8", "0x3231e1d09ec74fcc419cd4ac7dd62db82896c02dac41cf49fdb542c5c5d963c"]}, {"from_address": "0x3231e1d09ec74fcc419cd4ac7dd62db82896c02dac41cf49fdb542c5c5d963c", "keys": ["0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", "0x5c331ec018c360e57a87fda0febbaf731d5a093d7bad26063aff008f82ba64e"], "data": ["0x2", "0x1", "0x0", "0x1", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x3231e1d09ec74fcc419cd4ac7dd62db82896c02dac41cf49fdb542c5c5d963c", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x52402aa11940", "0x0"]}], "execution_resources": {"n_steps": 52914, "builtin_instance_counter": {"pedersen_builtin": 37, "ec_op_builtin": 3, "poseidon_builtin": 31, "range_check_builtin": 2521}, "n_memory_holes": 0, "data_availability": {"l1_gas": 0, "l1_data_gas": 448}}, "actual_fee": "0x52402aa11940"}], "starknet_version": "0.13.1"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/5_with_class_hash_and_actual_fee.txt b/starknet-core/test-data/raw_gateway_responses/get_block/5_with_class_hash_and_actual_fee.txt index 707da6e9..e3fc3e48 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/5_with_class_hash_and_actual_fee.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/5_with_class_hash_and_actual_fee.txt @@ -1 +1 @@ -{"block_hash": "0x34e815552e42c5eb5233b99de2d3d7fd396e575df2719bf98e7ed2794494f86", "parent_block_hash": "0x3ae41b0f023e53151b0c8ab8b9caafb7005d5f41c9ab260276d5bdc49726279", "block_number": 1, "state_root": "0x74abfb3f55d3f9c3967014e1a5ec7205949130ff8912dba0565daf70299144c", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "version": "0x0", "contract_address": "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5", "contract_address_salt": "0x6030390b01fe79d844330de00821c68206959c389ef744b2d315e27078f0ad", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x782142c3526899d48e6f1ce725f56b11cb462586c9f1340e4cfbcbebdd174f2", "0x7dee1fa95f31fd5ffb0ad1c3313aa51d82d66adfbb65efb982eae696c4309b7"], "type": "DEPLOY"}, {"transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "version": "0x0", "contract_address": "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b", "contract_address_salt": "0x13b7e67ff6b2e1a5aac25134cc2765ea2a1bf36a7b94c92aa3fc4690978d1c5", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x26a1e7e74188cbc724a793c972ad09d5aba110c4c06dfae51ae078b321e957", "0x461226574f9663500fc330295cea93b295389618c9eab30c3362fa14975d54c"], "type": "DEPLOY"}, {"transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "version": "0x0", "contract_address": "0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352", "contract_address_salt": "0x25c239a162c5a7ace888ca39f295aad52b75174952f4ea8f3afed13cde4490a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x1a315d6be5adafdd493b45672137525190b23b7f3a0ec91feafaa6ab48b0828", "0x24740a6b71ae76d658a1ec1efb6f201ba9794ebeed49ca59c0efe63f4a3cca2"], "type": "DEPLOY"}, {"transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x64ed79a8ebe97485d3357bbfdf5f6bea0d9db3b5f1feb6e80d564a179122dc6", "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32"], "contract_address": "0x7b196a359045d4d0c10f73bdf244a9e1205a615dbb754b8df40173364288534", "type": "INVOKE_FUNCTION"}], "timestamp": 1638978017, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x78b67b11f8c23850041e11fb0f3b39db0bcb2c99d756d5a81321d1b483d79f6", "parent_block_hash": "0x5c627d4aeb51280058bed93c7889bce78114d63baad1be0f0aeb32496d5f19c", "block_number": 1, "state_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "transaction_commitment": "0x301a3e7f3ae29c3463a5f753da62e63dc0b6738c36cb17e3d1696926457a40c", "event_commitment": "0x0", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9ada0f", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "version": "0x0", "max_fee": "0x0", "signature": [], "nonce": "0x0", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "sender_address": "0x1", "type": "DECLARE"}], "timestamp": 1700474724, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 2711, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/6_with_sequencer_address.txt b/starknet-core/test-data/raw_gateway_responses/get_block/6_with_sequencer_address.txt index a564327e..c431fa03 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/6_with_sequencer_address.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/6_with_sequencer_address.txt @@ -1 +1 @@ -{"block_hash": "0x19b67b0aa0d29ed45352f113df69d4ed41ecf29d04368bd2a25e9ddb356669e", "parent_block_hash": "0x6cbc5f75688917d1a150eb913edf313d5a520856eb9bba23fd328c39cfe0509", "block_number": 200000, "state_root": "0x212073e6eab4a5cc4269e2638eefd9ce153a9ae100f17337005280beda5a2bf", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x59682f07", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x31430dd19eff308adca90182f1bfa0209185d0664c13b465dc4c2c8e1ea41eb", "version": "0x0", "max_fee": "0x2386f26fc10000", "signature": ["0x56ed338ad5ec0849ad9635ca68a9b2b2b62552d3f4f69648655a27c1707e29", "0x5904be5d6ed06cf902ac6451cfe7f8c1c3dee2e6f6c20174a0461bae4af778e"], "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "calldata": ["0x1", "0x223951c7eb0638baf432631f05a2fe72ae96c25be1a1b9c7f81b6e3adaa19f", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x0", "0x1", "0x1", "0x60b1cec296e0cddad1e976bdef7a0ec495ee1c1c", "0x1b3"], "contract_address": "0x2e2ed6c28ff10eef7391edd6f3151ebc3528ccb55dd78f9babfc89a40ac6148", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5a69b18074cdf81c0802e125f45fcba712dc00d418752387cf24597f5251be", "version": "0x0", "max_fee": "0x2386f26fc10000", "signature": ["0x2aab5123fe61803c6ad5a463f39b9ba62d802860d08ff6554aca32eb2bb068e", "0x57ba06c79c306bcdfb9c66c4cee1de0fe8eff9f83f204609bb56422afc1d5cc"], "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "calldata": ["0x1", "0x219d65d795fb8f32d6c9f604f049c2e256d322334802e0311f26b896e093a60", "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "0x0", "0x2", "0x2", "0x676340aaad0380a56111f48160587d8f09cbccb6ec82553cbcb4720dacdde1a", "0x0", "0x18f"], "contract_address": "0x396fd5a266e97adeb75c2fde397b746a64eece8476966da8b96b58dd37016bc", "type": "INVOKE_FUNCTION"}], "timestamp": 1658297240, "sequencer_address": "0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x31430dd19eff308adca90182f1bfa0209185d0664c13b465dc4c2c8e1ea41eb", "l2_to_l1_messages": [{"from_address": "0x223951c7eb0638baf432631f05a2fe72ae96c25be1a1b9c7f81b6e3adaa19f", "to_address": "0x60B1CEC296E0Cddad1e976Bdef7A0Ec495Ee1c1c", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 264, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 1}, "n_memory_holes": 4}, "actual_fee": "0x2ba354ac07a5"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x5a69b18074cdf81c0802e125f45fcba712dc00d418752387cf24597f5251be", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 471, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 1}, "n_memory_holes": 5}, "actual_fee": "0xc1114a0d4db"}], "starknet_version": "0.9.1"} \ No newline at end of file +{"block_hash": "0x1b2aa5b3d3549f4d20e5da0c4e883569062bba77b83deaf05023ff25ed263ab", "parent_block_hash": "0x327e636238a2f721b6ec76d8e9ac80409ec7d97a1abb8e8e8984a2498dcd64b", "block_number": 100, "state_root": "0x51098918fd96edda4e251f695181c063e21fb0666352e3469db507c7fd62b89", "transaction_commitment": "0x576db32d35cf011694a73c6ce400d5d77f768cbd77ee7cf87d12902e0f9b4ec", "event_commitment": "0x1c972780140fd16dde94639226ca25818e4f24ecd5b5c3065cc1f5f5fc410f9", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x41a6eb9e", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x3e11636b9c79ead698fcbd706f22ab0e9d16526d9f8f46837a5b5ca35e80619", "0x41d6b131ad80ad0f8a4d3cd769b47343b498f69d051fb892f1d7a6679fee7a0"], "nonce": "0xf7", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", "0x0", "0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1eafc2526500296b7208c5fe476e4a8cedb57382df56be48d9d7fafc8065450", "0x2", "0x4", "0x6", "0x55fd2c884e34463a9417db82657224ff", "0xc4adb99a3ff4b2e42860f07759eb9bed", "0xf3dab5f4e79bcdc0beb8e40326b0d8d6", "0xdc94a5b96f0033caedd78bad9580de64", "0x291d4450b96580ccf5ca4df3e2bd1ec7", "0x16bf6384530c7aeff7a24b77973ba9fb"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x6bcd46d8c5fad65dbb645de3b70f3eec69f8c9db0deb0d073d694e5b8948dd5", "0x578f2cd665ba4c17fa62f48afe6e76082022476464b488edf96b0b0357d987c"], "nonce": "0xf8", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x0", "0x9", "0x9", "0x6", "0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923", "0x1", "0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x40d444a5ef3d561b84bdf890427cb7705f0de017a12ab218455ede5f88bc646", "0x6343e1b64b19426bab64569f4c8ca7bdafd415530bb12d7cfb9bb4328a22db8"], "nonce": "0xf9", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1146dc478b3f7aefc53dbbbb6d068505c5a99f8e3438fdd2d38b91044a79300", "0x0", "0x4", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x4", "0x2", "0x6", "0xfb3b60118ad52416e9543a7d8c0ce3ca", "0xc0a6096ef173003a7ac1a9b33d5514ec", "0xf7c5dc678b3e71efd3b96d4eeb62a8c4", "0xbcb38cae02ce6921074be5ea8e220fc4", "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x22f2c75fa521003217e4e2b3dc1dd3928ec8f12cb333d126457df61e387efbf", "0x735340fc08822817104f69b2616b1fd4bde88dfbc3d8d8796f19147b7ee40c5"], "nonce": "0xfa", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x0", "0x4", "0x4", "0x42e1618965efe6306c0f13c8daefbf6d7f9b5a8f1023e809e2b48ccefd8a0b1", "0x2", "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8", "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"], "type": "INVOKE_FUNCTION"}], "timestamp": 1701111712, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x28efb4aa64c", "0x0"]}], "execution_resources": {"n_steps": 10552, "builtin_instance_counter": {"range_check_builtin": 463, "ecdsa_builtin": 1, "pedersen_builtin": 16}, "n_memory_holes": 0}, "actual_fee": "0x28efb4aa64c"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52", "l2_to_l1_messages": [], "events": [{"from_address": "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "keys": ["0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923"], "data": ["0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27f982b6d44", "0x0"]}], "execution_resources": {"n_steps": 4503, "builtin_instance_counter": {"pedersen_builtin": 16, "range_check_builtin": 105, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x27f982b6d44"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x4f7c06e29a2", "0x0"]}], "execution_resources": {"n_steps": 6243, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 172, "pedersen_builtin": 16}, "n_memory_holes": 0}, "actual_fee": "0x4f7c06e29a2"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x62e0f63d26e", "0x0"]}], "execution_resources": {"n_steps": 4808, "builtin_instance_counter": {"pedersen_builtin": 18, "ecdsa_builtin": 1, "range_check_builtin": 110}, "n_memory_holes": 0}, "actual_fee": "0x62e0f63d26e"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/7_with_declare_tx.txt b/starknet-core/test-data/raw_gateway_responses/get_block/7_with_declare_tx.txt index 785a7143..69094e28 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/7_with_declare_tx.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/7_with_declare_tx.txt @@ -1 +1 @@ -{"block_hash": "0x2d55a37a13f6e2e5be94e01b5b35f16c676ff88d0b71522ac2c0d4138f4de69", "parent_block_hash": "0x3899fc79d4688863df959f68c424183cd478e4b8cd7be6dc40da90bea583e58", "block_number": 209679, "state_root": "0x60eac244530e1b9d04edaa567ffa2ac442e8e1304b177e7011c9cb1d6512880", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x3b9ac9ff", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x9e0be0faeeb9263ab079e23a3ab6adf27a89a7ea834bed58619ea0e5d3572e", "version": "0x0", "max_fee": "0x2386f26fc10000", "signature": ["0x27f4e1fcd5966cfe509ef0ea11a4a9ec9e9009305181cb963e6a387b3be9cd3", "0x577e3fcc120737f8ed4395baba2d36ce65a15eb3039c3ad99985262f9bb0376"], "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "calldata": ["0x1", "0x34ad9fd64124f06bb18e31140a4c8285679da1bd97351a53fba96b075717fda", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x0", "0x5", "0x5", "0x2", "0x76ca73d1301beb9ef1869f59817a65769d6e39c6625405aaac13fc04e27e0be", "0x74129dcbe52686ae8770c2c9d53dae1139cd0f8b76467eb65a6e157c90d65c4", "0x1", "0x767ca036ead9c447478e13a7618967d099e432179ae7cd2c8dc6281ac8952b7", "0x2a"], "contract_address": "0x396fd5a266e97adeb75c2fde397b746a64eece8476966da8b96b58dd37016bc", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xe9e8350ccc7bad6ba8a45e2ba112db726f8b5f1149c8a55a0c607bfa353992", "version": "0x0", "max_fee": "0x0", "signature": [], "nonce": "0x0", "class_hash": "0x44e64d6959e027a274c96d2a410dd17aba3fd6596f22253fb3a4dce44417dd2", "sender_address": "0x1", "type": "DECLARE"}, {"transaction_hash": "0x52ccaacb9d2353d305ca44dd40c1012fea081811a099881794bcb73553150b7", "version": "0x0", "contract_address": "0x93dbb5d019c022e0edd010ac209d0cd21f3aaadbf561a5c8657cd28325726b", "contract_address_salt": "0x37b699265cb801b7933e5801aa0d8809262410b3e62020dd4c91f8b593adb88", "class_hash": "0x44e64d6959e027a274c96d2a410dd17aba3fd6596f22253fb3a4dce44417dd2", "constructor_calldata": [], "type": "DEPLOY"}, {"transaction_hash": "0x7690e22efd0195cc901ee9e89e53fb1ca8eff6e5d9c1f0c66c39d53f1f0125b", "version": "0x0", "max_fee": "0x2386f26fc10000", "signature": ["0x26eebb296aa1ee22828e12d84035e0793dcb15cc49786ef4cc0a383a4a60507", "0x7c08a0bc690c4b5641939f702c1f75574b28d5d54552ad0582ac50a8d8d08cc"], "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "calldata": ["0x1", "0x15d6d329847e14894b9938053ed81ba9771998ce6de85454fe6eb1429831bdd", "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "0x0", "0x3", "0x3", "0x266e70822e3e819a27a70324d63ba44ef216a36718f5ee21ed11dc7ab839a42", "0x772a8ef0d78e68eadff8c470d89f4aced3f20a5fdafef08ba98eb80b3c36c8f", "0x64826b48d7a1b280318da7a7ae91ac3ba1f8dbf5c38de031dbb97e24d10a70e", "0x2b"], "contract_address": "0x396fd5a266e97adeb75c2fde397b746a64eece8476966da8b96b58dd37016bc", "type": "INVOKE_FUNCTION"}], "timestamp": 1660295244, "sequencer_address": "0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x9e0be0faeeb9263ab079e23a3ab6adf27a89a7ea834bed58619ea0e5d3572e", "l2_to_l1_messages": [], "events": [{"from_address": "0x34ad9fd64124f06bb18e31140a4c8285679da1bd97351a53fba96b075717fda", "keys": ["0x76ca73d1301beb9ef1869f59817a65769d6e39c6625405aaac13fc04e27e0be", "0x74129dcbe52686ae8770c2c9d53dae1139cd0f8b76467eb65a6e157c90d65c4"], "data": ["0x767ca036ead9c447478e13a7618967d099e432179ae7cd2c8dc6281ac8952b7"]}], "execution_resources": {"n_steps": 276, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 4, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 1}, "n_memory_holes": 3}, "actual_fee": "0x37e11d5f100"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0xe9e8350ccc7bad6ba8a45e2ba112db726f8b5f1149c8a55a0c607bfa353992", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 0, "builtin_instance_counter": {}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x52ccaacb9d2353d305ca44dd40c1012fea081811a099881794bcb73553150b7", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 0, "builtin_instance_counter": {}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x7690e22efd0195cc901ee9e89e53fb1ca8eff6e5d9c1f0c66c39d53f1f0125b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 409, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 8, "bitwise_builtin": 2, "output_builtin": 0, "ecdsa_builtin": 1}, "n_memory_holes": 25}, "actual_fee": "0x6d884292899"}], "starknet_version": "0.9.1"} \ No newline at end of file +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "parent_block_hash": "0x7e16179ff54fa8bb1533fe2eea930e9e2bd658faaf9972533c9d3a9303171fc", "block_number": 7, "state_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "transaction_commitment": "0x5b209de02dadbe60f29809c4409541b3b1c8cac7260005e1ecad82bf8a9c524", "event_commitment": "0x41faa348153f17105f3452f598e76ae4f37643fa9e02555a3ac6336488bcd47", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x1a06b2979", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x2ac4c6315d54499d1c8133e4501e9034d8f70534afc013a272bab03995fa040", "version": "0x0", "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "entry_point_selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "nonce": "0x1", "calldata": ["0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"], "type": "L1_HANDLER"}, {"transaction_hash": "0x24ed6b82e2f6d3a811ec180a25c1ccd0bdc7bdba8ebd709de2ed697a1e82193", "version": "0x1", "max_fee": "0x1e3723604552", "signature": ["0x7f7282f79203f23ee8cd86db05a67166cf8f365415c472b3c3e0a8adfd45c58", "0x14132fea675b197eb5ac3c29665ae9bc92939e3b50bd4d2cbdd13ce64000421"], "nonce": "0x0", "contract_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "contract_address_salt": "0x0", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6", "constructor_calldata": ["0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x30a10763fc93c0e02959352754d11dbb03dcabb0c1e786b4dc02c77170ab017", "0x3ae5a2e11c72bbda3ef9621856d26f3f9d82b3ce7b9825a59ecd1e28dd0ae29"], "nonce": "0x1", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x2d288985b7201cae604c1ea879de93f6d41dcc617cbf27934a90c35b02b14c2", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x4cb34009319879a40498361bfc390247f341626836c1d256dac660f980cf931", "0xb1d8991d6b15554ea591e9987ebcadc3dc7ae257b7157c316d470d760dd8c3"], "nonce": "0x2", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x3f6e39d90aa084585ac59fa4c19429499951eb7a279427bbe0a7718c8d9072f", "version": "0x1", "max_fee": "0x1a1b07d31668", "signature": ["0x1a9c4f3464fe4a8b1575855cdb7745e14a2d825f4c0e9213d4d802899001016", "0x1063cb02e19c26a09b57f4727e339494d8ed0cdaf5e2de28ead36f93007fe86"], "nonce": "0x3", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "0x0", "0x3", "0x3", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x38d7ea4c68000", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x6d574ba9be0979817a41c2a62fc646246bc7327cf6fedccee3a8c978347fb78", "version": "0x1", "max_fee": "0x15a5753ffe7f", "signature": [], "nonce": "0x0", "contract_address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "contract_address_salt": "0x0", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "constructor_calldata": [], "type": "DEPLOY_ACCOUNT"}, {"transaction_hash": "0x48153df38b1e3bc5736b6501f736325f0261defe4e32a2e4069f452ef007acb", "version": "0x1", "max_fee": "0x3700276a4b50", "signature": [], "nonce": "0x1", "sender_address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "calldata": ["0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0xe022165192e2125a82029ed50194dd9c405f7405dc327887b3fdf3e4ccfe85", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x29cb2b4becb97be8bac6ddd7e69d5ba32e019ae87a522065e586362cccfd6b6", "0xb360de930a34c30899cc5646715ec9f4fdd84801b1f3219d597aed89dbf425"], "nonce": "0x4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x1889b8347f0ad35735b245d1ba7660b52eba88283971baf204d235c15749e65", "version": "0x1", "max_fee": "0x1e558e676676", "signature": ["0x5230f26e1177d1de4d01f2c51b0b750ec407b911aeefcdf2a8352a0a351d629", "0x13093b74a819ebd42c381e072d49103179ca913a9d44f9575a05be178292deb"], "nonce": "0x5", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", "0x0", "0x4", "0x4", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "0x0", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x4ab3e77908396c66b39326f52334b447fe878d1d899a287c9e3cf7bd09839ea", "0x79a56f9e61eb834f1ac524eb35da33cccf92ff3b01a7a8eaf68cbb64bebdba9"], "nonce": "0x6", "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0xb2d88f64d9655a7d47a5519d66b969168d02d0d33f6476f0d2539c51686329", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x3609667964a8ed946bc507721ec35a851d97a097d159ef0ec2af8fab490223f", "0x68846bad9f0f010fac4eeaf39f9dd609b28765fd2336b70ce026e33e2421c15"], "nonce": "0x7", "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x6be43a9866326cd9b227cfc528e05fdd89ffe32b6e0c9a8f54c6047ba1bb697", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x5de837c93ef3f99c3bcaeb9ff55b1954918d26405d05e1b7e9c10c5214ae452", "0xa1f38c7489e52d8fa5185c4a0710118facada52464d22200b891e0d8dc65b8"], "nonce": "0x8", "class_hash": "0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x817027a1a1d85e6dffde72e7114deef81a09c86846ed92057eb986518c9864", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x2845820af4fa0a3ed35913d519e7fffdc740fa5f5022749c17cd61ff094412a", "0x72d0850851912178f77a2f6de715a848d64c5e082df1cba17f8498ca5516ef2"], "nonce": "0x9", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x5d858a06bb8b7a899cda2bd7962c4009c6c40dbf3e747dc786d13de7d8c8031", "version": "0x1", "max_fee": "0x1e558e676676", "signature": ["0x76fbfa1b81f3ef360c28f6823567b0132c3aa28111a52b6c53ed3130a86e7a7", "0x4f2ad78394ff64a91eb385c38bbea7ac398f61ef3c8a0bea9d57311adcac5be"], "nonce": "0xa", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "calldata": ["0x1", "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", "0x0", "0x4", "0x4", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x0", "0x0", "0x0"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x778b9b6dfbad28d3627e33d1017d0ee1332b0a83e5a9676969940ef1f9e47fe", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x705739869fe95129300df3fb885657e961e53ad8f1e7206e522ec5c044050f4", "0x3697ff8920d3e34cf7ec1b8d6b57c86a7a4a894dd15cbbe1220e968450874a5"], "nonce": "0xb", "class_hash": "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x2bbb0dca331b5e5b9109a4ccac405894095952fb8f0747e022311114edde6be", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x7f42046a4cca79291f1de2614caacc73f23aceee3a3780274d0f654dc1da615", "0x5e377877f2a37cecc38a7c2e1b51a28d5e5c1637c7cb06ff8a064b5f690ab1b"], "nonce": "0xc", "class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}, {"transaction_hash": "0x763d3144ac9f23421a87be901a0fb80402b296960c6abd323002fcf21d1cd8a", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x5f26bf3ce5d19ea663ee944f66be5dfb85bd7a621f4062e83e42bcfa3dc04a8", "0x564147077f9316f8dc63a173e4814d373af20cac19ab96d6549421c1b41f364"], "nonce": "0xd", "class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}], "timestamp": 1700717101, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x2ac4c6315d54499d1c8133e4501e9034d8f70534afc013a272bab03995fa040", "l1_to_l2_consumed_message": {"from_address": "0x8453FC6Cd1bCfE8D4dFC069C400B433054d47bDc", "to_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "selector": "0x2d757788a8d8d6f21d1cd40bce38a8222d70654214e96ff95d8086e684fbee5", "payload": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"], "nonce": "0x1"}, "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x0", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"]}, {"from_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "keys": ["0x221e5a5008f7a28564f0eaa32cdeb0848d10657c449aed3e15d12150a7c2db3"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x2386f26fc10000", "0x0"]}], "execution_resources": {"n_steps": 8053, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 168}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x24ed6b82e2f6d3a811ec180a25c1ccd0bdc7bdba8ebd709de2ed697a1e82193", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b77f19d564b", "0x0"]}], "execution_resources": {"n_steps": 3863, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x1b77f19d564b"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "ecdsa_builtin": 1, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x2d288985b7201cae604c1ea879de93f6d41dcc617cbf27934a90c35b02b14c2", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 4, "transaction_hash": "0x3f6e39d90aa084585ac59fa4c19429499951eb7a279427bbe0a7718c8d9072f", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x38d7ea4c68000", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17bb7b7a145f", "0x0"]}], "execution_resources": {"n_steps": 6260, "builtin_instance_counter": {"range_check_builtin": 143, "pedersen_builtin": 20, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17bb7b7a145f"}, {"execution_status": "SUCCEEDED", "transaction_index": 5, "transaction_hash": "0x6d574ba9be0979817a41c2a62fc646246bc7327cf6fedccee3a8c978347fb78", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x13adb068b8d1", "0x0"]}], "execution_resources": {"n_steps": 3640, "builtin_instance_counter": {"pedersen_builtin": 23, "range_check_builtin": 83}, "n_memory_holes": 0}, "actual_fee": "0x13adb068b8d1"}, {"execution_status": "SUCCEEDED", "transaction_index": 6, "transaction_hash": "0x48153df38b1e3bc5736b6501f736325f0261defe4e32a2e4069f452ef007acb", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b8013b525a8", "0x0"]}], "execution_resources": {"n_steps": 4396, "builtin_instance_counter": {"range_check_builtin": 99, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x1b8013b525a8"}, {"execution_status": "SUCCEEDED", "transaction_index": 7, "transaction_hash": "0xe022165192e2125a82029ed50194dd9c405f7405dc327887b3fdf3e4ccfe85", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 8, "transaction_hash": "0x1889b8347f0ad35735b245d1ba7660b52eba88283971baf204d235c15749e65", "l2_to_l1_messages": [], "events": [{"from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "keys": ["0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d"], "data": ["0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x0", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90", "0x0", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b9398bb1754", "0x0"]}], "execution_resources": {"n_steps": 5570, "builtin_instance_counter": {"range_check_builtin": 123, "ecdsa_builtin": 1, "pedersen_builtin": 23}, "n_memory_holes": 0}, "actual_fee": "0x1b9398bb1754"}, {"execution_status": "SUCCEEDED", "transaction_index": 9, "transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}, {"execution_status": "SUCCEEDED", "transaction_index": 10, "transaction_hash": "0xb2d88f64d9655a7d47a5519d66b969168d02d0d33f6476f0d2539c51686329", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 11, "transaction_hash": "0x6be43a9866326cd9b227cfc528e05fdd89ffe32b6e0c9a8f54c6047ba1bb697", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "pedersen_builtin": 15, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 12, "transaction_hash": "0x817027a1a1d85e6dffde72e7114deef81a09c86846ed92057eb986518c9864", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 13, "transaction_hash": "0x5d858a06bb8b7a899cda2bd7962c4009c6c40dbf3e747dc786d13de7d8c8031", "l2_to_l1_messages": [], "events": [{"from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "keys": ["0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d"], "data": ["0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x0", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x0", "0x0"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1b9398bb1754", "0x0"]}], "execution_resources": {"n_steps": 5570, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 23, "range_check_builtin": 123}, "n_memory_holes": 0}, "actual_fee": "0x1b9398bb1754"}, {"execution_status": "SUCCEEDED", "transaction_index": 14, "transaction_hash": "0x778b9b6dfbad28d3627e33d1017d0ee1332b0a83e5a9676969940ef1f9e47fe", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0xfbd2ce047c5", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"ecdsa_builtin": 1, "pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0xfbd2ce047c5"}, {"execution_status": "SUCCEEDED", "transaction_index": 15, "transaction_hash": "0x2bbb0dca331b5e5b9109a4ccac405894095952fb8f0747e022311114edde6be", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"range_check_builtin": 63, "ecdsa_builtin": 1, "pedersen_builtin": 15}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}, {"execution_status": "SUCCEEDED", "transaction_index": 16, "transaction_hash": "0x763d3144ac9f23421a87be901a0fb80402b296960c6abd323002fcf21d1cd8a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x17842d3e924d", "0x0"]}], "execution_resources": {"n_steps": 2857, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x17842d3e924d"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/8_with_starknet_version.txt b/starknet-core/test-data/raw_gateway_responses/get_block/8_with_starknet_version.txt index a564327e..c431fa03 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/8_with_starknet_version.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/8_with_starknet_version.txt @@ -1 +1 @@ -{"block_hash": "0x19b67b0aa0d29ed45352f113df69d4ed41ecf29d04368bd2a25e9ddb356669e", "parent_block_hash": "0x6cbc5f75688917d1a150eb913edf313d5a520856eb9bba23fd328c39cfe0509", "block_number": 200000, "state_root": "0x212073e6eab4a5cc4269e2638eefd9ce153a9ae100f17337005280beda5a2bf", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x59682f07", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x31430dd19eff308adca90182f1bfa0209185d0664c13b465dc4c2c8e1ea41eb", "version": "0x0", "max_fee": "0x2386f26fc10000", "signature": ["0x56ed338ad5ec0849ad9635ca68a9b2b2b62552d3f4f69648655a27c1707e29", "0x5904be5d6ed06cf902ac6451cfe7f8c1c3dee2e6f6c20174a0461bae4af778e"], "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "calldata": ["0x1", "0x223951c7eb0638baf432631f05a2fe72ae96c25be1a1b9c7f81b6e3adaa19f", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x0", "0x1", "0x1", "0x60b1cec296e0cddad1e976bdef7a0ec495ee1c1c", "0x1b3"], "contract_address": "0x2e2ed6c28ff10eef7391edd6f3151ebc3528ccb55dd78f9babfc89a40ac6148", "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x5a69b18074cdf81c0802e125f45fcba712dc00d418752387cf24597f5251be", "version": "0x0", "max_fee": "0x2386f26fc10000", "signature": ["0x2aab5123fe61803c6ad5a463f39b9ba62d802860d08ff6554aca32eb2bb068e", "0x57ba06c79c306bcdfb9c66c4cee1de0fe8eff9f83f204609bb56422afc1d5cc"], "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "calldata": ["0x1", "0x219d65d795fb8f32d6c9f604f049c2e256d322334802e0311f26b896e093a60", "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", "0x0", "0x2", "0x2", "0x676340aaad0380a56111f48160587d8f09cbccb6ec82553cbcb4720dacdde1a", "0x0", "0x18f"], "contract_address": "0x396fd5a266e97adeb75c2fde397b746a64eece8476966da8b96b58dd37016bc", "type": "INVOKE_FUNCTION"}], "timestamp": 1658297240, "sequencer_address": "0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x31430dd19eff308adca90182f1bfa0209185d0664c13b465dc4c2c8e1ea41eb", "l2_to_l1_messages": [{"from_address": "0x223951c7eb0638baf432631f05a2fe72ae96c25be1a1b9c7f81b6e3adaa19f", "to_address": "0x60B1CEC296E0Cddad1e976Bdef7A0Ec495Ee1c1c", "payload": ["0xc", "0x22"]}], "events": [], "execution_resources": {"n_steps": 264, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 1}, "n_memory_holes": 4}, "actual_fee": "0x2ba354ac07a5"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x5a69b18074cdf81c0802e125f45fcba712dc00d418752387cf24597f5251be", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 471, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 1}, "n_memory_holes": 5}, "actual_fee": "0xc1114a0d4db"}], "starknet_version": "0.9.1"} \ No newline at end of file +{"block_hash": "0x1b2aa5b3d3549f4d20e5da0c4e883569062bba77b83deaf05023ff25ed263ab", "parent_block_hash": "0x327e636238a2f721b6ec76d8e9ac80409ec7d97a1abb8e8e8984a2498dcd64b", "block_number": 100, "state_root": "0x51098918fd96edda4e251f695181c063e21fb0666352e3469db507c7fd62b89", "transaction_commitment": "0x576db32d35cf011694a73c6ce400d5d77f768cbd77ee7cf87d12902e0f9b4ec", "event_commitment": "0x1c972780140fd16dde94639226ca25818e4f24ecd5b5c3065cc1f5f5fc410f9", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x41a6eb9e", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x3e11636b9c79ead698fcbd706f22ab0e9d16526d9f8f46837a5b5ca35e80619", "0x41d6b131ad80ad0f8a4d3cd769b47343b498f69d051fb892f1d7a6679fee7a0"], "nonce": "0xf7", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", "0x0", "0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1eafc2526500296b7208c5fe476e4a8cedb57382df56be48d9d7fafc8065450", "0x2", "0x4", "0x6", "0x55fd2c884e34463a9417db82657224ff", "0xc4adb99a3ff4b2e42860f07759eb9bed", "0xf3dab5f4e79bcdc0beb8e40326b0d8d6", "0xdc94a5b96f0033caedd78bad9580de64", "0x291d4450b96580ccf5ca4df3e2bd1ec7", "0x16bf6384530c7aeff7a24b77973ba9fb"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x6bcd46d8c5fad65dbb645de3b70f3eec69f8c9db0deb0d073d694e5b8948dd5", "0x578f2cd665ba4c17fa62f48afe6e76082022476464b488edf96b0b0357d987c"], "nonce": "0xf8", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x0", "0x9", "0x9", "0x6", "0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923", "0x1", "0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x40d444a5ef3d561b84bdf890427cb7705f0de017a12ab218455ede5f88bc646", "0x6343e1b64b19426bab64569f4c8ca7bdafd415530bb12d7cfb9bb4328a22db8"], "nonce": "0xf9", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1146dc478b3f7aefc53dbbbb6d068505c5a99f8e3438fdd2d38b91044a79300", "0x0", "0x4", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x4", "0x2", "0x6", "0xfb3b60118ad52416e9543a7d8c0ce3ca", "0xc0a6096ef173003a7ac1a9b33d5514ec", "0xf7c5dc678b3e71efd3b96d4eeb62a8c4", "0xbcb38cae02ce6921074be5ea8e220fc4", "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"], "type": "INVOKE_FUNCTION"}, {"transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x22f2c75fa521003217e4e2b3dc1dd3928ec8f12cb333d126457df61e387efbf", "0x735340fc08822817104f69b2616b1fd4bde88dfbc3d8d8796f19147b7ee40c5"], "nonce": "0xfa", "sender_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x0", "0x4", "0x4", "0x42e1618965efe6306c0f13c8daefbf6d7f9b5a8f1023e809e2b48ccefd8a0b1", "0x2", "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8", "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"], "type": "INVOKE_FUNCTION"}], "timestamp": 1701111712, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x28efb4aa64c", "0x0"]}], "execution_resources": {"n_steps": 10552, "builtin_instance_counter": {"range_check_builtin": 463, "ecdsa_builtin": 1, "pedersen_builtin": 16}, "n_memory_holes": 0}, "actual_fee": "0x28efb4aa64c"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52", "l2_to_l1_messages": [], "events": [{"from_address": "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "keys": ["0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923"], "data": ["0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"]}, {"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27f982b6d44", "0x0"]}], "execution_resources": {"n_steps": 4503, "builtin_instance_counter": {"pedersen_builtin": 16, "range_check_builtin": 105, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "actual_fee": "0x27f982b6d44"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x4f7c06e29a2", "0x0"]}], "execution_resources": {"n_steps": 6243, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 172, "pedersen_builtin": 16}, "n_memory_holes": 0}, "actual_fee": "0x4f7c06e29a2"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35", "l2_to_l1_messages": [], "events": [{"from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x62e0f63d26e", "0x0"]}], "execution_resources": {"n_steps": 4808, "builtin_instance_counter": {"pedersen_builtin": 18, "ecdsa_builtin": 1, "range_check_builtin": 110}, "n_memory_holes": 0}, "actual_fee": "0x62e0f63d26e"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block/9_with_messages_without_nonce.txt b/starknet-core/test-data/raw_gateway_responses/get_block/9_with_messages_without_nonce.txt index 707da6e9..e3fc3e48 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block/9_with_messages_without_nonce.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block/9_with_messages_without_nonce.txt @@ -1 +1 @@ -{"block_hash": "0x34e815552e42c5eb5233b99de2d3d7fd396e575df2719bf98e7ed2794494f86", "parent_block_hash": "0x3ae41b0f023e53151b0c8ab8b9caafb7005d5f41c9ab260276d5bdc49726279", "block_number": 1, "state_root": "0x74abfb3f55d3f9c3967014e1a5ec7205949130ff8912dba0565daf70299144c", "status": "ACCEPTED_ON_L1", "eth_l1_gas_price": "0x0", "strk_l1_gas_price": "0x0", "transactions": [{"transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "version": "0x0", "contract_address": "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5", "contract_address_salt": "0x6030390b01fe79d844330de00821c68206959c389ef744b2d315e27078f0ad", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x782142c3526899d48e6f1ce725f56b11cb462586c9f1340e4cfbcbebdd174f2", "0x7dee1fa95f31fd5ffb0ad1c3313aa51d82d66adfbb65efb982eae696c4309b7"], "type": "DEPLOY"}, {"transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "version": "0x0", "contract_address": "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b", "contract_address_salt": "0x13b7e67ff6b2e1a5aac25134cc2765ea2a1bf36a7b94c92aa3fc4690978d1c5", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x26a1e7e74188cbc724a793c972ad09d5aba110c4c06dfae51ae078b321e957", "0x461226574f9663500fc330295cea93b295389618c9eab30c3362fa14975d54c"], "type": "DEPLOY"}, {"transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "version": "0x0", "contract_address": "0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352", "contract_address_salt": "0x25c239a162c5a7ace888ca39f295aad52b75174952f4ea8f3afed13cde4490a", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x1a315d6be5adafdd493b45672137525190b23b7f3a0ec91feafaa6ab48b0828", "0x24740a6b71ae76d658a1ec1efb6f201ba9794ebeed49ca59c0efe63f4a3cca2"], "type": "DEPLOY"}, {"transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", "calldata": ["0x64ed79a8ebe97485d3357bbfdf5f6bea0d9db3b5f1feb6e80d564a179122dc6", "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32"], "contract_address": "0x7b196a359045d4d0c10f73bdf244a9e1205a615dbb754b8df40173364288534", "type": "INVOKE_FUNCTION"}], "timestamp": 1638978017, "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x782806917e338d148960fe9d801cabdf41c197d144db73cde4a16499321e2a", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 1, "transaction_hash": "0x7e845e48e9e9350f4f638ab145ab58346e767396aa84a5f9b695a27332f301b", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 2, "transaction_hash": "0x5b99cc55d38c5dd909eeda916a2564364577a8d348b05c00de1419e1ff318e2", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 29, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}, {"execution_status": "SUCCEEDED", "transaction_index": 3, "transaction_hash": "0x53028e485df33f22d4a6cd3a539759bce78e940314906c3057d206b57d4ce3f", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 178, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "actual_fee": "0x0"}]} \ No newline at end of file +{"block_hash": "0x78b67b11f8c23850041e11fb0f3b39db0bcb2c99d756d5a81321d1b483d79f6", "parent_block_hash": "0x5c627d4aeb51280058bed93c7889bce78114d63baad1be0f0aeb32496d5f19c", "block_number": 1, "state_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "transaction_commitment": "0x301a3e7f3ae29c3463a5f753da62e63dc0b6738c36cb17e3d1696926457a40c", "event_commitment": "0x0", "status": "ACCEPTED_ON_L1", "l1_da_mode": "CALLDATA", "l1_gas_price": {"price_in_wei": "0x3b9ada0f", "price_in_fri": "0x0"}, "l1_data_gas_price": {"price_in_wei": "0x1", "price_in_fri": "0x1"}, "transactions": [{"transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "version": "0x0", "max_fee": "0x0", "signature": [], "nonce": "0x0", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "sender_address": "0x1", "type": "DECLARE"}], "timestamp": 1700474724, "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "transaction_receipts": [{"execution_status": "SUCCEEDED", "transaction_index": 0, "transaction_hash": "0x30a541df2547ed9f94602c35daf61ce3a8e179ec75d26cbe34e0ec61f823695", "l2_to_l1_messages": [], "events": [], "execution_resources": {"n_steps": 2711, "builtin_instance_counter": {"pedersen_builtin": 15, "range_check_builtin": 63}, "n_memory_holes": 0}, "actual_fee": "0x0"}], "starknet_version": "0.12.3"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_block_traces/1_success.txt b/starknet-core/test-data/raw_gateway_responses/get_block_traces/1_success.txt index 92ad5e8a..25c169e1 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_block_traces/1_success.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_block_traces/1_success.txt @@ -1 +1 @@ -{"traces": [{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x36678cb4c42bcc85e763ae06f6d60568ca3e67376e4ff5cb83582deb37cb3e", "calldata": ["0x1", "0xa03e91d28a8a4ad0c4291b6dbd7bbd24b8149112f0e46485e2db0aa01556c4", "0x679c22735055a10db4f275395763a3752a1e3a3043c192299ab6b574fba8d6", "0x0", "0x0", "0x0"], "call_type": "CALL", "class_hash": "0x6f500f527355dfdb8093c7fe46e6f73c96a867392b49fa4157a757538928539", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"range_check_builtin": 2, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x36678cb4c42bcc85e763ae06f6d60568ca3e67376e4ff5cb83582deb37cb3e", "calldata": ["0x1", "0xa03e91d28a8a4ad0c4291b6dbd7bbd24b8149112f0e46485e2db0aa01556c4", "0x679c22735055a10db4f275395763a3752a1e3a3043c192299ab6b574fba8d6", "0x0", "0x0", "0x0"], "call_type": "CALL", "class_hash": "0x6f500f527355dfdb8093c7fe46e6f73c96a867392b49fa4157a757538928539", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 251, "builtin_instance_counter": {"range_check_builtin": 2, "ec_op_builtin": 1}, "n_memory_holes": 3}, "internal_calls": [{"caller_address": "0x36678cb4c42bcc85e763ae06f6d60568ca3e67376e4ff5cb83582deb37cb3e", "contract_address": "0xa03e91d28a8a4ad0c4291b6dbd7bbd24b8149112f0e46485e2db0aa01556c4", "calldata": [], "call_type": "CALL", "class_hash": "0x520055df3b08c3e304b88580bd0603cd35fc5def5eed68828ef012b01504baf", "selector": "0x679c22735055a10db4f275395763a3752a1e3a3043c192299ab6b574fba8d6", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 110, "builtin_instance_counter": {"ec_op_builtin": 1}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x36678cb4c42bcc85e763ae06f6d60568ca3e67376e4ff5cb83582deb37cb3e", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "0x5bdff4", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 548, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 40}, "internal_calls": [{"caller_address": "0x36678cb4c42bcc85e763ae06f6d60568ca3e67376e4ff5cb83582deb37cb3e", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x46a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b", "0x5bdff4", "0x0"], "call_type": "DELEGATE", "class_hash": "0x28d7d394810ad8c52741ad8f7564717fd02c10ced68657a81d0b6710ce22079", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 488, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 40}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, "signature": ["0xa3817da85a5586fc36a3531d307007b4120b4621202155ddc656b61b9ae2a8", "0x162cd1712e5dcf275af2aaed19b0f885e5cc3a1a5a59ebe8d7cc2efa65175a2"], "transaction_hash": "0x7b3825a59bd8ee5ac0ea9b7c3b3226e4a360260ba4a1eb68ae0b2825abea6ab"}]} \ No newline at end of file +{"traces": [{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", "0x0", "0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1eafc2526500296b7208c5fe476e4a8cedb57382df56be48d9d7fafc8065450", "0x2", "0x4", "0x6", "0x55fd2c884e34463a9417db82657224ff", "0xc4adb99a3ff4b2e42860f07759eb9bed", "0xf3dab5f4e79bcdc0beb8e40326b0d8d6", "0xdc94a5b96f0033caedd78bad9580de64", "0x291d4450b96580ccf5ca4df3e2bd1ec7", "0x16bf6384530c7aeff7a24b77973ba9fb"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 2}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", "0x0", "0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1eafc2526500296b7208c5fe476e4a8cedb57382df56be48d9d7fafc8065450", "0x2", "0x4", "0x6", "0x55fd2c884e34463a9417db82657224ff", "0xc4adb99a3ff4b2e42860f07759eb9bed", "0xf3dab5f4e79bcdc0beb8e40326b0d8d6", "0xdc94a5b96f0033caedd78bad9580de64", "0x291d4450b96580ccf5ca4df3e2bd1ec7", "0x16bf6384530c7aeff7a24b77973ba9fb"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 797, "builtin_instance_counter": {"range_check_builtin": 14}, "n_memory_holes": 39}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "calldata": ["0x55fd2c884e34463a9417db82657224ff", "0xc4adb99a3ff4b2e42860f07759eb9bed"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 330, "builtin_instance_counter": {"range_check_builtin": 6}, "n_memory_holes": 14}, "internal_calls": [], "events": [], "messages": []}, {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "calldata": ["0xf3dab5f4e79bcdc0beb8e40326b0d8d6", "0xdc94a5b96f0033caedd78bad9580de64", "0x291d4450b96580ccf5ca4df3e2bd1ec7", "0x16bf6384530c7aeff7a24b77973ba9fb"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x1eafc2526500296b7208c5fe476e4a8cedb57382df56be48d9d7fafc8065450", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 274, "builtin_instance_counter": {"range_check_builtin": 6}, "n_memory_holes": 22}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x28efb4aa64c", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x28efb4aa64c", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x28efb4aa64c", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x3e11636b9c79ead698fcbd706f22ab0e9d16526d9f8f46837a5b5ca35e80619", "0x41d6b131ad80ad0f8a4d3cd769b47343b498f69d051fb892f1d7a6679fee7a0"], "transaction_hash": "0x730fcdb40914e2b8e1cc5394e6e4ddea794593cc717f066e5299ab510db9f3a"}, {"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x0", "0x9", "0x9", "0x6", "0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923", "0x1", "0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"range_check_builtin": 2, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "0x0", "0x9", "0x9", "0x6", "0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923", "0x1", "0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 185, "builtin_instance_counter": {"range_check_builtin": 4}, "n_memory_holes": 3}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "calldata": ["0x6", "0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923", "0x1", "0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"], "call_type": "CALL", "class_hash": "0x78401746828463e2c3f92ebb261fc82f7d4d4c8d9a80a356c44580dab124cb0", "selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 44, "builtin_instance_counter": {"range_check_builtin": 2}, "n_memory_holes": 0}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x64109c12735b26210d4b2f3ea97bae2dd03ab5fc713e14339a115251cc47d9c", "0x2a12a53c85e1629f6f96c9072d9b58174edbfc338fd3d2e1e34893046e1eb5e", "0x5bc18bd740c3d45ade8840ba630fe96b7476ace722b9edab48ab6b2dcd5f98e", "0x46fd3c29e95b3ec642c1e4356f0aac898c9175a7d448b7a93537c04f156f967", "0x6848042537aa8c8e1e8f3c1a9e4b11f4c188e122d959660f29ba46cab411abc", "0x410f5f45a1a0689ec29b3689048c8ebc82cf34845704dc7f8b5595da377d923"], "data": ["0x6a7fed6df6c34b0a90a5e4d38232cbbcecc4e80c8c37845493979470f7a41c4"]}], "messages": []}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27f982b6d44", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"range_check_builtin": 21, "pedersen_builtin": 4}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27f982b6d44", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x27f982b6d44", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x6bcd46d8c5fad65dbb645de3b70f3eec69f8c9db0deb0d073d694e5b8948dd5", "0x578f2cd665ba4c17fa62f48afe6e76082022476464b488edf96b0b0357d987c"], "transaction_hash": "0x7aa8dd2ca4a6c1c20d1502c637eb2b47df92084475646b042096d9581e2af52"}, {"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1146dc478b3f7aefc53dbbbb6d068505c5a99f8e3438fdd2d38b91044a79300", "0x0", "0x4", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x4", "0x2", "0x6", "0xfb3b60118ad52416e9543a7d8c0ce3ca", "0xc0a6096ef173003a7ac1a9b33d5514ec", "0xf7c5dc678b3e71efd3b96d4eeb62a8c4", "0xbcb38cae02ce6921074be5ea8e220fc4", "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"range_check_builtin": 2, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x2", "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "0x1146dc478b3f7aefc53dbbbb6d068505c5a99f8e3438fdd2d38b91044a79300", "0x0", "0x4", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "0x4", "0x2", "0x6", "0xfb3b60118ad52416e9543a7d8c0ce3ca", "0xc0a6096ef173003a7ac1a9b33d5514ec", "0xf7c5dc678b3e71efd3b96d4eeb62a8c4", "0xbcb38cae02ce6921074be5ea8e220fc4", "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 495, "builtin_instance_counter": {"range_check_builtin": 8}, "n_memory_holes": 25}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x61c2931e7212bcc3b2e6c16805f15ceecebaad19fb3521c6b0761d063e6a1cd", "calldata": ["0xfb3b60118ad52416e9543a7d8c0ce3ca", "0xc0a6096ef173003a7ac1a9b33d5514ec", "0xf7c5dc678b3e71efd3b96d4eeb62a8c4", "0xbcb38cae02ce6921074be5ea8e220fc4"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x1146dc478b3f7aefc53dbbbb6d068505c5a99f8e3438fdd2d38b91044a79300", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 276, "builtin_instance_counter": {"range_check_builtin": 6}, "n_memory_holes": 22}, "internal_calls": [], "events": [], "messages": []}, {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "calldata": ["0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"], "call_type": "CALL", "class_hash": "0x78401746828463e2c3f92ebb261fc82f7d4d4c8d9a80a356c44580dab124cb0", "selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 26, "builtin_instance_counter": {}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x4f7c06e29a2", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"range_check_builtin": 21, "pedersen_builtin": 4}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x4f7c06e29a2", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x4f7c06e29a2", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x40d444a5ef3d561b84bdf890427cb7705f0de017a12ab218455ede5f88bc646", "0x6343e1b64b19426bab64569f4c8ca7bdafd415530bb12d7cfb9bb4328a22db8"], "transaction_hash": "0x3bf44697a6cca5f814e3c96a490795d3ef6fb0735591924c4d0897c0f826906"}, {"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x0", "0x4", "0x4", "0x42e1618965efe6306c0f13c8daefbf6d7f9b5a8f1023e809e2b48ccefd8a0b1", "0x2", "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8", "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"range_check_builtin": 2, "ecdsa_builtin": 1}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "0x0", "0x4", "0x4", "0x42e1618965efe6306c0f13c8daefbf6d7f9b5a8f1023e809e2b48ccefd8a0b1", "0x2", "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8", "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 307, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 9}, "n_memory_holes": 25}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", "calldata": ["0x42e1618965efe6306c0f13c8daefbf6d7f9b5a8f1023e809e2b48ccefd8a0b1", "0x2", "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8", "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"], "call_type": "CALL", "class_hash": "0x78401746828463e2c3f92ebb261fc82f7d4d4c8d9a80a356c44580dab124cb0", "selector": "0x317eb442b72a9fae758d4fb26830ed0d9f31c8e7da4dbff4e8c59ea6a158e7f", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 166, "builtin_instance_counter": {"pedersen_builtin": 2, "range_check_builtin": 7}, "n_memory_holes": 22}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x62e0f63d26e", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"range_check_builtin": 21, "pedersen_builtin": 4}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x62e0f63d26e", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"range_check_builtin": 21, "pedersen_builtin": 4}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x62e0f63d26e", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x22f2c75fa521003217e4e2b3dc1dd3928ec8f12cb333d126457df61e387efbf", "0x735340fc08822817104f69b2616b1fd4bde88dfbc3d8d8796f19147b7ee40c5"], "transaction_hash": "0x31be9c75b7d7ab01af6b4dbfd132b9df5cb69f16eb6da3fba0ffd9a84819f35"}]} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/1_cairo_0.txt b/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/1_cairo_0.txt index 05ee66f7..ad62157e 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/1_cairo_0.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/1_cairo_0.txt @@ -1 +1 @@ -{"abi": [{"inputs": [{"name": "implementation", "type": "felt"}, {"name": "selector", "type": "felt"}, {"name": "calldata_len", "type": "felt"}, {"name": "calldata", "type": "felt*"}], "name": "constructor", "outputs": [], "type": "constructor"}, {"inputs": [{"name": "selector", "type": "felt"}, {"name": "calldata_size", "type": "felt"}, {"name": "calldata", "type": "felt*"}], "name": "__default__", "outputs": [{"name": "retdata_size", "type": "felt"}, {"name": "retdata", "type": "felt*"}], "type": "function"}, {"inputs": [{"name": "selector", "type": "felt"}, {"name": "calldata_size", "type": "felt"}, {"name": "calldata", "type": "felt*"}], "name": "__l1_default__", "outputs": [], "type": "l1_handler"}, {"inputs": [], "name": "get_implementation", "outputs": [{"name": "implementation", "type": "felt"}], "stateMutability": "view", "type": "function"}], "program": {"debug_info": null, "builtins": ["pedersen", "range_check"], "hints": {"0": [{"code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", "flow_tracking_data": {"reference_ids": {"starkware.cairo.common.math.assert_not_zero.value": 0}, "ap_tracking": {"offset": 0, "group": 0}}, "accessible_scopes": ["starkware.cairo.common.math", "starkware.cairo.common.math.assert_not_zero"]}], "12": [{"code": "syscall_handler.library_call(segments=segments, syscall_ptr=ids.syscall_ptr)", "flow_tracking_data": {"reference_ids": {"starkware.starknet.common.syscalls.library_call.syscall_ptr": 1}, "ap_tracking": {"offset": 1, "group": 1}}, "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.library_call"]}], "24": [{"code": "syscall_handler.library_call_l1_handler(segments=segments, syscall_ptr=ids.syscall_ptr)", "flow_tracking_data": {"reference_ids": {"starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": 2}, "ap_tracking": {"offset": 1, "group": 2}}, "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.library_call_l1_handler"]}], "33": [{"code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", "flow_tracking_data": {"reference_ids": {"starkware.starknet.common.syscalls.storage_read.syscall_ptr": 3}, "ap_tracking": {"offset": 1, "group": 3}}, "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.storage_read"]}], "42": [{"code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", "flow_tracking_data": {"reference_ids": {"starkware.starknet.common.syscalls.storage_write.syscall_ptr": 4}, "ap_tracking": {"offset": 1, "group": 4}}, "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.storage_write"]}], "128": [{"code": "memory[ap] = segments.add()", "flow_tracking_data": {"reference_ids": {}, "ap_tracking": {"offset": 60, "group": 11}}, "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"]}], "188": [{"code": "memory[ap] = segments.add()", "flow_tracking_data": {"reference_ids": {}, "ap_tracking": {"offset": 50, "group": 15}}, "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__l1_default__"]}], "203": [{"code": "memory[ap] = segments.add()", "flow_tracking_data": {"reference_ids": {}, "ap_tracking": {"offset": 0, "group": 17}}, "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_implementation_encode_return"]}]}, "identifiers": {"__main__.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "__main__.__default__": {"pc": 137, "decorators": ["external", "raw_input", "raw_output"], "type": "function"}, "__main__.__default__.Args": {"full_name": "__main__.__default__.Args", "size": 3, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "calldata_size": {"offset": 1, "cairo_type": "felt"}, "calldata": {"offset": 2, "cairo_type": "felt*"}}, "type": "struct"}, "__main__.__default__.ImplicitArgs": {"full_name": "__main__.__default__.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "__main__.__default__.Return": {"cairo_type": "(retdata_size: felt, retdata: felt*)", "type": "type_definition"}, "__main__.__default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__.__l1_default__": {"pc": 164, "decorators": ["l1_handler", "raw_input"], "type": "function"}, "__main__.__l1_default__.Args": {"full_name": "__main__.__l1_default__.Args", "size": 3, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "calldata_size": {"offset": 1, "cairo_type": "felt"}, "calldata": {"offset": 2, "cairo_type": "felt*"}}, "type": "struct"}, "__main__.__l1_default__.ImplicitArgs": {"full_name": "__main__.__l1_default__.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "__main__.__l1_default__.Return": {"cairo_type": "()", "type": "type_definition"}, "__main__.__l1_default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__._get_implementation": {"destination": "contracts.Upgradable._get_implementation", "type": "alias"}, "__main__._set_implementation": {"destination": "contracts.Upgradable._set_implementation", "type": "alias"}, "__main__.constructor": {"pc": 91, "decorators": ["constructor"], "type": "function"}, "__main__.constructor.Args": {"full_name": "__main__.constructor.Args", "size": 4, "members": {"implementation": {"offset": 0, "cairo_type": "felt"}, "selector": {"offset": 1, "cairo_type": "felt"}, "calldata_len": {"offset": 2, "cairo_type": "felt"}, "calldata": {"offset": 3, "cairo_type": "felt*"}}, "type": "struct"}, "__main__.constructor.ImplicitArgs": {"full_name": "__main__.constructor.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "__main__.constructor.Return": {"cairo_type": "()", "type": "type_definition"}, "__main__.constructor.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__.get_implementation": {"pc": 197, "decorators": ["view"], "type": "function"}, "__main__.get_implementation.Args": {"full_name": "__main__.get_implementation.Args", "size": 0, "members": {}, "type": "struct"}, "__main__.get_implementation.ImplicitArgs": {"full_name": "__main__.get_implementation.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "__main__.get_implementation.Return": {"cairo_type": "(implementation: felt)", "type": "type_definition"}, "__main__.get_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__.library_call": {"destination": "starkware.starknet.common.syscalls.library_call", "type": "alias"}, "__main__.library_call_l1_handler": {"destination": "starkware.starknet.common.syscalls.library_call_l1_handler", "type": "alias"}, "__wrappers__.__default__": {"pc": 155, "decorators": ["external", "raw_input", "raw_output"], "type": "function"}, "__wrappers__.__default__.Args": {"full_name": "__wrappers__.__default__.Args", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.__default__.ImplicitArgs": {"full_name": "__wrappers__.__default__.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.__default__.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.__default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.__default__.__wrapped_func": {"destination": "__main__.__default__", "type": "alias"}, "__wrappers__.__default___encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "__wrappers__.__l1_default__": {"pc": 180, "decorators": ["l1_handler", "raw_input"], "type": "function"}, "__wrappers__.__l1_default__.Args": {"full_name": "__wrappers__.__l1_default__.Args", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.__l1_default__.ImplicitArgs": {"full_name": "__wrappers__.__l1_default__.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.__l1_default__.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.__l1_default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.__l1_default__.__wrapped_func": {"destination": "__main__.__l1_default__", "type": "alias"}, "__wrappers__.__l1_default___encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "__wrappers__.constructor": {"pc": 108, "decorators": ["constructor"], "type": "function"}, "__wrappers__.constructor.Args": {"full_name": "__wrappers__.constructor.Args", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.constructor.ImplicitArgs": {"full_name": "__wrappers__.constructor.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.constructor.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.constructor.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.constructor.__wrapped_func": {"destination": "__main__.constructor", "type": "alias"}, "__wrappers__.constructor_encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "__wrappers__.get_implementation": {"pc": 212, "decorators": ["view"], "type": "function"}, "__wrappers__.get_implementation.Args": {"full_name": "__wrappers__.get_implementation.Args", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.get_implementation.ImplicitArgs": {"full_name": "__wrappers__.get_implementation.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.get_implementation.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.get_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.get_implementation.__wrapped_func": {"destination": "__main__.get_implementation", "type": "alias"}, "__wrappers__.get_implementation_encode_return": {"pc": 203, "decorators": [], "type": "function"}, "__wrappers__.get_implementation_encode_return.Args": {"full_name": "__wrappers__.get_implementation_encode_return.Args", "size": 2, "members": {"ret_value": {"offset": 0, "cairo_type": "(implementation: felt)"}, "range_check_ptr": {"offset": 1, "cairo_type": "felt"}}, "type": "struct"}, "__wrappers__.get_implementation_encode_return.ImplicitArgs": {"full_name": "__wrappers__.get_implementation_encode_return.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "__wrappers__.get_implementation_encode_return.Return": {"cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", "type": "type_definition"}, "__wrappers__.get_implementation_encode_return.SIZEOF_LOCALS": {"value": 1, "type": "const"}, "__wrappers__.get_implementation_encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "contracts.Upgradable.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "contracts.Upgradable._get_implementation": {"pc": 75, "decorators": [], "type": "function"}, "contracts.Upgradable._get_implementation.Args": {"full_name": "contracts.Upgradable._get_implementation.Args", "size": 0, "members": {}, "type": "struct"}, "contracts.Upgradable._get_implementation.ImplicitArgs": {"full_name": "contracts.Upgradable._get_implementation.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._get_implementation.Return": {"cairo_type": "(implementation: felt)", "type": "type_definition"}, "contracts.Upgradable._get_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation": {"type": "namespace"}, "contracts.Upgradable._implementation.Args": {"full_name": "contracts.Upgradable._implementation.Args", "size": 0, "members": {}, "type": "struct"}, "contracts.Upgradable._implementation.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "contracts.Upgradable._implementation.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "contracts.Upgradable._implementation.Return": {"cairo_type": "()", "type": "type_definition"}, "contracts.Upgradable._implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation.addr": {"pc": 45, "decorators": [], "type": "function"}, "contracts.Upgradable._implementation.addr.Args": {"full_name": "contracts.Upgradable._implementation.addr.Args", "size": 0, "members": {}, "type": "struct"}, "contracts.Upgradable._implementation.addr.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.addr.ImplicitArgs", "size": 2, "members": {"pedersen_ptr": {"offset": 0, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 1, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._implementation.addr.Return": {"cairo_type": "(res: felt)", "type": "type_definition"}, "contracts.Upgradable._implementation.addr.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation.hash2": {"destination": "starkware.cairo.common.hash.hash2", "type": "alias"}, "contracts.Upgradable._implementation.normalize_address": {"destination": "starkware.starknet.common.storage.normalize_address", "type": "alias"}, "contracts.Upgradable._implementation.read": {"pc": 50, "decorators": [], "type": "function"}, "contracts.Upgradable._implementation.read.Args": {"full_name": "contracts.Upgradable._implementation.read.Args", "size": 0, "members": {}, "type": "struct"}, "contracts.Upgradable._implementation.read.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.read.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._implementation.read.Return": {"cairo_type": "(address: felt)", "type": "type_definition"}, "contracts.Upgradable._implementation.read.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation.storage_read": {"destination": "starkware.starknet.common.syscalls.storage_read", "type": "alias"}, "contracts.Upgradable._implementation.storage_write": {"destination": "starkware.starknet.common.syscalls.storage_write", "type": "alias"}, "contracts.Upgradable._implementation.write": {"pc": 63, "decorators": [], "type": "function"}, "contracts.Upgradable._implementation.write.Args": {"full_name": "contracts.Upgradable._implementation.write.Args", "size": 1, "members": {"value": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._implementation.write.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.write.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._implementation.write.Return": {"cairo_type": "()", "type": "type_definition"}, "contracts.Upgradable._implementation.write.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._set_implementation": {"pc": 81, "decorators": [], "type": "function"}, "contracts.Upgradable._set_implementation.Args": {"full_name": "contracts.Upgradable._set_implementation.Args", "size": 1, "members": {"implementation": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._set_implementation.ImplicitArgs": {"full_name": "contracts.Upgradable._set_implementation.ImplicitArgs", "size": 3, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "contracts.Upgradable._set_implementation.Return": {"cairo_type": "()", "type": "type_definition"}, "contracts.Upgradable._set_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable.assert_not_zero": {"destination": "starkware.cairo.common.math.assert_not_zero", "type": "alias"}, "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", "size": 5, "members": {"x": {"offset": 0, "cairo_type": "felt"}, "y": {"offset": 1, "cairo_type": "felt"}, "x_and_y": {"offset": 2, "cairo_type": "felt"}, "x_xor_y": {"offset": 3, "cairo_type": "felt"}, "x_or_y": {"offset": 4, "cairo_type": "felt"}}, "type": "struct"}, "starkware.cairo.common.cairo_builtins.EcOpBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", "size": 7, "members": {"p": {"offset": 0, "cairo_type": "starkware.cairo.common.ec_point.EcPoint"}, "q": {"offset": 2, "cairo_type": "starkware.cairo.common.ec_point.EcPoint"}, "m": {"offset": 4, "cairo_type": "felt"}, "r": {"offset": 5, "cairo_type": "starkware.cairo.common.ec_point.EcPoint"}}, "type": "struct"}, "starkware.cairo.common.cairo_builtins.EcPoint": {"destination": "starkware.cairo.common.ec_point.EcPoint", "type": "alias"}, "starkware.cairo.common.cairo_builtins.HashBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", "size": 3, "members": {"x": {"offset": 0, "cairo_type": "felt"}, "y": {"offset": 1, "cairo_type": "felt"}, "result": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "starkware.cairo.common.cairo_builtins.SignatureBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", "size": 2, "members": {"pub_key": {"offset": 0, "cairo_type": "felt"}, "message": {"offset": 1, "cairo_type": "felt"}}, "type": "struct"}, "starkware.cairo.common.dict_access.DictAccess": {"full_name": "starkware.cairo.common.dict_access.DictAccess", "size": 3, "members": {"key": {"offset": 0, "cairo_type": "felt"}, "prev_value": {"offset": 1, "cairo_type": "felt"}, "new_value": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "starkware.cairo.common.ec_point.EcPoint": {"full_name": "starkware.cairo.common.ec_point.EcPoint", "size": 2, "members": {"x": {"offset": 0, "cairo_type": "felt"}, "y": {"offset": 1, "cairo_type": "felt"}}, "type": "struct"}, "starkware.cairo.common.hash.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "starkware.cairo.common.math.assert_not_zero": {"pc": 0, "decorators": [], "type": "function"}, "starkware.cairo.common.math.assert_not_zero.Args": {"full_name": "starkware.cairo.common.math.assert_not_zero.Args", "size": 1, "members": {"value": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": {"full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", "size": 0, "members": {}, "type": "struct"}, "starkware.cairo.common.math.assert_not_zero.Return": {"cairo_type": "()", "type": "type_definition"}, "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.cairo.common.math.assert_not_zero.value": {"full_name": "starkware.cairo.common.math.assert_not_zero.value", "cairo_type": "felt", "references": [{"pc": 0, "value": "[cast(fp + (-3), felt*)]", "ap_tracking_data": {"offset": 0, "group": 0}}], "type": "reference"}, "starkware.starknet.common.storage.ADDR_BOUND": {"value": -106710729501573572985208420194530329073740042555888586719489, "type": "const"}, "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": {"value": 256, "type": "const"}, "starkware.starknet.common.storage.assert_250_bit": {"destination": "starkware.cairo.common.math.assert_250_bit", "type": "alias"}, "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": {"value": 20853273475220472486191784820, "type": "const"}, "starkware.starknet.common.syscalls.CallContract": {"full_name": "starkware.starknet.common.syscalls.CallContract", "size": 7, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest"}, "response": {"offset": 5, "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.CallContractRequest": {"full_name": "starkware.starknet.common.syscalls.CallContractRequest", "size": 5, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "contract_address": {"offset": 1, "cairo_type": "felt"}, "function_selector": {"offset": 2, "cairo_type": "felt"}, "calldata_size": {"offset": 3, "cairo_type": "felt"}, "calldata": {"offset": 4, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.CallContractResponse": {"full_name": "starkware.starknet.common.syscalls.CallContractResponse", "size": 2, "members": {"retdata_size": {"offset": 0, "cairo_type": "felt"}, "retdata": {"offset": 1, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": {"value": 21167594061783206823196716140, "type": "const"}, "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": {"value": 23274015802972845247556842986379118667122, "type": "const"}, "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": {"value": 75202468540281, "type": "const"}, "starkware.starknet.common.syscalls.Deploy": {"full_name": "starkware.starknet.common.syscalls.Deploy", "size": 9, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.DeployRequest"}, "response": {"offset": 6, "cairo_type": "starkware.starknet.common.syscalls.DeployResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.DeployRequest": {"full_name": "starkware.starknet.common.syscalls.DeployRequest", "size": 6, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "class_hash": {"offset": 1, "cairo_type": "felt"}, "contract_address_salt": {"offset": 2, "cairo_type": "felt"}, "constructor_calldata_size": {"offset": 3, "cairo_type": "felt"}, "constructor_calldata": {"offset": 4, "cairo_type": "felt*"}, "reserved": {"offset": 5, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.DeployResponse": {"full_name": "starkware.starknet.common.syscalls.DeployResponse", "size": 3, "members": {"contract_address": {"offset": 0, "cairo_type": "felt"}, "constructor_retdata_size": {"offset": 1, "cairo_type": "felt"}, "constructor_retdata": {"offset": 2, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.DictAccess": {"destination": "starkware.cairo.common.dict_access.DictAccess", "type": "alias"}, "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": {"value": 1280709301550335749748, "type": "const"}, "starkware.starknet.common.syscalls.EmitEvent": {"full_name": "starkware.starknet.common.syscalls.EmitEvent", "size": 5, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "keys_len": {"offset": 1, "cairo_type": "felt"}, "keys": {"offset": 2, "cairo_type": "felt*"}, "data_len": {"offset": 3, "cairo_type": "felt"}, "data": {"offset": 4, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": {"value": 1448089106835523001438702345020786, "type": "const"}, "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": {"value": 24294903732626645868215235778792757751152, "type": "const"}, "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": {"value": 94901967781393078444254803017658102643, "type": "const"}, "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": {"value": 6219495360805491471215297013070624192820083, "type": "const"}, "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": {"value": 1592190833581991703053805829594610833820054387, "type": "const"}, "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": {"value": 1317029390204112103023, "type": "const"}, "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": {"value": 1448089128652340074717162277007973, "type": "const"}, "starkware.starknet.common.syscalls.GetBlockNumber": {"full_name": "starkware.starknet.common.syscalls.GetBlockNumber", "size": 2, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockNumberRequest": {"full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockNumberResponse": {"full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", "size": 1, "members": {"block_number": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockTimestamp": {"full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", "size": 2, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockTimestampRequest": {"full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockTimestampResponse": {"full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", "size": 1, "members": {"block_timestamp": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetCallerAddress": {"full_name": "starkware.starknet.common.syscalls.GetCallerAddress", "size": 2, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetCallerAddressRequest": {"full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetCallerAddressResponse": {"full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", "size": 1, "members": {"caller_address": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetContractAddress": {"full_name": "starkware.starknet.common.syscalls.GetContractAddress", "size": 2, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetContractAddressRequest": {"full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetContractAddressResponse": {"full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", "size": 1, "members": {"contract_address": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetSequencerAddress": {"full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", "size": 2, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetSequencerAddressRequest": {"full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetSequencerAddressResponse": {"full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", "size": 1, "members": {"sequencer_address": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxInfo": {"full_name": "starkware.starknet.common.syscalls.GetTxInfo", "size": 2, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxInfoRequest": {"full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxInfoResponse": {"full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", "size": 1, "members": {"tx_info": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.TxInfo*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxSignature": {"full_name": "starkware.starknet.common.syscalls.GetTxSignature", "size": 3, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxSignatureRequest": {"full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", "size": 1, "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxSignatureResponse": {"full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", "size": 2, "members": {"signature_len": {"offset": 0, "cairo_type": "felt"}, "signature": {"offset": 1, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": {"value": 436233452754198157705746250789557519228244616562, "type": "const"}, "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": {"value": 92376026794327011772951660, "type": "const"}, "starkware.starknet.common.syscalls.LibraryCall": {"full_name": "starkware.starknet.common.syscalls.LibraryCall", "size": 7, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest"}, "response": {"offset": 5, "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.LibraryCallRequest": {"full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", "size": 5, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "class_hash": {"offset": 1, "cairo_type": "felt"}, "function_selector": {"offset": 2, "cairo_type": "felt"}, "calldata_size": {"offset": 3, "cairo_type": "felt"}, "calldata": {"offset": 4, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": {"value": 433017908768303439907196859243777073, "type": "const"}, "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": {"value": 100890693370601760042082660, "type": "const"}, "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": {"value": 25828017502874050592466629733, "type": "const"}, "starkware.starknet.common.syscalls.SendMessageToL1SysCall": {"full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", "size": 4, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "to_address": {"offset": 1, "cairo_type": "felt"}, "payload_size": {"offset": 2, "cairo_type": "felt"}, "payload_ptr": {"offset": 3, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.StorageRead": {"full_name": "starkware.starknet.common.syscalls.StorageRead", "size": 3, "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest"}, "response": {"offset": 2, "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse"}}, "type": "struct"}, "starkware.starknet.common.syscalls.StorageReadRequest": {"full_name": "starkware.starknet.common.syscalls.StorageReadRequest", "size": 2, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "address": {"offset": 1, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.StorageReadResponse": {"full_name": "starkware.starknet.common.syscalls.StorageReadResponse", "size": 1, "members": {"value": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.StorageWrite": {"full_name": "starkware.starknet.common.syscalls.StorageWrite", "size": 3, "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "address": {"offset": 1, "cairo_type": "felt"}, "value": {"offset": 2, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.TxInfo": {"full_name": "starkware.starknet.common.syscalls.TxInfo", "size": 7, "members": {"version": {"offset": 0, "cairo_type": "felt"}, "account_contract_address": {"offset": 1, "cairo_type": "felt"}, "max_fee": {"offset": 2, "cairo_type": "felt"}, "signature_len": {"offset": 3, "cairo_type": "felt"}, "signature": {"offset": 4, "cairo_type": "felt*"}, "transaction_hash": {"offset": 5, "cairo_type": "felt"}, "chain_id": {"offset": 6, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.library_call": {"pc": 5, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.library_call.Args": {"full_name": "starkware.starknet.common.syscalls.library_call.Args", "size": 4, "members": {"class_hash": {"offset": 0, "cairo_type": "felt"}, "function_selector": {"offset": 1, "cairo_type": "felt"}, "calldata_size": {"offset": 2, "cairo_type": "felt"}, "calldata": {"offset": 3, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.library_call.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.library_call.ImplicitArgs", "size": 1, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.library_call.Return": {"cairo_type": "(retdata_size: felt, retdata: felt*)", "type": "type_definition"}, "starkware.starknet.common.syscalls.library_call.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.library_call.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.library_call.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 5, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"offset": 0, "group": 1}}, {"pc": 12, "value": "cast([fp + (-7)] + 7, felt*)", "ap_tracking_data": {"offset": 1, "group": 1}}], "type": "reference"}, "starkware.starknet.common.syscalls.library_call_l1_handler": {"pc": 17, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.library_call_l1_handler.Args": {"full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.Args", "size": 4, "members": {"class_hash": {"offset": 0, "cairo_type": "felt"}, "function_selector": {"offset": 1, "cairo_type": "felt"}, "calldata_size": {"offset": 2, "cairo_type": "felt"}, "calldata": {"offset": 3, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs", "size": 1, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.library_call_l1_handler.Return": {"cairo_type": "(retdata_size: felt, retdata: felt*)", "type": "type_definition"}, "starkware.starknet.common.syscalls.library_call_l1_handler.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 17, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"offset": 0, "group": 2}}, {"pc": 24, "value": "cast([fp + (-7)] + 7, felt*)", "ap_tracking_data": {"offset": 1, "group": 2}}], "type": "reference"}, "starkware.starknet.common.syscalls.storage_read": {"pc": 29, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.storage_read.Args": {"full_name": "starkware.starknet.common.syscalls.storage_read.Args", "size": 1, "members": {"address": {"offset": 0, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", "size": 1, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.storage_read.Return": {"cairo_type": "(value: felt)", "type": "type_definition"}, "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.storage_read.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 29, "value": "[cast(fp + (-4), felt**)]", "ap_tracking_data": {"offset": 0, "group": 3}}, {"pc": 33, "value": "cast([fp + (-4)] + 3, felt*)", "ap_tracking_data": {"offset": 1, "group": 3}}], "type": "reference"}, "starkware.starknet.common.syscalls.storage_write": {"pc": 37, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.storage_write.Args": {"full_name": "starkware.starknet.common.syscalls.storage_write.Args", "size": 2, "members": {"address": {"offset": 0, "cairo_type": "felt"}, "value": {"offset": 1, "cairo_type": "felt"}}, "type": "struct"}, "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", "size": 1, "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "type": "struct"}, "starkware.starknet.common.syscalls.storage_write.Return": {"cairo_type": "()", "type": "type_definition"}, "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.storage_write.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 37, "value": "[cast(fp + (-5), felt**)]", "ap_tracking_data": {"offset": 0, "group": 4}}, {"pc": 42, "value": "cast([fp + (-5)] + 3, felt*)", "ap_tracking_data": {"offset": 1, "group": 4}}], "type": "reference"}}, "attributes": [], "reference_manager": {"references": [{"pc": 0, "value": "[cast(fp + (-3), felt*)]", "ap_tracking_data": {"offset": 0, "group": 0}}, {"pc": 5, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"offset": 0, "group": 1}}, {"pc": 17, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"offset": 0, "group": 2}}, {"pc": 29, "value": "[cast(fp + (-4), felt**)]", "ap_tracking_data": {"offset": 0, "group": 3}}, {"pc": 37, "value": "[cast(fp + (-5), felt**)]", "ap_tracking_data": {"offset": 0, "group": 4}}]}, "main_scope": "__main__", "prime": "0x800000000000011000000000000000000000000000000000000000000000001", "data": ["0x20780017fff7ffd", "0x4", "0x400780017fff7ffd", "0x1", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x4c69627261727943616c6c", "0x400280007ff97fff", "0x400380017ff97ffa", "0x400380027ff97ffb", "0x400380037ff97ffc", "0x400380047ff97ffd", "0x482680017ff98000", "0x7", "0x480280057ff98000", "0x480280067ff98000", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x4c69627261727943616c6c4c3148616e646c6572", "0x400280007ff97fff", "0x400380017ff97ffa", "0x400380027ff97ffb", "0x400380037ff97ffc", "0x400380047ff97ffd", "0x482680017ff98000", "0x7", "0x480280057ff98000", "0x480280067ff98000", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x53746f7261676552656164", "0x400280007ffc7fff", "0x400380017ffc7ffd", "0x482680017ffc8000", "0x3", "0x480280027ffc8000", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x53746f726167655772697465", "0x400280007ffb7fff", "0x400380017ffb7ffc", "0x400380027ffb7ffd", "0x482680017ffb8000", "0x3", "0x208b7fff7fff7ffe", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x480680017fff8000", "0xf920571b9f85bdd92a867cfdc73319d0f8836f0e69e06e4c5566b6203f75cc", "0x208b7fff7fff7ffe", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", "0x480a7ffb7fff8000", "0x48127ffe7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", "0x48127ffe7fff8000", "0x48127ff57fff8000", "0x48127ff57fff8000", "0x48127ffc7fff8000", "0x208b7fff7fff7ffe", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", "0x480a7ffa7fff8000", "0x48127ffe7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", "0x48127ff67fff8000", "0x48127ff67fff8000", "0x208b7fff7fff7ffe", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe5", "0x208b7fff7fff7ffe", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffaf", "0x480a7ffa7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", "0x208b7fff7fff7ffe", "0x480a7ff77fff8000", "0x480a7ff87fff8000", "0x480a7ff97fff8000", "0x480a7ffa7fff8000", "0x1104800180018000", "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", "0x48127ffd7fff8000", "0x480a7ffa7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa0", "0x48127ffd7fff8000", "0x48127ff27fff8000", "0x48127ff27fff8000", "0x208b7fff7fff7ffe", "0x480280027ffb8000", "0x480280027ffd8000", "0x400080007ffe7fff", "0x482680017ffd8000", "0x3", "0x480280027ffd8000", "0x48307fff7ffe8000", "0x402a7ffd7ffc7fff", "0x480280027ffb8000", "0x480280007ffb8000", "0x480280017ffb8000", "0x482480017ffd8000", "0x1", "0x480280007ffd8000", "0x480280017ffd8000", "0x480280027ffd8000", "0x482680017ffd8000", "0x3", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", "0x40780017fff7fff", "0x1", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x480680017fff8000", "0x0", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe", "0x480a7ff87fff8000", "0x480a7ff97fff8000", "0x480a7ffa7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc0", "0x48127ffc7fff8000", "0x48127ffe7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff73", "0x48127ffd7fff8000", "0x48127ff17fff8000", "0x48127ff17fff8000", "0x48127ffb7fff8000", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe", "0x480280007ffb8000", "0x480280017ffb8000", "0x480280027ffb8000", "0x480a7ffa7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", "0x208b7fff7fff7ffe", "0x480a7ff87fff8000", "0x480a7ff97fff8000", "0x480a7ffa7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa5", "0x48127ffc7fff8000", "0x48127ffe7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff64", "0x48127ffd7fff8000", "0x48127ff17fff8000", "0x48127ff17fff8000", "0x208b7fff7fff7ffe", "0x480280007ffb8000", "0x480280017ffb8000", "0x480280027ffb8000", "0x480a7ffa7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", "0x40780017fff7fff", "0x1", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x480680017fff8000", "0x0", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff84", "0x208b7fff7fff7ffe", "0x40780017fff7fff", "0x1", "0x4003800080007ffc", "0x4826800180008000", "0x1", "0x480a7ffd7fff8000", "0x4828800080007ffe", "0x480a80007fff8000", "0x208b7fff7fff7ffe", "0x402b7ffd7ffc7ffd", "0x480280007ffb8000", "0x480280017ffb8000", "0x480280027ffb8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", "0x48127ffe7fff8000", "0x1104800180018000", "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", "0x48127ff47fff8000", "0x48127ff47fff8000", "0x48127ffb7fff8000", "0x48127ffb7fff8000", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe"]}, "entry_points_by_type": {"CONSTRUCTOR": [{"offset": "0x6c", "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194"}], "EXTERNAL": [{"offset": "0x9b", "selector": "0x0"}, {"offset": "0xd4", "selector": "0x21691762da057c1b71f851f9b709e0c143628acf6e0cbc9735411a65663d747"}], "L1_HANDLER": [{"offset": "0xb4", "selector": "0x0"}]}} \ No newline at end of file +{"entry_points_by_type": {"L1_HANDLER": [{"selector": "0x0", "offset": 180}], "CONSTRUCTOR": [{"selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", "offset": 108}], "EXTERNAL": [{"selector": "0x0", "offset": 155}, {"selector": "0x21691762da057c1b71f851f9b709e0c143628acf6e0cbc9735411a65663d747", "offset": 212}]}, "program": {"prime": "0x800000000000011000000000000000000000000000000000000000000000001", "data": ["0x20780017fff7ffd", "0x4", "0x400780017fff7ffd", "0x1", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x4c69627261727943616c6c", "0x400280007ff97fff", "0x400380017ff97ffa", "0x400380027ff97ffb", "0x400380037ff97ffc", "0x400380047ff97ffd", "0x482680017ff98000", "0x7", "0x480280057ff98000", "0x480280067ff98000", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x4c69627261727943616c6c4c3148616e646c6572", "0x400280007ff97fff", "0x400380017ff97ffa", "0x400380027ff97ffb", "0x400380037ff97ffc", "0x400380047ff97ffd", "0x482680017ff98000", "0x7", "0x480280057ff98000", "0x480280067ff98000", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x53746f7261676552656164", "0x400280007ffc7fff", "0x400380017ffc7ffd", "0x482680017ffc8000", "0x3", "0x480280027ffc8000", "0x208b7fff7fff7ffe", "0x480680017fff8000", "0x53746f726167655772697465", "0x400280007ffb7fff", "0x400380017ffb7ffc", "0x400380027ffb7ffd", "0x482680017ffb8000", "0x3", "0x208b7fff7fff7ffe", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x480680017fff8000", "0xf920571b9f85bdd92a867cfdc73319d0f8836f0e69e06e4c5566b6203f75cc", "0x208b7fff7fff7ffe", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", "0x480a7ffb7fff8000", "0x48127ffe7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", "0x48127ffe7fff8000", "0x48127ff57fff8000", "0x48127ff57fff8000", "0x48127ffc7fff8000", "0x208b7fff7fff7ffe", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", "0x480a7ffa7fff8000", "0x48127ffe7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", "0x48127ff67fff8000", "0x48127ff67fff8000", "0x208b7fff7fff7ffe", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe5", "0x208b7fff7fff7ffe", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffaf", "0x480a7ffa7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", "0x208b7fff7fff7ffe", "0x480a7ff77fff8000", "0x480a7ff87fff8000", "0x480a7ff97fff8000", "0x480a7ffa7fff8000", "0x1104800180018000", "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", "0x48127ffd7fff8000", "0x480a7ffa7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa0", "0x48127ffd7fff8000", "0x48127ff27fff8000", "0x48127ff27fff8000", "0x208b7fff7fff7ffe", "0x480280027ffb8000", "0x480280027ffd8000", "0x400080007ffe7fff", "0x482680017ffd8000", "0x3", "0x480280027ffd8000", "0x48307fff7ffe8000", "0x402a7ffd7ffc7fff", "0x480280027ffb8000", "0x480280007ffb8000", "0x480280017ffb8000", "0x482480017ffd8000", "0x1", "0x480280007ffd8000", "0x480280017ffd8000", "0x480280027ffd8000", "0x482680017ffd8000", "0x3", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", "0x40780017fff7fff", "0x1", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x480680017fff8000", "0x0", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe", "0x480a7ff87fff8000", "0x480a7ff97fff8000", "0x480a7ffa7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc0", "0x48127ffc7fff8000", "0x48127ffe7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff73", "0x48127ffd7fff8000", "0x48127ff17fff8000", "0x48127ff17fff8000", "0x48127ffb7fff8000", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe", "0x480280007ffb8000", "0x480280017ffb8000", "0x480280027ffb8000", "0x480a7ffa7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", "0x208b7fff7fff7ffe", "0x480a7ff87fff8000", "0x480a7ff97fff8000", "0x480a7ffa7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa5", "0x48127ffc7fff8000", "0x48127ffe7fff8000", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff64", "0x48127ffd7fff8000", "0x48127ff17fff8000", "0x48127ff17fff8000", "0x208b7fff7fff7ffe", "0x480280007ffb8000", "0x480280017ffb8000", "0x480280027ffb8000", "0x480a7ffa7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", "0x40780017fff7fff", "0x1", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x48127ffc7fff8000", "0x480680017fff8000", "0x0", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe", "0x480a7ffb7fff8000", "0x480a7ffc7fff8000", "0x480a7ffd7fff8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff84", "0x208b7fff7fff7ffe", "0x40780017fff7fff", "0x1", "0x4003800080007ffc", "0x4826800180008000", "0x1", "0x480a7ffd7fff8000", "0x4828800080007ffe", "0x480a80007fff8000", "0x208b7fff7fff7ffe", "0x402b7ffd7ffc7ffd", "0x480280007ffb8000", "0x480280017ffb8000", "0x480280027ffb8000", "0x1104800180018000", "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", "0x48127ffe7fff8000", "0x1104800180018000", "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", "0x48127ff47fff8000", "0x48127ff47fff8000", "0x48127ffb7fff8000", "0x48127ffb7fff8000", "0x48127ffb7fff8000", "0x208b7fff7fff7ffe"], "builtins": ["pedersen", "range_check"], "hints": {"0": [{"code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", "accessible_scopes": ["starkware.cairo.common.math", "starkware.cairo.common.math.assert_not_zero"], "flow_tracking_data": {"ap_tracking": {"group": 0, "offset": 0}, "reference_ids": {"starkware.cairo.common.math.assert_not_zero.value": 0}}}], "12": [{"code": "syscall_handler.library_call(segments=segments, syscall_ptr=ids.syscall_ptr)", "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.library_call"], "flow_tracking_data": {"ap_tracking": {"group": 1, "offset": 1}, "reference_ids": {"starkware.starknet.common.syscalls.library_call.syscall_ptr": 1}}}], "24": [{"code": "syscall_handler.library_call_l1_handler(segments=segments, syscall_ptr=ids.syscall_ptr)", "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.library_call_l1_handler"], "flow_tracking_data": {"ap_tracking": {"group": 2, "offset": 1}, "reference_ids": {"starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": 2}}}], "33": [{"code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.storage_read"], "flow_tracking_data": {"ap_tracking": {"group": 3, "offset": 1}, "reference_ids": {"starkware.starknet.common.syscalls.storage_read.syscall_ptr": 3}}}], "42": [{"code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", "accessible_scopes": ["starkware.starknet.common.syscalls", "starkware.starknet.common.syscalls.storage_write"], "flow_tracking_data": {"ap_tracking": {"group": 4, "offset": 1}, "reference_ids": {"starkware.starknet.common.syscalls.storage_write.syscall_ptr": 4}}}], "128": [{"code": "memory[ap] = segments.add()", "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], "flow_tracking_data": {"ap_tracking": {"group": 11, "offset": 60}, "reference_ids": {}}}], "188": [{"code": "memory[ap] = segments.add()", "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__l1_default__"], "flow_tracking_data": {"ap_tracking": {"group": 15, "offset": 50}, "reference_ids": {}}}], "203": [{"code": "memory[ap] = segments.add()", "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_implementation_encode_return"], "flow_tracking_data": {"ap_tracking": {"group": 17, "offset": 0}, "reference_ids": {}}}]}, "main_scope": "__main__", "identifiers": {"__main__.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "__main__.__default__": {"pc": 137, "decorators": ["external", "raw_input", "raw_output"], "type": "function"}, "__main__.__default__.Args": {"full_name": "__main__.__default__.Args", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "calldata_size": {"offset": 1, "cairo_type": "felt"}, "calldata": {"offset": 2, "cairo_type": "felt*"}}, "size": 3, "type": "struct"}, "__main__.__default__.ImplicitArgs": {"full_name": "__main__.__default__.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "__main__.__default__.Return": {"cairo_type": "(retdata_size: felt, retdata: felt*)", "type": "type_definition"}, "__main__.__default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__.__l1_default__": {"pc": 164, "decorators": ["l1_handler", "raw_input"], "type": "function"}, "__main__.__l1_default__.Args": {"full_name": "__main__.__l1_default__.Args", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "calldata_size": {"offset": 1, "cairo_type": "felt"}, "calldata": {"offset": 2, "cairo_type": "felt*"}}, "size": 3, "type": "struct"}, "__main__.__l1_default__.ImplicitArgs": {"full_name": "__main__.__l1_default__.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "__main__.__l1_default__.Return": {"cairo_type": "()", "type": "type_definition"}, "__main__.__l1_default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__._get_implementation": {"destination": "contracts.Upgradable._get_implementation", "type": "alias"}, "__main__._set_implementation": {"destination": "contracts.Upgradable._set_implementation", "type": "alias"}, "__main__.constructor": {"pc": 91, "decorators": ["constructor"], "type": "function"}, "__main__.constructor.Args": {"full_name": "__main__.constructor.Args", "members": {"implementation": {"offset": 0, "cairo_type": "felt"}, "selector": {"offset": 1, "cairo_type": "felt"}, "calldata_len": {"offset": 2, "cairo_type": "felt"}, "calldata": {"offset": 3, "cairo_type": "felt*"}}, "size": 4, "type": "struct"}, "__main__.constructor.ImplicitArgs": {"full_name": "__main__.constructor.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "__main__.constructor.Return": {"cairo_type": "()", "type": "type_definition"}, "__main__.constructor.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__.get_implementation": {"pc": 197, "decorators": ["view"], "type": "function"}, "__main__.get_implementation.Args": {"full_name": "__main__.get_implementation.Args", "members": {}, "size": 0, "type": "struct"}, "__main__.get_implementation.ImplicitArgs": {"full_name": "__main__.get_implementation.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "__main__.get_implementation.Return": {"cairo_type": "(implementation: felt)", "type": "type_definition"}, "__main__.get_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__main__.library_call": {"destination": "starkware.starknet.common.syscalls.library_call", "type": "alias"}, "__main__.library_call_l1_handler": {"destination": "starkware.starknet.common.syscalls.library_call_l1_handler", "type": "alias"}, "__wrappers__.__default__": {"pc": 155, "decorators": ["external", "raw_input", "raw_output"], "type": "function"}, "__wrappers__.__default__.Args": {"full_name": "__wrappers__.__default__.Args", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.__default__.ImplicitArgs": {"full_name": "__wrappers__.__default__.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.__default__.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.__default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.__default__.__wrapped_func": {"destination": "__main__.__default__", "type": "alias"}, "__wrappers__.__default___encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "__wrappers__.__l1_default__": {"pc": 180, "decorators": ["l1_handler", "raw_input"], "type": "function"}, "__wrappers__.__l1_default__.Args": {"full_name": "__wrappers__.__l1_default__.Args", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.__l1_default__.ImplicitArgs": {"full_name": "__wrappers__.__l1_default__.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.__l1_default__.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.__l1_default__.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.__l1_default__.__wrapped_func": {"destination": "__main__.__l1_default__", "type": "alias"}, "__wrappers__.__l1_default___encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "__wrappers__.constructor": {"pc": 108, "decorators": ["constructor"], "type": "function"}, "__wrappers__.constructor.Args": {"full_name": "__wrappers__.constructor.Args", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.constructor.ImplicitArgs": {"full_name": "__wrappers__.constructor.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.constructor.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.constructor.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.constructor.__wrapped_func": {"destination": "__main__.constructor", "type": "alias"}, "__wrappers__.constructor_encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "__wrappers__.get_implementation": {"pc": 212, "decorators": ["view"], "type": "function"}, "__wrappers__.get_implementation.Args": {"full_name": "__wrappers__.get_implementation.Args", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.get_implementation.ImplicitArgs": {"full_name": "__wrappers__.get_implementation.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.get_implementation.Return": {"cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", "type": "type_definition"}, "__wrappers__.get_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "__wrappers__.get_implementation.__wrapped_func": {"destination": "__main__.get_implementation", "type": "alias"}, "__wrappers__.get_implementation_encode_return": {"pc": 203, "decorators": [], "type": "function"}, "__wrappers__.get_implementation_encode_return.Args": {"full_name": "__wrappers__.get_implementation_encode_return.Args", "members": {"ret_value": {"offset": 0, "cairo_type": "(implementation: felt)"}, "range_check_ptr": {"offset": 1, "cairo_type": "felt"}}, "size": 2, "type": "struct"}, "__wrappers__.get_implementation_encode_return.ImplicitArgs": {"full_name": "__wrappers__.get_implementation_encode_return.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "__wrappers__.get_implementation_encode_return.Return": {"cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", "type": "type_definition"}, "__wrappers__.get_implementation_encode_return.SIZEOF_LOCALS": {"value": 1, "type": "const"}, "__wrappers__.get_implementation_encode_return.memcpy": {"destination": "starkware.cairo.common.memcpy.memcpy", "type": "alias"}, "contracts.Upgradable.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "contracts.Upgradable._get_implementation": {"pc": 75, "decorators": [], "type": "function"}, "contracts.Upgradable._get_implementation.Args": {"full_name": "contracts.Upgradable._get_implementation.Args", "members": {}, "size": 0, "type": "struct"}, "contracts.Upgradable._get_implementation.ImplicitArgs": {"full_name": "contracts.Upgradable._get_implementation.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "contracts.Upgradable._get_implementation.Return": {"cairo_type": "(implementation: felt)", "type": "type_definition"}, "contracts.Upgradable._get_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation": {"type": "namespace"}, "contracts.Upgradable._implementation.Args": {"full_name": "contracts.Upgradable._implementation.Args", "members": {}, "size": 0, "type": "struct"}, "contracts.Upgradable._implementation.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "contracts.Upgradable._implementation.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "contracts.Upgradable._implementation.Return": {"cairo_type": "()", "type": "type_definition"}, "contracts.Upgradable._implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation.addr": {"pc": 45, "decorators": [], "type": "function"}, "contracts.Upgradable._implementation.addr.Args": {"full_name": "contracts.Upgradable._implementation.addr.Args", "members": {}, "size": 0, "type": "struct"}, "contracts.Upgradable._implementation.addr.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.addr.ImplicitArgs", "members": {"pedersen_ptr": {"offset": 0, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 1, "cairo_type": "felt"}}, "size": 2, "type": "struct"}, "contracts.Upgradable._implementation.addr.Return": {"cairo_type": "(res: felt)", "type": "type_definition"}, "contracts.Upgradable._implementation.addr.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation.hash2": {"destination": "starkware.cairo.common.hash.hash2", "type": "alias"}, "contracts.Upgradable._implementation.normalize_address": {"destination": "starkware.starknet.common.storage.normalize_address", "type": "alias"}, "contracts.Upgradable._implementation.read": {"pc": 50, "decorators": [], "type": "function"}, "contracts.Upgradable._implementation.read.Args": {"full_name": "contracts.Upgradable._implementation.read.Args", "members": {}, "size": 0, "type": "struct"}, "contracts.Upgradable._implementation.read.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.read.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "contracts.Upgradable._implementation.read.Return": {"cairo_type": "(address: felt)", "type": "type_definition"}, "contracts.Upgradable._implementation.read.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._implementation.storage_read": {"destination": "starkware.starknet.common.syscalls.storage_read", "type": "alias"}, "contracts.Upgradable._implementation.storage_write": {"destination": "starkware.starknet.common.syscalls.storage_write", "type": "alias"}, "contracts.Upgradable._implementation.write": {"pc": 63, "decorators": [], "type": "function"}, "contracts.Upgradable._implementation.write.Args": {"full_name": "contracts.Upgradable._implementation.write.Args", "members": {"value": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "contracts.Upgradable._implementation.write.ImplicitArgs": {"full_name": "contracts.Upgradable._implementation.write.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "contracts.Upgradable._implementation.write.Return": {"cairo_type": "()", "type": "type_definition"}, "contracts.Upgradable._implementation.write.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable._set_implementation": {"pc": 81, "decorators": [], "type": "function"}, "contracts.Upgradable._set_implementation.Args": {"full_name": "contracts.Upgradable._set_implementation.Args", "members": {"implementation": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "contracts.Upgradable._set_implementation.ImplicitArgs": {"full_name": "contracts.Upgradable._set_implementation.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}, "pedersen_ptr": {"offset": 1, "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*"}, "range_check_ptr": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "contracts.Upgradable._set_implementation.Return": {"cairo_type": "()", "type": "type_definition"}, "contracts.Upgradable._set_implementation.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "contracts.Upgradable.assert_not_zero": {"destination": "starkware.cairo.common.math.assert_not_zero", "type": "alias"}, "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", "members": {"x": {"offset": 0, "cairo_type": "felt"}, "y": {"offset": 1, "cairo_type": "felt"}, "x_and_y": {"offset": 2, "cairo_type": "felt"}, "x_xor_y": {"offset": 3, "cairo_type": "felt"}, "x_or_y": {"offset": 4, "cairo_type": "felt"}}, "size": 5, "type": "struct"}, "starkware.cairo.common.cairo_builtins.EcOpBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", "members": {"p": {"offset": 0, "cairo_type": "starkware.cairo.common.ec_point.EcPoint"}, "q": {"offset": 2, "cairo_type": "starkware.cairo.common.ec_point.EcPoint"}, "m": {"offset": 4, "cairo_type": "felt"}, "r": {"offset": 5, "cairo_type": "starkware.cairo.common.ec_point.EcPoint"}}, "size": 7, "type": "struct"}, "starkware.cairo.common.cairo_builtins.EcPoint": {"destination": "starkware.cairo.common.ec_point.EcPoint", "type": "alias"}, "starkware.cairo.common.cairo_builtins.HashBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", "members": {"x": {"offset": 0, "cairo_type": "felt"}, "y": {"offset": 1, "cairo_type": "felt"}, "result": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "starkware.cairo.common.cairo_builtins.SignatureBuiltin": {"full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", "members": {"pub_key": {"offset": 0, "cairo_type": "felt"}, "message": {"offset": 1, "cairo_type": "felt"}}, "size": 2, "type": "struct"}, "starkware.cairo.common.dict_access.DictAccess": {"full_name": "starkware.cairo.common.dict_access.DictAccess", "members": {"key": {"offset": 0, "cairo_type": "felt"}, "prev_value": {"offset": 1, "cairo_type": "felt"}, "new_value": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "starkware.cairo.common.ec_point.EcPoint": {"full_name": "starkware.cairo.common.ec_point.EcPoint", "members": {"x": {"offset": 0, "cairo_type": "felt"}, "y": {"offset": 1, "cairo_type": "felt"}}, "size": 2, "type": "struct"}, "starkware.cairo.common.hash.HashBuiltin": {"destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", "type": "alias"}, "starkware.cairo.common.math.assert_not_zero": {"pc": 0, "decorators": [], "type": "function"}, "starkware.cairo.common.math.assert_not_zero.Args": {"full_name": "starkware.cairo.common.math.assert_not_zero.Args", "members": {"value": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": {"full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", "members": {}, "size": 0, "type": "struct"}, "starkware.cairo.common.math.assert_not_zero.Return": {"cairo_type": "()", "type": "type_definition"}, "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.cairo.common.math.assert_not_zero.value": {"full_name": "starkware.cairo.common.math.assert_not_zero.value", "cairo_type": "felt", "references": [{"pc": 0, "value": "[cast(fp + (-3), felt*)]", "ap_tracking_data": {"group": 0, "offset": 0}}], "type": "reference"}, "starkware.starknet.common.storage.ADDR_BOUND": {"value": -106710729501573572985208420194530329073740042555888586719489, "type": "const"}, "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": {"value": 256, "type": "const"}, "starkware.starknet.common.storage.assert_250_bit": {"destination": "starkware.cairo.common.math.assert_250_bit", "type": "alias"}, "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": {"value": 20853273475220472486191784820, "type": "const"}, "starkware.starknet.common.syscalls.CallContract": {"full_name": "starkware.starknet.common.syscalls.CallContract", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest"}, "response": {"offset": 5, "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse"}}, "size": 7, "type": "struct"}, "starkware.starknet.common.syscalls.CallContractRequest": {"full_name": "starkware.starknet.common.syscalls.CallContractRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "contract_address": {"offset": 1, "cairo_type": "felt"}, "function_selector": {"offset": 2, "cairo_type": "felt"}, "calldata_size": {"offset": 3, "cairo_type": "felt"}, "calldata": {"offset": 4, "cairo_type": "felt*"}}, "size": 5, "type": "struct"}, "starkware.starknet.common.syscalls.CallContractResponse": {"full_name": "starkware.starknet.common.syscalls.CallContractResponse", "members": {"retdata_size": {"offset": 0, "cairo_type": "felt"}, "retdata": {"offset": 1, "cairo_type": "felt*"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": {"value": 21167594061783206823196716140, "type": "const"}, "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": {"value": 23274015802972845247556842986379118667122, "type": "const"}, "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": {"value": 75202468540281, "type": "const"}, "starkware.starknet.common.syscalls.Deploy": {"full_name": "starkware.starknet.common.syscalls.Deploy", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.DeployRequest"}, "response": {"offset": 6, "cairo_type": "starkware.starknet.common.syscalls.DeployResponse"}}, "size": 9, "type": "struct"}, "starkware.starknet.common.syscalls.DeployRequest": {"full_name": "starkware.starknet.common.syscalls.DeployRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "class_hash": {"offset": 1, "cairo_type": "felt"}, "contract_address_salt": {"offset": 2, "cairo_type": "felt"}, "constructor_calldata_size": {"offset": 3, "cairo_type": "felt"}, "constructor_calldata": {"offset": 4, "cairo_type": "felt*"}, "reserved": {"offset": 5, "cairo_type": "felt"}}, "size": 6, "type": "struct"}, "starkware.starknet.common.syscalls.DeployResponse": {"full_name": "starkware.starknet.common.syscalls.DeployResponse", "members": {"contract_address": {"offset": 0, "cairo_type": "felt"}, "constructor_retdata_size": {"offset": 1, "cairo_type": "felt"}, "constructor_retdata": {"offset": 2, "cairo_type": "felt*"}}, "size": 3, "type": "struct"}, "starkware.starknet.common.syscalls.DictAccess": {"destination": "starkware.cairo.common.dict_access.DictAccess", "type": "alias"}, "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": {"value": 1280709301550335749748, "type": "const"}, "starkware.starknet.common.syscalls.EmitEvent": {"full_name": "starkware.starknet.common.syscalls.EmitEvent", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "keys_len": {"offset": 1, "cairo_type": "felt"}, "keys": {"offset": 2, "cairo_type": "felt*"}, "data_len": {"offset": 3, "cairo_type": "felt"}, "data": {"offset": 4, "cairo_type": "felt*"}}, "size": 5, "type": "struct"}, "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": {"value": 1448089106835523001438702345020786, "type": "const"}, "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": {"value": 24294903732626645868215235778792757751152, "type": "const"}, "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": {"value": 94901967781393078444254803017658102643, "type": "const"}, "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": {"value": 6219495360805491471215297013070624192820083, "type": "const"}, "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": {"value": 1592190833581991703053805829594610833820054387, "type": "const"}, "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": {"value": 1317029390204112103023, "type": "const"}, "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": {"value": 1448089128652340074717162277007973, "type": "const"}, "starkware.starknet.common.syscalls.GetBlockNumber": {"full_name": "starkware.starknet.common.syscalls.GetBlockNumber", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockNumberRequest": {"full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockNumberResponse": {"full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", "members": {"block_number": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockTimestamp": {"full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockTimestampRequest": {"full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetBlockTimestampResponse": {"full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", "members": {"block_timestamp": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetCallerAddress": {"full_name": "starkware.starknet.common.syscalls.GetCallerAddress", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.GetCallerAddressRequest": {"full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetCallerAddressResponse": {"full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", "members": {"caller_address": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetContractAddress": {"full_name": "starkware.starknet.common.syscalls.GetContractAddress", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.GetContractAddressRequest": {"full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetContractAddressResponse": {"full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", "members": {"contract_address": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetSequencerAddress": {"full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.GetSequencerAddressRequest": {"full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetSequencerAddressResponse": {"full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", "members": {"sequencer_address": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxInfo": {"full_name": "starkware.starknet.common.syscalls.GetTxInfo", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxInfoRequest": {"full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxInfoResponse": {"full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", "members": {"tx_info": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.TxInfo*"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxSignature": {"full_name": "starkware.starknet.common.syscalls.GetTxSignature", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest"}, "response": {"offset": 1, "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse"}}, "size": 3, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxSignatureRequest": {"full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.GetTxSignatureResponse": {"full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", "members": {"signature_len": {"offset": 0, "cairo_type": "felt"}, "signature": {"offset": 1, "cairo_type": "felt*"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": {"value": 436233452754198157705746250789557519228244616562, "type": "const"}, "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": {"value": 92376026794327011772951660, "type": "const"}, "starkware.starknet.common.syscalls.LibraryCall": {"full_name": "starkware.starknet.common.syscalls.LibraryCall", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest"}, "response": {"offset": 5, "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse"}}, "size": 7, "type": "struct"}, "starkware.starknet.common.syscalls.LibraryCallRequest": {"full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "class_hash": {"offset": 1, "cairo_type": "felt"}, "function_selector": {"offset": 2, "cairo_type": "felt"}, "calldata_size": {"offset": 3, "cairo_type": "felt"}, "calldata": {"offset": 4, "cairo_type": "felt*"}}, "size": 5, "type": "struct"}, "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": {"value": 433017908768303439907196859243777073, "type": "const"}, "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": {"value": 100890693370601760042082660, "type": "const"}, "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": {"value": 25828017502874050592466629733, "type": "const"}, "starkware.starknet.common.syscalls.SendMessageToL1SysCall": {"full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "to_address": {"offset": 1, "cairo_type": "felt"}, "payload_size": {"offset": 2, "cairo_type": "felt"}, "payload_ptr": {"offset": 3, "cairo_type": "felt*"}}, "size": 4, "type": "struct"}, "starkware.starknet.common.syscalls.StorageRead": {"full_name": "starkware.starknet.common.syscalls.StorageRead", "members": {"request": {"offset": 0, "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest"}, "response": {"offset": 2, "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse"}}, "size": 3, "type": "struct"}, "starkware.starknet.common.syscalls.StorageReadRequest": {"full_name": "starkware.starknet.common.syscalls.StorageReadRequest", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "address": {"offset": 1, "cairo_type": "felt"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.StorageReadResponse": {"full_name": "starkware.starknet.common.syscalls.StorageReadResponse", "members": {"value": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.StorageWrite": {"full_name": "starkware.starknet.common.syscalls.StorageWrite", "members": {"selector": {"offset": 0, "cairo_type": "felt"}, "address": {"offset": 1, "cairo_type": "felt"}, "value": {"offset": 2, "cairo_type": "felt"}}, "size": 3, "type": "struct"}, "starkware.starknet.common.syscalls.TxInfo": {"full_name": "starkware.starknet.common.syscalls.TxInfo", "members": {"version": {"offset": 0, "cairo_type": "felt"}, "account_contract_address": {"offset": 1, "cairo_type": "felt"}, "max_fee": {"offset": 2, "cairo_type": "felt"}, "signature_len": {"offset": 3, "cairo_type": "felt"}, "signature": {"offset": 4, "cairo_type": "felt*"}, "transaction_hash": {"offset": 5, "cairo_type": "felt"}, "chain_id": {"offset": 6, "cairo_type": "felt"}}, "size": 7, "type": "struct"}, "starkware.starknet.common.syscalls.library_call": {"pc": 5, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.library_call.Args": {"full_name": "starkware.starknet.common.syscalls.library_call.Args", "members": {"class_hash": {"offset": 0, "cairo_type": "felt"}, "function_selector": {"offset": 1, "cairo_type": "felt"}, "calldata_size": {"offset": 2, "cairo_type": "felt"}, "calldata": {"offset": 3, "cairo_type": "felt*"}}, "size": 4, "type": "struct"}, "starkware.starknet.common.syscalls.library_call.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.library_call.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.library_call.Return": {"cairo_type": "(retdata_size: felt, retdata: felt*)", "type": "type_definition"}, "starkware.starknet.common.syscalls.library_call.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.library_call.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.library_call.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 5, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"group": 1, "offset": 0}}, {"pc": 12, "value": "cast([fp + (-7)] + 7, felt*)", "ap_tracking_data": {"group": 1, "offset": 1}}], "type": "reference"}, "starkware.starknet.common.syscalls.library_call_l1_handler": {"pc": 17, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.library_call_l1_handler.Args": {"full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.Args", "members": {"class_hash": {"offset": 0, "cairo_type": "felt"}, "function_selector": {"offset": 1, "cairo_type": "felt"}, "calldata_size": {"offset": 2, "cairo_type": "felt"}, "calldata": {"offset": 3, "cairo_type": "felt*"}}, "size": 4, "type": "struct"}, "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.library_call_l1_handler.Return": {"cairo_type": "(retdata_size: felt, retdata: felt*)", "type": "type_definition"}, "starkware.starknet.common.syscalls.library_call_l1_handler.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 17, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"group": 2, "offset": 0}}, {"pc": 24, "value": "cast([fp + (-7)] + 7, felt*)", "ap_tracking_data": {"group": 2, "offset": 1}}], "type": "reference"}, "starkware.starknet.common.syscalls.storage_read": {"pc": 29, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.storage_read.Args": {"full_name": "starkware.starknet.common.syscalls.storage_read.Args", "members": {"address": {"offset": 0, "cairo_type": "felt"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.storage_read.Return": {"cairo_type": "(value: felt)", "type": "type_definition"}, "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.storage_read.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 29, "value": "[cast(fp + (-4), felt**)]", "ap_tracking_data": {"group": 3, "offset": 0}}, {"pc": 33, "value": "cast([fp + (-4)] + 3, felt*)", "ap_tracking_data": {"group": 3, "offset": 1}}], "type": "reference"}, "starkware.starknet.common.syscalls.storage_write": {"pc": 37, "decorators": [], "type": "function"}, "starkware.starknet.common.syscalls.storage_write.Args": {"full_name": "starkware.starknet.common.syscalls.storage_write.Args", "members": {"address": {"offset": 0, "cairo_type": "felt"}, "value": {"offset": 1, "cairo_type": "felt"}}, "size": 2, "type": "struct"}, "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": {"full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", "members": {"syscall_ptr": {"offset": 0, "cairo_type": "felt*"}}, "size": 1, "type": "struct"}, "starkware.starknet.common.syscalls.storage_write.Return": {"cairo_type": "()", "type": "type_definition"}, "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": {"value": 0, "type": "const"}, "starkware.starknet.common.syscalls.storage_write.syscall_ptr": {"full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", "cairo_type": "felt*", "references": [{"pc": 37, "value": "[cast(fp + (-5), felt**)]", "ap_tracking_data": {"group": 4, "offset": 0}}, {"pc": 42, "value": "cast([fp + (-5)] + 3, felt*)", "ap_tracking_data": {"group": 4, "offset": 1}}], "type": "reference"}}, "reference_manager": {"references": [{"pc": 0, "value": "[cast(fp + (-3), felt*)]", "ap_tracking_data": {"group": 0, "offset": 0}}, {"pc": 5, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"group": 1, "offset": 0}}, {"pc": 17, "value": "[cast(fp + (-7), felt**)]", "ap_tracking_data": {"group": 2, "offset": 0}}, {"pc": 29, "value": "[cast(fp + (-4), felt**)]", "ap_tracking_data": {"group": 3, "offset": 0}}, {"pc": 37, "value": "[cast(fp + (-5), felt**)]", "ap_tracking_data": {"group": 4, "offset": 0}}]}, "attributes": [], "debug_info": null}, "abi": [{"inputs": [{"name": "implementation", "type": "felt"}, {"name": "selector", "type": "felt"}, {"name": "calldata_len", "type": "felt"}, {"name": "calldata", "type": "felt*"}], "name": "constructor", "outputs": [], "type": "constructor"}, {"inputs": [{"name": "selector", "type": "felt"}, {"name": "calldata_size", "type": "felt"}, {"name": "calldata", "type": "felt*"}], "name": "__default__", "outputs": [{"name": "retdata_size", "type": "felt"}, {"name": "retdata", "type": "felt*"}], "type": "function"}, {"inputs": [{"name": "selector", "type": "felt"}, {"name": "calldata_size", "type": "felt"}, {"name": "calldata", "type": "felt*"}], "name": "__l1_default__", "outputs": [], "type": "l1_handler"}, {"inputs": [], "name": "get_implementation", "outputs": [{"name": "implementation", "type": "felt"}], "stateMutability": "view", "type": "function"}]} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/3_cairo_1.txt b/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/3_cairo_1.txt index ad58d0d0..69356050 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/3_cairo_1.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_class_by_hash/3_cairo_1.txt @@ -1 +1 @@ -{"contract_class_version": "0.1.0", "sierra_program": ["0x1", "0x2", "0x0", "0x2", "0x0", "0x0", "0xb6b", "0x495", "0xdc", "0x52616e6765436865636b", "0x0", "0x4761734275696c74696e", "0x66656c74323532", "0x4172726179", "0x1", "0x2", "0x536e617073686f74", "0x3", "0x537472756374", "0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62", "0x4", "0x436f6e747261637441646472657373", "0x3693aea200ee3080885d21614d01b9532a8670f69e658a94addaadd72e9aca", "0x6", "0x7", "0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3", "0x456e756d", "0x28f184fd9e4406cc4475e4faaa80e83b54a57026386ee7d5fc4fa8f347e327d", "0x8", "0x9", "0x5", "0xa", "0x14de46c93830b854d231d540339ee8ae16bb18830a375fe81572a472d5945f1", "0xc", "0x2872422f4eae164f52022a3d9ed2c5a2a9065da5f91ed37431a700dbe6e986b", "0xb", "0xd", "0x753332", "0x3288d594b9a45d15bb2fcb7903f06cdb06b27f0ba88186ec4cfaa98307cb972", "0x4275696c74696e436f737473", "0x2c0d43e92d76a45659f0b697b9d8399be5ce9caf9809f01d805a7827a9f368b", "0x132e9b3bde7bb5a3b35e9cb467df6497f9e595756495bb732f6d570d020415b", "0x3eb025eec2624dfbbbc1527da25edeeadb5d065598bf16c4d6767d622f68b3", "0x28c643274592e2abc8d6d5b6be3ac4d05f693274f69a71116ba9f34e71f0e49", "0xd2df414ffcda9bc327e41f128f46e0121aaf753e4b9b3aa3842805109c6b9c", "0x168a19d9c33230785040a214b5b2861704cabc56be86e2d06b962ccb752e178", "0x25d56f41e1487d276dcf6b27f6936fa06c930e00004e9174cd19b99e70bbe57", "0x35c73308c1cfe40d0c45541b51ef1bdfd73c604f26df19c53c825cb3f79337f", "0x49cb7bc68923048657537e3d62ec3c683cd4a72c21defe9aafefe955763bc3", "0x12", "0x13", "0x14", "0x15", "0x16", "0x17", "0x18", "0x19", "0x45634f70", "0x53797374656d", "0x1a", "0x3aa9a19f05f2852f2cac587710738c8ca96ca6f1d55402522f4e9080c417782", "0x1d", "0x19b3b4955bdcfa379bfc5a4949111c4efdd79128f8676f4d0895419b22e2ad7", "0x1f", "0x556e696e697469616c697a6564", "0x1c", "0x22", "0x273a31807ab152305389aa8b68ec07ccbfe8dfde299241facb5cd7d87c7eb8a", "0x23", "0x1dd6d80faabe40b870e2bac9bae20133f8a150c977bf480085e39aaa4e0362a", "0x26", "0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511", "0x17b6ecc31946835b0d9d92c2dd7a9c14f29af0371571ae74a1b228828b2242", "0x2a", "0x262b845bbedf41820bc2b34dc2faff0bab3fa4d4d8a1bb282deca598d4a3627", "0x2b", "0x2f528e3c691e195fca674982b69c0dc4284f206c3ea4d680220e99b59315a92", "0x2d", "0x506564657273656e", "0x2f", "0x1b", "0x753634", "0x13d20f70b017632fd676250ec387876342924ff0d0d3c80e55961780f4e8f", "0x33", "0x179749167d3bd5ec9f49b35931aeaa79432c7f176824049eca4db90afd7d49d", "0x32", "0x34", "0x35", "0x3d7bb709566af24f4a28309c9d9b89d724fd194c2992d536ab314b4d7eae195", "0x37", "0x3209ac1b85c2191fe97194b13f4bdfed29e89e78a1338d9d73cb98474dfae5a", "0x38", "0x10", "0x358506fd2d97ec152c79646571b0b818eb31f8ed5ffd4080a2e22571074b909", "0x3a", "0x436c61737348617368", "0x3c", "0x11771f2d3e7dc3ed5afe7eae405dfd127619490dec57ceaa021ac8bc2b9b315", "0x12ac6c758b8836b49f5f132ddaee37724bc734e405ca6a2514dfcd9f53aec58", "0x3f", "0xad00da0c82d9bb5619cd07bc862005938954f64876663b63f058d5351bbbb1", "0x41", "0x25b1f5eb403a7e1245e380d4654dabdc9f9f3158b939512eb4c8cbe540d220f", "0x43", "0x72eed1ff90454d4ee83e0d0841db171293ff5d1b991ef68095521941376efd", "0x44", "0x7538", "0x12273f170557bf9e9616162ba3a242ac99ba93810c9c4d21d3c4575f07822ae", "0x46", "0xf", "0x3840086d8220f2d1639cf978fb701dd671faa8e4b9973fd7a4c3cf1f06d04e", "0x48", "0x1bdcbe0bb2973c3eed7f3cd959974b2236966c71d9784fcffce00300852eee9", "0x4a", "0x4b", "0xc9447c0781360856f987ed580e881ac951c6a5015bde94c79cb189cc8cccb0", "0x4c", "0x426f78", "0x29d7d57c04a880978e7b3689f6218e507f3be17588744b58dc17762447ad0e7", "0x4e", "0x125048bba125edb4f72a816890f2f63324d796e84a92b9bd1eb3a97f4e938ee", "0x50", "0x4e6f6e5a65726f", "0x75313238", "0x2e655a7513158873ca2e5e659a9e175d23bf69a2325cdd0397ca3b8d864b967", "0x53", "0x54", "0x55", "0x32463e9d13536f0a0b55a828c16b744aa8b58f21fd9e164166d519bb3412bcc", "0x56", "0x27f9c9f4e4a3578b197e28a3ed578eb2b57f93483b1dc21e6770e7e7b704f34", "0x59", "0x28f8d296e28032baef1f420f78ea9d933102ba47a50b1c5f80fc8a3a1041da", "0x25", "0x1eaf57b3a55713f7b468e69aa1d7c98efdf6cf624a2d3d2eb66831111304527", "0x5b", "0x3d37ad6eafb32512d2dd95a2917f6bf14858de22c27a1114392429f2e5c15d7", "0x156b6b29ca961a0da2cfe5b86b7d70df78ddc905131c6ded2cd9024ceb26b4e", "0x341d38eba34b7f63af136a2fa0264203bb537421424d8af22f13c0486c6bd62", "0x61", "0x2df4ac612d9f474861b19bfadb9282eb6a9e96dbffcd47e6c1fe7088ef7e08b", "0x62", "0x1f43b8beb72009fc550a271a621f219147c6418e55f99e720aa9256b80b9a2a", "0x6c", "0x3d084941540057ac1b90e9a1a0c84b383e87f84fada8a99f139871e1f6e96c0", "0xebaa582aec1bbd01a11c61ed232150d86283ceff85ead1aa2143443285ecd4", "0x6f", "0x2ce5530c67c658502ea15626eae6f33d2ffd2c4f7aedda0fe2fe23e013169d7", "0x101dc0399934cc08fa0d6f6f2daead4e4a38cabeea1c743e1fc28d2d6e58e99", "0xd3a26a7712a33547a4a74e7594a446ca400cb36a0c2c307b92eff9ce82ff8", "0x74", "0x38e79b5062b6ee36022a8f19492101094c935ac54b64421943cf85730efa145", "0x1e75a35b461a190303f5117738d6cd6cb9c3330a1be0c7e80290facbcdb72e7", "0x13c91f3cba438dd54eb596a082e165d9ede6281c321682acd3c28e15602ffb", "0x78", "0x1338d3578fef7f062927553e61e2ae718b31f7ddb054229e02303195a8e937d", "0x7b", "0x2132e29887635235b81487fc052f08dcce553a7bd46b2ec213485351698f9f2", "0x7d", "0x29299a4dd8765e5a9821476c7b9eaceeff6cc036d7a0c0dd8af3327e16e738f", "0x10f7a39f148bf9911ddb05e828725f238c5461d0e441b8a55ba8195ddc99eaf", "0x80", "0x3cffb882a9a02817bd5278228221c142582b97b73612a2bbad46cdded2c9c26", "0x82", "0x31d5a371e34511d0b36bb55d7b0cfca1b435f02053210dd4e77f1795b096fe9", "0x84", "0x3431146377142ad86dc873f4632d2e74caabb9230a37c8de068dd9513ea9898", "0x23fbc0021ccc20b54491663a4362d8a5bc4b7622741854f8f82b6b7d98740a6", "0x87", "0x3ded11b5c9ebee7f65144ad131a8e99a0a0830b43a6f55f34b7d3bf2b573302", "0x89", "0x2f64612c614fe41cb181d4813fe491b6992fd5cb42a2f2506362892a67ed730", "0x8b", "0x2a6f1ee5bbefc28eff9a98f2cbd5f2792f8f09998567ff2689faac1b54841b9", "0x2d61d819a9e4e98f23d58ee684c80f695821db9bc0dd70d02f6228b3d35013e", "0x34f3666fe156bf2469fed4ce24c81ae279169871818ad2c3733d6b0f846b1a1", "0x8f", "0x92647fce35633aa7cfaae80402c5d0df0f10c80acd6d4bf29224e8a80804a4", "0x9fcd95695b8c42ae1ac98f26d057950e768e98cd086c08bc62fc58b62ef6f0", "0x92", "0x23282f06f16b4d2d37f3d174562114d8e0460305ae51765c43e40266d6110d9", "0x17fb4856a1135e156fe87a2e0d50bd936f7437e8e927a4437d47e4f1e485f09", "0x16f3778660f5b9a5d10874a05d72e83b94fe89bac3d59b05e391352b1a7aec1", "0x1e7a3e04b3d1e82da51c455bc65a8a044bd017c2784aa56b04898a279eea98c", "0xc087f9a3230c11dd5a7f2adbd0fee01c0a5eb6182581c2598b6b0ade81bc3a", "0x3439adb3e4f0f99830a6dfb70c506440f8fb2ad2cb18512dcf5062ee25b3918", "0x18508a22cd4cf1437b721f596cd2277fc0a5e4dcd247b107ef2ef5fd2752cf7", "0x9a", "0x3dc696c835d6ea393cef16637741cc327e8f6be35db50ef242ea06cdeae47aa", "0x9b", "0x3808c701a5d13e100ab11b6c02f91f752ecae7e420d21b56c90ec0a475cc7e5", "0x9d", "0x19367431bdedfe09ea99eed9ade3de00f195dd97087ed511b8942ebb45dbc5a", "0x9e", "0x9f", "0xa0", "0x26c97610bba318e7be7ed9746815afccc1b89e6a3174fbec5d5534288167ac7", "0xa1", "0xa3", "0xa4", "0x3f5595797ca73d9ac98a47c023f16f9675e924b1f5b8732cb923783062e0e9c", "0xa5", "0x2279da0a991198935efd413ccdec7236f9ff34ecfc870ec2376d7f044337bdb", "0xa7", "0xe", "0x29a4451ccf4ec2f45bf46114a4107522e925bd156e7a0755f94e1b4a9f0f759", "0x99", "0x5c", "0x95", "0x96", "0x97", "0x98", "0x86", "0x8d", "0x91", "0x94", "0x76", "0x7f", "0x8e", "0xc557fedbc200e59b686799bd8c95f94bc6452bc987295354063228797ffe79", "0xaa", "0x1f5d91ca543c7f9a0585a1c8beffc7a207d4af73ee640223a154b1da196a40d", "0xad", "0xaf", "0x97667cd4a7b6c408c987bc31ccfeb87330105dcbea0ccc479dcef916c9c14e", "0xb0", "0x82e10b563da3b07f9855f46392dec37b4b43359d940178db92615e0b07446", "0xb2", "0x53746f726167654261736541646472657373", "0x248e8fae2f16a35027771ffd74d6a6f3c379424b55843563a18f566bba3d905", "0x1b59390b367137d6eb44c3792fc90406d53b6e7b6f56f72cb82d4d19b7519d0", "0xb6", "0x53746f7261676541646472657373", "0x161ee0e6962e56453b5d68e09d1cabe5633858c1ba3a7e73fee8c70867eced0", "0x2d7b9ba5597ffc180f5bbd030da76b84ecf1e4f1311043a0a15295f29ccc1b0", "0x90d0203c41ad646d024845257a6eceb2f8b59b29ce7420dd518053d2edeedc", "0x14a7ddbb1150a2edc3d078a24d9dd07049784d38d10f9253fc3ece33c2f46a3", "0xbc", "0x4c63dc3c228ce57ac3db7c6549a0264844f765e132dc50ea81033c93e01e83", "0xbd", "0x1c85cfe38772db9df99e2b01984abc87d868a6ed1abf1013cf120a0f3457fe1", "0x17fc4845052afc079cefa760760a2d2779b9b7b61a8147b160ffdac979427b0", "0xc1", "0x2e53ad4d5ceb4d3481ef21842c2a6b389bd01e8650d6b4abe90a49e7067d43b", "0xc2", "0x73", "0x2f0c6e95609e1148599821032681af9af0899172cfe34d8347ab78e46cfd489", "0xc4", "0x2fffb69a24c0eccf3220a0a3685e1cefee1b1f63c6dcbe4030d1d50aa7a7b42", "0x1289347a53bd537cb2be622dc3ef1bae97ae391de352ed7871b08a409f130a8", "0xc7", "0xfcd97190f892337fa74b5f71ab0858bd462389f0dc97f3e8491dc3eb8de023", "0xc8", "0x2c7badf5cd070e89531ef781330a9554b04ce4ea21304b67a30ac3d43df84a2", "0x39a088813bcc109470bd475058810a7465bd632650a449e0ab3aee56f2e4e69", "0x107ac1be595c82e927dbf964feb2e59168314a4f142e387bb941abb5e699f5e", "0xcc", "0x4563506f696e74", "0xcf", "0x3e4e624a497e446ce523f5b345c07be6fab07dbff47534532460e9a8288be43", "0xd1", "0x622be99a5124cfa9cd5718f23d0fddef258c1f0e40a1008568f965f7bd6192", "0xd2", "0xcd9deb349f6fb32e657baec1ad634c533f483d4a7d58d9b614521369f9345a", "0xd4", "0x19b9ae4ba181a54f9e7af894a81b44a60aea4c9803939708d6cc212759ee94c", "0x293a0e97979ae36aff9649e1d1e3a6496fc083b45da3f24c19ad5e134f26c9d", "0xd8", "0x45635374617465", "0xc048ae671041dedb3ca1f250ad42a27aeddf8a7f491e553e7f2a70ff2e1800", "0x442", "0x7265766f6b655f61705f747261636b696e67", "0x656e61626c655f61705f747261636b696e67", "0x77697468647261775f676173", "0x6272616e63685f616c69676e", "0x73746f72655f74656d70", "0x66756e6374696f6e5f63616c6c", "0x21", "0x656e756d5f6d61746368", "0x7374727563745f6465636f6e737472756374", "0x61727261795f6c656e", "0x736e617073686f745f74616b65", "0x64726f70", "0x7533325f636f6e7374", "0x72656e616d65", "0x7533325f6571", "0x7374727563745f636f6e737472756374", "0x656e756d5f696e6974", "0x6a756d70", "0x626f6f6c5f6e6f745f696d706c", "0x6765745f6275696c74696e5f636f737473", "0x11", "0x77697468647261775f6761735f616c6c", "0x64697361626c655f61705f747261636b696e67", "0x1e", "0x61727261795f6e6577", "0x20", "0x66656c743235325f636f6e7374", "0x4f7574206f6620676173", "0x61727261795f617070656e64", "0x24", "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", "0x496e70757420746f6f2073686f727420666f7220617267756d656e7473", "0x616c6c6f635f6c6f63616c", "0x66696e616c697a655f6c6f63616c73", "0x73746f72655f6c6f63616c", "0x27", "0x29", "0x28", "0x2c", "0x2e", "0x39", "0x31", "0x30", "0x36", "0x3b", "0x3e", "0x40", "0x3d", "0x42", "0x45", "0x47", "0x417267656e744163636f756e74", "0x49", "0x4d", "0x302e332e30", "0x61727261795f736e617073686f745f706f705f66726f6e74", "0x4f", "0x756e626f78", "0x51", "0x636f6e74726163745f616464726573735f746f5f66656c74323532", "0x66656c743235325f737562", "0x66656c743235325f69735f7a65726f", "0x52", "0x57", "0x56414c4944", "0x617267656e742f6e6f6e2d6e756c6c2d63616c6c6572", "0x100000000000000000000000000000001", "0x5a", "0x58", "0x617267656e742f696e76616c69642d74782d76657273696f6e", "0x647570", "0x5f", "0x60", "0x63", "0x5d", "0x5e", "0x414e595f43414c4c4552", "0x6d", "0x7536345f6f766572666c6f77696e675f737562", "0x4163636f756e742e657865637574655f66726f6d5f6f757473696465", "0x6e", "0x537461726b4e6574204d657373616765", "0x706564657273656e", "0x1bfc207425a47a5dfa1a50a4f5241203f50624ca5fdf5e18755765416b8e288", "0x70", "0x6a", "0x68", "0x64", "0x67", "0x66", "0x65", "0x6b", "0x69", "0x617267656e742f6475706c6963617465642d6f7574736964652d6e6f6e6365", "0x617267656e742f696e76616c69642d74696d657374616d70", "0x617267656e742f696e76616c69642d63616c6c6572", "0x636c6173735f686173685f7472795f66726f6d5f66656c74323532", "0x72", "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd", "0x7265706c6163655f636c6173735f73797363616c6c", "0x75", "0x77", "0x79", "0x71", "0x617267656e742f696e76616c69642d696d706c656d656e746174696f6e", "0x617267656e742f6f6e6c792d73656c66", "0x7a", "0x617267656e742f6261636b75702d73686f756c642d62652d6e756c6c", "0x7c", "0x636c6173735f686173685f636f6e7374", "0x7e", "0x81", "0x617267656e742f696e76616c69642d63616c6c73", "0x617267656e742f6e756c6c2d6f776e6572", "0x100000000000000000000000000000002", "0x83", "0x7536345f636f6e7374", "0x85", "0x88", "0x8a", "0x8c", "0x90", "0x93", "0x617267656e742f677561726469616e2d7265717569726564", "0x617267656e742f63616e6e6f742d6f766572726964652d657363617065", "0x93a80", "0x617267656e742f696e76616c69642d657363617065", "0x75385f636f6e7374", "0x7533325f746f5f66656c74323532", "0x3f918d17e5ee77373b56385708f855659a07f75997f365cf87748628532a055", "0x68cfd18b92d1907b8ba3cc324900277f5a3622099431ea85dd8089255e4181", "0x1ffc9a7", "0xa66bd575", "0x3943f10f", "0x617267656e742f696e76616c69642d7369676e6174757265", "0x9c", "0xa2", "0xa6", "0x7374727563745f736e617073686f745f6465636f6e737472756374", "0x26e71b81ea2af0a2b5c6bfceb639b4fc6faae9d8de072a61fc913d3301ff56b", "0x617267656e742f696e76616c69642d677561726469616e2d736967", "0x617267656e742f696e76616c69642d63616c6c64617461", "0x395b662db8770f18d407bbbfeebf45fffec4a7fa4f6c7cee13d084055a9387d", "0x29ce6d1019e7bef00e94df2973d8d36e9e9b6c5f8783275441c9e466cb8b43", "0x617267656e742f696e76616c69642d6f776e65722d736967", "0x3ad2979f59dc1535593f6af33e41945239f4811966bcd49314582a892ebcee8", "0x1a1e41f464a235695e5050a846a26ca22ecc27acac54be5f6666848031efb8f", "0x617267656e742f666f7262696464656e2d63616c6c", "0xa8", "0xa9", "0xab", "0x656d69745f6576656e745f73797363616c6c", "0xae", "0xac", "0xb1", "0x21adb5788e32c84f69a1863d85ef9394b7bf761a0ce1190f826984e5075c371", "0xb3", "0xb4", "0xb5", "0xb7", "0x11ff76fe3f640fa6f3d60bbd94a3b9d47141a2c96f87fdcfbeb2af1d03f7050", "0x7536345f746f5f66656c74323532", "0x73746f726167655f616464726573735f66726f6d5f62617365", "0x73746f726167655f77726974655f73797363616c6c", "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", "0x6c6962726172795f63616c6c5f73797363616c6c", "0xb9", "0xba", "0x52657475726e6564206461746120746f6f2073686f7274", "0x73746f726167655f626173655f616464726573735f636f6e7374", "0x1ccc09c8a19948e048de7add6929589945e25f22059c7345aaf7837188d8d05", "0xb8", "0x73746f726167655f726561645f73797363616c6c", "0xbb", "0x31e7534f8ddb1628d6e07db5c743e33403b9a0b57508a93f4c49582040a2f71", "0x1c0f41bf28d630c8a0bd10f3a5d5c0d1619cf96cfdb7da51b112c420ced36c9", "0xf920571b9f85bdd92a867cfdc73319d0f8836f0e69e06e4c5566b6203f75cc", "0xbe", "0x636c6173735f686173685f746f5f66656c74323532", "0xbf", "0x617267656e742f6e6f2d6d756c746963616c6c2d746f2d73656c66", "0x1746f7542cac71b5c88f0b2301e87cd9b0896dab1c83b8b515762697e521040", "0xc0", "0x13f17de67551ae34866d4aa875cbace82f3a041eaa58b1d9e34568b0d0561b", "0xc3", "0x7536345f6571", "0xc5", "0x109831a1d023b114d1da4655340bd1bb108c4ddf1bba00f9330573c23f34989", "0x3a3f1aae7e2c4017af981d69ebf959c39e6f1c53b8ffa09a3ed92f40f524ec7", "0x7536345f6f766572666c6f77696e675f616464", "0xc6", "0x7536345f616464204f766572666c6f77", "0x75385f746f5f66656c74323532", "0xc9", "0x6765745f657865637574696f6e5f696e666f5f73797363616c6c", "0xca", "0x61727261795f676574", "0x496e646578206f7574206f6620626f756e6473", "0x753132385f636f6e7374", "0xb1a2bc2ec50000", "0x753132385f6f766572666c6f77696e675f737562", "0x7533325f6f766572666c6f77696e675f737562", "0x617267656e742f6d61782d6573636170652d617474656d707473", "0x617267656e742f6d61782d6665652d746f6f2d68696768", "0x7533325f6f766572666c6f77696e675f616464", "0xcb", "0x7533325f616464204f766572666c6f77", "0xcd", "0x63616c6c5f636f6e74726163745f73797363616c6c", "0x66656c743235325f616464", "0x617267656e742f6d756c746963616c6c2d6661696c6564", "0x1d9ca8a89626bead91b5cb4275a622219e9443975b34f3fdbc683e8621231a9", "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", "0x1eb8543121901145815b1fa94ab7062e6ecb788bee88efa299b9866bab0bd64", "0x3c93161122e8fd7a48238feee22dd3d7d49a69099523547d4a7cc7c460fc9c4", "0x250670a8d933a7d458c994fc396264aba18fc1f1b9136990bb0923a27eaa060", "0x2811029a978f84c1f4c4fc70c0891f83642ded105942eda119ddc941376122e", "0x11a96d42fc514f9d4f6f7083acbde6629ff1d2753bf6d25156be7b03e5e1207", "0x67753421a99564465b580dcc61f1e7befc7fd138c447dae233bba1d477458c", "0xd885f12a9241174cd02e71d9c751eec91ebc58dffa0addd86642969cbe006f", "0x2e200b0f001d9c2e6cb94ab8cc4907810f7fe134eca20d8d02224ac5e94e01f", "0x2b2db2ed38136ca6c54b95187166f98ea84503db8768617a558705b508fec82", "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", "0xca58956845fecb30a8cb3efe23582630dbe8b80cc1fb8fd5d5e866b1356ad", "0x617267656e742f696e76616c69642d7369676e61747572652d6c656e677468", "0x7536345f7472795f66726f6d5f66656c74323532", "0x32b90df821786fc0a5a5492c92e3241a5e680e5d53cd88c2bfdd094a70c90f5", "0xad292db4ff05a993c318438c1b6c8a8303266af2da151aa28ccece6726f1f1", "0xce", "0x4e6f6e20436c61737348617368", "0x800000000000010ffffffffffffffffb781126dcae7b2321e66a241adc64d2f", "0x65635f706f696e745f66726f6d5f785f6e7a", "0xd0", "0x756e777261705f6e6f6e5f7a65726f", "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca", "0x5668060aa49730b7be4801df46ec62de53ecd11abe43a32873000c36e8dc1f", "0x65635f706f696e745f7472795f6e65775f6e7a", "0x65635f706f696e745f69735f7a65726f", "0x65635f706f696e745f756e77726170", "0xd3", "0x2679d68052ccd03a53755ca9169677965fbd93e489df62f5f40d4f03c24f7a4", "0xd5", "0xd6", "0x53746f72616765416363657373553332202d206e6f6e20753332", "0xd9", "0xf00de1fccbb286f9a020ba8821ee936b1deea42a5c485c11ccdc82c8bebb3a", "0x65635f73746174655f696e6974", "0x65635f73746174655f6164645f6d756c", "0xda", "0x65635f73746174655f7472795f66696e616c697a655f6e7a", "0x65635f706f696e745f7a65726f", "0x65635f73746174655f616464", "0x65635f6e6567", "0x53746f72616765416363657373553634202d206e6f6e20753634", "0x75385f6f766572666c6f77696e675f616464", "0xdb", "0x75385f616464204f766572666c6f77", "0x7533325f7472795f66726f6d5f66656c74323532", "0x61727261795f706f705f66726f6e74", "0x4e35", "0xffffffffffffffff", "0x14c", "0x143", "0x132", "0x11e", "0x10e", "0x107", "0x100", "0x214", "0x202", "0x1f8", "0x1e6", "0x182", "0x186", "0x1d1", "0x1c0", "0x1b8", "0x31a", "0x30c", "0x2f6", "0x2e8", "0x2d2", "0x253", "0x257", "0x2b9", "0x2a4", "0x29b", "0x292", "0x3c8", "0x3bf", "0x3ae", "0x34d", "0x351", "0x39a", "0x38a", "0x382", "0x463", "0x452", "0x3f1", "0x3f5", "0x43e", "0x42e", "0x426", "0x535", "0x523", "0x519", "0x507", "0x49a", "0x49e", "0x4f2", "0x4e1", "0x4da", "0x4d3", "0x5ea", "0x5e1", "0x5d0", "0x566", "0x56a", "0x5bc", "0x5ac", "0x5a5", "0x59e", "0x685", "0x674", "0x613", "0x617", "0x660", "0x650", "0x648", "0x76e", "0x75d", "0x74b", "0x738", "0x724", "0x6ba", "0x6be", "0x70d", "0x6fa", "0x6f2", "0x83c", "0x82a", "0x817", "0x803", "0x79f", "0x7a3", "0x7ec", "0x7d9", "0x7d0", "0x8ca", "0x8ba", "0x866", "0x86a", "0x8a7", "0x898", "0x891", "0x956", "0x946", "0x8f2", "0x8f6", "0x933", "0x924", "0x91d", "0x9e2", "0x9d2", "0x97e", "0x982", "0x9bf", "0x9b0", "0x9a9", "0xa6e", "0xa5e", "0xa0a", "0xa0e", "0xa4b", "0xa3c", "0xa35", "0xae2", "0xa92", "0xa96", "0xad0", "0xac3", "0xabc", "0xb56", "0xb06", "0xb0a", "0xb44", "0xb37", "0xb30", "0xbca", "0xb7a", "0xb7e", "0xbb8", "0xbab", "0xba4", "0xc46", "0xbee", "0xbf2", "0xc34", "0xc27", "0xc20", "0xcc2", "0xc6a", "0xc6e", "0xcb0", "0xca3", "0xc9c", "0xd3e", "0xce6", "0xcea", "0xd2c", "0xd1f", "0xd18", "0xdba", "0xd62", "0xd66", "0xda8", "0xd9b", "0xd94", "0xe29", "0xdde", "0xde2", "0xe17", "0xe0a", "0xe98", "0xe4d", "0xe51", "0xe86", "0xe79", "0xf14", "0xebc", "0xec0", "0xf02", "0xef5", "0xeee", "0xf90", "0xf38", "0xf3c", "0xf7e", "0xf71", "0xf6a", "0x100c", "0xfb4", "0xfb8", "0xffa", "0xfed", "0xfe6", "0x1093", "0x1083", "0x1034", "0x1038", "0x1070", "0x1061", "0x1102", "0x10b7", "0x10bb", "0x10f0", "0x10e3", "0x1171", "0x1126", "0x112a", "0x115f", "0x1152", "0x11f8", "0x11e8", "0x1199", "0x119d", "0x11d5", "0x11c6", "0x12bf", "0x12ad", "0x12a3", "0x1291", "0x122d", "0x1231", "0x127c", "0x126b", "0x1263", "0x1365", "0x1355", "0x1344", "0x12ed", "0x12f1", "0x1330", "0x1320", "0x1319", "0x137c", "0x1381", "0x139d", "0x1397", "0x1415", "0x13bd", "0x13c2", "0x1403", "0x13f9", "0x13f1", "0xd7", "0x14fe", "0x1443", "0x1448", "0x14eb", "0x14df", "0x1472", "0x1477", "0x147e", "0x1499", "0xdd", "0x148f", "0x1494", "0x14cc", "0xde", "0xdf", "0x14c2", "0xe0", "0xe1", "0xe2", "0xe3", "0xe4", "0xe5", "0x14ba", "0xe6", "0xe7", "0xe8", "0xe9", "0xea", "0xeb", "0xec", "0xed", "0xee", "0xef", "0x1524", "0xf0", "0xf1", "0xf2", "0xf3", "0x1531", "0x1536", "0x1540", "0xf4", "0xf5", "0xf6", "0x154f", "0x1554", "0x1570", "0xf7", "0x156a", "0xf8", "0xf9", "0xfa", "0xfb", "0xfc", "0xfd", "0x159a", "0x158e", "0x1592", "0xfe", "0xff", "0x101", "0x102", "0x103", "0x104", "0x105", "0x160a", "0x106", "0x15fe", "0x108", "0x15f2", "0x109", "0x15e6", "0x10a", "0x10b", "0x15dc", "0x10c", "0x10d", "0x15d0", "0x10f", "0x110", "0x111", "0x112", "0x113", "0x114", "0x115", "0x116", "0x117", "0x118", "0x119", "0x11a", "0x11b", "0x11c", "0x11d", "0x11f", "0x120", "0x121", "0x122", "0x1641", "0x1646", "0x123", "0x124", "0x125", "0x1657", "0x1684", "0x18e8", "0x126", "0x127", "0x1675", "0x167a", "0x18bf", "0x128", "0x129", "0x18a1", "0x12a", "0x12b", "0x1698", "0x16ab", "0x16a3", "0x16a9", "0x12c", "0x12d", "0x1879", "0x12e", "0x12f", "0x130", "0x131", "0x1851", "0x1822", "0x17fe", "0x133", "0x134", "0x135", "0x136", "0x137", "0x138", "0x139", "0x13a", "0x13b", "0x13c", "0x13d", "0x13e", "0x17da", "0x13f", "0x17b8", "0x17a2", "0x140", "0x141", "0x142", "0x144", "0x145", "0x146", "0x147", "0x148", "0x178e", "0x149", "0x14a", "0x177b", "0x1771", "0x14b", "0x14d", "0x14e", "0x14f", "0x150", "0x151", "0x152", "0x153", "0x154", "0x155", "0x156", "0x157", "0x158", "0x159", "0x15a", "0x15b", "0x15c", "0x15d", "0x15e", "0x15f", "0x160", "0x161", "0x162", "0x163", "0x164", "0x165", "0x166", "0x167", "0x168", "0x169", "0x16a", "0x16b", "0x16c", "0x16d", "0x16e", "0x16f", "0x170", "0x171", "0x172", "0x173", "0x174", "0x175", "0x176", "0x177", "0x178", "0x179", "0x17a", "0x17b", "0x17c", "0x17d", "0x17e", "0x17f", "0x180", "0x181", "0x183", "0x184", "0x185", "0x187", "0x188", "0x189", "0x18a", "0x18b", "0x18c", "0x18d", "0x18e", "0x18f", "0x190", "0x191", "0x192", "0x193", "0x194", "0x195", "0x196", "0x197", "0x198", "0x199", "0x19a", "0x19b", "0x19c", "0x19d", "0x19e", "0x19f", "0x1a0", "0x1a1", "0x1a2", "0x1a3", "0x1a4", "0x1a5", "0x1a6", "0x1a7", "0x1a8", "0x1a9", "0x1aa", "0x1ab", "0x1ac", "0x1ad", "0x1ae", "0x1af", "0x1b0", "0x1b1", "0x1b2", "0x1b3", "0x1b4", "0x1b5", "0x1b6", "0x1b7", "0x1b9", "0x1ba", "0x1bb", "0x1bc", "0x1bd", "0x197f", "0x1974", "0x196b", "0x19a5", "0x19b4", "0x19b8", "0x19d4", "0x19cd", "0x1aa6", "0x1a99", "0x1a00", "0x1a05", "0x1a86", "0x1a7b", "0x1a69", "0x1a24", "0x1a29", "0x1a5e", "0x1a54", "0x1a4c", "0x1acb", "0x1da8", "0x1d98", "0x1afb", "0x1b00", "0x1d82", "0x1d6c", "0x1b23", "0x1b28", "0x1d4f", "0x1d3a", "0x1b9f", "0x1b89", "0x1b5c", "0x1b61", "0x1b6c", "0x1ba5", "0x1d24", "0x1bd2", "0x1c09", "0x1bdc", "0x1be1", "0x1d0e", "0x1cf9", "0x1ce3", "0x1cd6", "0x1cc9", "0x1cbd", "0x1ca9", "0x1c35", "0x1c39", "0x1c96", "0x1c8a", "0x1c80", "0x1c78", "0x1c70", "0x1be", "0x1bf", "0x1c1", "0x1c2", "0x1c3", "0x1c4", "0x1c5", "0x1c6", "0x1c7", "0x1c8", "0x1c9", "0x1ca", "0x1cb", "0x1cc", "0x1cd", "0x1ce", "0x1cf", "0x1d0", "0x1d2", "0x1d3", "0x1d4", "0x1d5", "0x1d6", "0x1d7", "0x1d8", "0x1d9", "0x1da", "0x1db", "0x1dc", "0x1dd", "0x1e30", "0x1ddb", "0x1de0", "0x1de7", "0x1e02", "0x1df8", "0x1dfd", "0x1e1e", "0x1e16", "0x1eb6", "0x1e61", "0x1e66", "0x1e6d", "0x1e88", "0x1e7e", "0x1e83", "0x1ea4", "0x1e9c", "0x20b2", "0x20a0", "0x1ee7", "0x1eec", "0x2088", "0x207c", "0x2069", "0x2056", "0x1f88", "0x1f75", "0x1f53", "0x1f65", "0x1f6a", "0x1f90", "0x2044", "0x2032", "0x201f", "0x200d", "0x2002", "0x1de", "0x1df", "0x1e0", "0x1ff8", "0x1fef", "0x1e1", "0x1e2", "0x227d", "0x2272", "0x20e6", "0x20eb", "0x2261", "0x2144", "0x2133", "0x210b", "0x2110", "0x211b", "0x214a", "0x2251", "0x2241", "0x21c9", "0x21b9", "0x219a", "0x21ac", "0x21b1", "0x21d1", "0x2232", "0x2223", "0x1e3", "0x1e4", "0x2214", "0x1e5", "0x1e7", "0x1e8", "0x220d", "0x2434", "0x2429", "0x22aa", "0x22af", "0x2418", "0x240e", "0x22d9", "0x22de", "0x23fd", "0x23ed", "0x23dd", "0x2365", "0x2355", "0x2336", "0x2348", "0x234d", "0x236d", "0x23ce", "0x23bf", "0x1e9", "0x1ea", "0x23b0", "0x1eb", "0x1ec", "0x1ed", "0x1ee", "0x23a9", "0x1ef", "0x25fa", "0x25ef", "0x2461", "0x2466", "0x25de", "0x25ce", "0x24be", "0x24ae", "0x2497", "0x24c4", "0x1f0", "0x25be", "0x25ae", "0x254c", "0x253c", "0x251d", "0x252f", "0x2534", "0x2554", "0x25a5", "0x1f1", "0x1f2", "0x259c", "0x258c", "0x1f3", "0x1f4", "0x1f5", "0x2585", "0x274f", "0x2744", "0x2627", "0x262c", "0x2733", "0x2723", "0x2713", "0x26b1", "0x26a1", "0x2682", "0x2694", "0x2699", "0x26b9", "0x270a", "0x2701", "0x26f1", "0x1f6", "0x1f7", "0x26ea", "0x28e1", "0x28d5", "0x277f", "0x2784", "0x28c3", "0x28b2", "0x28a1", "0x1f9", "0x2889", "0x2879", "0x2869", "0x2858", "0x2848", "0x1fa", "0x1fb", "0x1fc", "0x283f", "0x2837", "0x2830", "0x2822", "0x1fd", "0x2a22", "0x2a18", "0x290f", "0x2914", "0x2a08", "0x29f9", "0x29e9", "0x29d2", "0x29c3", "0x29b4", "0x29a5", "0x1fe", "0x1ff", "0x200", "0x299e", "0x2990", "0x2bb6", "0x2bac", "0x2a4e", "0x2a53", "0x2b9c", "0x2b8d", "0x2b7e", "0x2b68", "0x2b59", "0x2b4a", "0x2b08", "0x2af9", "0x2adb", "0x2aed", "0x2af2", "0x2b10", "0x2b3c", "0x2b2e", "0x2bd3", "0x2bee", "0x2c09", "0x2c26", "0x201", "0x203", "0x204", "0x205", "0x206", "0x207", "0x208", "0x209", "0x20a", "0x20b", "0x20c", "0x20d", "0x20e", "0x20f", "0x210", "0x211", "0x2c7d", "0x212", "0x213", "0x215", "0x216", "0x217", "0x2ca7", "0x2cdb", "0x2cd1", "0x218", "0x219", "0x21a", "0x21b", "0x21c", "0x21d", "0x21e", "0x21f", "0x2cf9", "0x2d42", "0x2d06", "0x2d41", "0x220", "0x2d13", "0x2d40", "0x221", "0x2d20", "0x2d3f", "0x222", "0x2d2d", "0x2d3e", "0x223", "0x2d38", "0x2d3d", "0x2d4d", "0x2d51", "0x2d8f", "0x2d6d", "0x2d72", "0x2d80", "0x224", "0x2dac", "0x2db1", "0x2e36", "0x2e26", "0x2e16", "0x2e06", "0x225", "0x226", "0x227", "0x2dfe", "0x2df7", "0x2e8d", "0x2e58", "0x228", "0x229", "0x22a", "0x2e85", "0x22b", "0x22c", "0x2e7b", "0x22d", "0x2e75", "0x22e", "0x22f", "0x2eae", "0x230", "0x231", "0x232", "0x233", "0x234", "0x235", "0x236", "0x237", "0x238", "0x2ec6", "0x239", "0x23a", "0x23b", "0x23c", "0x36fb", "0x23d", "0x2efa", "0x2eff", "0x2f06", "0x2f21", "0x2f17", "0x2f1c", "0x36e5", "0x23e", "0x23f", "0x240", "0x2f46", "0x2f3b", "0x36b9", "0x241", "0x242", "0x243", "0x36d7", "0x244", "0x245", "0x246", "0x247", "0x248", "0x249", "0x36b2", "0x24a", "0x30fb", "0x2f7f", "0x2faa", "0x24b", "0x30e7", "0x24c", "0x24d", "0x30d2", "0x24e", "0x30be", "0x30ab", "0x3097", "0x2fc2", "0x2fc6", "0x3083", "0x2fe0", "0x2fe5", "0x3070", "0x3064", "0x3011", "0x3016", "0x3051", "0x24f", "0x3048", "0x3038", "0x250", "0x251", "0x252", "0x32cb", "0x310e", "0x3139", "0x32b7", "0x32a2", "0x328e", "0x327b", "0x314b", "0x314f", "0x3268", "0x325c", "0x3179", "0x317e", "0x3249", "0x3236", "0x31a0", "0x31a5", "0x321b", "0x31bf", "0x31c4", "0x254", "0x255", "0x256", "0x3201", "0x258", "0x259", "0x25a", "0x25b", "0x261", "0x262", "0x263", "0x264", "0x265", "0x266", "0x267", "0x25c", "0x25d", "0x25e", "0x25f", "0x260", "0x268", "0x31f8", "0x269", "0x26a", "0x26b", "0x26c", "0x31e8", "0x26d", "0x26e", "0x26f", "0x270", "0x271", "0x272", "0x273", "0x274", "0x275", "0x276", "0x277", "0x278", "0x279", "0x27a", "0x27b", "0x27c", "0x27d", "0x27e", "0x27f", "0x280", "0x281", "0x282", "0x283", "0x284", "0x285", "0x286", "0x287", "0x288", "0x289", "0x28a", "0x28b", "0x28c", "0x28d", "0x28e", "0x28f", "0x290", "0x291", "0x293", "0x294", "0x295", "0x296", "0x297", "0x298", "0x299", "0x29a", "0x29c", "0x29d", "0x29e", "0x29f", "0x2a0", "0x2a1", "0x2a2", "0x2a3", "0x2a5", "0x2a6", "0x2a7", "0x2a8", "0x2a9", "0x2aa", "0x2ab", "0x2ac", "0x2ad", "0x2ae", "0x2af", "0x2b0", "0x2b1", "0x2b2", "0x2b3", "0x2b4", "0x2b5", "0x2b6", "0x2b7", "0x2b8", "0x2ba", "0x2bb", "0x2bc", "0x2bd", "0x2be", "0x2bf", "0x2c0", "0x2c1", "0x2c2", "0x2c3", "0x2c4", "0x2c5", "0x2c6", "0x2c7", "0x2c8", "0x2c9", "0x2ca", "0x2cb", "0x2cc", "0x2cd", "0x2ce", "0x2cf", "0x2d0", "0x2d1", "0x2d3", "0x2d4", "0x2d5", "0x2d6", "0x2d7", "0x2d9", "0x2d8", "0x3481", "0x2da", "0x2db", "0x2dc", "0x32de", "0x2dd", "0x2de", "0x2df", "0x2e0", "0x2e1", "0x3309", "0x2e2", "0x2e3", "0x2e4", "0x2e5", "0x2e6", "0x2e7", "0x2e9", "0x2ea", "0x2eb", "0x2f0", "0x2f1", "0x2f2", "0x2f3", "0x2ec", "0x2ed", "0x2ee", "0x2ef", "0x2f4", "0x346d", "0x2f5", "0x2fb", "0x2fc", "0x2fd", "0x2fe", "0x2f7", "0x2f8", "0x2f9", "0x2fa", "0x2ff", "0x3458", "0x300", "0x301", "0x304", "0x305", "0x306", "0x302", "0x303", "0x307", "0x3444", "0x308", "0x309", "0x30d", "0x30e", "0x30f", "0x310", "0x30a", "0x30b", "0x311", "0x3431", "0x312", "0x313", "0x314", "0x315", "0x316", "0x317", "0x318", "0x319", "0x31c", "0x31b", "0x31d", "0x341d", "0x31e", "0x31f", "0x320", "0x321", "0x322", "0x323", "0x324", "0x325", "0x326", "0x327", "0x3321", "0x328", "0x329", "0x32a", "0x3325", "0x32b", "0x32c", "0x32d", "0x32e", "0x3409", "0x32f", "0x3380", "0x330", "0x331", "0x332", "0x333", "0x334", "0x335", "0x336", "0x337", "0x338", "0x339", "0x33a", "0x33e", "0x33f", "0x340", "0x33b", "0x33c", "0x33d", "0x341", "0x336d", "0x342", "0x343", "0x344", "0x345", "0x346", "0x347", "0x348", "0x349", "0x34a", "0x34b", "0x3344", "0x34c", "0x34e", "0x34f", "0x3349", "0x350", "0x352", "0x353", "0x3353", "0x354", "0x355", "0x356", "0x357", "0x358", "0x3385", "0x359", "0x35a", "0x35b", "0x35c", "0x35d", "0x35e", "0x35f", "0x360", "0x361", "0x362", "0x363", "0x364", "0x365", "0x366", "0x367", "0x368", "0x369", "0x36a", "0x36b", "0x36c", "0x36d", "0x36e", "0x36f", "0x370", "0x371", "0x372", "0x373", "0x377", "0x378", "0x379", "0x374", "0x375", "0x376", "0x37a", "0x33fd", "0x37b", "0x37c", "0x37d", "0x37e", "0x37f", "0x380", "0x381", "0x383", "0x384", "0x385", "0x386", "0x387", "0x388", "0x389", "0x33aa", "0x38b", "0x38c", "0x38d", "0x38e", "0x33af", "0x38f", "0x390", "0x391", "0x392", "0x393", "0x33ea", "0x394", "0x395", "0x396", "0x39c", "0x39d", "0x39e", "0x39f", "0x3a0", "0x3a1", "0x3a2", "0x397", "0x398", "0x399", "0x39b", "0x3a3", "0x33e1", "0x3a4", "0x3a5", "0x3a6", "0x3a7", "0x33d1", "0x3a8", "0x3a9", "0x3aa", "0x3ab", "0x3ac", "0x3ad", "0x3af", "0x3b0", "0x3b1", "0x3b2", "0x3b3", "0x3b4", "0x3b5", "0x3b6", "0x3b7", "0x3b8", "0x3b9", "0x3ba", "0x3bb", "0x3bc", "0x3bd", "0x3be", "0x3c0", "0x3c1", "0x3c2", "0x3c3", "0x3c4", "0x3c5", "0x3c6", "0x3c7", "0x3c9", "0x3ca", "0x3cb", "0x3cc", "0x3cd", "0x3ce", "0x3cf", "0x3d0", "0x3d1", "0x3d2", "0x3d3", "0x3d4", "0x3d5", "0x3d6", "0x3d7", "0x3d8", "0x3d9", "0x3da", "0x3db", "0x3dc", "0x3dd", "0x3de", "0x3df", "0x3e0", "0x3e1", "0x3e2", "0x3e3", "0x3e4", "0x3e5", "0x3e6", "0x3e7", "0x3e8", "0x3e9", "0x3ea", "0x3eb", "0x3ec", "0x3ed", "0x3ee", "0x3ef", "0x3f0", "0x3f2", "0x3f3", "0x3f4", "0x3f6", "0x3f7", "0x3f8", "0x3f9", "0x3fa", "0x3fb", "0x3fc", "0x3fd", "0x3fe", "0x3ff", "0x400", "0x401", "0x403", "0x402", "0x3679", "0x404", "0x405", "0x406", "0x3494", "0x407", "0x408", "0x409", "0x40a", "0x40b", "0x34bf", "0x40c", "0x40d", "0x40e", "0x40f", "0x410", "0x411", "0x412", "0x413", "0x414", "0x415", "0x41a", "0x41b", "0x41c", "0x41d", "0x416", "0x417", "0x418", "0x419", "0x41e", "0x3665", "0x41f", "0x420", "0x425", "0x427", "0x428", "0x421", "0x422", "0x423", "0x424", "0x429", "0x3650", "0x42a", "0x42b", "0x42f", "0x430", "0x42c", "0x42d", "0x431", "0x363c", "0x432", "0x433", "0x437", "0x438", "0x439", "0x43a", "0x434", "0x435", "0x436", "0x43b", "0x3629", "0x43c", "0x43d", "0x43f", "0x440", "0x441", "0x443", "0x444", "0x445", "0x446", "0x447", "0x448", "0x449", "0x44a", "0x34d1", "0x44b", "0x44c", "0x44d", "0x34d5", "0x44e", "0x44f", "0x450", "0x451", "0x3616", "0x453", "0x454", "0x455", "0x456", "0x457", "0x458", "0x459", "0x45a", "0x45b", "0x45c", "0x460", "0x461", "0x462", "0x45d", "0x45e", "0x45f", "0x360a", "0x464", "0x465", "0x466", "0x467", "0x468", "0x469", "0x46a", "0x46b", "0x46c", "0x46d", "0x46e", "0x46f", "0x470", "0x471", "0x472", "0x473", "0x34ff", "0x474", "0x475", "0x476", "0x477", "0x3504", "0x478", "0x479", "0x47a", "0x47b", "0x47c", "0x35f7", "0x47d", "0x47e", "0x47f", "0x480", "0x481", "0x482", "0x483", "0x484", "0x485", "0x486", "0x487", "0x48c", "0x48d", "0x48e", "0x48f", "0x488", "0x489", "0x48a", "0x48b", "0x490", "0x35e4", "0x491", "0x492", "0x493", "0x494", "0x495", "0x496", "0x497", "0x498", "0x499", "0x49b", "0x49c", "0x49d", "0x3526", "0x49f", "0x4a0", "0x4a1", "0x352b", "0x4a2", "0x4a3", "0x4a4", "0x4a5", "0x35c9", "0x4a6", "0x4a7", "0x4a8", "0x4a9", "0x4aa", "0x4ab", "0x4ac", "0x4ad", "0x4ae", "0x4af", "0x358f", "0x4b0", "0x4b1", "0x4b2", "0x4b6", "0x4b7", "0x4b8", "0x4b3", "0x4b4", "0x4b5", "0x4b9", "0x357c", "0x4ba", "0x4bb", "0x4bc", "0x4bd", "0x4be", "0x4bf", "0x4c0", "0x4c1", "0x4c2", "0x4c3", "0x3553", "0x4c4", "0x4c5", "0x4c6", "0x4c7", "0x3558", "0x4c8", "0x4c9", "0x4ca", "0x4cb", "0x3562", "0x4cc", "0x4cd", "0x4ce", "0x4cf", "0x4d0", "0x3595", "0x4d1", "0x4d2", "0x4d4", "0x4d5", "0x4d6", "0x4d7", "0x4d8", "0x4d9", "0x4db", "0x4dc", "0x4dd", "0x4de", "0x4df", "0x4e0", "0x4e2", "0x4e3", "0x4e4", "0x4ea", "0x4eb", "0x4ec", "0x4ed", "0x4ee", "0x4ef", "0x4f0", "0x4e5", "0x4e6", "0x4e7", "0x4e8", "0x4e9", "0x4f1", "0x35c0", "0x4f3", "0x4f4", "0x4f5", "0x35b0", "0x4f6", "0x4f7", "0x4f8", "0x4f9", "0x4fa", "0x4fb", "0x4fc", "0x4fd", "0x4fe", "0x4ff", "0x500", "0x501", "0x502", "0x503", "0x504", "0x505", "0x506", "0x508", "0x509", "0x50a", "0x50b", "0x50c", "0x50d", "0x50e", "0x50f", "0x510", "0x511", "0x512", "0x513", "0x514", "0x515", "0x516", "0x517", "0x518", "0x51a", "0x51b", "0x51c", "0x51d", "0x51e", "0x51f", "0x520", "0x521", "0x522", "0x524", "0x525", "0x526", "0x527", "0x528", "0x529", "0x52a", "0x52b", "0x52c", "0x52d", "0x52e", "0x52f", "0x530", "0x531", "0x532", "0x533", "0x534", "0x536", "0x537", "0x538", "0x539", "0x53a", "0x53b", "0x53c", "0x53d", "0x53e", "0x53f", "0x540", "0x541", "0x542", "0x543", "0x544", "0x545", "0x546", "0x547", "0x548", "0x549", "0x54a", "0x54b", "0x54c", "0x54d", "0x54e", "0x54f", "0x550", "0x551", "0x552", "0x553", "0x554", "0x555", "0x556", "0x557", "0x558", "0x559", "0x55a", "0x55b", "0x55c", "0x55d", "0x55e", "0x55f", "0x560", "0x561", "0x562", "0x3692", "0x563", "0x564", "0x565", "0x3697", "0x567", "0x568", "0x569", "0x56b", "0x369f", "0x56c", "0x36b6", "0x56d", "0x56e", "0x56f", "0x570", "0x571", "0x572", "0x573", "0x574", "0x575", "0x576", "0x577", "0x578", "0x579", "0x57f", "0x580", "0x581", "0x582", "0x583", "0x584", "0x585", "0x57a", "0x57b", "0x57c", "0x57d", "0x57e", "0x586", "0x36ce", "0x587", "0x588", "0x589", "0x58a", "0x58b", "0x58c", "0x58d", "0x58e", "0x58f", "0x590", "0x591", "0x592", "0x593", "0x594", "0x595", "0x596", "0x597", "0x598", "0x599", "0x59a", "0x59b", "0x59c", "0x59d", "0x59f", "0x5a0", "0x5a1", "0x5a2", "0x5a3", "0x5a4", "0x5a6", "0x5a7", "0x5a8", "0x5a9", "0x5aa", "0x5ab", "0x3720", "0x3763", "0x3748", "0x374d", "0x375a", "0x37b7", "0x377a", "0x377f", "0x37a9", "0x37a2", "0x379c", "0x37b0", "0x3800", "0x37d8", "0x37f6", "0x37f0", "0x389d", "0x3892", "0x3883", "0x3878", "0x3856", "0x384c", "0x3850", "0x3868", "0x3870", "0x38b9", "0x38b2", "0x38c6", "0x38cb", "0x38e1", "0x38db", "0x38f1", "0x38f6", "0x3920", "0x391a", "0x3912", "0x393a", "0x3958", "0x3972", "0x39de", "0x39f3", "0x39f7", "0x3a01", "0x3a06", "0x3a13", "0x3a31", "0x3a36", "0x3a53", "0x3a46", "0x3a5f", "0x3aa1", "0x3a86", "0x3a8b", "0x3a98", "0x3b01", "0x3ac7", "0x3acc", "0x3af9", "0x3af2", "0x3ae4", "0x3b47", "0x3b17", "0x3b1c", "0x3b39", "0x3b33", "0x3b40", "0x3b63", "0x3b68", "0x3b73", "0x3b86", "0x3b8b", "0x3b96", "0x3ba9", "0x3bae", "0x3bb9", "0x3bde", "0x3bd7", "0x3bf9", "0x3bfe", "0x3c10", "0x3c15", "0x3c20", "0x3c63", "0x3c48", "0x3c4d", "0x3c5a", "0x3cc8", "0x3c78", "0x3c7d", "0x3cbd", "0x3cad", "0x3ca7", "0x3d8f", "0x3d84", "0x3d72", "0x3d67", "0x3d31", "0x3d14", "0x3d18", "0x3d22", "0x3d47", "0x3d5f", "0x3d50", "0x3dad", "0x3db2", "0x3e37", "0x3e2a", "0x3e1c", "0x3e0e", "0x3dfe", "0x3e6a", "0x3e63", "0x3ec0", "0x3eb8", "0x3eab", "0x3ea3", "0x3e98", "0x3eee", "0x3f10", "0x3f32", "0x3ed8", "0x3edf", "0x3ee6", "0x3eec", "0x3f53", "0x3ef7", "0x3f01", "0x3f08", "0x3f0e", "0x3f19", "0x3f20", "0x3f2a", "0x3f30", "0x3f3b", "0x3f42", "0x3f49", "0x3f52", "0x3f77", "0x3f6f", "0x3fc2", "0x3fa7", "0x3fac", "0x3fb9", "0x3fdb", "0x3fe0", "0x3feb", "0x4002", "0x4007", "0x4012", "0x4028", "0x402d", "0x4038", "0x407b", "0x4060", "0x4065", "0x4072", "0x40c0", "0x40a5", "0x40aa", "0x40b7", "0x40d8", "0x40dd", "0x40e8", "0x412b", "0x4110", "0x4115", "0x4122", "0x4143", "0x4148", "0x4153", "0x4196", "0x417b", "0x4180", "0x418d", "0x41a5", "0x41a9", "0x41b5", "0x41f6", "0x41db", "0x41e0", "0x41ed", "0x423b", "0x4220", "0x4225", "0x4232", "0x4280", "0x4265", "0x426a", "0x4277", "0x42c5", "0x42aa", "0x42af", "0x42bc", "0x4305", "0x42fe", "0x432b", "0x4324", "0x4341", "0x434f", "0x435d", "0x436a", "0x43aa", "0x438f", "0x4394", "0x43a1", "0x43ef", "0x43e5", "0x43dd", "0x43d3", "0x4400", "0x4405", "0x4410", "0x441d", "0x4486", "0x4441", "0x4447", "0x4477", "0x4456", "0x445c", "0x4469", "0x4494", "0x4498", "0x44a4", "0x44c0", "0x44c4", "0x4561", "0x4556", "0x454b", "0x453f", "0x452a", "0x451f", "0x4537", "0x4587", "0x458b", "0x45ec", "0x45e1", "0x45d6", "0x45cb", "0x4671", "0x4609", "0x460e", "0x4665", "0x4643", "0x463c", "0x465e", "0x4696", "0x46af", "0x46bd", "0x46cb", "0x46d9", "0x46e7", "0x46f5", "0x4703", "0x4711", "0x471f", "0x472d", "0x473b", "0x4748", "0x46a9", "0x4769", "0x480e", "0x478d", "0x4791", "0x4801", "0x47fa", "0x47f3", "0x47eb", "0x47e4", "0x481f", "0x4824", "0x4839", "0x486f", "0x4864", "0x4869", "0x487b", "0x48cf", "0x488f", "0x4894", "0x48c4", "0x48bb", "0x48b4", "0x48e6", "0x48f3", "0x48f8", "0x491e", "0x4914", "0x4919", "0x492e", "0x4954", "0x4946", "0x4963", "0x4980", "0x4985", "0x49a0", "0x49b2", "0x49c4", "0x4a41", "0x4a36", "0x4a2a", "0x49e8", "0x49fb", "0x4a0e", "0x4a0c", "0x4a15", "0x4a24", "0x4a22", "0x4aa6", "0x4a9b", "0x4a8e", "0x4a83", "0x4a78", "0x4ab5", "0x4b0a", "0x4afd", "0x4af3", "0x4aea", "0x4b2d", "0x4b62", "0x4b54", "0x4b71", "0x4b85", "0x4b92", "0x4ba2", "0x4bbf", "0x4bf4", "0x4cb9", "0x4cc7", "0x4ccc", "0x4cdb", "0x4ceb", "0x4ce6", "0x4ce9", "0x4cf4", "0x4cfa", "0x4d06", "0x4d09", "0x4d11", "0x4d39", "0x4d2b", "0x4d48", "0x4d4c", "0x4d58", "0x4d63", "0x4d68", "0x4d9e", "0x4d77", "0x4d7c", "0x4d94", "0x4d8e", "0x4dc7", "0x4e15", "0x4de5", "0x4dea", "0x4e0a", "0x4e03", "0x4e2c", "0x5fa", "0x695", "0x77e", "0x84d", "0x8d9", "0x965", "0x9f1", "0xa7d", "0xaf1", "0xb65", "0xbd9", "0xc55", "0xcd1", "0xd4d", "0xdc9", "0xe38", "0xea7", "0xf23", "0xf9f", "0x101b", "0x10a2", "0x1111", "0x1180", "0x1207", "0x12d0", "0x1374", "0x13a7", "0x1420", "0x1426", "0x142a", "0x150a", "0x152a", "0x1547", "0x157a", "0x15a2", "0x1616", "0x190a", "0x198a", "0x19ad", "0x19c2", "0x19da", "0x1ab1", "0x1ad1", "0x1db6", "0x1e39", "0x1ebf", "0x20c2", "0x2286", "0x243d", "0x2603", "0x2758", "0x28eb", "0x2a2a", "0x2bbe", "0x2bd9", "0x2bf4", "0x2c0f", "0x2c2d", "0x2c46", "0x2c4d", "0x2c66", "0x2c84", "0x2c90", "0x2cae", "0x2ce2", "0x2ced", "0x2d44", "0x2d53", "0x2d97", "0x2e47", "0x2e9c", "0x2eb4", "0x2ecc", "0x3709", "0x3727", "0x376c", "0x37c7", "0x380f", "0x38a7", "0x38bf", "0x38e9", "0x392a", "0x3940", "0x3960", "0x3978", "0x39e6", "0x3a1c", "0x3a59", "0x3a65", "0x3aaa", "0x3b0b", "0x3b56", "0x3b79", "0x3b9c", "0x3bbf", "0x3be5", "0x3c00", "0x3c27", "0x3c6c", "0x3cd7", "0x3d99", "0x3e4b", "0x3e71", "0x3ecb", "0x3f55", "0x3f7f", "0x3f86", "0x3fcb", "0x3ff2", "0x4019", "0x403f", "0x4084", "0x40c9", "0x40ef", "0x4134", "0x415a", "0x419f", "0x41ba", "0x41ff", "0x4244", "0x4289", "0x42ce", "0x42da", "0x42e6", "0x430c", "0x4332", "0x436e", "0x43b3", "0x43f9", "0x4416", "0x4428", "0x448e", "0x44a9", "0x4570", "0x45fb", "0x4683", "0x4686", "0x474f", "0x476f", "0x4819", "0x4827", "0x483f", "0x4849", "0x4875", "0x4881", "0x48e0", "0x48ec", "0x4925", "0x4928", "0x4934", "0x495d", "0x4969", "0x496c", "0x4987", "0x4993", "0x4a4b", "0x4aaf", "0x4abb", "0x4ac3", "0x4b17", "0x4b1a", "0x4b1d", "0x4b20", "0x4b23", "0x4b26", "0x4b36", "0x4b39", "0x4b3c", "0x4b3f", "0x4b42", "0x4b6b", "0x4b77", "0x4b7c", "0x4b7f", "0x4b8b", "0x4b9b", "0x4bad", "0x4bc5", "0x4bd7", "0x4bfb", "0x4c0d", "0x4c1f", "0x4c29", "0x4c33", "0x4c39", "0x4c43", "0x4c4d", "0x4c57", "0x4c61", "0x4c6b", "0x4c75", "0x4cc1", "0x4ccf", "0x4cd4", "0x4cee", "0x4d0b", "0x4d19", "0x4d42", "0x4d5d", "0x4d6b", "0x4dad", "0x4dcd", "0x4dd9", "0x4e25", "0x286ab", "0x600b00200700a009006006008007006006005002004002003002001000", "0x200600a01000600600500900600700600f00600e00200c00a00200d00c", "0x200600a01700601600601100200900a015006014006013002009012011", "0x1200201d01c00601b00601a00200901200900601900601100200900a018", "0x200600a02100200600a02000200600a00201f01500601500601e002009", "0x200600a02600200600a02500200600a02400200600a02300200600a022", "0x602f00602e00602d00602c00602b00602a00602900602800201500a027", "0x603500603400200901200700603300601100200900a002032002031030", "0x503900600603801c00603700603600200901201600601100200700a01c", "0x801c00603c00603b00200901203a00603300601100200900a016006006", "0x3801c00603e00603d00200901201500600900601100200900a03a006006", "0xa01500600900604000200901201500600700603f002009012007006006", "0x601100200700a01c006043006042002009012041006016006011002009", "0x4904800600603804700600603800204601c006045006044002009012007", "0x600700600f00604c00200f00a04b00604a00200700a014006006008002", "0x200900a01500604f00605000200901204f00600603804e00604d00604d", "0x1205400601100200700a01c006053006052002009012051006016006011", "0x605800605900200901205800600603800205701c006056006055002009", "0x200900a01c00605b00605a00200901200900603300601100200900a015", "0x604d00605e00200c00a01c00605d00605c002009012015006033006011", "0xa00206201c00606100606000200901205f00601100200700a007006007", "0x606600200901206500601100200700a06400606400606400606300200c", "0x601100200900a01500601500601500601500606800201601201c006067", "0x600606d01c00606c00606b00200901206a00601100200700a06900605f", "0x607000200901200f00601100200700a01500606f00606e002009012007", "0x607500600f00600700607400201400a00207300700600607201c006071", "0x200901207700601100200700a07600600606d007006007006007006016", "0x607a00200901203a00601100200700a03a00600603801c006079006078", "0x600603807f00600700607e00200900a07d00607c00200700a01c00607b", "0x604d00608100200901201500600f00608000200901200f00600603804d", "0x200901208300601600601100200900a01500604e006082002009012015", "0x600603802b00600603802c00600603802900600603801c006085006084", "0x200700a02d00600603802e00600603802f00600603803000600603802a", "0x600700600700608800200c00a01c00608700608600200901204d006011", "0x600603801c00608a00608900200901201500602e00601100200900a007", "0x601100200700a00900601500608c00200901205800608b00200700a033", "0x609000200700a05800608f00200700a01c00608e00608d002009012015", "0xa01400600603801c00609200609100200901200900601100200700a058", "0x602900601100200900a01c006094006093002009012058006011002007", "0x601100200900a00700609700200700a01c006096006095002009012015", "0x200901206900601100200700a01c00609900609800200901201500604e", "0x609d00609c00200901201500602d00601100200900a01c00609b00609a", "0x60a000609f00200901201500603000601100200900a09e00200600a01c", "0x200900a01c0060a20060a100200901201500602f00601100200900a01c", "0xa0070060a500200700a01c0060a40060a300200901201500602a006011", "0x60a80060a700200901201500602b00601100200900a0070060a6002007", "0x60aa00200901201500602c00601100200900a0070060a900200700a01c", "0x200900a00700604d0060ad00200900a0070060ac00200700a01c0060ab", "0x200900a0070060b000200700a0070060af00200700a00700604d0060ae", "0x601600601100200900a0150060100060b20020090120070060070060b1", "0x6d00f00604d00604d0060b600200c00a01c0060b50060b40020090120b3", "0x600606d00700600f00600f0060770060b90060b800200f00a0b7006006", "0x6d01000600600801c0060bd0060bc0020090120bb00601100200700a0ba", "0x201600a01c0060c10060c00020090120bf00601100200700a0be006006", "0x20c401201c0060c30060c200200901201500600700603a00604e006011", "0x60ce0060cd0060cc0060cb0060ca0060c90060c80060c70060c60060c5", "0x200901201500600900600900601100200c00a0d20060d10060d00060cf", "0x60d60060d500200901201600600606d07f00600603801c0060d40060d3", "0x60d80020090120d700601100200700a01600601600601100200900a015", "0x120020dc01c0060db0060da0020090120b900601100200700a01c0060d9", "0x200901201500600700604e00601100200c00a0090060540060dd002009", "0x60e20020090120090060160060e10020090120020e001c0060df0060de", "0xa0090060580060e40020090120090060070060e3002009012015006054", "0x60bf0060e800200901201c0060e70060e60020090120e5006011002007", "0x605f0060e900200901200700600f00600700600700601100201600a015", "0x601100200700a01c0060ec0060eb0020090120ea00601100200700a009", "0x200901204d00604d0060f000200901201c0060ef0060ee0020090120ed", "0x1201c0060f40060f30020090120f200601100200700a0090060650060f1", "0x601100200700a0650060650060f60020090120090060bb0060f5002009", "0x120fa0060060720020f904e00600603801c0060f80060f700200901206f", "0x60fe0060fd0020090120fc00601100200700a00900604d0060fb002009", "0x610100200901201c0061000060ff00200901206400601100200700a01c", "0x200901201500600700601600601100200c00a009006006038015006065", "0x210800210710606400606400610500200901200210401c006103006102", "0x10d00900610c01600600610b00600600610b00200600610b00210a002109", "0x700600611001600600610f01700600610e01b00600610f0c400600610e", "0x6500600610b065006006114002007006113065006006112065006006111", "0x711700211805400600610b002007054006007117015006006116002115", "0x11b00600610b00211a01500600611205400600610e002119006007054006", "0x2c00600611602b00600611602a00600611602900600611600211d00211c", "0x3300600611603000600611602f00600611602e00600611602d006006116", "0x3a00900610c01400600610b03300600610b03900600610b04800600610b", "0x700600611100700600611f03300600611203500600610f11e00600610e", "0x900600611103c00900610c00900600610b00700600610b007006006112", "0x610b002007120006007117037006006116016006006116009006006112", "0x7006006123122007006121014006006112006007120006007117120006", "0x1600600611212500700612112400900610c01c006006116019006006116", "0x610e03900600612907d00900610c002128039006006127126007006121", "0x610c07d00600610b03a00600611203a00600611103c00600610f124006", "0x610c00700600612710d00600611203e00600610f12a00600610e03e009", "0x610f12d00600610e12c00900610c00700600612912b00600610e12a009", "0x610f12e00600610e12b00900610c03300600611104100600610e043006", "0x610c04f00600612704800600612704700600612712c006006112045006", "0x610b04f00600612905100600610e05300600610f12f00600610e041009", "0x611204700600612904800600612904300900610c04f00600610b047006", "0x610c12d00900610c13200600611204f006006112131006006112130006", "0x610c05400600611205400600611105600600610f13300600610e045009", "0x610b05800600612913400600610e04700900610c05800600612712e009", "0x610c00c00600610b05b00600610f13500600610e13100900610c058006", "0x610c04b00900610c04d00900610c136006006112058006006112130009", "0x610c13200900610c05d00600611213700600610e04f00900610c04e009", "0x610c13300900610c05600900610c12f00900610c05300900610c051009", "0x610e13500900610c05b00900610c13400900610c13600900610c058009", "0x610c05f00600610b05f00600611205f00600611106100600610f138006", "0x610c13900600610b13900600611213900600611113700900610c05d009", "0x610c06700600610f13b00600610e06100900610c13a00700612105f009", "0x611106c00600610f13c00600610e13900900610c06400900610c138009", "0x612113b00900610c06700900610c06a00600610b06a00600611206a006", "0x711700700600613e06c00900610c06a00900610c06900900610c13d007", "0x614013f00600610e00600713f00600711713f00600610b00200713f006", "0x711701b00600611613c00900610c01000600611f007006006114007006", "0x60070170060071170060070c40060071170c400600610b0020070c4006", "0x214300200700612100214207100600610f14100600610e06f00900610c", "0x614007900600610f14600600610e13f00900610c145006006112002144", "0x611200f00600611207600600610f04e006006116014006006111076006", "0x611614700700612105d00600610f07100900610c04e00600610b075006", "0x612100600711e00600711711e00600610b00200711e006007117035006", "0x610c14900700612100600700612103a00600612701500600610b148007", "0x611607f00600611603a00600612907b00600610f14a00600610e141009", "0x200712400600711703c00600611614500900610c0c700600610b0c7006", "0x614d14c00700612114b00600611200600712400600711712400600610b", "0x711703e00600611607500900610c07f00600610b01600600611007d006", "0x200712b00600711700600712a00600711712a00600610b00200712a006", "0x711704300600611607600900610c00600712b00600711712b00600610b", "0x600704100600711700600712d00600711712d00600610b00200712d006", "0x711712e00600610b00200712e00600711704500600611607700900610c", "0x14e00600610e07900900610c00f00600612704d00600612700600712e006", "0x14b00900610c04d00600612914f00600610e14600900610c00f006006129", "0x5100600711704f00600611608300600610e08500600610f15000600610e", "0x4d00600611212f00600610b00200712f006007117053006006116002007", "0x15200600611215100600611200600712f006007117006007051006007117", "0x3000600612702a00600612702b00600612702c006006127029006006127", "0xf00600614d04f00600610f02d00600612702e00600612702f006006127", "0xf00600611104e00600614d04d00600614d00700600614d153007006121", "0x611400215508700600610f15400600610e07b00900610c00f006006114", "0x610c02e00600610b02e00600611103300600610f054006006114002006", "0x215915800700612115700600611615600700612104f00600611114a009", "0x15700600614d15700600610b15a007006121157006006112157006006111", "0x15100900610c0c700900610c07f00900610c00c00700612115700600610f", "0x2d00600612902c00600612902b00600612902a006006129029006006129", "0x2e00600612908a00600610f15b00600610e03000600612902f006006129", "0x2d00600611202e00600611202f006006112030006006112029006006112", "0x15c00600611204e00600611202a00600611202b00600611202c006006112", "0x16100600611216000600611215f00600611215e00600611215d006006112", "0x166007006121165007006121164007006121163006006112162006006112", "0x600713300600711713300600610b002007133006007117056006006116", "0x612700600713400600711713400600610b002007134006007117002167", "0x610c16800600610b16900700612116800600611605800600614d033006", "0x60070ed0060071170ed00600610b0020070ed00600711700216a152009", "0xd000600611608e00600611216b00600610e14e00900610c0ed006006114", "0x3300600612916c00600610b16c00600611614f00900610c0d000600610b", "0x13500600711705b00600611609200600610f16d00600610e08300900610c", "0x16f00700612116e00600611200600713500600711713500600610b002007", "0x2a00600611101400600612708500900610c00c00600614d170007006121", "0x15e00900610c02b00600610b02b00600611115000900610c02a00600610b", "0x2d00600614d02c00600614d02b00600614d02a00600614d02900600614d", "0x2c00600610b02c00600611103000600614d02f00600614d02e00600614d", "0x2900600610b02900600611117200700612117100600611216100900610c", "0x200700617405800600611109400600610f17300600610e16000900610c", "0xd100600611609600600610f17500600610e15d00900610c15f00900610c", "0x15c00900610c00f00600610b01400600612916300900610c0d100600610b", "0x700700612117800700612117700700612109900600611217600600610e", "0x2d00600610b02d00600611108700900610c16200900610c179007006121", "0x17a00600610e15700900610c04d00600610b05f00600610f15400900610c", "0x610b06900600611200200706900600711706900600611109b00600610f", "0x610e15b00900610c05f00600611600200700617b08a00900610c069006", "0xcc00600611616e00900610c00900706900600711709d00600610f17c006", "0x3300600611403900600611400600600611416800900610c0cc00600610b", "0x610e0ed00900610c03000600610b13700600610b006007137006007117", "0x610f17e00600610e08e00900610c02f00600610b0a000600610f17d006", "0x610b0cd0060061160a400600610f17f00600610e16b00900610c0a2006", "0x611616c00900610c0d200600610b0d20060061160d000900610c0cd006", "0xa800600610f18000600610e09200900610c00200713700600711705d006", "0x18100600610e17100900610c16d00900610c0ce00600610b0ce006006116", "0x18200700612109400900610c0cf00600610b0cf0060061160ab00600610f", "0xc800600610b0c800600611617300900610c18400700617b183007006121", "0x6900600711717500900610c0c900600610b0c900600611609600900610c", "0x61161850070061210d100900610c0ca00600610b0ca006006116007007", "0x200713800600711706100600611609900900610c0cb00600610b0cb006", "0x611417600900610c05f00600614d00600713800600711713800600610b", "0x614d139006006116009007006186002007006186015006006114009006", "0x610c09b00900610c06400600610b06400600611213900600610f139006", "0x13b00600711713b00600610b00200713b00600711706700600611617a009", "0x13c00600711706c00600611606a00600611609d00900610c002187006007", "0x17c00900610c06a00600610f00600713c00600711713c00600610b002007", "0x18c00700612118b00700612118a007006121189007006121188007006121", "0x170060071170cc00900610c0c600600610b0c600600611618d007006121", "0x61230b300600610e0b500600610f18e00600610e0a000900610c002007", "0x610f0ba0060061400bd00600610f18f00600610e17d00900610c010006", "0x20071410060071170710060061160770060061120b90060061120ba006", "0x200714600600711707900600611600600714100600711714100600610b", "0x611004e00600610f07700600610b00600714600600711714600600610b", "0x610f19000600610e0a200900610c04b00600610b006007006113010006", "0x61120100060061910be00600614d0be00600610b0be0060061400c1006", "0x610c17e00900610c06500600614d02f00600611119200700612100c006", "0x61210be00600611219400700612119300700612117f00900610c0a4009", "0x61211970070061210cd00900610c030006006111196007006121195007", "0x610c03a00600610b01600600611f19a007006121199007006121198007", "0x200714a00600711707b0060061160c300600610f19b00600610e0d2009", "0x611219c0060061110a800900610c00600714a00600711714a00600610b", "0x219e0d400600610f19d00600610e18000900610c19c00600610b19c006", "0x19f00600711701600600613e07f00600610f07f00600612708e00600610f", "0x19f00600610e07f00600612900600719f00600711719f00600610b002007", "0x410060071171a000600611207f0060061120ce00900610c016006006140", "0x614d0d700600610f0d900600610f1a100600610e0ab00900610c002007", "0x600714e00600711714e00600610b00200714e0060071170021a2033006", "0x600714f00600711714f00600610b00200714f00600711718100900610c", "0x15000600610b002007150006007117085006006116002007083006007117", "0x1a300600610e0cf00900610c006007150006007117006007083006007117", "0x1540060071170870060061160b700600610f0b70060061400db00600610f", "0x1a400600610b0c800900610c00600715400600711715400600610b002007", "0x4e00600611404f00600614d0ca00900610c1a50060061140c900900610c", "0x4d0060061141a70070061210df00600610f1a600600610e0cb00900610c", "0x200715b00600711708a0060061160021aa0021a90100070061210021a8", "0x21ac1ab00700612116800600610f00600715b00600711715b00600610b", "0x1ad0060061140060071ad0060071171ad00600610b0020071ad006007117", "0x1ae00600610e0b300900610c03700600610f12000600610e0c600900610c", "0x610b00200716b00600711708e0060061160ed00600610e1af007006121", "0x9200600611616c00600610f0b500900610c00600716b00600711716b006", "0x16c00600611200600716d00600711716d00600610b00200716d006007117", "0x1b400600610b0020071b40060071170021b31b200600610b1b10070061b0", "0x61b01b50070061b018e00900610c1b40060061140060071b4006007117", "0x610b0e700600610f1b800600610e0b700900610c1b70070061b01b6007", "0x17300600610b0020071730060071170940060061160b900900610c0e5006", "0x1750060071170960060061160021b9058006006114006007173006007117", "0x1000600613e0ba00900610c00600717500600711717500600610b002007", "0x1ba00600610e0060071ba0060071171ba00600610b0020071ba006007117", "0x610b00200717600600711709900600611609900600610f0bb00900610c", "0x1bc0070061210480060061141bb007006121006007176006007117176006", "0x1be0070061b018f00900610c0bd00900610c1bd00600610b1bd006006116", "0xbf00900610c0ea00600610b0ec00600610f1bf00600610e0be00900610c", "0x17a00600610b00200717a00600711709b0060061160021c004d006006111", "0x1500600611106900600610e00600706900600711700600717a006007117", "0x9d0060061160ef00600610f1c100600610e19000900610c0c100900610c", "0x6900600611400600717c00600711717c00600610b00200717c006007117", "0x610b00200717d0060071170a00060061161c20070061b00c300900610c", "0x17e0060071170a20060061161c30070061b000600717d00600711717d006", "0x17f0060071170a400600611600600717e00600711717e00600610b002007", "0x19c00900610c19b00900610c00600717f00600711717f00600610b002007", "0x600718000600711718000600610b0020071800060071170a8006006116", "0x711718100600610b0020071810060071170ab0060061160d400900610c", "0x1c500600610b0020071c50060071170021c419d00900610c006007181006", "0x610c1a000900610c1c50060061141c60070061210060071c5006007117", "0x21c70640060061140d900900610c0d700900610c19f00900610c0d6009", "0xdb00900610c0f200600610b0f400600610f1c800600610e1a100900610c", "0xb30060071170100060061161a400900610c0090070061211a300900610c", "0xb300600711718e00600610b00200718e0060071170b5006006116002007", "0x1ca00600610b0020071ca0060071170021c900600718e006007117006007", "0x71170bd0060061161a500900610c1ca0060061140060071ca006007117", "0x61160100060061cb00600718f00600711718f00600610b00200718f006", "0x1900060071171cc00700612119000600610b0020071900060071170c1006", "0x61210021d00160070061130021cf07500600610b1ce0070061cd006007", "0x71171d400600610b0020071d40060071170021d31d20070061211d1007", "0x1600600614d0df00900610c1d40060061141d50070061210060071d4006", "0x1d600600610e1a600900610c00c006006114016006006111007007006113", "0x19b0060071170c30060061160021d80160060061230021d70f800600610f", "0x1b200900610c1d900700612100600719b00600711719b00600610b002007", "0x61211ad00900610c1da00700612119c00600610e00600719c006007117", "0x1dc00700612119d00600610b00600719d0060071171ae00900610c1db007", "0xe700900610c1de0070061210e500900610c1dd0070061211b400900610c", "0x1e10070061211ba00900610c1e00070061211b800900610c1df007006121", "0xec00900610c1e30070061210ea00900610c1e20070061211bd00900610c", "0x1e60070061210ef00900610c1e50070061211bf00900610c1e4007006121", "0x611301600600611400200719d0060071170d40060061161c100900610c", "0x20071a10060071170d90060061160d700600611600900700611300c007", "0x14f0060061140021e81e70070061210060071a10060071171a100600610b", "0x60071a30060071171a300600610b0020071a30060071170db006006116", "0x1a50060071171a500600610b0020071a50060071170021ea1e9007006121", "0x61161c500900610c04e00600612904e0060061271a500600610e006007", "0x61120060071a60060071171a600600610b0020071a60060071170df006", "0x1ae0060071171ae00600610b0020071ae0060071171ad00600610e1eb006", "0xe50060071170f200900610c1b400600610e01700719c006007117006007", "0x1ec0070061211b800600610b0020071b80060071170e7006006116002007", "0x19c0060071170e500600610e0060070e50060071170060071b8006007117", "0x1ef00600610b0021ee1ed0070061210f400900610c1bd00600610f01b007", "0x610c0fa00600610b0021f31f20070061211f10070061210fa0060061f0", "0x610c1ca00900610c0fa00600614d0021f50fa0060061120021f41c8009", "0x610e0fe00600610f1f600600610e0f800900610c1a400600614d1d4009", "0x1f800600610e1d600900610c0021f706400600614d0060070061860fc006", "0x20071bf0060071170ec0060061160020070ea00600711710000600610f", "0x60071bf0060071171a40060061120060070ea0060071171bf00600610b", "0x71171c100600610b0020071c10060071170ef0060061160ea00600610e", "0x19c00600711701000719c00600711700f00719c0060071170060071c1006", "0x71171c500600610e01500719c00600711701400719c006007117019007", "0x19c00600711700c00719c00600711700900719c00600711700700719c006", "0xf40060061160020070f20060071171f900600610e1eb00900610c016007", "0x60071c80060071171fa0070061211c800600610b0020071c8006007117", "0x1ca00600610e00200719c0060071170f200600610e0060070f2006007117", "0x610b0020071d60060071170f80060061160070060061cb1d400600610e", "0xc600600610f0c600600614d0fa00900610c0060071d60060071171d6006", "0x1ef00900610c0090060061290c700600610f0c700600614d009006006127", "0xca00600610f0c900600610f0c900600614d0c800600610f0c800600614d", "0xcf00600610f0ce00600610f0cd00600610f0cc0060061120cb00600610f", "0xfe00900610c0d200600610f0d100600610f0fc00900610c0d000600610f", "0x1340060061140160070061211fc00700612110300600610f1fb00600610e", "0x1ef0060061120fa0060061140022010022001ff00600610b0021fe0021fd", "0x20071f60060071170fe0060061160020070fc006007117002203002202", "0x60070fc0060071170060071f60060071172040070061211f600600610b", "0x612100600720600600711720600600610b002007206006007117002205", "0x20071f80060071171000060061161f600900610c206006006114207007", "0x610b0020071f90060071170022080060071f80060071171f800600610b", "0x7f00600614d0070060062091f90060061140060071f90060071171f9006", "0x71171fb00600610b0020071fb00600711710300600611607f006006114", "0x20b00600200600200220b00600200200220a20600600610e0060071fb006", "0x20b0060020090020140100070cb00f01600720b007007002007007002002", "0x600f00201c00620b00600f00601600201900620b00601600600c002002", "0x200600201b01701500920b0060c401c0190090100020c400620b00600c", "0x220b0060020090020540060a806500620b00701b00601400200220b006", "0x2b00617502a00620b00702900601700202911b00720b006065006015002", "0x20b00602c00601900202c00620b00611b00601b00200220b006002009002", "0x6500200220b00602e0060c400202f02e00720b00602d00601c00202d006", "0x20b0060330060c400204803300720b00603000601c00203000620b006002", "0x611b00203500620b00604800605400203900620b00602f006054002002", "0x20b00600200900200211e00220b00703503900702900203900620b006039", "0x3700602c00203700620b00611e00602b00211e00620b00600202a002002", "0x600202a00200220b00600200900200203a00600202d00212000620b006", "0x212000620b00603a00602c00203a00620b00610d00602e00210d00620b", "0x703c00603000203c00620b00603c00602c00203c00620b00612000602f", "0x200220b00612400603300200220b00600200900207d00615c12400620b", "0x3e01701500903500203e00620b00603e00603900203e00620b006002048", "0x20b00600211e00200220b00600200900204112b00714a12c12a00720b007", "0x20b00600210d00212d00620b00600212000204300620b006002037002002", "0x600212400204700620b00600203c00212e00620b00600203a002045006", "0x1412a00204d00620b00600203e00213000620b00600207d00213100620b", "0x12f00620b00612a00600c00204b00620b00604d13013104712e04512d043", "0x900612b00213300620b00612c00601600205600620b00600600612c002", "0x13400620b00602a00604300213600620b00604b00604100205800620b006", "0x604500205305113204f04e01620b00613413605813305612f00f12d002", "0x20b00605b00612e00200220b00600200900213500614505b00620b007053", "0x613000205f00620b00600213100200220b00605d00604700213705d007", "0x620b00613800604b00200220b00606100604d00213806100720b006137", "0x213906400720b00613b06700704f00213b00620b00605f00604e002067", "0x606900605100206a06900720b00606400613200200220b006139006033", "0x5600213c00620b00606c00612f00206c00620b00606a00605300200220b", "0x20b00604f00612c00213f00620b00604e00600c00206f00620b00613c006", "0x13300214500620b00605100612b00214100620b006132006016002071006", "0x200220b00600200900207514514107113f01600607500620b00606f006", "0x604f00612c00207700620b00604e00600c00207600620b006135006058", "0x214b00620b00605100612b00214600620b00613200601600207900620b", "0x220b00600200900207b14b14607907701600607b00620b006076006133", "0x14a00620b00600213100200220b00602a00613600200220b00600211e002", "0x7f14a00705b00207f00620b00607f00604b00207f00620b006002134002", "0x15200620b0060c715100705d00215100620b0060021350020c700620b006", "0x600612c00214f00620b00612b00600c00214e00620b006152006058002", "0x15000620b00600900612b00208500620b00604100601600208300620b006", "0x20b00600200900215e15008508314f01600615e00620b00614e006133002", "0x20b00602a00613600200220b00607d00603300200220b00600211e002002", "0x3300216016100720b00615f00613700215f00620b00600900612b002002", "0x216300620b00600205f00215d00620b00600213100200220b006160006", "0x600213500215c00620b00616315d00705b00216300620b00616300604b", "0x15400620b00608700605800208700620b00615c16200705d00216200620b", "0x1700601600208a00620b00600600612c00215700620b00601500600c002", "0x16800620b00615400613300216e00620b00616100612b00215b00620b006", "0x200220b00600211e00200220b00600200900216816e15b08a157016006", "0xed00620b00600213100200220b00611b00606100200220b00602b006033", "0x8e0ed00705b00208e00620b00608e00604b00208e00620b006002138002", "0x16c00620b00616b0d000705d0020d000620b00600213500216b00620b006", "0x600612c00216d00620b00601500600c00209200620b00616c006058002", "0x17300620b00600900612b00209400620b00601700601600217100620b006", "0x20b00600200900209617309417116d01600609600620b006092006133002", "0x601500600c00217500620b00605400605800200220b00600211e002002", "0x217600620b00601700601600209900620b00600600612c0020d100620b", "0x1760990d101600617a00620b00617500613300209b00620b00600900612b", "0x20b00600c00606100200220b00600211e00200220b00600200900217a09b", "0x617c00604b00217c00620b00600213400209d00620b006002131002002", "0x20a000620b0060021350020cc00620b00617c09d00705b00217c00620b", "0x1000600c0020a200620b00617d00605800217d00620b0060cc0a000705d", "0x17f00620b0060140060160020a400620b00600600612c00217e00620b006", "0xa417e0160060d200620b0060a20061330020cd00620b00600900612b002", "0x600200200200220b00600213900201600620b0060020640020d20cd17f", "0x720c01000f00720b00700600200700700200220b00600200600200220b", "0x1000601600201c00620b00600f00600c00200220b006002009002015014", "0x20b0060650c401c00901000206500620b00600900600f0020c400620b006", "0x620d05400620b00701900601400200220b00600200600201901b017009", "0x2a00601700202a02900720b00605400601500200220b00600200900211b", "0x620b00602900601b00200220b00600200900202c00620e02b00620b007", "0xc400203002f00720b00602e00601c00202e00620b00602d00601900202d", "0x4800720b00603300601c00203300620b00600206500200220b00602f006", "0x3900605400203500620b00603000605400200220b0060480060c4002039", "0x220b00711e03500702900203500620b00603500611b00211e00620b006", "0x603700602b00203700620b00600202a00200220b0060020090020020f4", "0x20090020020f800600202d00210d00620b00612000602c00212000620b", "0x2c00203c00620b00603a00602e00203a00620b00600202a00200220b006", "0x20b00612400602c00212400620b00610d00602f00210d00620b00603c006", "0x200220b00600200900203e00620f07d00620b007124006030002124006", "0x620b00612a00603900212a00620b00600204800200220b00607d006033", "0x600200900204304100721012b12c00720b00712a01b01700903500212a", "0x20b00600212000212d00620b00600203700200220b00600211e00200220b", "0x600203c00204700620b00600203a00212e00620b00600210d002045006", "0x203e00204d00620b00600207d00213000620b00600212400213100620b", "0x204e00620b00604b04d13013104712e04512d01412a00204b00620b006", "0x600700612b00212f00620b00612b00601600205300620b00612c00600c", "0x205800620b00602b00604300213300620b00604e00604100205600620b", "0x600c01600713b00205100c13204f00c20b00605813305612f053016067", "0x220b00600200900213400621113600620b00705100606900200c00620b", "0x600213100200220b00605b00604700213505b00720b00613600606a002", "0x200220b00613700613c00205f13700720b00613500606c00205d00620b", "0x605f00606f00206700620b00613200601600213900620b00604f00600c", "0x20b00606913b06713900c13f00206900620b00605d00604e00213b00620b", "0x20b00600200900206c00621206a00620b007064006071002064138061009", "0x613200200220b00606f00603300206f13c00720b00606a006141002002", "0x620b00607100605300200220b00613f00605100207113f00720b00613c", "0x600c00207500620b00614500605600214500620b00614100612f002141", "0x620b00600c00612b00207700620b00613800601600207600620b006061", "0x20b00600200900214607907707600c00614600620b006075006133002079", "0x601600207b00620b00606100600c00214b00620b00606c006058002002", "0x620b00614b00613300207f00620b00600c00612b00214a00620b006138", "0x620b00613400605800200220b0060020090020c707f14a07b00c0060c7", "0x612b00214e00620b00613200601600215200620b00604f00600c002151", "0x208314f14e15200c00608300620b00615100613300214f00620b00600c", "0x13600200220b00601600614500200220b00600211e00200220b006002009", "0x215000620b00600213400208500620b00600213100200220b00602b006", "0x600213500215e00620b00615008500705b00215000620b00615000604b", "0x15f00620b00616000605800216000620b00615e16100705d00216100620b", "0x700612b00216300620b00604300601600215d00620b00604100600c002", "0x900216215c16315d00c00616200620b00615f00613300215c00620b006", "0x614500200220b00603e00603300200220b00600211e00200220b006002", "0x215700620b00600700612b00200220b00602b00613600200220b006016", "0x20b00600213100200220b00615400603300215408700720b006157006137", "0x705b00215b00620b00615b00604b00215b00620b00600205f00208a006", "0x20b00616e16800705d00216800620b00600213500216e00620b00615b08a", "0x1600216b00620b00601700600c00208e00620b0060ed0060580020ed006", "0x20b00608e00613300216c00620b00608700612b0020d000620b00601b006", "0x220b00600211e00200220b00600200900209216c0d016b00c006092006", "0x20b00602900606100200220b00601600614500200220b00602c006033002", "0x617100604b00217100620b00600213800216d00620b006002131002002", "0x217300620b00600213500209400620b00617116d00705b00217100620b", "0x1700600c00217500620b00609600605800209600620b00609417300705d", "0x17600620b00600700612b00209900620b00601b0060160020d100620b006", "0x220b00600200900209b1760990d100c00609b00620b006175006133002", "0x620b00611b00605800200220b00601600614500200220b00600211e002", "0x612b00217c00620b00601b00601600209d00620b00601700600c00217a", "0x20a00cc17c09d00c0060a000620b00617a0061330020cc00620b006007", "0x6100200220b00601600614500200220b00600211e00200220b006002009", "0x20a200620b00600213400217d00620b00600213100200220b006009006", "0x600213500217e00620b0060a217d00705b0020a200620b0060a200604b", "0xcd00620b00617f00605800217f00620b00617e0a400705d0020a400620b", "0x700612b0020a800620b0060150060160020d200620b00601400600c002", "0x750020ce1800a80d200c0060ce00620b0060cd00613300218000620b006", "0x200600200220b00600200200200220b00600213900200f00620b006002", "0x200900201701500721301401000720b00700700200700700200220b006", "0x1901b00720b00601c00607600201c00620b00600c00600f00200220b006", "0x20c400621401600620b00701900607700201000620b00601000600c002", "0x620b00601400601600202900620b00601000600c00200220b006002009", "0x14600201600620b00601600f00707900202b00620b00601b00600f00202a", "0x11b00614b00200220b00600200600211b05406500920b00602b02a029009", "0x720b00602c00607b00200220b00600200900202d00621502c00620b007", "0x200220b00600200900203300621603000620b00702f00614a00202f02e", "0x603900601c00203900620b00604800601900204800620b00602e00601b", "0x1c00203700620b00600206500200220b0060350060c400211e03500720b", "0x20b00611e00605400200220b0061200060c400210d12000720b006037006", "0x2900203a00620b00603a00611b00203c00620b00610d00605400203a006", "0x620b00600202a00200220b00600200900200221700220b00703c03a007", "0x202d00203e00620b00607d00602c00207d00620b00612400602b002124", "0x12a00602e00212a00620b00600202a00200220b006002009002002218006", "0x12b00620b00603e00602f00203e00620b00612c00602c00212c00620b006", "0x204300621904100620b00712b00603000212b00620b00612b00602c002", "0x212d00620b00600204800200220b00604100603300200220b006002009", "0x721a12e04500720b00712d05406500903500212d00620b00612d006039", "0x620b00600203700200220b00600211e00200220b006002009002131047", "0x20b00600203a00204b00620b00600210d00204d00620b006002120002130", "0x600207d00213200620b00600212400204f00620b00600203c00204e006", "0x5113204f04e04b04d13001412a00205300620b00600203e00205100620b", "0x20b00605600604700213305600720b00612f00607f00212f00620b006053", "0x601600213700620b00600600612c00205d00620b00604500600c002002", "0x620b00613300604100206100620b00600900612b00205f00620b00612e", "0x100c700213900620b00603000604e00206400620b00601600604b002138", "0x713500615100213505b13413605801620b00613906413806105f13705d", "0x6900620b00606700615200200220b00600200900213b00621b06700620b", "0x6c00604d00213c06c00720b00606900613000206a00620b006002131002", "0x214100620b00606a00604e00207100620b00613c00604b00200220b006", "0x6f00613200200220b00613f00603300213f06f00720b00614107100704f", "0x7600620b00607500605300200220b00614500605100207514500720b006", "0x5800600c00207900620b00607700605600207700620b00607600612f002", "0x7b00620b00613400601600214b00620b00613600612c00214600620b006", "0x14b14601600607f00620b00607900613300214a00620b00605b00612b002", "0x600c0020c700620b00613b00605800200220b00600200900207f14a07b", "0x620b00613400601600215200620b00613600612c00215100620b006058", "0x15101600608300620b0060c700613300214f00620b00605b00612b00214e", "0x3000605100200220b00600211e00200220b00600200900208314f14e152", "0x213400208500620b00600213100200220b00601600604d00200220b006", "0x620b00615008500705b00215000620b00615000604b00215000620b006", "0x605800216000620b00615e16100705d00216100620b00600213500215e", "0x620b00600600612c00215d00620b00604700600c00215f00620b006160", "0x613300216200620b00600900612b00215c00620b006131006016002163", "0x11e00200220b00600200900208716215c16315d01600608700620b00615f", "0x4d00200220b00603000605100200220b00604300603300200220b006002", "0x720b00608a00613700208a00620b00600900612b00200220b006016006", "0x600205f00215b00620b00600213100200220b006157006033002157154", "0x16800620b00616e15b00705b00216e00620b00616e00604b00216e00620b", "0x8e00605800208e00620b0061680ed00705d0020ed00620b006002135002", "0x16c00620b00600600612c0020d000620b00606500600c00216b00620b006", "0x16b00613300216d00620b00615400612b00209200620b006054006016002", "0x211e00200220b00600200900217116d09216c0d001600617100620b006", "0x604d00200220b00602e00606100200220b00603300603300200220b006", "0x4b00217300620b00600213800209400620b00600213100200220b006016", "0x20b00600213500209600620b00617309400705b00217300620b006173006", "0x209900620b0060d10060580020d100620b00609617500705d002175006", "0x605400601600209b00620b00600600612c00217600620b00606500600c", "0x617c00620b00609900613300209d00620b00600900612b00217a00620b", "0x4d00200220b00600211e00200220b00600200900217c09d17a09b176016", "0x620b00606500600c0020cc00620b00602d00605800200220b006016006", "0x612b0020a200620b00605400601600217d00620b00600600612c0020a0", "0xa417e0a217d0a00160060a400620b0060cc00613300217e00620b006009", "0x200220b0060c400603300200220b00600211e00200220b006002009002", "0x17f00620b00600213100200220b00600f00614e00200220b00601b006061", "0xcd17f00705b0020cd00620b0060cd00604b0020cd00620b006002138002", "0x18000620b0060d20a800705d0020a800620b0060021350020d200620b006", "0x600612c0020ab00620b00601000600c0020ce00620b006180006058002", "0xc800620b00600900612b0020cf00620b00601400601600218100620b006", "0x20b0060020090020c90c80cf1810ab0160060c900620b0060ce006133002", "0x20b00600f00614e00200220b00600c00606100200220b00600211e002002", "0x60cb00604b0020cb00620b0060021340020ca00620b006002131002002", "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", "0x1500600c00218e00620b0060b50060580020b500620b0060c60b300705d", "0xba00620b0060170060160020b900620b00600600612c0020b700620b006", "0xb90b70160060bd00620b00618e0061330020bb00620b00600900612b002", "0x208300201500620b00600206400201000620b00600214f0020bd0bb0ba", "0x200200200220b00600213900201c00620b00600208500201b00620b006", "0x21c0650c400720b00700900600700700200220b00600200600200220b006", "0x601600202c00620b0060c400600c00200220b00600200900211b054007", "0x602e02d02c00915000202e00620b00601600600f00202d00620b006065", "0x21d02f00620b00702b00615e00200220b00600200600202b02a02900920b", "0x616000204803300720b00602f00616100200220b006002009002030006", "0x20b00602900600c00200220b00600200900203900621e01900620b007048", "0x15f00203a00620b00603300600f00210d00620b00602a006016002120006", "0x203711e03500920b00603a10d12000914600201900620b00601901c007", "0x600200900212400621f03c00620b00703700614b00200220b006002006", "0x22012a00620b00703e00614a00203e07d00720b00603c00607b00200220b", "0x12b00601900212b00620b00607d00601b00200220b00600200900212c006", "0x220b0060430060c400212d04300720b00604100601c00204100620b006", "0x12e0060c400204712e00720b00604500601c00204500620b006002065002", "0x213000620b00604700605400213100620b00612d00605400200220b006", "0x200900200222100220b00713013100702900213100620b00613100611b", "0x2c00204b00620b00604d00602b00204d00620b00600202a00200220b006", "0x2a00200220b00600200900200222200600202d00204e00620b00604b006", "0x620b00613200602c00213200620b00604f00602e00204f00620b006002", "0x603000205100620b00605100602c00205100620b00604e00602f00204e", "0x20b00605300603300200220b00600200900212f00622305300620b007051", "0x3500903500205600620b00605600603900205600620b006002048002002", "0x211e00200220b00600200900213413600722405813300720b00705611e", "0x210d00213500620b00600212000205b00620b00600203700200220b006", "0x12400205f00620b00600203c00213700620b00600203a00205d00620b006", "0x206400620b00600203e00213800620b00600207d00206100620b006002", "0x20b00613300600c00213900620b00606413806105f13705d13505b01412a", "0x15d00213c00620b00605800601600206c00620b00600700612c00206a006", "0x20b00613900604100213f00620b00600c00612b00206f00620b006002006", "0x15c00214500620b00612a00604e00214100620b006019006163002071006", "0x16200206901400f13b01706700f20b00614514107113f06f13c06c06a014", "0x1500713b00200f00620b00600f01000708700201700620b00601701b007", "0x600200900207600622507500620b00706900606900201400620b006014", "0x13100200220b00607700604700207907700720b00607500606a00200220b", "0x20b00614b00613c00207b14b00720b00607900606c00214600620b006002", "0x606f00215200620b00613b00601600215100620b00606700600c002002", "0x14f14e15215100c13f00214f00620b00614600604e00214e00620b00607b", "0x200900208500622608300620b0070c70060710020c707f14a00920b006", "0x200220b00615e00603300215e15000720b00608300614100200220b006", "0x616000605300200220b00616100605100216016100720b006150006132", "0x216300620b00615d00605600215d00620b00615f00612f00215f00620b", "0x601700612c00216200620b00614a00600c00215c00620b00600f00615d", "0x215700620b00601400612b00215400620b00607f00601600208700620b", "0x20b00600200900208a15715408716215c00f00608a00620b006163006133", "0x600c00216e00620b00600f00615d00215b00620b006085006058002002", "0x620b00607f0060160020ed00620b00601700612c00216800620b00614a", "0x16e00f0060d000620b00615b00613300216b00620b00601400612b00208e", "0x216c00620b00607600605800200220b0060020090020d016b08e0ed168", "0x601700612c00216d00620b00606700600c00209200620b00600f00615d", "0x217300620b00601400612b00209400620b00613b00601600217100620b", "0x20b00600200900209617309417116d09200f00609600620b00616c006133", "0x20b00601000615700200220b00601b00615400200220b00600211e002002", "0x601900608a00200220b00612a00605100200220b006015006145002002", "0xd100604b0020d100620b00600213400217500620b00600213100200220b", "0x17600620b00600213500209900620b0060d117500705b0020d100620b006", "0x615d00217a00620b00609b00605800209b00620b00609917600705d002", "0x620b00600700612c00217c00620b00613600600c00209d00620b006002", "0x613300217d00620b00600c00612b0020a000620b0061340060160020cc", "0x200220b0060020090020a217d0a00cc17c09d00f0060a200620b00617a", "0x200220b00601b00615400200220b00612f00603300200220b00600211e", "0x220b00612a00605100200220b00601500614500200220b006010006157", "0x617f00613700217f00620b00600c00612b00200220b00601900608a002", "0x5f0020cd00620b00600213100200220b0060a40060330020a417e00720b", "0x20b0060d20cd00705b0020d200620b0060d200604b0020d200620b006002", "0x580020ce00620b0060a818000705d00218000620b0060021350020a8006", "0x20b00603500600c00218100620b00600200615d0020ab00620b0060ce006", "0x12b0020c900620b00611e0060160020c800620b00600700612c0020cf006", "0xc90c80cf18100f0060cb00620b0060ab0061330020ca00620b00617e006", "0x20b00612c00603300200220b00600211e00200220b0060020090020cb0ca", "0x601500614500200220b00601000615700200220b00601b006154002002", "0x600213100200220b00601900608a00200220b00607d00606100200220b", "0x5b0020b300620b0060b300604b0020b300620b0060021380020c600620b", "0x60b518e00705d00218e00620b0060021350020b500620b0060b30c6007", "0x20ba00620b00600200615d0020b900620b0060b70060580020b700620b", "0x611e0060160020bd00620b00600700612c0020bb00620b00603500600c", "0x60bf00620b0060b90061330020be00620b00600c00612b00218f00620b", "0x200220b00600211e00200220b0060020090020bf0be18f0bd0bb0ba00f", "0x220b00601500614500200220b00601000615700200220b00601b006154", "0x600200615d0020c100620b00612400605800200220b00601900608a002", "0x219b00620b00600700612c0020c300620b00603500600c00219000620b", "0x60c10061330020d400620b00600c00612b00219c00620b00611e006016", "0x211e00200220b00600200900219d0d419c19b0c319000f00619d00620b", "0x615700200220b00601b00615400200220b00603900603300200220b006", "0x15b00200220b00603300606100200220b00601500614500200220b006010", "0x20d600620b0060021380021a000620b00600213100200220b00601c006", "0x600213500219f00620b0060d61a000705b0020d600620b0060d600604b", "0x1a100620b0060d90060580020d900620b00619f0d700705d0020d700620b", "0x700612c0021a300620b00602900600c0020db00620b00600200615d002", "0xdf00620b00600c00612b0021a500620b00602a0060160021a400620b006", "0x60020090021a60df1a51a41a30db00f0061a600620b0061a1006133002", "0x601000615700200220b00601b00615400200220b00600211e00200220b", "0x3000605800200220b00601c00615b00200220b00601500614500200220b", "0x1ae00620b00602900600c0021ad00620b00600200615d0021b200620b006", "0xc00612b0020e500620b00602a0060160021b400620b00600700612c002", "0x1b80e70e51b41ae1ad00f0061b800620b0061b20061330020e700620b006", "0x200220b00601b00615400200220b00600211e00200220b006002009002", "0x220b00601c00615b00200220b00601500614500200220b006010006157", "0x620b0060021340021ba00620b00600213100200220b006016006061002", "0x1350020ea00620b0061bd1ba00705b0021bd00620b0061bd00604b0021bd", "0x20b0061bf0060580021bf00620b0060ea0ec00705d0020ec00620b006002", "0x12c0021c500620b00605400600c0021c100620b00600200615d0020ef006", "0x20b00600c00612b0020f400620b00611b0060160020f200620b006007006", "0x20021ca1c80f40f21c51c100f0061ca00620b0060ef0061330021c8006", "0xf01600720b00700700600700700200220b00600200600200220b006002", "0x1600201900620b00601600600c00200220b006002009002014010007227", "0xc401c0190091500020c400620b00600c00600f00201c00620b00600f006", "0x6500620b00701b00615e00200220b00600200600201b01701500920b006", "0x16000202911b00720b00606500616100200220b006002009002054006228", "0x611b00601b00200220b00600200900202b00622902a00620b007029006", "0x2f02e00720b00602d00601c00202d00620b00602c00601900202c00620b", "0x20b00603000601c00203000620b00600206500200220b00602e0060c4002", "0x5400203900620b00602f00605400200220b0060330060c4002048033007", "0x703503900702900203900620b00603900611b00203500620b006048006", "0x602b00211e00620b00600202a00200220b00600200900200222a00220b", "0x200222b00600202d00212000620b00603700602c00203700620b00611e", "0x3a00620b00610d00602e00210d00620b00600202a00200220b006002009", "0x3c00602c00203c00620b00612000602f00212000620b00603a00602c002", "0x20b00600200900207d00622c12400620b00703c00603000203c00620b006", "0x603e00603900203e00620b00600204800200220b006124006033002002", "0x900204112b00722d12c12a00720b00703e01701500903500203e00620b", "0x212000204300620b00600203700200220b00600211e00200220b006002", "0x3c00212e00620b00600203a00204500620b00600210d00212d00620b006", "0x213000620b00600207d00213100620b00600212400204700620b006002", "0x620b00604d13013104712e04512d04301412a00204d00620b00600203e", "0x600c00200220b00604e00604700204f04e00720b00604b00607f00204b", "0x620b00600200615d00205800620b00612c00601600213300620b00612a", "0x616300205b00620b00604f00604100213400620b00600900612b002136", "0x5305113201620b00613505b13413605813300f16e00213500620b00602a", "0x200220b00600200900213700622e05d00620b00705600615100205612f", "0x20b00605f00613000206100620b00600213100205f00620b00605d006152", "0x4e00213b00620b00606400604b00200220b00613800604d002064138007", "0x6700603300206713900720b00606913b00704f00206900620b006061006", "0x200220b00606a00605100206c06a00720b00613900613200200220b006", "0x606f00605600206f00620b00613c00612f00213c00620b00606c006053", "0x214100620b00613200600c00207100620b00605300615d00213f00620b", "0x613f00613300207500620b00612f00612b00214500620b006051006016", "0x13700605800200220b00600200900207607514514107101600607600620b", "0x14600620b00613200600c00207900620b00605300615d00207700620b006", "0x7700613300207b00620b00612f00612b00214b00620b006051006016002", "0x211e00200220b00600200900214a07b14b14607901600614a00620b006", "0x213400207f00620b00600213100200220b00602a00608a00200220b006", "0x620b0060c707f00705b0020c700620b0060c700604b0020c700620b006", "0x605800214e00620b00615115200705d00215200620b006002135002151", "0x620b00612b00600c00208300620b00600200615d00214f00620b00614e", "0x613300215e00620b00600900612b00215000620b006041006016002085", "0x11e00200220b00600200900216115e15008508301600616100620b00614f", "0x12b00200220b00602a00608a00200220b00607d00603300200220b006002", "0x615f00603300215f16000720b00615d00613700215d00620b006009006", "0x15c00604b00215c00620b00600205f00216300620b00600213100200220b", "0x8700620b00600213500216200620b00615c16300705b00215c00620b006", "0x615d00215700620b00615400605800215400620b00616208700705d002", "0x620b00601700601600215b00620b00601500600c00208a00620b006002", "0x8a0160060ed00620b00615700613300216800620b00616000612b00216e", "0x2b00603300200220b00600211e00200220b0060020090020ed16816e15b", "0x213800208e00620b00600213100200220b00611b00606100200220b006", "0x620b00616b08e00705b00216b00620b00616b00604b00216b00620b006", "0x605800209200620b0060d016c00705d00216c00620b0060021350020d0", "0x620b00601500600c00217100620b00600200615d00216d00620b006092", "0x613300209600620b00600900612b00217300620b006017006016002094", "0x11e00200220b00600200900217509617309417101600617500620b00616d", "0x9900620b00600200615d0020d100620b00605400605800200220b006002", "0x900612b00209b00620b00601700601600217600620b00601500600c002", "0x209d17a09b17609901600609d00620b0060d100613300217a00620b006", "0x13100200220b00600c00606100200220b00600211e00200220b006002009", "0xcc00620b0060cc00604b0020cc00620b00600213400217c00620b006002", "0x17d00705d00217d00620b0060021350020a000620b0060cc17c00705b002", "0x620b00600200615d00217e00620b0060a20060580020a200620b0060a0", "0x612b0020cd00620b00601400601600217f00620b00601000600c0020a4", "0xa80d20cd17f0a40160060a800620b00617e0061330020d200620b006009", "0x720b00700700600700700200220b00600200600200220b006002002002", "0x1b00620b00600c00600f00200220b00600200900201401000722f00f016", "0x607700201600620b00601600600c00201701500720b00601b006076002", "0x20b00601500601b00200220b00600200900201c00623001900620b007017", "0x211b05400720b00606500601c00206500620b0060c40060190020c4006", "0x720b00602900601c00202900620b00600206500200220b0060540060c4", "0x605400202c00620b00611b00605400200220b00602a0060c400202b02a", "0x20b00702d02c00702900202c00620b00602c00611b00202d00620b00602b", "0x2e00602b00202e00620b00600202a00200220b006002009002002231002", "0x900200223200600202d00203000620b00602f00602c00202f00620b006", "0x204800620b00603300602e00203300620b00600202a00200220b006002", "0x603900602c00203900620b00603000602f00203000620b00604800602c", "0x220b00600200900211e00623303500620b00703900603000203900620b", "0x20b00603700603900203700620b00600204800200220b006035006033002", "0x200900203c03a00723410d12000720b00703700f016009035002037006", "0x600212000212400620b00600203700200220b00600211e00200220b006", "0x203c00212a00620b00600203a00203e00620b00600210d00207d00620b", "0x3e00204100620b00600207d00212b00620b00600212400212c00620b006", "0x12d00620b00604304112b12c12a03e07d12401412a00204300620b006002", "0x12000600c00200220b00604500604700212e04500720b00612d00607f002", "0x13200620b00600200615d00204f00620b00610d00601600204e00620b006", "0x1900604b00205300620b00612e00604100205100620b00600900612b002", "0x4d13013104701620b00612f05305113204f04e00f16800212f00620b006", "0x8e00200220b00600200900213300623505600620b00704b0060ed00204b", "0x720b00605800616b00213600620b00600213100205800620b006056006", "0x604e00213700620b00605b00602c00200220b0061340060d000205b134", "0x605d00603300205d13500720b00605f13700716c00205f00620b006136", "0x5300200220b00606100605100213806100720b00613500613200200220b", "0x20b00613900605600213900620b00606400612f00206400620b006138006", "0x1600206900620b00604700600c00213b00620b00613000615d002067006", "0x20b00606700613300206c00620b00604d00612b00206a00620b006131006", "0x613300605800200220b00600200900213c06c06a06913b01600613c006", "0x207100620b00604700600c00213f00620b00613000615d00206f00620b", "0x606f00613300214500620b00604d00612b00214100620b006131006016", "0x600211e00200220b00600200900207514514107113f01600607500620b", "0x600213400207600620b00600213100200220b00601900604d00200220b", "0x7900620b00607707600705b00207700620b00607700604b00207700620b", "0x14b00605800214b00620b00607914600705d00214600620b006002135002", "0x7f00620b00603a00600c00214a00620b00600200615d00207b00620b006", "0x7b00613300215100620b00600900612b0020c700620b00603c006016002", "0x211e00200220b0060020090021521510c707f14a01600615200620b006", "0x612b00200220b00601900604d00200220b00611e00603300200220b006", "0x20b00614f00603300214f14e00720b00608300613700208300620b006009", "0x615000604b00215000620b00600205f00208500620b006002131002002", "0x216100620b00600213500215e00620b00615008500705b00215000620b", "0x200615d00215f00620b00616000605800216000620b00615e16100705d", "0x15c00620b00600f00601600216300620b00601600600c00215d00620b006", "0x16315d01600608700620b00615f00613300216200620b00614e00612b002", "0x601c00603300200220b00600211e00200220b00600200900208716215c", "0x600213800215400620b00600213100200220b00601500606100200220b", "0x8a00620b00615715400705b00215700620b00615700604b00215700620b", "0x16e00605800216e00620b00608a15b00705d00215b00620b006002135002", "0x8e00620b00601600600c0020ed00620b00600200615d00216800620b006", "0x1680061330020d000620b00600900612b00216b00620b00600f006016002", "0x211e00200220b00600200900216c0d016b08e0ed01600616c00620b006", "0x213400209200620b00600213100200220b00600c00606100200220b006", "0x620b00616d09200705b00216d00620b00616d00604b00216d00620b006", "0x605800217300620b00617109400705d00209400620b006002135002171", "0x620b00601000600c00217500620b00600200615d00209600620b006173", "0x613300217600620b00600900612b00209900620b0060140060160020d1", "0x201600620b00600206400209b1760990d117501600609b00620b006096", "0x600200220b00600200200200220b00600213900201000620b006002092", "0x900201b01700723601501400720b00700600200700700200220b006002", "0x5400620b00600900600f00206500620b00601400600c00200220b006002", "0x23700f00620b0070c40061710020c401c01900920b00605406500716d002", "0x1500601600202c00620b00601900600c00200220b00600200900211b006", "0x620b00600f01000709400202e00620b00601c00600f00202d00620b006", "0x200220b00600200600202b02a02900920b00602e02d02c00914600200f", "0x2f00607b00200220b00600200900203000623802f00620b00702b00614b", "0x600200900203500623903900620b00704800614a00204803300720b006", "0x1c00203700620b00611e00601900211e00620b00603300601b00200220b", "0x620b00600206500200220b0061200060c400210d12000720b006037006", "0x605400200220b00603c0060c400212403c00720b00603a00601c00203a", "0x620b00607d00611b00203e00620b00612400605400207d00620b00610d", "0x202a00200220b00600200900200223a00220b00703e07d00702900207d", "0x12b00620b00612c00602c00212c00620b00612a00602b00212a00620b006", "0x204100620b00600202a00200220b00600200900200223b00600202d002", "0x612b00602f00212b00620b00604300602c00204300620b00604100602e", "0x23c04500620b00712d00603000212d00620b00612d00602c00212d00620b", "0x20b00600204800200220b00604500603300200220b00600200900212e006", "0x13100720b00704702a02900903500204700620b006047006039002047006", "0x203700200220b00600211e00200220b00600200900204b04d00723d130", "0x3a00213200620b00600210d00204f00620b00600212000204e00620b006", "0x212f00620b00600212400205300620b00600203c00205100620b006002", "0x5113204f04e01412a00213300620b00600203e00205600620b00600207d", "0x13000601600213500620b00613100600c00205800620b00613305612f053", "0x5f00620b00605800604100213700620b00600700612b00205d00620b006", "0x13500f09600213800620b00603900604e00206100620b00600f006173002", "0x620b00600c01600713b00205b00c13413600c20b00613806105f13705d", "0xd100200220b00600200900213900623e06400620b00705b00617500200c", "0x620b00600213100200220b00606700604700213b06700720b006064006", "0x600c00200220b00606a00605100206c06a00720b00613b006132002069", "0x620b00606c00609900214100620b00613400601600207100620b006136", "0x13c00920b00607514514107100c17600207500620b00606900604e002145", "0x200220b00600200900207700623f07600620b00713f00607100213f06f", "0x607900613200200220b00614600603300214607900720b006076006141", "0x214a00620b00607b00605300200220b00614b00605100207b14b00720b", "0x613c00600c0020c700620b00607f00605600207f00620b00614a00612f", "0x214e00620b00600c00612b00215200620b00606f00601600215100620b", "0x200220b00600200900214f14e15215100c00614f00620b0060c7006133", "0x606f00601600208500620b00613c00600c00208300620b006077006058", "0x616100620b00608300613300215e00620b00600c00612b00215000620b", "0x216000620b00613900605800200220b00600200900216115e15008500c", "0x600c00612b00215d00620b00613400601600215f00620b00613600600c", "0x200900215c16315d15f00c00615c00620b00616000613300216300620b", "0x3900605100200220b00601600614500200220b00600211e00200220b006", "0x213400216200620b00600213100200220b00600f00609b00200220b006", "0x620b00608716200705b00208700620b00608700604b00208700620b006", "0x605800208a00620b00615415700705d00215700620b006002135002154", "0x620b00604b00601600216e00620b00604d00600c00215b00620b00608a", "0x16e00c00608e00620b00615b0061330020ed00620b00600700612b002168", "0x612e00603300200220b00600211e00200220b00600200900208e0ed168", "0xf00609b00200220b00603900605100200220b00601600614500200220b", "0xd016b00720b00616c00613700216c00620b00600700612b00200220b006", "0x620b00600205f00209200620b00600213100200220b0060d0006033002", "0x13500217100620b00616d09200705b00216d00620b00616d00604b00216d", "0x20b00617300605800217300620b00617109400705d00209400620b006002", "0x12b0020d100620b00602a00601600217500620b00602900600c002096006", "0x1760990d117500c00617600620b00609600613300209900620b00616b006", "0x200220b00603500603300200220b00600211e00200220b006002009002", "0x220b00600f00609b00200220b00603300606100200220b006016006145", "0x20b00617a00604b00217a00620b00600213800209b00620b006002131002", "0x5d00217c00620b00600213500209d00620b00617a09b00705b00217a006", "0x602900600c0020a000620b0060cc0060580020cc00620b00609d17c007", "0x217e00620b00600700612b0020a200620b00602a00601600217d00620b", "0x200220b0060020090020a417e0a217d00c0060a400620b0060a0006133", "0x200220b00600f00609b00200220b00601600614500200220b00600211e", "0x602a0060160020cd00620b00602900600c00217f00620b006030006058", "0x618000620b00617f0061330020a800620b00600700612b0020d200620b", "0x603300200220b00600211e00200220b0060020090021800a80d20cd00c", "0x17a00200220b00601c00606100200220b00601600614500200220b00611b", "0x20ab00620b0060021380020ce00620b00600213100200220b006010006", "0x600213500218100620b0060ab0ce00705b0020ab00620b0060ab00604b", "0xc900620b0060c80060580020c800620b0061810cf00705d0020cf00620b", "0x700612b0020cb00620b0060150060160020ca00620b00601900600c002", "0x90020b30c60cb0ca00c0060b300620b0060c90061330020c600620b006", "0x606100200220b00601600614500200220b00600211e00200220b006002", "0x1340020b500620b00600213100200220b00601000617a00200220b006009", "0x20b00618e0b500705b00218e00620b00618e00604b00218e00620b006002", "0x580020ba00620b0060b70b900705d0020b900620b0060021350020b7006", "0x20b00601b0060160020bd00620b00601700600c0020bb00620b0060ba006", "0xc0060bf00620b0060bb0061330020be00620b00600700612b00218f006", "0x200200200220b00600213900201600620b0060020640020bf0be18f0bd", "0x24001000f00720b00700600200700700200220b00600200600200220b006", "0x601600201c00620b00600f00600c00200220b006002009002015014007", "0x60650c401c00914600206500620b00600900600f0020c400620b006010", "0x24105400620b00701900614b00200220b00600200600201901b01700920b", "0x614a00202a02900720b00605400607b00200220b00600200900211b006", "0x20b00602900601b00200220b00600200900202c00624202b00620b00702a", "0x203002f00720b00602e00601c00202e00620b00602d00601900202d006", "0x720b00603300601c00203300620b00600206500200220b00602f0060c4", "0x605400203500620b00603000605400200220b0060480060c4002039048", "0x20b00711e03500702900203500620b00603500611b00211e00620b006039", "0x3700602b00203700620b00600202a00200220b006002009002002243002", "0x900200224400600202d00210d00620b00612000602c00212000620b006", "0x203c00620b00603a00602e00203a00620b00600202a00200220b006002", "0x612400602c00212400620b00610d00602f00210d00620b00603c00602c", "0x220b00600200900203e00624507d00620b00712400603000212400620b", "0x20b00612a00603900212a00620b00600204800200220b00607d006033002", "0x200900204304100724612b12c00720b00712a01b01700903500212a006", "0x600212000212d00620b00600203700200220b00600211e00200220b006", "0x203c00204700620b00600203a00212e00620b00600210d00204500620b", "0x3e00204d00620b00600207d00213000620b00600212400213100620b006", "0x4e00620b00604b04d13013104712e04512d01412a00204b00620b006002", "0x700612b00212f00620b00612b00601600205300620b00612c00600c002", "0x5800620b00602b00604e00213300620b00604e00604100205600620b006", "0xc01600713b00205100c13204f00c20b00605813305612f05301609d002", "0x20b00600200900213400624713600620b00705100617500200c00620b006", "0x213100200220b00605b00604700213505b00720b0061360060d1002002", "0x220b00613700605100205f13700720b00613500613200205d00620b006", "0x5f00609900206700620b00613200601600213900620b00604f00600c002", "0x606913b06713900c17600206900620b00605d00604e00213b00620b006", "0x600200900206c00624806a00620b00706400607100206413806100920b", "0x13200200220b00606f00603300206f13c00720b00606a00614100200220b", "0x20b00607100605300200220b00613f00605100207113f00720b00613c006", "0xc00207500620b00614500605600214500620b00614100612f002141006", "0x20b00600c00612b00207700620b00613800601600207600620b006061006", "0x600200900214607907707600c00614600620b006075006133002079006", "0x1600207b00620b00606100600c00214b00620b00606c00605800200220b", "0x20b00614b00613300207f00620b00600c00612b00214a00620b006138006", "0x20b00613400605800200220b0060020090020c707f14a07b00c0060c7006", "0x12b00214e00620b00613200601600215200620b00604f00600c002151006", "0x8314f14e15200c00608300620b00615100613300214f00620b00600c006", "0x200220b00601600614500200220b00600211e00200220b006002009002", "0x15000620b00600213400208500620b00600213100200220b00602b006051", "0x213500215e00620b00615008500705b00215000620b00615000604b002", "0x620b00616000605800216000620b00615e16100705d00216100620b006", "0x612b00216300620b00604300601600215d00620b00604100600c00215f", "0x216215c16315d00c00616200620b00615f00613300215c00620b006007", "0x14500200220b00603e00603300200220b00600211e00200220b006002009", "0x15700620b00600700612b00200220b00602b00605100200220b006016006", "0x600213100200220b00615400603300215408700720b006157006137002", "0x5b00215b00620b00615b00604b00215b00620b00600205f00208a00620b", "0x616e16800705d00216800620b00600213500216e00620b00615b08a007", "0x216b00620b00601700600c00208e00620b0060ed0060580020ed00620b", "0x608e00613300216c00620b00608700612b0020d000620b00601b006016", "0x20b00600211e00200220b00600200900209216c0d016b00c00609200620b", "0x602900606100200220b00601600614500200220b00602c006033002002", "0x17100604b00217100620b00600213800216d00620b00600213100200220b", "0x17300620b00600213500209400620b00617116d00705b00217100620b006", "0x600c00217500620b00609600605800209600620b00609417300705d002", "0x620b00600700612b00209900620b00601b0060160020d100620b006017", "0x20b00600200900209b1760990d100c00609b00620b006175006133002176", "0x20b00611b00605800200220b00601600614500200220b00600211e002002", "0x12b00217c00620b00601b00601600209d00620b00601700600c00217a006", "0xa00cc17c09d00c0060a000620b00617a0061330020cc00620b006007006", "0x200220b00601600614500200220b00600211e00200220b006002009002", "0xa200620b00600213400217d00620b00600213100200220b006009006061", "0x213500217e00620b0060a217d00705b0020a200620b0060a200604b002", "0x620b00617f00605800217f00620b00617e0a400705d0020a400620b006", "0x612b0020a800620b0060150060160020d200620b00601400600c0020cd", "0x20ce1800a80d200c0060ce00620b0060cd00613300218000620b006007", "0x1600720b00700700200700700200220b00600200600200220b006002002", "0x201b00620b00600c00600f00200220b00600200900201401000724900f", "0x1700607700201600620b00601600600c00201701500720b00601b006076", "0x620b00601500601b00200220b00600200900201c00624a01900620b007", "0xc400211b05400720b00606500601c00206500620b0060c40060190020c4", "0x2a00720b00602900601c00202900620b00600206500200220b006054006", "0x2b00605400202c00620b00611b00605400200220b00602a0060c400202b", "0x220b00702d02c00702900202c00620b00602c00611b00202d00620b006", "0x602e00602b00202e00620b00600202a00200220b00600200900200224b", "0x200900200224c00600202d00203000620b00602f00602c00202f00620b", "0x2c00204800620b00603300602e00203300620b00600202a00200220b006", "0x20b00603900602c00203900620b00603000602f00203000620b006048006", "0x200220b00600200900211e00624d03500620b007039006030002039006", "0x620b00603700603900203700620b00600204800200220b006035006033", "0x600200900203c03a00724e10d12000720b00703700f016009035002037", "0x20b00600212000212400620b00600203700200220b00600211e00200220b", "0x600203c00212a00620b00600203a00203e00620b00600210d00207d006", "0x203e00204100620b00600207d00212b00620b00600212400212c00620b", "0x212d00620b00604304112b12c12a03e07d12401412a00204300620b006", "0x612000600c00200220b00604500604700212e04500720b00612d00607f", "0x213200620b00610d00601600204f00620b00600600612c00204e00620b", "0x601900604b00205300620b00612e00604100205100620b00600900612b", "0x4b04d13013104701620b00612f05305113204f04e00f17c00212f00620b", "0x615200200220b00600200900213300624f05600620b00704b006151002", "0x13400720b00605800613000213600620b00600213100205800620b006056", "0x13600604e00213700620b00605b00604b00200220b00613400604d00205b", "0x20b00605d00603300205d13500720b00605f13700704f00205f00620b006", "0x605300200220b00606100605100213806100720b006135006132002002", "0x620b00613900605600213900620b00606400612f00206400620b006138", "0x601600206900620b00613100612c00213b00620b00604700600c002067", "0x620b00606700613300206c00620b00604d00612b00206a00620b006130", "0x20b00613300605800200220b00600200900213c06c06a06913b01600613c", "0x1600207100620b00613100612c00213f00620b00604700600c00206f006", "0x20b00606f00613300214500620b00604d00612b00214100620b006130006", "0x20b00600211e00200220b00600200900207514514107113f016006075006", "0x20b00600213400207600620b00600213100200220b00601900604d002002", "0x207900620b00607707600705b00207700620b00607700604b002077006", "0x614b00605800214b00620b00607914600705d00214600620b006002135", "0x207f00620b00600600612c00214a00620b00603a00600c00207b00620b", "0x607b00613300215100620b00600900612b0020c700620b00603c006016", "0x600211e00200220b0060020090021521510c707f14a01600615200620b", "0x900612b00200220b00601900604d00200220b00611e00603300200220b", "0x220b00614f00603300214f14e00720b00608300613700208300620b006", "0x20b00615000604b00215000620b00600205f00208500620b006002131002", "0x5d00216100620b00600213500215e00620b00615008500705b002150006", "0x601600600c00215f00620b00616000605800216000620b00615e161007", "0x215c00620b00600f00601600216300620b00600600612c00215d00620b", "0x15c16315d01600608700620b00615f00613300216200620b00614e00612b", "0x20b00601c00603300200220b00600211e00200220b006002009002087162", "0x20b00600213800215400620b00600213100200220b006015006061002002", "0x208a00620b00615715400705b00215700620b00615700604b002157006", "0x616e00605800216e00620b00608a15b00705d00215b00620b006002135", "0x208e00620b00600600612c0020ed00620b00601600600c00216800620b", "0x61680061330020d000620b00600900612b00216b00620b00600f006016", "0x600211e00200220b00600200900216c0d016b08e0ed01600616c00620b", "0x600213400209200620b00600213100200220b00600c00606100200220b", "0x17100620b00616d09200705b00216d00620b00616d00604b00216d00620b", "0x17300605800217300620b00617109400705d00209400620b006002135002", "0xd100620b00600600612c00217500620b00601000600c00209600620b006", "0x9600613300217600620b00600900612b00209900620b006014006016002", "0x200600200220b00600200200209b1760990d117501600609b00620b006", "0x200900201401000725000f01600720b00700700200700700200220b006", "0x1701500720b00601b00607600201b00620b00600c00600f00200220b006", "0x201c00625101900620b00701700607700201600620b00601600600c002", "0x720b00605400607600205400620b00601500600f00200220b006002009", "0x200220b00600200900202900625211b00620b0070650060770020650c4", "0x2b00607700202b02a00720b00602c00607600202c00620b0060c400600f", "0x620b00602a00600f00200220b00600200900202e00625302d00620b007", "0x625404800620b00703000607700203002f00720b006033006076002033", "0x603500601900203500620b00602f00601b00200220b006002009002039", "0x200220b0060370060c400212003700720b00611e00601c00211e00620b", "0x603a0060c400203c03a00720b00610d00601c00210d00620b006002065", "0x11b00207d00620b00603c00605400212400620b00612000605400200220b", "0x600200900200225500220b00707d12400702900212400620b006124006", "0x602c00212a00620b00603e00602b00203e00620b00600202a00200220b", "0x202a00200220b00600200900200225600600202d00212c00620b00612a", "0x12c00620b00604100602c00204100620b00612b00602e00212b00620b006", "0x4300603000204300620b00604300602c00204300620b00612c00602f002", "0x220b00612d00603300200220b00600200900204500625712d00620b007", "0xf01600903500212e00620b00612e00603900212e00620b006002048002", "0x600211e00200220b00600200900204d13000725813104700720b00712e", "0x600210d00204e00620b00600212000204b00620b00600203700200220b", "0x212400205100620b00600203c00213200620b00600203a00204f00620b", "0x12a00205600620b00600203e00212f00620b00600207d00205300620b006", "0x720b00613300607f00213300620b00605612f05305113204f04e04b014", "0x612c00205f00620b00604700600c00200220b006058006047002136058", "0x620b00600900612b00213800620b00613100601600206100620b006006", "0x604b00206700620b00601900604b00213900620b006136006041002064", "0x620b00604800604b00206900620b00602d00604b00213b00620b00611b", "0x5d13505b13401620b00606a06913b06713906413806105f0150cc00206a", "0x15200200220b00600200900213c00625906c00620b007137006151002137", "0x720b00606f00613000213f00620b00600213100206f00620b00606c006", "0x604e00207600620b00614100604b00200220b00607100604d002141071", "0x607500603300207514500720b00607707600704f00207700620b00613f", "0x5300200220b00607900605100214607900720b00614500613200200220b", "0x20b00607b00605600207b00620b00614b00612f00214b00620b006146006", "0x160020c700620b00605b00612c00207f00620b00613400600c00214a006", "0x20b00614a00613300215200620b00605d00612b00215100620b006135006", "0x613c00605800200220b00600200900214e1521510c707f01600614e006", "0x208500620b00605b00612c00208300620b00613400600c00214f00620b", "0x614f00613300215e00620b00605d00612b00215000620b006135006016", "0x600211e00200220b00600200900216115e15008508301600616100620b", "0x11b00604d00200220b00602d00604d00200220b00604800604d00200220b", "0x213400216000620b00600213100200220b00601900604d00200220b006", "0x620b00615f16000705b00215f00620b00615f00604b00215f00620b006", "0x605800215c00620b00615d16300705d00216300620b00600213500215d", "0x620b00600600612c00208700620b00613000600c00216200620b00615c", "0x613300208a00620b00600900612b00215700620b00604d006016002154", "0x11e00200220b00600200900215b08a15715408701600615b00620b006162", "0x4d00200220b00604800604d00200220b00604500603300200220b006002", "0x200220b00601900604d00200220b00611b00604d00200220b00602d006", "0x16800603300216816e00720b0060ed0061370020ed00620b00600900612b", "0x604b00216b00620b00600205f00208e00620b00600213100200220b006", "0x620b0060021350020d000620b00616b08e00705b00216b00620b00616b", "0xc00216d00620b00609200605800209200620b0060d016c00705d00216c", "0x20b00600f00601600209400620b00600600612c00217100620b006016006", "0x1600617500620b00616d00613300209600620b00616e00612b002173006", "0x603300200220b00600211e00200220b006002009002175096173094171", "0x4d00200220b00602d00604d00200220b00602f00606100200220b006039", "0x20d100620b00600213100200220b00601900604d00200220b00611b006", "0x60990d100705b00209900620b00609900604b00209900620b006002138", "0x217a00620b00617609b00705d00209b00620b00600213500217600620b", "0x600600612c00217c00620b00601600600c00209d00620b00617a006058", "0x217d00620b00600900612b0020a000620b00600f0060160020cc00620b", "0x220b0060020090020a217d0a00cc17c0160060a200620b00609d006133", "0x220b00602a00606100200220b00602e00603300200220b00600211e002", "0x620b00600213100200220b00601900604d00200220b00611b00604d002", "0x17e00705b0020a400620b0060a400604b0020a400620b00600213800217e", "0x620b00617f0cd00705d0020cd00620b00600213500217f00620b0060a4", "0x612c00218000620b00601600600c0020a800620b0060d20060580020d2", "0x620b00600900612b0020ab00620b00600f0060160020ce00620b006006", "0x60020090020cf1810ab0ce1800160060cf00620b0060a8006133002181", "0x60c400606100200220b00602900603300200220b00600211e00200220b", "0x60021380020c800620b00600213100200220b00601900604d00200220b", "0xca00620b0060c90c800705b0020c900620b0060c900604b0020c900620b", "0xc60060580020c600620b0060ca0cb00705d0020cb00620b006002135002", "0x18e00620b00600600612c0020b500620b00601600600c0020b300620b006", "0xb30061330020b900620b00600900612b0020b700620b00600f006016002", "0x211e00200220b0060020090020ba0b90b718e0b50160060ba00620b006", "0x213100200220b00601500606100200220b00601c00603300200220b006", "0x20bd00620b0060bd00604b0020bd00620b0060021380020bb00620b006", "0x18f0be00705d0020be00620b00600213500218f00620b0060bd0bb00705b", "0x19000620b00601600600c0020c100620b0060bf0060580020bf00620b006", "0x900612b00219b00620b00600f0060160020c300620b00600600612c002", "0x20d419c19b0c31900160060d400620b0060c100613300219c00620b006", "0x13100200220b00600c00606100200220b00600211e00200220b006002009", "0x1a000620b0061a000604b0021a000620b00600213400219d00620b006002", "0x19f00705d00219f00620b0060021350020d600620b0061a019d00705b002", "0x620b00601000600c0020d900620b0060d70060580020d700620b0060d6", "0x612b0021a300620b0060140060160020db00620b00600600612c0021a1", "0x1a51a41a30db1a10160061a500620b0060d90061330021a400620b006009", "0x720b00700900600700700200220b00600200600200220b006002002002", "0x1900620b00601600600f00200220b00600200900201501400725a01000f", "0x607700200f00620b00600f00600c00201b01700720b006019006076002", "0x20b00601700600f00200220b0060020090020c400625b01c00620b00701b", "0x25c02900620b00705400607700205406500720b00611b00607600211b006", "0x2d00607600202d00620b00606500600f00200220b00600200900202a006", "0x600200900202f00625d02e00620b00702c00607700202c02b00720b006", "0x1c00203300620b00603000601900203000620b00602b00601b00200220b", "0x620b00600206500200220b0060480060c400203904800720b006033006", "0x605400200220b00611e0060c400203711e00720b00603500601c002035", "0x620b00612000611b00210d00620b00603700605400212000620b006039", "0x202a00200220b00600200900200225e00220b00710d120007029002120", "0x12400620b00603c00602c00203c00620b00603a00602b00203a00620b006", "0x207d00620b00600202a00200220b00600200900200225f00600202d002", "0x612400602f00212400620b00603e00602c00203e00620b00607d00602e", "0x26012c00620b00712a00603000212a00620b00612a00602c00212a00620b", "0x20b00600204800200220b00612c00603300200220b00600200900212b006", "0x4300720b00704101000f00903500204100620b006041006039002041006", "0x203700200220b00600211e00200220b00600200900212e04500726112d", "0x3a00213000620b00600210d00213100620b00600212000204700620b006", "0x204e00620b00600212400204b00620b00600203c00204d00620b006002", "0x4d13013104701412a00213200620b00600203e00204f00620b00600207d", "0x700612c00213400620b00604300600c00205100620b00613204f04e04b", "0x5d00620b00600200615d00213500620b00612d00601600205b00620b006", "0x1c00604b00205f00620b00605100604100213700620b00600c00612b002", "0x6400620b00602e00604b00213800620b00602900604b00206100620b006", "0x5813305612f05300f20b00606413806105f13705d13505b1340150a0002", "0xa200200220b00600200900206700626213900620b00713600617d002136", "0x6900720b00613b00613200213b00620b00600213100200220b006139006", "0x6c00612f00206c00620b00606a00605300200220b00606900605100206a", "0x13f00620b00613300615d00206f00620b00613c00605600213c00620b006", "0x5600601600214100620b00612f00612c00207100620b00605300600c002", "0x7600620b00606f00613300207500620b00605800612b00214500620b006", "0x20b00606700605800200220b00600200900207607514514107113f00f006", "0x12c00214600620b00605300600c00207900620b00613300615d002077006", "0x20b00605800612b00207b00620b00605600601600214b00620b00612f006", "0x900207f14a07b14b14607900f00607f00620b00607700613300214a006", "0x604d00200220b00602e00604d00200220b00600211e00200220b006002", "0x1340020c700620b00600213100200220b00601c00604d00200220b006029", "0x20b0061510c700705b00215100620b00615100604b00215100620b006002", "0x5800214f00620b00615214e00705d00214e00620b006002135002152006", "0x20b00604500600c00208500620b00600200615d00208300620b00614f006", "0x12b00216100620b00612e00601600215e00620b00600700612c002150006", "0x16115e15008500f00615f00620b00608300613300216000620b00600c006", "0x20b00612b00603300200220b00600211e00200220b00600200900215f160", "0x601c00604d00200220b00602900604d00200220b00602e00604d002002", "0x216315d00720b00615c00613700215c00620b00600c00612b00200220b", "0x8700620b00600205f00216200620b00600213100200220b006163006033", "0x213500215400620b00608716200705b00208700620b00608700604b002", "0x620b00608a00605800208a00620b00615415700705d00215700620b006", "0x612c00216800620b00600f00600c00216e00620b00600200615d00215b", "0x620b00615d00612b00208e00620b0060100060160020ed00620b006007", "0x20090020d016b08e0ed16816e00f0060d000620b00615b00613300216b", "0x2b00606100200220b00602f00603300200220b00600211e00200220b006", "0x213100200220b00601c00604d00200220b00602900604d00200220b006", "0x209200620b00609200604b00209200620b00600213800216c00620b006", "0x16d17100705d00217100620b00600213500216d00620b00609216c00705b", "0x9600620b00600200615d00217300620b00609400605800209400620b006", "0x100060160020d100620b00600700612c00217500620b00600f00600c002", "0x9b00620b00617300613300217600620b00600c00612b00209900620b006", "0x220b00600211e00200220b00600200900209b1760990d117509600f006", "0x20b00601c00604d00200220b00606500606100200220b00602a006033002", "0x609d00604b00209d00620b00600213800217a00620b006002131002002", "0x20cc00620b00600213500217c00620b00609d17a00705b00209d00620b", "0x200615d00217d00620b0060a00060580020a000620b00617c0cc00705d", "0xa400620b00600700612c00217e00620b00600f00600c0020a200620b006", "0x17d0061330020cd00620b00600c00612b00217f00620b006010006016002", "0x11e00200220b0060020090020d20cd17f0a417e0a200f0060d200620b006", "0x13100200220b00601700606100200220b0060c400603300200220b006002", "0x18000620b00618000604b00218000620b0060021380020a800620b006002", "0xab00705d0020ab00620b0060021350020ce00620b0061800a800705b002", "0x620b00600200615d0020cf00620b00618100605800218100620b0060ce", "0x60160020ca00620b00600700612c0020c900620b00600f00600c0020c8", "0x620b0060cf0061330020c600620b00600c00612b0020cb00620b006010", "0x20b00600211e00200220b0060020090020b30c60cb0ca0c90c800f0060b3", "0x20b0060021340020b500620b00600213100200220b006016006061002002", "0x20b700620b00618e0b500705b00218e00620b00618e00604b00218e006", "0x60ba0060580020ba00620b0060b70b900705d0020b900620b006002135", "0x218f00620b00601400600c0020bd00620b00600200615d0020bb00620b", "0x600c00612b0020bf00620b0060150060160020be00620b00600700612c", "0x21900c10bf0be18f0bd00f00619000620b0060bb0061330020c100620b", "0xc00720b00700600200700700200220b00600200600200220b006002002", "0x201700620b00600900600f00200220b00600200900201000f007263016", "0x1500607700200c00620b00600c00600c00201501400720b006017006076", "0x620b00601400601b00200220b00600200900201900626401b00620b007", "0xc400205406500720b0060c400601c0020c400620b00601c00601900201c", "0x2900720b00611b00601c00211b00620b00600206500200220b006065006", "0x2a00605400202b00620b00605400605400200220b0060290060c400202a", "0x220b00702c02b00702900202b00620b00602b00611b00202c00620b006", "0x602d00602b00202d00620b00600202a00200220b006002009002002265", "0x200900200226600600202d00202f00620b00602e00602c00202e00620b", "0x2c00203300620b00603000602e00203000620b00600202a00200220b006", "0x20b00604800602c00204800620b00602f00602f00202f00620b006033006", "0x200220b00600200900203500626703900620b007048006030002048006", "0x620b00611e00603900211e00620b00600204800200220b006039006033", "0x600200900203a10d00726812003700720b00711e01600c00903500211e", "0x20b00600212000203c00620b00600203700200220b00600211e00200220b", "0x600203c00203e00620b00600203a00207d00620b00600210d002124006", "0x203e00212b00620b00600207d00212c00620b00600212400212a00620b", "0x204300620b00604112b12c12a03e07d12403c01412a00204100620b006", "0x600700612b00213000620b00612000601600213100620b00603700600c", "0x204e00620b00601b00604b00204b00620b00604300604100204d00620b", "0x20b00704700617d00204712e04512d00c20b00604e04b04d13013101617e", "0x13100200220b00604f0060a200200220b00600200900213200626904f006", "0x20b00605300605100212f05300720b00605100613200205100620b006002", "0x605600213300620b00605600612f00205600620b00612f006053002002", "0x620b00604500601600213600620b00612d00600c00205800620b006133", "0x13600c00613500620b00605800613300205b00620b00612e00612b002134", "0x600c00205d00620b00613200605800200220b00600200900213505b134", "0x620b00612e00612b00205f00620b00604500601600213700620b00612d", "0x20b00600200900213806105f13700c00613800620b00605d006133002061", "0x620b00600213100200220b00601b00604d00200220b00600211e002002", "0x6400705b00213900620b00613900604b00213900620b006002134002064", "0x620b00606713b00705d00213b00620b00600213500206700620b006139", "0x601600206c00620b00610d00600c00206a00620b006069006058002069", "0x620b00606a00613300206f00620b00600700612b00213c00620b00603a", "0x200220b00600211e00200220b00600200900213f06f13c06c00c00613f", "0x620b00600700612b00200220b00601b00604d00200220b006035006033", "0x213100200220b00614100603300214107100720b006145006137002145", "0x207600620b00607600604b00207600620b00600205f00207500620b006", "0x7707900705d00207900620b00600213500207700620b00607607500705b", "0x7b00620b00600c00600c00214b00620b00614600605800214600620b006", "0x14b00613300207f00620b00607100612b00214a00620b006016006016002", "0x600211e00200220b0060020090020c707f14a07b00c0060c700620b006", "0x600213100200220b00601400606100200220b00601900603300200220b", "0x5b00215200620b00615200604b00215200620b00600213800215100620b", "0x614e14f00705d00214f00620b00600213500214e00620b006152151007", "0x215000620b00600c00600c00208500620b00608300605800208300620b", "0x608500613300216100620b00600700612b00215e00620b006016006016", "0x20b00600211e00200220b00600200900216016115e15000c00616000620b", "0x20b00600213400215f00620b00600213100200220b006009006061002002", "0x216300620b00615d15f00705b00215d00620b00615d00604b00215d006", "0x616200605800216200620b00616315c00705d00215c00620b006002135", "0x215700620b00601000601600215400620b00600f00600c00208700620b", "0x8a15715400c00615b00620b00608700613300208a00620b00600700612b", "0x20b00700600200700700200220b00600200600200220b00600200200215b", "0x620b00600900600f00200220b00600200900201000f00726a01600c007", "0x7700200c00620b00600c00600c00201501400720b006017006076002017", "0x601400601b00200220b00600200900201900626b01b00620b007015006", "0x5406500720b0060c400601c0020c400620b00601c00601900201c00620b", "0x20b00611b00601c00211b00620b00600206500200220b0060650060c4002", "0x5400202b00620b00605400605400200220b0060290060c400202a029007", "0x702c02b00702900202b00620b00602b00611b00202c00620b00602a006", "0x602b00202d00620b00600202a00200220b00600200900200226c00220b", "0x200226d00600202d00202f00620b00602e00602c00202e00620b00602d", "0x3300620b00603000602e00203000620b00600202a00200220b006002009", "0x4800602c00204800620b00602f00602f00202f00620b00603300602c002", "0x20b00600200900203500626e03900620b00704800603000204800620b006", "0x611e00603900211e00620b00600204800200220b006039006033002002", "0x900203a10d00726f12003700720b00711e01600c00903500211e00620b", "0x212000203c00620b00600203700200220b00600211e00200220b006002", "0x3c00203e00620b00600203a00207d00620b00600210d00212400620b006", "0x212b00620b00600207d00212c00620b00600212400212a00620b006002", "0x620b00604112b12c12a03e07d12403c01412a00204100620b00600203e", "0x612b00213000620b00612000601600213100620b00603700600c002043", "0x620b00601b00604b00204b00620b00604300604100204d00620b006007", "0x4700617d00204712e04512d00c20b00604e04b04d1301310160a400204e", "0x220b00604f0060a200200220b00600200900213200627004f00620b007", "0x5300605100212f05300720b00605100613200205100620b006002131002", "0x213300620b00605600612f00205600620b00612f00605300200220b006", "0x604500601600213600620b00612d00600c00205800620b006133006056", "0x613500620b00605800613300205b00620b00612e00612b00213400620b", "0x205d00620b00613200605800200220b00600200900213505b13413600c", "0x612e00612b00205f00620b00604500601600213700620b00612d00600c", "0x200900213806105f13700c00613800620b00605d00613300206100620b", "0x600213100200220b00601b00604d00200220b00600211e00200220b006", "0x5b00213900620b00613900604b00213900620b00600213400206400620b", "0x606713b00705d00213b00620b00600213500206700620b006139064007", "0x206c00620b00610d00600c00206a00620b00606900605800206900620b", "0x606a00613300206f00620b00600700612b00213c00620b00603a006016", "0x20b00600211e00200220b00600200900213f06f13c06c00c00613f00620b", "0x600700612b00200220b00601b00604d00200220b006035006033002002", "0x200220b00614100603300214107100720b00614500613700214500620b", "0x620b00607600604b00207600620b00600205f00207500620b006002131", "0x705d00207900620b00600213500207700620b00607607500705b002076", "0x20b00600c00600c00214b00620b00614600605800214600620b006077079", "0x13300207f00620b00607100612b00214a00620b00601600601600207b006", "0x11e00200220b0060020090020c707f14a07b00c0060c700620b00614b006", "0x13100200220b00601400606100200220b00601900603300200220b006002", "0x15200620b00615200604b00215200620b00600213800215100620b006002", "0x14f00705d00214f00620b00600213500214e00620b00615215100705b002", "0x620b00600c00600c00208500620b00608300605800208300620b00614e", "0x613300216100620b00600700612b00215e00620b006016006016002150", "0x211e00200220b00600200900216016115e15000c00616000620b006085", "0x213400215f00620b00600213100200220b00600900606100200220b006", "0x620b00615d15f00705b00215d00620b00615d00604b00215d00620b006", "0x605800216200620b00616315c00705d00215c00620b006002135002163", "0x620b00601000601600215400620b00600f00600c00208700620b006162", "0x15400c00615b00620b00608700613300208a00620b00600700612b002157", "0x600200700700200220b00600200600200220b00600200200215b08a157", "0x600900600f00200220b00600200900201000f00727101600c00720b007", "0xc00620b00600c00600c00201501400720b00601700607600201700620b", "0x601b00200220b00600200900201900627201b00620b007015006077002", "0x720b0060c400601c0020c400620b00601c00601900201c00620b006014", "0x11b00601c00211b00620b00600206500200220b0060650060c4002054065", "0x2b00620b00605400605400200220b0060290060c400202a02900720b006", "0x2b00702900202b00620b00602b00611b00202c00620b00602a006054002", "0x202d00620b00600202a00200220b00600200900200227300220b00702c", "0x27400600202d00202f00620b00602e00602c00202e00620b00602d00602b", "0x20b00603000602e00203000620b00600202a00200220b006002009002002", "0x2c00204800620b00602f00602f00202f00620b00603300602c002033006", "0x200900203500627503900620b00704800603000204800620b006048006", "0x603900211e00620b00600204800200220b00603900603300200220b006", "0x3a10d00727612003700720b00711e01600c00903500211e00620b00611e", "0x203c00620b00600203700200220b00600211e00200220b006002009002", "0x3e00620b00600203a00207d00620b00600210d00212400620b006002120", "0x620b00600207d00212c00620b00600212400212a00620b00600203c002", "0x604112b12c12a03e07d12403c01412a00204100620b00600203e00212b", "0x213000620b00612000601600213100620b00603700600c00204300620b", "0x601b00604b00204b00620b00604300604100204d00620b00600700612b", "0x17d00204712e04512d00c20b00604e04b04d13013101617f00204e00620b", "0x604f0060a200200220b00600200900213200627704f00620b007047006", "0x5100212f05300720b00605100613200205100620b00600213100200220b", "0x620b00605600612f00205600620b00612f00605300200220b006053006", "0x601600213600620b00612d00600c00205800620b006133006056002133", "0x620b00605800613300205b00620b00612e00612b00213400620b006045", "0x620b00613200605800200220b00600200900213505b13413600c006135", "0x612b00205f00620b00604500601600213700620b00612d00600c00205d", "0x213806105f13700c00613800620b00605d00613300206100620b00612e", "0x13100200220b00601b00604d00200220b00600211e00200220b006002009", "0x13900620b00613900604b00213900620b00600213400206400620b006002", "0x13b00705d00213b00620b00600213500206700620b00613906400705b002", "0x620b00610d00600c00206a00620b00606900605800206900620b006067", "0x613300206f00620b00600700612b00213c00620b00603a00601600206c", "0x211e00200220b00600200900213f06f13c06c00c00613f00620b00606a", "0x612b00200220b00601b00604d00200220b00603500603300200220b006", "0x20b00614100603300214107100720b00614500613700214500620b006007", "0x607600604b00207600620b00600205f00207500620b006002131002002", "0x207900620b00600213500207700620b00607607500705b00207600620b", "0xc00600c00214b00620b00614600605800214600620b00607707900705d", "0x7f00620b00607100612b00214a00620b00601600601600207b00620b006", "0x220b0060020090020c707f14a07b00c0060c700620b00614b006133002", "0x220b00601400606100200220b00601900603300200220b00600211e002", "0x20b00615200604b00215200620b00600213800215100620b006002131002", "0x5d00214f00620b00600213500214e00620b00615215100705b002152006", "0x600c00600c00208500620b00608300605800208300620b00614e14f007", "0x216100620b00600700612b00215e00620b00601600601600215000620b", "0x200220b00600200900216016115e15000c00616000620b006085006133", "0x215f00620b00600213100200220b00600900606100200220b00600211e", "0x615d15f00705b00215d00620b00615d00604b00215d00620b006002134", "0x216200620b00616315c00705d00215c00620b00600213500216300620b", "0x601000601600215400620b00600f00600c00208700620b006162006058", "0x615b00620b00608700613300208a00620b00600700612b00215700620b", "0x700700200220b00600200600200220b00600200200215b08a15715400c", "0x600f00200220b00600200900201000f00727801600c00720b007006002", "0x20b00600c00600c00201501400720b00601700607600201700620b006009", "0x200220b00600200900201900627901b00620b00701500607700200c006", "0x60c400601c0020c400620b00601c00601900201c00620b00601400601b", "0x1c00211b00620b00600206500200220b0060650060c400205406500720b", "0x20b00605400605400200220b0060290060c400202a02900720b00611b006", "0x2900202b00620b00602b00611b00202c00620b00602a00605400202b006", "0x620b00600202a00200220b00600200900200227a00220b00702c02b007", "0x202d00202f00620b00602e00602c00202e00620b00602d00602b00202d", "0x3000602e00203000620b00600202a00200220b00600200900200227b006", "0x4800620b00602f00602f00202f00620b00603300602c00203300620b006", "0x203500627c03900620b00704800603000204800620b00604800602c002", "0x211e00620b00600204800200220b00603900603300200220b006002009", "0x727d12003700720b00711e01600c00903500211e00620b00611e006039", "0x620b00600203700200220b00600211e00200220b00600200900203a10d", "0x20b00600203a00207d00620b00600210d00212400620b00600212000203c", "0x600207d00212c00620b00600212400212a00620b00600203c00203e006", "0x12b12c12a03e07d12403c01412a00204100620b00600203e00212b00620b", "0x620b00612000601600213100620b00603700600c00204300620b006041", "0x604b00204b00620b00604300604100204d00620b00600700612b002130", "0x4712e04512d00c20b00604e04b04d1301310160cd00204e00620b00601b", "0x60a200200220b00600200900213200627e04f00620b00704700617d002", "0x12f05300720b00605100613200205100620b00600213100200220b00604f", "0x605600612f00205600620b00612f00605300200220b006053006051002", "0x213600620b00612d00600c00205800620b00613300605600213300620b", "0x605800613300205b00620b00612e00612b00213400620b006045006016", "0x613200605800200220b00600200900213505b13413600c00613500620b", "0x205f00620b00604500601600213700620b00612d00600c00205d00620b", "0x6105f13700c00613800620b00605d00613300206100620b00612e00612b", "0x220b00601b00604d00200220b00600211e00200220b006002009002138", "0x20b00613900604b00213900620b00600213400206400620b006002131002", "0x5d00213b00620b00600213500206700620b00613906400705b002139006", "0x610d00600c00206a00620b00606900605800206900620b00606713b007", "0x206f00620b00600700612b00213c00620b00603a00601600206c00620b", "0x200220b00600200900213f06f13c06c00c00613f00620b00606a006133", "0x200220b00601b00604d00200220b00603500603300200220b00600211e", "0x14100603300214107100720b00614500613700214500620b00600700612b", "0x604b00207600620b00600205f00207500620b00600213100200220b006", "0x620b00600213500207700620b00607607500705b00207600620b006076", "0xc00214b00620b00614600605800214600620b00607707900705d002079", "0x20b00607100612b00214a00620b00601600601600207b00620b00600c006", "0x60020090020c707f14a07b00c0060c700620b00614b00613300207f006", "0x601400606100200220b00601900603300200220b00600211e00200220b", "0x15200604b00215200620b00600213800215100620b00600213100200220b", "0x14f00620b00600213500214e00620b00615215100705b00215200620b006", "0x600c00208500620b00608300605800208300620b00614e14f00705d002", "0x620b00600700612b00215e00620b00601600601600215000620b00600c", "0x20b00600200900216016115e15000c00616000620b006085006133002161", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x15f00705b00215d00620b00615d00604b00215d00620b00600213400215f", "0x620b00616315c00705d00215c00620b00600213500216300620b00615d", "0x601600215400620b00600f00600c00208700620b006162006058002162", "0x620b00608700613300208a00620b00600700612b00215700620b006010", "0x200220b00600200600200220b00600200200215b08a15715400c00615b", "0x200220b00600200900201000f00727f01600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200228000220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200228100600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00628202e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900728304803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", "0x604100204500620b00600700612b00212d00620b006048006016002043", "0x204112b12c12a00c20b00612e04512d04300c0d200212e00620b00603e", "0x470060a200200220b00600200900213100628404700620b00704100617d", "0x204b04d00720b00613000613200213000620b00600213100200220b006", "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", "0x20b00613100605800200220b00600200900205612f05305100c006056006", "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", "0x5d00620b00600213400213500620b00600213100200220b006002009002", "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", "0x620b00606100605800206100620b00613705f00705d00205f00620b006", "0x612b00213900620b00603500601600206400620b00603900600c002138", "0x213b06713906400c00613b00620b00613800613300206700620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x606a00603300206a06900720b00606c00613700206c00620b006007006", "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", "0x600c00214500620b00614100605800214100620b00613f07100705d002", "0x620b00606900612b00207600620b00601600601600207500620b00600c", "0x20b00600200900207907707607500c00607900620b006145006133002077", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", "0x620b0060c700613300214e00620b00600700612b00215200620b006010", "0x200220b00600200600200220b00600200200214f14e15215100c00614f", "0x200220b00600200900201000f00728501600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200228600220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200228700600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00628802e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900728904803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", "0x604100204500620b00600700612b00212d00620b006048006016002043", "0x204112b12c12a00c20b00612e04512d04300c0a800212e00620b00603e", "0x470060a200200220b00600200900213100628a04700620b00704100617d", "0x204b04d00720b00613000613200213000620b00600213100200220b006", "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", "0x20b00613100605800200220b00600200900205612f05305100c006056006", "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", "0x5d00620b00600213400213500620b00600213100200220b006002009002", "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", "0x620b00606100605800206100620b00613705f00705d00205f00620b006", "0x612b00213900620b00603500601600206400620b00603900600c002138", "0x213b06713906400c00613b00620b00613800613300206700620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x606a00603300206a06900720b00606c00613700206c00620b006007006", "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", "0x600c00214500620b00614100605800214100620b00613f07100705d002", "0x620b00606900612b00207600620b00601600601600207500620b00600c", "0x20b00600200900207907707607500c00607900620b006145006133002077", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", "0x620b0060c700613300214e00620b00600700612b00215200620b006010", "0x200220b00600200600200220b00600200200214f14e15215100c00614f", "0x200220b00600200900201000f00728b01600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200228c00220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200228d00600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00628e02e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900728f04803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", "0x604100204500620b00600700612b00212d00620b006048006016002043", "0x204112b12c12a00c20b00612e04512d04300c18000212e00620b00603e", "0x470060a200200220b00600200900213100629004700620b00704100617d", "0x204b04d00720b00613000613200213000620b00600213100200220b006", "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", "0x20b00613100605800200220b00600200900205612f05305100c006056006", "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", "0x5d00620b00600213400213500620b00600213100200220b006002009002", "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", "0x620b00606100605800206100620b00613705f00705d00205f00620b006", "0x612b00213900620b00603500601600206400620b00603900600c002138", "0x213b06713906400c00613b00620b00613800613300206700620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x606a00603300206a06900720b00606c00613700206c00620b006007006", "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", "0x600c00214500620b00614100605800214100620b00613f07100705d002", "0x620b00606900612b00207600620b00601600601600207500620b00600c", "0x20b00600200900207907707607500c00607900620b006145006133002077", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", "0x620b0060c700613300214e00620b00600700612b00215200620b006010", "0x200220b00600200600200220b00600200200214f14e15215100c00614f", "0x200220b00600200900201000f00729101600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200229200220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200229300600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00629402e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900729504803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x720b00603e00607f00203e00620b00607d12403c03a10d12003711e014", "0x612b00212d00620b00604800601600200220b00612a00604700212c12a", "0x612e04512d0090ce00212e00620b00612c00604100204500620b006007", "0x620b00704300615100203300620b00603300600c00204304112b00920b", "0x13100213000620b00604700615200200220b006002009002131006296047", "0x20b00604b00604d00204e04b00720b00613000613000204d00620b006002", "0x704f00205300620b00604d00604e00205100620b00604e00604b002002", "0x20b00604f00613200200220b00613200603300213204f00720b006053051", "0x12f00213300620b00605600605300200220b00612f00605100205612f007", "0x20b00603300600c00213600620b00605800605600205800620b006133006", "0x13300213500620b00604100612b00205b00620b00612b006016002134006", "0x5800200220b00600200900205d13505b13400c00605d00620b006136006", "0x20b00612b00601600205f00620b00603300600c00213700620b006131006", "0xc00606400620b00613700613300213800620b00604100612b002061006", "0x213400213900620b00600213100200220b00600200900206413806105f", "0x620b00606713900705b00206700620b00606700604b00206700620b006", "0x605800206a00620b00613b06900705d00206900620b00600213500213b", "0x620b00603500601600213c00620b00603900600c00206c00620b00606a", "0x13c00c00607100620b00606c00613300213f00620b00600700612b00206f", "0x602f00603300200220b00600211e00200220b00600200900207113f06f", "0x214514100720b00607500613700207500620b00600700612b00200220b", "0x7700620b00600205f00207600620b00600213100200220b006145006033", "0x213500207900620b00607707600705b00207700620b00607700604b002", "0x620b00614b00605800214b00620b00607914600705d00214600620b006", "0x612b00207f00620b00601600601600214a00620b00600c00600c00207b", "0x21510c707f14a00c00615100620b00607b0061330020c700620b006141", "0x13100200220b00600900606100200220b00600211e00200220b006002009", "0x14e00620b00614e00604b00214e00620b00600213400215200620b006002", "0x8300705d00208300620b00600213500214f00620b00614e15200705b002", "0x620b00600f00600c00215000620b00608500605800208500620b00614f", "0x613300216000620b00600700612b00216100620b00601000601600215e", "0x200600200220b00600200200215f16016115e00c00615f00620b006150", "0x200900201000f00729701600c00720b00700600200700700200220b006", "0x201500620b00601400601900201400620b00600900601b00200220b006", "0x20b00600206500200220b0060170060c400201b01700720b00601500601c", "0x5400200220b00601c0060c40020c401c00720b00601900601c002019006", "0x20b00606500611b00205400620b0060c400605400206500620b00601b006", "0x229800220b00705406500702900200c00620b00600c00600c002065006", "0x620b00611b00602b00211b00620b00600202a00200220b006002009002", "0x20b00600200900200229900600202d00202a00620b00602900602c002029", "0x2c00602c00202c00620b00602b00602e00202b00620b00600202a002002", "0x2d00620b00602d00602c00202d00620b00602a00602f00202a00620b006", "0x211e00200220b00600200900202f00629a02e00620b00702d006030002", "0x603900203000620b00600204800200220b00602e00603300200220b006", "0x3503900729b04803300720b00703001600c00903500203000620b006030", "0x3700620b00600212000211e00620b00600203700200220b006002009002", "0x620b00600203c00210d00620b00600203a00212000620b00600210d002", "0x20b00600203e00212400620b00600207d00203c00620b00600212400203a", "0x607f00203e00620b00607d12403c03a10d12003711e01412a00207d006", "0x620b00604800601600200220b00612a00604700212c12a00720b00603e", "0x90ab00212e00620b00612c00604100204500620b00600700612b00212d", "0x615100203300620b00603300600c00204304112b00920b00612e04512d", "0x20b00604700615200200220b00600200900213100629c04700620b007043", "0x4d00204e04b00720b00613000613000204d00620b006002131002130006", "0x620b00604d00604e00205100620b00604e00604b00200220b00604b006", "0x13200200220b00613200603300213204f00720b00605305100704f002053", "0x20b00605600605300200220b00612f00605100205612f00720b00604f006", "0xc00213600620b00605800605600205800620b00613300612f002133006", "0x20b00604100612b00205b00620b00612b00601600213400620b006033006", "0x600200900205d13505b13400c00605d00620b006136006133002135006", "0x1600205f00620b00603300600c00213700620b00613100605800200220b", "0x20b00613700613300213800620b00604100612b00206100620b00612b006", "0x620b00600213100200220b00600200900206413806105f00c006064006", "0x13900705b00206700620b00606700604b00206700620b006002134002139", "0x620b00613b06900705d00206900620b00600213500213b00620b006067", "0x601600213c00620b00603900600c00206c00620b00606a00605800206a", "0x620b00606c00613300213f00620b00600700612b00206f00620b006035", "0x200220b00600211e00200220b00600200900207113f06f13c00c006071", "0x20b00607500613700207500620b00600700612b00200220b00602f006033", "0x205f00207600620b00600213100200220b006145006033002145141007", "0x620b00607707600705b00207700620b00607700604b00207700620b006", "0x605800214b00620b00607914600705d00214600620b006002135002079", "0x620b00601600601600214a00620b00600c00600c00207b00620b00614b", "0x14a00c00615100620b00607b0061330020c700620b00614100612b00207f", "0x600900606100200220b00600211e00200220b0060020090021510c707f", "0x14e00604b00214e00620b00600213400215200620b00600213100200220b", "0x8300620b00600213500214f00620b00614e15200705b00214e00620b006", "0x600c00215000620b00608500605800208500620b00614f08300705d002", "0x620b00600700612b00216100620b00601000601600215e00620b00600f", "0x20b00600200200215f16016115e00c00615f00620b006150006133002160", "0xf00729d01600c00720b00700600200700700200220b006002006002002", "0x601400601900201400620b00600900601b00200220b006002009002010", "0x200220b0060170060c400201b01700720b00601500601c00201500620b", "0x601c0060c40020c401c00720b00601900601c00201900620b006002065", "0x11b00205400620b0060c400605400206500620b00601b00605400200220b", "0x705406500702900200c00620b00600c00600c00206500620b006065006", "0x602b00211b00620b00600202a00200220b00600200900200229e00220b", "0x200229f00600202d00202a00620b00602900602c00202900620b00611b", "0x2c00620b00602b00602e00202b00620b00600202a00200220b006002009", "0x2d00602c00202d00620b00602a00602f00202a00620b00602c00602c002", "0x20b00600200900202f0062a002e00620b00702d00603000202d00620b006", "0x620b00600204800200220b00602e00603300200220b00600211e002002", "0x4803300720b00703001600c00903500203000620b006030006039002030", "0x212000211e00620b00600203700200220b0060020090020350390072a1", "0x3c00210d00620b00600203a00212000620b00600210d00203700620b006", "0x212400620b00600207d00203c00620b00600212400203a00620b006002", "0x620b00607d12403c03a10d12003711e01412a00207d00620b00600203e", "0x601600200220b00612a00604700212c12a00720b00603e00607f00203e", "0x620b00612c00604100204500620b00600700612b00212d00620b006048", "0x620b00603300600c00204304112b00920b00612e04512d00918100212e", "0x15200200220b0060020090021310062a204700620b007043006151002033", "0x720b00613000613000204d00620b00600213100213000620b006047006", "0x604e00205100620b00604e00604b00200220b00604b00604d00204e04b", "0x613200603300213204f00720b00605305100704f00205300620b00604d", "0x5300200220b00612f00605100205612f00720b00604f00613200200220b", "0x20b00605800605600205800620b00613300612f00213300620b006056006", "0x12b00205b00620b00612b00601600213400620b00603300600c002136006", "0x5d13505b13400c00605d00620b00613600613300213500620b006041006", "0x20b00603300600c00213700620b00613100605800200220b006002009002", "0x13300213800620b00604100612b00206100620b00612b00601600205f006", "0x13100200220b00600200900206413806105f00c00606400620b006137006", "0x6700620b00606700604b00206700620b00600213400213900620b006002", "0x6900705d00206900620b00600213500213b00620b00606713900705b002", "0x620b00603900600c00206c00620b00606a00605800206a00620b00613b", "0x613300213f00620b00600700612b00206f00620b00603500601600213c", "0x211e00200220b00600200900207113f06f13c00c00607100620b00606c", "0x13700207500620b00600700612b00200220b00602f00603300200220b006", "0x620b00600213100200220b00614500603300214514100720b006075006", "0x7600705b00207700620b00607700604b00207700620b00600205f002076", "0x620b00607914600705d00214600620b00600213500207900620b006077", "0x601600214a00620b00600c00600c00207b00620b00614b00605800214b", "0x620b00607b0061330020c700620b00614100612b00207f00620b006016", "0x200220b00600211e00200220b0060020090021510c707f14a00c006151", "0x14e00620b00600213400215200620b00600213100200220b006009006061", "0x213500214f00620b00614e15200705b00214e00620b00614e00604b002", "0x620b00608500605800208500620b00614f08300705d00208300620b006", "0x612b00216100620b00601000601600215e00620b00600f00600c002150", "0x215f16016115e00c00615f00620b00615000613300216000620b006007", "0xc00720b00700600200700700200220b00600200600200220b006002002", "0x201400620b00600900601b00200220b00600200900201000f0072a3016", "0x170060c400201b01700720b00601500601c00201500620b006014006019", "0x20c401c00720b00601900601c00201900620b00600206500200220b006", "0x20b0060c400605400206500620b00601b00605400200220b00601c0060c4", "0x2900200c00620b00600c00600c00206500620b00606500611b002054006", "0x620b00600202a00200220b0060020090020022a400220b007054065007", "0x202d00202a00620b00602900602c00202900620b00611b00602b00211b", "0x2b00602e00202b00620b00600202a00200220b0060020090020022a5006", "0x2d00620b00602a00602f00202a00620b00602c00602c00202c00620b006", "0x202f0062a602e00620b00702d00603000202d00620b00602d00602c002", "0x4800200220b00602e00603300200220b00600211e00200220b006002009", "0x703001600c00903500203000620b00603000603900203000620b006002", "0x620b00600203700200220b0060020090020350390072a704803300720b", "0x20b00600203a00212000620b00600210d00203700620b00600212000211e", "0x600207d00203c00620b00600212400203a00620b00600203c00210d006", "0x12403c03a10d12003711e01412a00207d00620b00600203e00212400620b", "0x20b00612a00604700212c12a00720b00603e00607f00203e00620b00607d", "0x612b00212e00620b00604800601600204500620b00603300600c002002", "0x13104712e04500c0cf00213100620b00612c00604100204700620b006007", "0x900204d0062a813000620b00712d0060c800212d04304112b00c20b006", "0x204e00620b00600213100204b00620b0061300060c900200220b006002", "0x61320060c600200220b00604f0060cb00213204f00720b00604b0060ca", "0x5100720b00605612f0070b300205600620b00604e00604e00212f00620b", "0x605100205813300720b00605100613200200220b006053006033002053", "0x13400620b00613600612f00213600620b00605800605300200220b006133", "0x4100601600213500620b00612b00600c00205b00620b006134006056002", "0x5f00620b00605b00613300213700620b00604300612b00205d00620b006", "0x6100620b00604d00605800200220b00600200900205f13705d13500c006", "0x4300612b00206400620b00604100601600213800620b00612b00600c002", "0x900206713906413800c00606700620b00606100613300213900620b006", "0x4b00206900620b00600213400213b00620b00600213100200220b006002", "0x20b00600213500206a00620b00606913b00705b00206900620b006069006", "0x206f00620b00613c00605800213c00620b00606a06c00705d00206c006", "0x600700612b00207100620b00603500601600213f00620b00603900600c", "0x200900214514107113f00c00614500620b00606f00613300214100620b", "0x700612b00200220b00602f00603300200220b00600211e00200220b006", "0x220b00607600603300207607500720b00607700613700207700620b006", "0x20b00614600604b00214600620b00600205f00207900620b006002131002", "0x5d00207b00620b00600213500214b00620b00614607900705b002146006", "0x600c00600c00207f00620b00614a00605800214a00620b00614b07b007", "0x215200620b00607500612b00215100620b0060160060160020c700620b", "0x200220b00600200900214e1521510c700c00614e00620b00607f006133", "0x214f00620b00600213100200220b00600900606100200220b00600211e", "0x608314f00705b00208300620b00608300604b00208300620b006002134", "0x215e00620b00608515000705d00215000620b00600213500208500620b", "0x601000601600216000620b00600f00600c00216100620b00615e006058", "0x616300620b00616100613300215d00620b00600700612b00215f00620b", "0x700700200220b00600200600200220b00600200200216315d15f16000c", "0x601b00200220b00600200900201000f0072a901600c00720b007006002", "0x720b00601500601c00201500620b00601400601900201400620b006009", "0x1900601c00201900620b00600206500200220b0060170060c400201b017", "0x6500620b00601b00605400200220b00601c0060c40020c401c00720b006", "0xc00600c00206500620b00606500611b00205400620b0060c4006054002", "0x220b0060020090020022aa00220b00705406500702900200c00620b006", "0x602900602c00202900620b00611b00602b00211b00620b00600202a002", "0x20b00600202a00200220b0060020090020022ab00600202d00202a00620b", "0x2f00202a00620b00602c00602c00202c00620b00602b00602e00202b006", "0x20b00702d00603000202d00620b00602d00602c00202d00620b00602a006", "0x603300200220b00600211e00200220b00600200900202f0062ac02e006", "0x203000620b00603000603900203000620b00600204800200220b00602e", "0x220b0060020090020350390072ad04803300720b00703001600c009035", "0x620b00600210d00203700620b00600212000211e00620b006002037002", "0x20b00600212400203a00620b00600203c00210d00620b00600203a002120", "0x11e01412a00207d00620b00600203e00212400620b00600207d00203c006", "0x12c12a00720b00603e00607f00203e00620b00607d12403c03a10d120037", "0x60410060b500204100620b00612c00604100200220b00612a006047002", "0x204512d00720b00612b00618e00204300620b00600213100212b00620b", "0x20b00604300604e00213100620b0060450060b900200220b00612d0060b7", "0x200220b00604700603300204712e00720b0061301310070ba002130006", "0x604b00605300200220b00604d00605100204b04d00720b00612e006132", "0x213200620b00604f00605600204f00620b00604e00612f00204e00620b", "0x600700612b00205300620b00604800601600205100620b00603300600c", "0x200900205612f05305100c00605600620b00613200613300212f00620b", "0x604b00205800620b00600213400213300620b00600213100200220b006", "0x620b00600213500213600620b00605813300705b00205800620b006058", "0xc00213500620b00605b00605800205b00620b00613613400705d002134", "0x20b00600700612b00213700620b00603500601600205d00620b006039006", "0x600200900206105f13705d00c00606100620b00613500613300205f006", "0x600700612b00200220b00602f00603300200220b00600211e00200220b", "0x200220b00606400603300206413800720b00613900613700213900620b", "0x620b00613b00604b00213b00620b00600205f00206700620b006002131", "0x705d00206a00620b00600213500206900620b00613b06700705b00213b", "0x20b00600c00600c00213c00620b00606c00605800206c00620b00606906a", "0x13300207100620b00613800612b00213f00620b00601600601600206f006", "0x11e00200220b00600200900214107113f06f00c00614100620b00613c006", "0x13400214500620b00600213100200220b00600900606100200220b006002", "0x20b00607514500705b00207500620b00607500604b00207500620b006002", "0x5800207900620b00607607700705d00207700620b006002135002076006", "0x20b00601000601600214b00620b00600f00600c00214600620b006079006", "0xc00607f00620b00614600613300214a00620b00600700612b00207b006", "0x200700700200220b00600200600200220b00600200200207f14a07b14b", "0x900601b00200220b00600200900201000f0072ae01600c00720b007006", "0x1700720b00601500601c00201500620b00601400601900201400620b006", "0x601900601c00201900620b00600206500200220b0060170060c400201b", "0x206500620b00601b00605400200220b00601c0060c40020c401c00720b", "0x600c00600c00206500620b00606500611b00205400620b0060c4006054", "0x200220b0060020090020022af00220b00705406500702900200c00620b", "0x20b00602900602c00202900620b00611b00602b00211b00620b00600202a", "0x620b00600202a00200220b0060020090020022b000600202d00202a006", "0x602f00202a00620b00602c00602c00202c00620b00602b00602e00202b", "0x620b00702d00603000202d00620b00602d00602c00202d00620b00602a", "0x2e00603300200220b00600211e00200220b00600200900202f0062b102e", "0x3500203000620b00603000603900203000620b00600204800200220b006", "0x200220b0060020090020350390072b204803300720b00703001600c009", "0x12000620b00600210d00203700620b00600212000211e00620b006002037", "0x620b00600212400203a00620b00600203c00210d00620b00600203a002", "0x3711e01412a00207d00620b00600203e00212400620b00600207d00203c", "0x212c12a00720b00603e00607f00203e00620b00607d12403c03a10d120", "0x12b00620b00600213100200220b00612c00604700200220b00612a006047", "0x4300604d00212d04300720b00604100613000204100620b0060020bb002", "0x213100620b00612b00604e00204700620b00612d00604b00200220b006", "0x4500613200200220b00612e00603300212e04500720b00613104700704f", "0x4b00620b00604d00605300200220b00613000605100204d13000720b006", "0x3300600c00204f00620b00604e00605600204e00620b00604b00612f002", "0x5300620b00600700612b00205100620b00604800601600213200620b006", "0x220b00600200900212f05305113200c00612f00620b00604f006133002", "0x20b00613300604b00213300620b00600213400205600620b006002131002", "0x5d00213600620b00600213500205800620b00613305600705b002133006", "0x603900600c00205b00620b00613400605800213400620b006058136007", "0x213700620b00600700612b00205d00620b00603500601600213500620b", "0x200220b00600200900205f13705d13500c00605f00620b00605b006133", "0x6400620b00600700612b00200220b00602f00603300200220b00600211e", "0x600213100200220b00613800603300213806100720b006064006137002", "0x5b00206700620b00606700604b00206700620b00600205f00213900620b", "0x613b06900705d00206900620b00600213500213b00620b006067139007", "0x213c00620b00600c00600c00206c00620b00606a00605800206a00620b", "0x606c00613300213f00620b00606100612b00206f00620b006016006016", "0x20b00600211e00200220b00600200900207113f06f13c00c00607100620b", "0x20b00600213400214100620b00600213100200220b006009006061002002", "0x207500620b00614514100705b00214500620b00614500604b002145006", "0x607700605800207700620b00607507600705d00207600620b006002135", "0x214b00620b00601000601600214600620b00600f00600c00207900620b", "0x7b14b14600c00614a00620b00607900613300207b00620b00600700612b", "0x20b00700600200700700200220b00600200600200220b00600200200214a", "0x620b00600900601b00200220b00600200900201000f0072b301600c007", "0xc400201b01700720b00601500601c00201500620b006014006019002014", "0x1c00720b00601900601c00201900620b00600206500200220b006017006", "0xc400605400206500620b00601b00605400200220b00601c0060c40020c4", "0xc00620b00600c00600c00206500620b00606500611b00205400620b006", "0x600202a00200220b0060020090020022b400220b007054065007029002", "0x202a00620b00602900602c00202900620b00611b00602b00211b00620b", "0x2e00202b00620b00600202a00200220b0060020090020022b500600202d", "0x20b00602a00602f00202a00620b00602c00602c00202c00620b00602b006", "0x62b602e00620b00702d00603000202d00620b00602d00602c00202d006", "0x220b00602e00603300200220b00600211e00200220b00600200900202f", "0x1600c00903500203000620b00603000603900203000620b006002048002", "0x600203700200220b0060020090020350390072b704803300720b007030", "0x203a00212000620b00600210d00203700620b00600212000211e00620b", "0x7d00203c00620b00600212400203a00620b00600203c00210d00620b006", "0x3a10d12003711e01412a00207d00620b00600203e00212400620b006002", "0x12a00604700212c12a00720b00603e00607f00203e00620b00607d12403c", "0x212e00620b00604800601600204500620b00603300600c00200220b006", "0x12e04500c0bd00213100620b00612c00604100204700620b00600700612b", "0x4d0062b813000620b00712d00618f00212d04304112b00c20b006131047", "0x620b00600213100204b00620b0061300060be00200220b006002009002", "0x611b00200220b00604f0060c400213204f00720b00604b00601c00204e", "0x20b00605612f0070bf00205600620b00604e00604e00212f00620b006132", "0x205813300720b00605100613200200220b006053006033002053051007", "0x20b00613600612f00213600620b00605800605300200220b006133006051", "0x1600213500620b00612b00600c00205b00620b006134006056002134006", "0x20b00605b00613300213700620b00604300612b00205d00620b006041006", "0x20b00604d00605800200220b00600200900205f13705d13500c00605f006", "0x12b00206400620b00604100601600213800620b00612b00600c002061006", "0x6713906413800c00606700620b00606100613300213900620b006043006", "0x6900620b00600213400213b00620b00600213100200220b006002009002", "0x213500206a00620b00606913b00705b00206900620b00606900604b002", "0x620b00613c00605800213c00620b00606a06c00705d00206c00620b006", "0x612b00207100620b00603500601600213f00620b00603900600c00206f", "0x214514107113f00c00614500620b00606f00613300214100620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x607600603300207607500720b00607700613700207700620b006007006", "0x14600604b00214600620b00600205f00207900620b00600213100200220b", "0x7b00620b00600213500214b00620b00614607900705b00214600620b006", "0x600c00207f00620b00614a00605800214a00620b00614b07b00705d002", "0x620b00607500612b00215100620b0060160060160020c700620b00600c", "0x20b00600200900214e1521510c700c00614e00620b00607f006133002152", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14f00705b00208300620b00608300604b00208300620b00600213400214f", "0x620b00608515000705d00215000620b00600213500208500620b006083", "0x601600216000620b00600f00600c00216100620b00615e00605800215e", "0x620b00616100613300215d00620b00600700612b00215f00620b006010", "0x200220b00600200600200220b00600200200216315d15f16000c006163", "0x200220b00600200900201000f0072b901600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x60020090020022ba00220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b0060020090020022bb00600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f0062bc02e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x60020090020350390072bd04803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x720b00603e00607f00203e00620b00607d12403c03a10d12003711e014", "0x601600204500620b00603300600c00200220b00612a00604700212c12a", "0x620b00612c00604100204700620b00600700612b00212e00620b006048", "0x712d00618f00212d04304112b00c20b00613104712e04500c0c1002131", "0x4b00620b0061300060be00200220b00600200900204d0062be13000620b", "0x4f0060c400213204f00720b00604b00601c00204e00620b006002131002", "0x205600620b00604e00604e00212f00620b00613200611b00200220b006", "0x5100613200200220b00605300603300205305100720b00605612f0070bf", "0x13600620b00605800605300200220b00613300605100205813300720b006", "0x12b00600c00205b00620b00613400605600213400620b00613600612f002", "0x13700620b00604300612b00205d00620b00604100601600213500620b006", "0x220b00600200900205f13705d13500c00605f00620b00605b006133002", "0x4100601600213800620b00612b00600c00206100620b00604d006058002", "0x6700620b00606100613300213900620b00604300612b00206400620b006", "0x213b00620b00600213100200220b00600200900206713906413800c006", "0x606913b00705b00206900620b00606900604b00206900620b006002134", "0x213c00620b00606a06c00705d00206c00620b00600213500206a00620b", "0x603500601600213f00620b00603900600c00206f00620b00613c006058", "0x614500620b00606f00613300214100620b00600700612b00207100620b", "0x603300200220b00600211e00200220b00600200900214514107113f00c", "0x7500720b00607700613700207700620b00600700612b00200220b00602f", "0x20b00600205f00207900620b00600213100200220b006076006033002076", "0x214b00620b00614607900705b00214600620b00614600604b002146006", "0x614a00605800214a00620b00614b07b00705d00207b00620b006002135", "0x215100620b0060160060160020c700620b00600c00600c00207f00620b", "0x1521510c700c00614e00620b00607f00613300215200620b00607500612b", "0x220b00600900606100200220b00600211e00200220b00600200900214e", "0x20b00608300604b00208300620b00600213400214f00620b006002131002", "0x5d00215000620b00600213500208500620b00608314f00705b002083006", "0x600f00600c00216100620b00615e00605800215e00620b006085150007", "0x215d00620b00600700612b00215f00620b00601000601600216000620b", "0x200220b00600200200216315d15f16000c00616300620b006161006133", "0x201000f0072bf01600c00720b00700600200700700200220b006002006", "0x620b00601400601900201400620b00600900601b00200220b006002009", "0x206500200220b0060170060c400201b01700720b00601500601c002015", "0x220b00601c0060c40020c401c00720b00601900601c00201900620b006", "0x6500611b00205400620b0060c400605400206500620b00601b006054002", "0x220b00705406500702900200c00620b00600c00600c00206500620b006", "0x611b00602b00211b00620b00600202a00200220b0060020090020022c0", "0x20090020022c100600202d00202a00620b00602900602c00202900620b", "0x2c00202c00620b00602b00602e00202b00620b00600202a00200220b006", "0x20b00602d00602c00202d00620b00602a00602f00202a00620b00602c006", "0x200220b00600200900202f0062c202e00620b00702d00603000202d006", "0x203000620b00600204800200220b00602e00603300200220b00600211e", "0x72c304803300720b00703001600c00903500203000620b006030006039", "0x20b00600212000211e00620b00600203700200220b006002009002035039", "0x600203c00210d00620b00600203a00212000620b00600210d002037006", "0x203e00212400620b00600207d00203c00620b00600212400203a00620b", "0x203e00620b00607d12403c03a10d12003711e01412a00207d00620b006", "0x603300600c00200220b00612a00604700212c12a00720b00603e00607f", "0x204700620b00600700612b00212e00620b00604800601600204500620b", "0x4304112b00c20b00613104712e04500c19000213100620b00612c006041", "0x19b00200220b00600200900204d0062c413000620b00712d0060c300212d", "0x720b00604b00619c00204e00620b00600213100204b00620b006130006", "0x604e00212f00620b00613200619d00200220b00604f0060d400213204f", "0x605300603300205305100720b00605612f0071a000205600620b00604e", "0x5300200220b00613300605100205813300720b00605100613200200220b", "0x20b00613400605600213400620b00613600612f00213600620b006058006", "0x12b00205d00620b00604100601600213500620b00612b00600c00205b006", "0x5f13705d13500c00605f00620b00605b00613300213700620b006043006", "0x20b00612b00600c00206100620b00604d00605800200220b006002009002", "0x13300213900620b00604300612b00206400620b006041006016002138006", "0x13100200220b00600200900206713906413800c00606700620b006061006", "0x6900620b00606900604b00206900620b00600213400213b00620b006002", "0x6c00705d00206c00620b00600213500206a00620b00606913b00705b002", "0x620b00603900600c00206f00620b00613c00605800213c00620b00606a", "0x613300214100620b00600700612b00207100620b00603500601600213f", "0x211e00200220b00600200900214514107113f00c00614500620b00606f", "0x13700207700620b00600700612b00200220b00602f00603300200220b006", "0x620b00600213100200220b00607600603300207607500720b006077006", "0x7900705b00214600620b00614600604b00214600620b00600205f002079", "0x620b00614b07b00705d00207b00620b00600213500214b00620b006146", "0x60160020c700620b00600c00600c00207f00620b00614a00605800214a", "0x620b00607f00613300215200620b00607500612b00215100620b006016", "0x200220b00600211e00200220b00600200900214e1521510c700c00614e", "0x8300620b00600213400214f00620b00600213100200220b006009006061", "0x213500208500620b00608314f00705b00208300620b00608300604b002", "0x620b00615e00605800215e00620b00608515000705d00215000620b006", "0x612b00215f00620b00601000601600216000620b00600f00600c002161", "0x216315d15f16000c00616300620b00616100613300215d00620b006007", "0xc00720b00700600200700700200220b00600200600200220b006002002", "0x201700620b00600900600f00200220b00600200900201000f0072c5016", "0x1500607700200c00620b00600c00600c00201501400720b006017006076", "0x620b00601400601b00200220b0060020090020190062c601b00620b007", "0xc400205406500720b0060c400601c0020c400620b00601c00601900201c", "0x2900720b00611b00601c00211b00620b00600206500200220b006065006", "0x2a00605400202b00620b00605400605400200220b0060290060c400202a", "0x220b00702c02b00702900202b00620b00602b00611b00202c00620b006", "0x602d00602b00202d00620b00600202a00200220b0060020090020022c7", "0x20090020022c800600202d00202f00620b00602e00602c00202e00620b", "0x2c00203300620b00603000602e00203000620b00600202a00200220b006", "0x20b00604800602c00204800620b00602f00602f00202f00620b006033006", "0x200220b0060020090020350062c903900620b007048006030002048006", "0x620b00611e00603900211e00620b00600204800200220b006039006033", "0x600200900203a10d0072ca12003700720b00711e01600c00903500211e", "0x20b00600212000203c00620b00600203700200220b00600211e00200220b", "0x600203c00203e00620b00600203a00207d00620b00600210d002124006", "0x203e00212b00620b00600207d00212c00620b00600212400212a00620b", "0x204300620b00604112b12c12a03e07d12403c01412a00204100620b006", "0x604500604100200220b00612d00604700204512d00720b00604300607f", "0x12e00620b0061310470070d600213100620b00601b00604b00204700620b", "0x4d0060d000204b04d00720b00612e00616b00213000620b006002131002", "0x205100620b00613000604e00213200620b00604b00602c00200220b006", "0x4e00613200200220b00604f00603300204f04e00720b00605113200716c", "0x5600620b00612f00605300200220b00605300605100212f05300720b006", "0x3700600c00205800620b00613300605600213300620b00605600612f002", "0x5b00620b00600700612b00213400620b00612000601600213600620b006", "0x220b00600200900213505b13413600c00613500620b006058006133002", "0x5d00620b00600213100200220b00601b00604d00200220b00600211e002", "0x13705d00705b00213700620b00613700604b00213700620b006002134002", "0x13800620b00605f06100705d00206100620b00600213500205f00620b006", "0x3a00601600213900620b00610d00600c00206400620b006138006058002", "0x6900620b00606400613300213b00620b00600700612b00206700620b006", "0x3300200220b00600211e00200220b00600200900206913b06713900c006", "0x13c00620b00600700612b00200220b00601b00604d00200220b006035006", "0x600213100200220b00606c00603300206c06a00720b00613c006137002", "0x5b00213f00620b00613f00604b00213f00620b00600205f00206f00620b", "0x607114100705d00214100620b00600213500207100620b00613f06f007", "0x207600620b00600c00600c00207500620b00614500605800214500620b", "0x607500613300207900620b00606a00612b00207700620b006016006016", "0x20b00600211e00200220b00600200900214607907707600c00614600620b", "0x20b00600213100200220b00601400606100200220b006019006033002002", "0x705b00207b00620b00607b00604b00207b00620b00600213800214b006", "0x20b00614a07f00705d00207f00620b00600213500214a00620b00607b14b", "0x1600215200620b00600c00600c00215100620b0060c70060580020c7006", "0x20b00615100613300214f00620b00600700612b00214e00620b006016006", "0x220b00600211e00200220b00600200900208314f14e15200c006083006", "0x620b00600213400208500620b00600213100200220b006009006061002", "0x13500215e00620b00615008500705b00215000620b00615000604b002150", "0x20b00616000605800216000620b00615e16100705d00216100620b006002", "0x12b00216300620b00601000601600215d00620b00600f00600c00215f006", "0x16215c16315d00c00616200620b00615f00613300215c00620b006007006", "0x720b00700600200700700200220b00600200600200220b006002002002", "0x1400620b00600900601b00200220b00600200900201000f0072cb01600c", "0x60c400201b01700720b00601500601c00201500620b006014006019002", "0xc401c00720b00601900601c00201900620b00600206500200220b006017", "0x60c400605400206500620b00601b00605400200220b00601c0060c4002", "0x200c00620b00600c00600c00206500620b00606500611b00205400620b", "0x20b00600202a00200220b0060020090020022cc00220b007054065007029", "0x2d00202a00620b00602900602c00202900620b00611b00602b00211b006", "0x602e00202b00620b00600202a00200220b0060020090020022cd006002", "0x620b00602a00602f00202a00620b00602c00602c00202c00620b00602b", "0x2f0062ce02e00620b00702d00603000202d00620b00602d00602c00202d", "0x200220b00602e00603300200220b00600211e00200220b006002009002", "0x3001600c00903500203000620b00603000603900203000620b006002048", "0x20b00600203700200220b0060020090020350390072cf04803300720b007", "0x600203a00212000620b00600210d00203700620b00600212000211e006", "0x207d00203c00620b00600212400203a00620b00600203c00210d00620b", "0x3c03a10d12003711e01412a00207d00620b00600203e00212400620b006", "0x612a00604700212c12a00720b00603e00607f00203e00620b00607d124", "0x600219f00212b00620b00600213100200220b00612c00604700200220b", "0x200220b00604300604d00212d04300720b00604100613000204100620b", "0x13104700704f00213100620b00612b00604e00204700620b00612d00604b", "0x13000720b00604500613200200220b00612e00603300212e04500720b006", "0x4b00612f00204b00620b00604d00605300200220b00613000605100204d", "0x13200620b00603300600c00204f00620b00604e00605600204e00620b006", "0x4f00613300205300620b00600700612b00205100620b006048006016002", "0x600213100200220b00600200900212f05305113200c00612f00620b006", "0x5b00213300620b00613300604b00213300620b00600213400205600620b", "0x605813600705d00213600620b00600213500205800620b006133056007", "0x213500620b00603900600c00205b00620b00613400605800213400620b", "0x605b00613300213700620b00600700612b00205d00620b006035006016", "0x20b00600211e00200220b00600200900205f13705d13500c00605f00620b", "0x6400613700206400620b00600700612b00200220b00602f006033002002", "0x213900620b00600213100200220b00613800603300213806100720b006", "0x606713900705b00206700620b00606700604b00206700620b00600205f", "0x206a00620b00613b06900705d00206900620b00600213500213b00620b", "0x601600601600213c00620b00600c00600c00206c00620b00606a006058", "0x607100620b00606c00613300213f00620b00606100612b00206f00620b", "0x606100200220b00600211e00200220b00600200900207113f06f13c00c", "0x4b00214500620b00600213400214100620b00600213100200220b006009", "0x20b00600213500207500620b00614514100705b00214500620b006145006", "0x207900620b00607700605800207700620b00607507600705d002076006", "0x600700612b00214b00620b00601000601600214600620b00600f00600c", "0x200200214a07b14b14600c00614a00620b00607900613300207b00620b", "0x2d001600c00720b00700600200700700200220b00600200600200220b006", "0x601900201400620b00600900601b00200220b00600200900201000f007", "0x20b0060170060c400201b01700720b00601500601c00201500620b006014", "0x60c40020c401c00720b00601900601c00201900620b006002065002002", "0x5400620b0060c400605400206500620b00601b00605400200220b00601c", "0x6500702900200c00620b00600c00600c00206500620b00606500611b002", "0x211b00620b00600202a00200220b0060020090020022d100220b007054", "0x2d200600202d00202a00620b00602900602c00202900620b00611b00602b", "0x20b00602b00602e00202b00620b00600202a00200220b006002009002002", "0x2c00202d00620b00602a00602f00202a00620b00602c00602c00202c006", "0x200900202f0062d302e00620b00702d00603000202d00620b00602d006", "0x600204800200220b00602e00603300200220b00600211e00200220b006", "0x720b00703001600c00903500203000620b00603000603900203000620b", "0x211e00620b00600203700200220b0060020090020350390072d4048033", "0x10d00620b00600203a00212000620b00600210d00203700620b006002120", "0x620b00600207d00203c00620b00600212400203a00620b00600203c002", "0x607d12403c03a10d12003711e01412a00207d00620b00600203e002124", "0x200220b00612a00604700212c12a00720b00603e00607f00203e00620b", "0x4100620b0060020bb00212b00620b00600213100200220b00612c006047", "0x12d00604b00200220b00604300604d00212d04300720b006041006130002", "0x720b00613104700704f00213100620b00612b00604e00204700620b006", "0x5100204d13000720b00604500613200200220b00612e00603300212e045", "0x620b00604b00612f00204b00620b00604d00605300200220b006130006", "0x601600213200620b00603300600c00204f00620b00604e00605600204e", "0x620b00604f00613300205300620b00600700612b00205100620b006048", "0x5600620b00600213100200220b00600200900212f05305113200c00612f", "0x13305600705b00213300620b00613300604b00213300620b006002134002", "0x13400620b00605813600705d00213600620b00600213500205800620b006", "0x3500601600213500620b00603900600c00205b00620b006134006058002", "0x5f00620b00605b00613300213700620b00600700612b00205d00620b006", "0x3300200220b00600211e00200220b00600200900205f13705d13500c006", "0x720b00606400613700206400620b00600700612b00200220b00602f006", "0x600205f00213900620b00600213100200220b006138006033002138061", "0x13b00620b00606713900705b00206700620b00606700604b00206700620b", "0x6a00605800206a00620b00613b06900705d00206900620b006002135002", "0x6f00620b00601600601600213c00620b00600c00600c00206c00620b006", "0x6f13c00c00607100620b00606c00613300213f00620b00606100612b002", "0x20b00600900606100200220b00600211e00200220b00600200900207113f", "0x614500604b00214500620b00600213400214100620b006002131002002", "0x207600620b00600213500207500620b00614514100705b00214500620b", "0xf00600c00207900620b00607700605800207700620b00607507600705d", "0x7b00620b00600700612b00214b00620b00601000601600214600620b006", "0x220b00600200200214a07b14b14600c00614a00620b006079006133002", "0x1000f0072d501600c00720b00700600200700700200220b006002006002", "0x20b00601700607600201700620b00600900600f00200220b006002009002", "0x2d601b00620b00701500607700200c00620b00600c00600c002015014007", "0x1c00601900201c00620b00601400601b00200220b006002009002019006", "0x220b0060650060c400205406500720b0060c400601c0020c400620b006", "0x290060c400202a02900720b00611b00601c00211b00620b006002065002", "0x202c00620b00602a00605400202b00620b00605400605400200220b006", "0x20090020022d700220b00702c02b00702900202b00620b00602b00611b", "0x2c00202e00620b00602d00602b00202d00620b00600202a00200220b006", "0x2a00200220b0060020090020022d800600202d00202f00620b00602e006", "0x620b00603300602c00203300620b00603000602e00203000620b006002", "0x603000204800620b00604800602c00204800620b00602f00602f00202f", "0x20b00603900603300200220b0060020090020350062d903900620b007048", "0xc00903500211e00620b00611e00603900211e00620b006002048002002", "0x211e00200220b00600200900203a10d0072da12003700720b00711e016", "0x210d00212400620b00600212000203c00620b00600203700200220b006", "0x12400212a00620b00600203c00203e00620b00600203a00207d00620b006", "0x204100620b00600203e00212b00620b00600207d00212c00620b006002", "0x20b00604300607f00204300620b00604112b12c12a03e07d12403c01412a", "0x4b00204700620b00604500604100200220b00612d00604700204512d007", "0x20b00600213100212e00620b0061310470070d700213100620b00601b006", "0x4b00200220b00604d00604d00204b04d00720b00612e006130002130006", "0x605113200704f00205100620b00613000604e00213200620b00604b006", "0x12f05300720b00604e00613200200220b00604f00603300204f04e00720b", "0x605600612f00205600620b00612f00605300200220b006053006051002", "0x213600620b00603700600c00205800620b00613300605600213300620b", "0x605800613300205b00620b00600700612b00213400620b006120006016", "0x20b00600211e00200220b00600200900213505b13413600c00613500620b", "0x20b00600213400205d00620b00600213100200220b00601b00604d002002", "0x205f00620b00613705d00705b00213700620b00613700604b002137006", "0x613800605800213800620b00605f06100705d00206100620b006002135", "0x206700620b00603a00601600213900620b00610d00600c00206400620b", "0x13b06713900c00606900620b00606400613300213b00620b00600700612b", "0x220b00603500603300200220b00600211e00200220b006002009002069", "0x613c00613700213c00620b00600700612b00200220b00601b00604d002", "0x5f00206f00620b00600213100200220b00606c00603300206c06a00720b", "0x20b00613f06f00705b00213f00620b00613f00604b00213f00620b006002", "0x5800214500620b00607114100705d00214100620b006002135002071006", "0x20b00601600601600207600620b00600c00600c00207500620b006145006", "0xc00614600620b00607500613300207900620b00606a00612b002077006", "0x1900603300200220b00600211e00200220b006002009002146079077076", "0x213800214b00620b00600213100200220b00601400606100200220b006", "0x620b00607b14b00705b00207b00620b00607b00604b00207b00620b006", "0x60580020c700620b00614a07f00705d00207f00620b00600213500214a", "0x620b00601600601600215200620b00600c00600c00215100620b0060c7", "0x15200c00608300620b00615100613300214f00620b00600700612b00214e", "0x600900606100200220b00600211e00200220b00600200900208314f14e", "0x15000604b00215000620b00600213400208500620b00600213100200220b", "0x16100620b00600213500215e00620b00615008500705b00215000620b006", "0x600c00215f00620b00616000605800216000620b00615e16100705d002", "0x620b00600700612b00216300620b00601000601600215d00620b00600f", "0x20b00600207500216215c16315d00c00616200620b00615f00613300215c", "0x220b00600200600200220b00600200200200220b00600213900200f006", "0x220b0060020090020170150072db01401000720b007007002007007002", "0x600c00201901b00720b00601c00607600201c00620b00600c00600f002", "0x60020090020c40062dc01600620b00701900607700201000620b006010", "0xf00202a00620b00601400601600202900620b00601000600c00200220b", "0x2a02900914600201600620b00601600f00707900202b00620b00601b006", "0x620b00711b00614b00200220b00600200600211b05406500920b00602b", "0x202f02e00720b00602c00607b00200220b00600200900202d0062dd02c", "0x2e00601b00200220b0060020090020330062de03000620b00702f00614a", "0x3500720b00603900601c00203900620b00604800601900204800620b006", "0x603700601c00203700620b00600206500200220b0060350060c400211e", "0x203a00620b00611e00605400200220b0061200060c400210d12000720b", "0x3c03a00702900203a00620b00603a00611b00203c00620b00610d006054", "0x2b00212400620b00600202a00200220b0060020090020022df00220b007", "0x22e000600202d00203e00620b00607d00602c00207d00620b006124006", "0x620b00612a00602e00212a00620b00600202a00200220b006002009002", "0x602c00212b00620b00603e00602f00203e00620b00612c00602c00212c", "0x60020090020430062e104100620b00712b00603000212b00620b00612b", "0x12d00603900212d00620b00600204800200220b00604100603300200220b", "0x21310470072e212e04500720b00712d05406500903500212d00620b006", "0x12000213000620b00600203700200220b00600211e00200220b006002009", "0x204e00620b00600203a00204b00620b00600210d00204d00620b006002", "0x5100620b00600207d00213200620b00600212400204f00620b00600203c", "0x20b00605305113204f04e04b04d13001412a00205300620b00600203e002", "0xc00200220b00605600604700213305600720b00612f00607f00212f006", "0x20b00612e00601600213700620b00600600612c00205d00620b006045006", "0x4b00213800620b00613300604100206100620b00600900612b00205f006", "0x5f13705d0100d900213900620b00603000604e00206400620b006016006", "0x6700620b00713500615100213505b13413605801620b006139064138061", "0x213100206900620b00606700615200200220b00600200900213b0062e3", "0x220b00606c00604d00213c06c00720b00606900613000206a00620b006", "0x7100704f00214100620b00606a00604e00207100620b00613c00604b002", "0x720b00606f00613200200220b00613f00603300213f06f00720b006141", "0x612f00207600620b00607500605300200220b006145006051002075145", "0x620b00605800600c00207900620b00607700605600207700620b006076", "0x612b00207b00620b00613400601600214b00620b00613600612c002146", "0x7f14a07b14b14601600607f00620b00607900613300214a00620b00605b", "0x20b00605800600c0020c700620b00613b00605800200220b006002009002", "0x12b00214e00620b00613400601600215200620b00613600612c002151006", "0x14f14e15215101600608300620b0060c700613300214f00620b00605b006", "0x220b00603000605100200220b00600211e00200220b006002009002083", "0x620b00600213400208500620b00600213100200220b00601600604d002", "0x13500215e00620b00615008500705b00215000620b00615000604b002150", "0x20b00616000605800216000620b00615e16100705d00216100620b006002", "0x1600216300620b00600600612c00215d00620b00604700600c00215f006", "0x20b00615f00613300216200620b00600900612b00215c00620b006131006", "0x20b00600211e00200220b00600200900208716215c16315d016006087006", "0x601600604d00200220b00603000605100200220b006043006033002002", "0x215715400720b00608a00613700208a00620b00600900612b00200220b", "0x16e00620b00600205f00215b00620b00600213100200220b006157006033", "0x213500216800620b00616e15b00705b00216e00620b00616e00604b002", "0x620b00608e00605800208e00620b0061680ed00705d0020ed00620b006", "0x601600216c00620b00600600612c0020d000620b00606500600c00216b", "0x620b00616b00613300216d00620b00615400612b00209200620b006054", "0x220b00600211e00200220b00600200900217116d09216c0d0016006171", "0x20b00601600604d00200220b00602e00606100200220b006033006033002", "0x617300604b00217300620b00600213800209400620b006002131002002", "0x217500620b00600213500209600620b00617309400705b00217300620b", "0x6500600c00209900620b0060d10060580020d100620b00609617500705d", "0x17a00620b00605400601600209b00620b00600600612c00217600620b006", "0x9b17601600617c00620b00609900613300209d00620b00600900612b002", "0x601600604d00200220b00600211e00200220b00600200900217c09d17a", "0x12c0020a000620b00606500600c0020cc00620b00602d00605800200220b", "0x20b00600900612b0020a200620b00605400601600217d00620b006006006", "0x20090020a417e0a217d0a00160060a400620b0060cc00613300217e006", "0x1b00606100200220b0060c400603300200220b00600211e00200220b006", "0x213800217f00620b00600213100200220b00600f00614e00200220b006", "0x620b0060cd17f00705b0020cd00620b0060cd00604b0020cd00620b006", "0x605800218000620b0060d20a800705d0020a800620b0060021350020d2", "0x620b00600600612c0020ab00620b00601000600c0020ce00620b006180", "0x61330020c800620b00600900612b0020cf00620b006014006016002181", "0x11e00200220b0060020090020c90c80cf1810ab0160060c900620b0060ce", "0x13100200220b00600f00614e00200220b00600c00606100200220b006002", "0xcb00620b0060cb00604b0020cb00620b0060021340020ca00620b006002", "0xb300705d0020b300620b0060021350020c600620b0060cb0ca00705b002", "0x620b00601500600c00218e00620b0060b50060580020b500620b0060c6", "0x612b0020ba00620b0060170060160020b900620b00600600612c0020b7", "0xbd0bb0ba0b90b70160060bd00620b00618e0061330020bb00620b006009", "0x720b00700600200700700200220b00600200600200220b006002002002", "0x1700620b00600900600f00200220b00600200900201000f0072e401600c", "0x607700200c00620b00600c00600c00201501400720b006017006076002", "0x20b00601400600f00200220b0060020090020190062e501b00620b007015", "0x2e605400620b0070c40060770020c401c00720b006065006076002065006", "0x2900601900202900620b00601c00601b00200220b00600200900211b006", "0x220b00602b0060c400202c02b00720b00602a00601c00202a00620b006", "0x2e0060c400202f02e00720b00602d00601c00202d00620b006002065002", "0x203300620b00602f00605400203000620b00602c00605400200220b006", "0x20090020022e700220b00703303000702900203000620b00603000611b", "0x2c00203900620b00604800602b00204800620b00600202a00200220b006", "0x2a00200220b0060020090020022e800600202d00203500620b006039006", "0x620b00603700602c00203700620b00611e00602e00211e00620b006002", "0x603000212000620b00612000602c00212000620b00603500602f002035", "0x20b00610d00603300200220b00600200900203a0062e910d00620b007120", "0xc00903500203c00620b00603c00603900203c00620b006002048002002", "0x211e00200220b00600200900212a03e0072ea07d12400720b00703c016", "0x210d00212b00620b00600212000212c00620b00600203700200220b006", "0x12400212d00620b00600203c00204300620b00600203a00204100620b006", "0x204700620b00600203e00212e00620b00600207d00204500620b006002", "0x20b00612400600c00213100620b00604712e04512d04304112b12c01412a", "0x4100205100620b00600700612b00213200620b00607d00601600204f006", "0x20b00605400604b00212f00620b00601b00604b00205300620b006131006", "0x17d00204e04b04d13000c20b00605612f05305113204f00f1a1002056006", "0x61330060a200200220b0060020090020580062eb13300620b00704e006", "0x5100205b13400720b00613600613200213600620b00600213100200220b", "0x620b00613500612f00213500620b00605b00605300200220b006134006", "0x601600205f00620b00613000600c00213700620b00605d00605600205d", "0x620b00613700613300213800620b00604b00612b00206100620b00604d", "0x620b00605800605800200220b00600200900206413806105f00c006064", "0x612b00213b00620b00604d00601600206700620b00613000600c002139", "0x206a06913b06700c00606a00620b00613900613300206900620b00604b", "0x4d00200220b00605400604d00200220b00600211e00200220b006002009", "0x213c00620b00600213400206c00620b00600213100200220b00601b006", "0x600213500206f00620b00613c06c00705b00213c00620b00613c00604b", "0x14100620b00607100605800207100620b00606f13f00705d00213f00620b", "0x700612b00207500620b00612a00601600214500620b00603e00600c002", "0x900207707607514500c00607700620b00614100613300207600620b006", "0x604d00200220b00603a00603300200220b00600211e00200220b006002", "0x214b00620b00600700612b00200220b00601b00604d00200220b006054", "0x20b00600213100200220b00614600603300214607900720b00614b006137", "0x705b00214a00620b00614a00604b00214a00620b00600205f00207b006", "0x20b00607f0c700705d0020c700620b00600213500207f00620b00614a07b", "0x1600214e00620b00600c00600c00215200620b006151006058002151006", "0x20b00615200613300208300620b00607900612b00214f00620b006016006", "0x220b00600211e00200220b00600200900208508314f14e00c006085006", "0x20b00601b00604d00200220b00601c00606100200220b00611b006033002", "0x615e00604b00215e00620b00600213800215000620b006002131002002", "0x216000620b00600213500216100620b00615e15000705b00215e00620b", "0xc00600c00215d00620b00615f00605800215f00620b00616116000705d", "0x16200620b00600700612b00215c00620b00601600601600216300620b006", "0x220b00600200900208716215c16300c00608700620b00615d006133002", "0x220b00601400606100200220b00601900603300200220b00600211e002", "0x20b00615700604b00215700620b00600213800215400620b006002131002", "0x5d00215b00620b00600213500208a00620b00615715400705b002157006", "0x600c00600c00216800620b00616e00605800216e00620b00608a15b007", "0x216b00620b00600700612b00208e00620b0060160060160020ed00620b", "0x200220b0060020090020d016b08e0ed00c0060d000620b006168006133", "0x216c00620b00600213100200220b00600900606100200220b00600211e", "0x609216c00705b00209200620b00609200604b00209200620b006002134", "0x209400620b00616d17100705d00217100620b00600213500216d00620b", "0x601000601600209600620b00600f00600c00217300620b006094006058", "0x609900620b0061730061330020d100620b00600700612b00217500620b", "0x200900620b00600700601b00200220b00600211e0020990d117509600c", "0x61a300200220b00600200900200f0062ec01600c00720b0070090060db", "0x620b0060100061a400201400620b00600c00609900201000620b006016", "0x1700620b00600202a00200220b0060020090020022ed00600202d002015", "0x1b0061a400201400620b00600f00609900201b00620b0060170061a5002", "0x1900620b00601900600f00201900620b00601400605300201500620b006", "0x61a600200220b0060020090020c40062ee01c00620b0070150060df002", "0x11b00620b0060021ad00205400620b0060650061b200206500620b00601c", "0x1900600f00202d00620b00600600601600202c00620b00600200600c002", "0x3000620b00605400604b00202f00620b00611b00604300202e00620b006", "0x20b00702b00601400202b02a02900920b00603002f02e02d02c0161ae002", "0x3503900720b00603300601500200220b0060020090020480062ef033006", "0x600c00203700620b00611e0060e500211e00620b0060350390071b4002", "0x620b0060370060e700210d00620b00602a00601600212000620b006029", "0x3c00620b0060480061b800200220b00600200900203a10d12000900603a", "0x3c0060e700207d00620b00602a00601600212400620b00602900600c002", "0x60c400603300200220b00600200900203e07d12400900603e00620b006", "0x71b400212c00620b00612a0061ba00212a00620b00600202a00200220b", "0x20b00600200600c00204100620b00612b0060e500212b00620b00612c019", "0x900604500620b0060410060e700212d00620b006006006016002043006", "0x201700620b00600900612b00201500620b00600700601600204512d043", "0x62f001b00620b0070140060ea00201401000f00920b0060170150071bd", "0x601c0061bf00201c00620b00601b0060ec00200220b006002009002019", "0x200220b00606500604d00205406500720b0060c40061300020c400620b", "0x602900604d00202a02900720b00611b00613000211b00620b0060020ef", "0x1c100202c00620b00602a0061b200202b00620b0060540061b200200220b", "0x702d0061c500202d00620b00602d00604b00202d00620b00602c02b007", "0x2e00202f00620b00600202a00200220b00600200900202e0062f100220b", "0x22f200600202d00203300620b00603000602c00203000620b00602f006", "0x4800620b00600202a00200220b00602e0060f200200220b006002009002", "0x3300602f00203300620b00603900602c00203900620b00604800602b002", "0x11e00620b00703500603000203500620b00603500602c00203500620b006", "0x611e00603300200220b00600211e00200220b0060020090020370062f3", "0xf400212400620b00601000612b00203c00620b00600f00601600200220b", "0x3e0062f407d00620b00703a0061c800203a10d12000920b00612403c007", "0x20b00612a0061d400212a00620b00607d0061ca00200220b006002009002", "0x1d600200220b00612b00613600204112b00720b0060160060f800212c006", "0x4d13013104712e04512d01020b00612c0061eb00204300620b006041006", "0x20b00612e0061ef00200220b0060450060fa00200220b00612d00604d002", "0x20b00600202a00200220b00604d00604d00200220b00613000604d002002", "0x12c00205600620b00600200600c00204e00620b00604b00602b00204b006", "0x20b00610d00612b00205800620b00612000601600213300620b006006006", "0x4b00205b00620b0060430060fc00213400620b00600c006041002136006", "0x20b00604e00602c00205d00620b00604700600f00213500620b006131006", "0x5113204f01620b00613705d13505b1341360581330560150fe002137006", "0x200220b0060020090020610062f505f00620b00712f00617d00212f053", "0x20b00600210000200220b00606400603300206413800720b00605f0061f6", "0x213b00620b0060670061f900206700620b0061391380071f8002139006", "0x605100601600206a00620b00613200612c00206900620b00604f00600c", "0x606f00620b00613b0062f600213c00620b00605300612b00206c00620b", "0x13f00620b00606100610300200220b00600200900206f13c06c06a069016", "0x5100601600214100620b00613200612c00207100620b00604f00600c002", "0x7600620b00613f0062f600207500620b00605300612b00214500620b006", "0x220b00601600613600200220b006002009002076075145141071016006", "0x600200600c00207700620b00603e00610300200220b00600c006047002", "0x214b00620b00612000601600214600620b00600600612c00207900620b", "0x14b14607901600614a00620b0060770062f600207b00620b00610d00612b", "0x20b00603700603300200220b00600211e00200220b00600200900214a07b", "0x20b00600213100200220b00601600613600200220b00600c006047002002", "0x705b0020c700620b0060c700604b0020c700620b0060021fb00207f006", "0x20b00615115200705d00215200620b00600213500215100620b0060c707f", "0x12c00208300620b00600200600c00214f00620b00614e00610300214e006", "0x20b00601000612b00215000620b00600f00601600208500620b006006006", "0x200900216115e15008508301600616100620b00614f0062f600215e006", "0x1600613600200220b00600c00604700200220b00600211e00200220b006", "0x215f00620b00600200600c00216000620b00601900610300200220b006", "0x601000612b00216300620b00600f00601600215d00620b00600600612c", "0x1b200216215c16315d15f01600616200620b0061600062f600215c00620b", "0x20b00600202a00200900620b00600700600705b00200700620b006002006", "0x700600f00620b00600c0061ff00201600620b00600900604e00200c006", "0x61ff00200700620b00600200612b00200600620b00600202a00200f016", "0x600207500200f00620b00600220600200900700700600900620b006006", "0x612b00201900620b00600600601600200220b00600213900201400620b", "0x1b0060ea00201b01701500920b00601c0190071bd00201c00620b006007", "0x620b0060c40060ec00200220b0060020090020650062f70c400620b007", "0x4d00202a02900720b00611b00613000211b00620b0060540061bf002054", "0x2c00720b00602b00613000202b00620b0060020ef00200220b006029006", "0x2d0061b200202e00620b00602a0061b200200220b00602c00604d00202d", "0x620b00603000604b00203000620b00602f02e0071c100202f00620b006", "0x202a00200220b0060020090020330062f800220b0070300061c5002030", "0x3500620b00603900602c00203900620b00604800602e00204800620b006", "0x200220b0060330060f200200220b0060020090020022f900600202d002", "0x20b00603700602c00203700620b00611e00602b00211e00620b00600202a", "0x3000212000620b00612000602c00212000620b00603500602f002035006", "0x610d00603300200220b00600200900203a0062fa10d00620b007120006", "0xf400212a00620b00601700612b00203e00620b00601500601600200220b", "0x12b0062fb12c00620b00707d0061c800207d12403c00920b00612a03e007", "0x20b0060410061d400204100620b00612c0061ca00200220b006002009002", "0x450060fa00213013101004712e04512d01020b0060430061eb002043006", "0x604d00200220b00604700606100200220b00612e0061ef00200220b006", "0x4b04d00720b00612d00613000200220b00613000604d00200220b006131", "0x4f00604d00213204f00720b00604e00613000204e00620b006002000002", "0x12f05300720b00605100613000205100620b00604b0061b200200220b006", "0x605600613000205600620b0061320061b200200220b00605300604d002", "0x213600620b00612f0061b200200220b00613300604d00205813300720b", "0x1341360071c100213600620b00613600604b00213400620b0060580061b2", "0x1000620b00601000604b00205b00620b00605b00604b00205b00620b006", "0x61c500201000620b00601001400707900204d00620b00604d00604b002", "0x5d00620b00600202a00200220b0060020090021350062fc00220b00705b", "0x600202d00205f00620b00613700602c00213700620b00605d00602e002", "0x20b00600202a00200220b0061350060f200200220b0060020090020022fd", "0x2f00205f00620b00613800602c00213800620b00606100602b002061006", "0x20b00706400603000206400620b00606400602c00206400620b00605f006", "0x4d00200220b00613900603300200220b0060020090020670062fe139006", "0x603300200220b0060020090020022ff00600202d00200220b00604d006", "0x220b00613b00604d00206913b00720b00604d00613000200220b006067", "0x6c00604d00213c06c00720b00606a00613000206a00620b006002300002", "0x213f00620b00613c0061b200206f00620b0060690061b200200220b006", "0x710061c500207100620b00607100604b00207100620b00613f06f0071c1", "0x214500620b00600202a00200220b00600200900214100630100220b007", "0x30200600202d00207600620b00607500602c00207500620b00614500602e", "0x620b00600202a00200220b0061410060f200200220b006002009002002", "0x602f00207600620b00607900602c00207900620b00607700602b002077", "0x620b00714600603000214600620b00614600602c00214600620b006076", "0x211e00200220b00614b00603300200220b00600200900207b00630314b", "0x200220b00614a00613600207f14a00720b00600c0060f800200220b006", "0x603c00601600208300620b00600200600c0020c700620b00607f0061d6", "0x215e00620b0060c70060fc00215000620b00612400612b00208500620b", "0x620b00714f00630500214f14e15215100c20b00615e15008508300c304", "0x30800201600620b00616100630700200220b006002009002160006306161", "0x15d00630900215d15f00720b00601600606c00201600620b00601600f007", "0x620b00615100600c00215c00620b00616301000730a00216300620b006", "0x604100216e00620b00614e00612b00215b00620b00615200601600208a", "0x16816e15b08a01630c0020ed00620b00615c00630b00216800620b006009", "0x216b00630d08e00620b00715700617d00215715408716200c20b0060ed", "0x20b00616c00603300216c0d000720b00608e0061f600200220b006002009", "0xc00216d00620b00609200630f00209200620b00615f0d000730e002002", "0x20b00615400612b00209400620b00608700601600217100620b006162006", "0x600200900209617309417100c00609600620b00616d006310002173006", "0x600c00217500620b00616b00631100200220b00615f00613c00200220b", "0x620b00615400612b00209900620b0060870060160020d100620b006162", "0x20b00600200900209b1760990d100c00609b00620b006175006310002176", "0x600f00631200200220b00600900604700200220b00601000604d002002", "0x1600209d00620b00615100600c00217a00620b00616000631100200220b", "0x20b00617a0063100020cc00620b00614e00612b00217c00620b006152006", "0x220b00600211e00200220b0060020090020a00cc17c09d00c0060a0006", "0x20b00600f00631200200220b00601000604d00200220b00607b006033002", "0x20b00600213100200220b00600c00613600200220b006009006047002002", "0x705b0020a200620b0060a200604b0020a200620b00600231300217d006", "0x20b00617e0a400705d0020a400620b00600213500217e00620b0060a217d", "0x160020d200620b00600200600c0020cd00620b00617f00631100217f006", "0x20b0060cd00631000218000620b00612400612b0020a800620b00603c006", "0x220b00600211e00200220b0060020090020ce1800a80d200c0060ce006", "0x20b00600900604700200220b00600f00631200200220b00600c006136002", "0x200600c0020ab00620b00612b00631100200220b00601400614e002002", "0xc800620b00612400612b0020cf00620b00603c00601600218100620b006", "0x220b0060020090020c90c80cf18100c0060c900620b0060ab006310002", "0x220b00600c00613600200220b00603a00603300200220b00600211e002", "0x20b00601400614e00200220b00600900604700200220b00600f006312002", "0x60cb00604b0020cb00620b0060021fb0020ca00620b006002131002002", "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", "0x200600c00218e00620b0060b50063110020b500620b0060c60b300705d", "0xba00620b00601700612b0020b900620b0060150060160020b700620b006", "0x220b0060020090020bb0ba0b90b700c0060bb00620b00618e006310002", "0x220b00600f00631200200220b00600c00613600200220b00600211e002", "0x20b00606500631100200220b00601400614e00200220b006009006047002", "0x12b0020be00620b00601500601600218f00620b00600200600c0020bd006", "0xc10bf0be18f00c0060c100620b0060bd0063100020bf00620b006017006", "0x601600631500201600700720b00600700631400200220b00600211e002", "0x200220b00600f0060c400201000f00720b00600c00601c00200c00620b", "0x1b0170070bf00201b00620b00600900604e00201700620b00601000611b", "0x1900620b00600700630900200220b00601500603300201501400720b006", "0x1900631600211b00620b00600600601600205400620b00600200600c002", "0x602a02911b05400c31700202a00620b00601400604e00202900620b006", "0x600200900202c00631802b00620b0070650060710020650c401c00920b", "0x2a00200220b00602e00603300202e02d00720b00602b00614100200220b", "0x20b00603000631a00203000620b00602f02d00731900202f00620b006002", "0x31b00203900620b0060c400601600204800620b00601c00600c002033006", "0x631c00200220b00600200900203503904800900603500620b006033006", "0x620b0060c400601600203700620b00601c00600c00211e00620b00602c", "0x20b00600200601b00210d12003700900610d00620b00611e00631b002120", "0x220b00600200900200c00631d00900700720b0070060060db002006006", "0x160061a400200f00620b00600700609900201600620b0060090061a3002", "0x600202a00200220b00600200900200231e00600202d00201000620b006", "0x200f00620b00600c00609900201500620b0060140061a500201400620b", "0x601700600f00201700620b00600f00605300201000620b0060150061a4", "0x220b00600200900201900631f01b00620b0070100060df00201700620b", "0xc40063200020c400620b00601c0061b200201c00620b00601b0061a6002", "0x11b00620b00606500632100205400620b00601700600f00206500620b006", "0x202a00200220b00601900603300200220b00600200900211b054007006", "0x2b00620b00601700600f00202a00620b00602900632200202900620b006", "0x1b00200220b00600211e00202c02b00700602c00620b00602a006321002", "0x900200f00632301600c00720b0070090060db00200900620b006007006", "0x1400620b00600c00609900201000620b0060160061a300200220b006002", "0x220b00600200900200232400600202d00201500620b0060100061a4002", "0x600f00609900201b00620b0060170061a500201700620b00600202a002", "0x201900620b00601400605300201500620b00601b0061a400201400620b", "0x90020c400632501c00620b0070150060df00201900620b00601900600f", "0x5400620b0060650061b200206500620b00601c0061a600200220b006002", "0x600600601600202c00620b00600200600c00211b00620b006002131002", "0x202f00620b00611b00604e00202e00620b00601900600f00202d00620b", "0x2a02900920b00603002f02e02d02c01632600203000620b00605400604b", "0x7b00200220b00600200900204800632703300620b00702b00614b00202b", "0x11e00632900211e00620b00603503900732800203503900720b006033006", "0x10d00620b00602a00601600212000620b00602900600c00203700620b006", "0x200220b00600200900203a10d12000900603a00620b00603700632a002", "0x602a00601600212400620b00602900600c00203c00620b00604800632b", "0x600200900203e07d12400900603e00620b00603c00632a00207d00620b", "0x12a00632c00212a00620b00600202a00200220b0060c400603300200220b", "0x620b00612b00632900212b00620b00612c01900732800212c00620b006", "0x632a00212d00620b00600600601600204300620b00600200600c002041", "0x201401000720b00600f00613200204512d04300900604500620b006041", "0x20b00600200600c00201500620b00601400605300200220b006010006051", "0x12b00211b00620b00600700601600205400620b00600600612c002065006", "0x20b00601600604b00202a00620b00600c00604100202900620b006009006", "0x2c02b02a02911b05406501032d00202c00620b00601500600f00202b006", "0x202e00632e02d00620b0070c40060ed0020c401c01901b01701620b006", "0x620b00702f00603000202f00620b00602d00608e00200220b006002009", "0x20ef00200220b00603000603300200220b00600200900203300632f030", "0x900200233000600202d00203900620b00604800604b00204800620b006", "0x4b00203500620b00600210000200220b00603300603300200220b006002", "0x20b00611e00633200211e00620b00603900633100203900620b006035006", "0x1600210d00620b00601b00612c00212000620b00601700600c002037006", "0x20b00603700621200203c00620b00601c00612b00203a00620b006019006", "0x602e00633300200220b00600200900212403c03a10d120016006124006", "0x212a00620b00601b00612c00203e00620b00601700600c00207d00620b", "0x607d00621200212b00620b00601c00612b00212c00620b006019006016", "0x233400200c00620b00600233400204112b12c12a03e01600604100620b", "0x13900201700620b00600233500201400620b00600207500200f00620b006", "0xf0020c400620b00600200600c00200220b00600211e00200220b006002", "0x633700201c01901b00920b0060650c400733600206500620b006007006", "0x20b00601900600f00200220b00600200900205400633801500620b00701c", "0x1500620b00601501700733900202911b00720b00602a00607600202a006", "0x600c00200220b00600200900202b00633a01000620b007029006077002", "0x20b00603002f00721100203000620b00611b00600f00202f00620b00601b", "0x620b00702e00633b00201000620b00601001400707900202e02d02c009", "0xf00211e00620b00602c00600c00200220b00600200900203300633c016", "0x733d00203503904800920b00603711e00721100203700620b00602d006", "0x200900212000633e00900620b00703500633b00201600620b00601600f", "0x207d00620b00600600601600212400620b00604800600c00200220b006", "0x12400933f00200900620b00600900c00733d00203e00620b00603900600f", "0x212c00634112a00620b00703c00634000203c03a10d00920b00603e07d", "0x20b00704100634300204112b00720b00612a00634200200220b006002009", "0x604300901601001501621000200220b00600200900212d006344043006", "0x4700620b00612e12b00734600212e00620b00604500634500204500620b", "0x3a00601600213000620b00610d00600c00213100620b006047006347002", "0x200900204b04d13000900604b00620b00613100634800204d00620b006", "0x634900200220b00600900634900200220b0060150060fa00200220b006", "0x204e00620b00612d00634a00200220b00601000604d00200220b006016", "0x10d00600c00213200620b00604f00634700204f00620b00604e12b007346", "0x12f00620b00613200634800205300620b00603a00601600205100620b006", "0xfa00200220b00601000604d00200220b00600200900212f053051009006", "0x200220b00601600634900200220b00600900634900200220b006015006", "0x603a00601600213300620b00610d00600c00205600620b00612c00634b", "0x600200900213605813300900613600620b00605600634800205800620b", "0x150060fa00200220b00601000604d00200220b00601600634900200220b", "0x34600213400620b00612000634a00200220b00600c00634c00200220b006", "0x604800600c00213500620b00605b00634700205b00620b006134039007", "0x605f00620b00613500634800213700620b00600600601600205d00620b", "0x60fa00200220b00601000604d00200220b00600200900205f13705d009", "0x34a00200220b00600f00634c00200220b00600c00634c00200220b006015", "0x613800634700213800620b00606102d00734600206100620b006033006", "0x206700620b00600600601600213900620b00602c00600c00206400620b", "0x34c00200220b00600200900213b06713900900613b00620b006064006348", "0x200220b00600c00634c00200220b0060150060fa00200220b00600f006", "0x606911b00734600206900620b00602b00634a00200220b00601400614e", "0x213c00620b00601b00600c00206c00620b00606a00634700206a00620b", "0x13f06f13c00900613f00620b00606c00634800206f00620b006006006016", "0x220b00600c00634c00200220b00600f00634c00200220b006002009002", "0x20b00605400634a00200220b00601700634d00200220b00601400614e002", "0x214500620b00614100634700214100620b006071019007346002071006", "0x614500634800207600620b00600600601600207500620b00601b00600c", "0x20b00600208300201500620b00600220600207707607500900607700620b", "0x600234e00206500620b00600207500201c00620b00600214f00201b006", "0x235100202c00620b00600235000202a00620b00600234f00211b00620b", "0x20f00204800620b00600235300203000620b00600235200202e00620b006", "0x210d00620b00600207500203700620b00600235400203500620b006002", "0x12a00620b00600206400207d00620b00600208500203c00620b00600214f", "0x200220b00600211e00200220b00600213900212b00620b006002075002", "0x13104100720b00604100635600212e04512d04304101620b00600f006355", "0x604d00204d13000720b00604700613000204700620b0061310061bf002", "0x4f04e00720b00604b00613000204b00620b00600235700200220b006130", "0x613200613000213200620b00604d0061b200200220b00604e00604d002", "0x212f00620b00604f0061b200200220b00605100604d00205305100720b", "0x60530061b200200220b00605600604d00213305600720b00612f006130", "0x13400620b0061360580071c100213600620b0061330061b200205800620b", "0x900205b00635800220b0071340061c500213400620b00613400604b002", "0x205d00620b00613500602e00213500620b00600202a00200220b006002", "0x200220b00600200900200235900600202d00213700620b00605d00602c", "0x620b00605f00602b00205f00620b00600202a00200220b00605b0060f2", "0x635600213800620b00613700602f00213700620b00606100602c002061", "0x612d00635b00213904300720b00604300635a00206404100720b006041", "0x720b00612e00635c00213b04500720b00604500635b00206712d00720b", "0x20b00606a00608a00206a00620b00606913b06713906401621000206912e", "0x13c00635d06c00620b00713800603000213800620b00613800602c002002", "0x4512d04304101621000200220b00606c00603300200220b006002009002", "0x620b00600c00612b00213f00620b00600700601600206f00620b00612e", "0x20b00600200900200235e00600202d00214100620b00606f006163002071", "0xc00612b00207700620b00600700601600200220b00613c006033002002", "0x20b00600200600207607514500920b0060790770071bd00207900620b006", "0xec00200220b00600200900214b00635f14600620b0070760060ea002002", "0x614a0060fa00207f14a00720b00607b00636000207b00620b006146006", "0x215200620b00607f0063610021510c700720b00604100636000200220b", "0x14f00604d00208314f00720b00614e00613000214e00620b0061520061bf", "0x215000620b0060850061bf00208500620b00615100636100200220b006", "0x60830061b200200220b00615e00604d00216115e00720b006150006130", "0x15d00620b00615f1600071c100215f00620b0061610061b200216000620b", "0x900216300636200220b00715d0061c500215d00620b00615d00604b002", "0x216200620b00615c00602e00215c00620b00600202a00200220b006002", "0x200220b00600200900200236300600202d00208700620b00616200602c", "0x620b00615400602b00215400620b00600202a00200220b0061630060f2", "0x602c00208a00620b00608700602f00208700620b00615700602c002157", "0x600200900216e00636415b00620b00708a00603000208a00620b00608a", "0x430c701621000200220b00615b00603300200220b00600211e00200220b", "0x607500612b00213f00620b00614500601600216800620b00612e04512d", "0x20d000620b00613f00601600214100620b00616800616300207100620b", "0x600216b08e0ed00920b00616c0d000736500216c00620b00607100612b", "0x20b00600200900216d00636709200620b00716b00636600200220b006002", "0x9617312009401620b00614100635500217100620b006092006368002002", "0x209917100720b00617100635b0020d117300720b00617300635b002175", "0x36a09b17600720b0070990d100200936900212000620b00612010d007079", "0x17100634900200220b00609b00634900200220b00600200900209d17a007", "0xc0020cc00620b00617c00602b00217c00620b00600202a00200220b006", "0x236b00600202d00217d00620b0060cc00602c0020a000620b006176006", "0x720b00609600635b00200220b00609d00634900200220b006002009002", "0x20090020cd17f00736c0a417e00720b0070a217117a0093690020a2096", "0x602b0020d200620b00600202a00200220b0060a400634900200220b006", "0x620b0060a800602c00218000620b00617e00600c0020a800620b0060d2", "0x220b0060cd00634900200220b00600200900200236d00600202d0020ce", "0x617f00600c00218100620b0060ab00602e0020ab00620b00600202a002", "0x20a000620b00618000636e0020ce00620b00618100602c00218000620b", "0x60cf00602c0020cf00620b00617d00602f00217d00620b0060ce00636f", "0x220b0060020090020c90063700c800620b0070cf0060300020cf00620b", "0x18e0b50b30c60cb0ca01420b00601600637100200220b0060c8006033002", "0x219000620b0060a000600c0020bb0ba00720b00618e0063720020b90b7", "0x608e00612b00219b00620b00600900615d0020c300620b0060ed006016", "0x19d12000720b00612000635a0020d400620b0060bb00637300219c00620b", "0x1620b00619d0d419c19b0c319000f37400219d00620b00619d00604b002", "0x60020090020d60063751a000620b0070c10060ed0020c10bf0be18f0bd", "0x2c0020d700620b00619f00602f00219f00620b0061a000608e00200220b", "0x20b0060d900602c0020d900620b0060d700602f0020d700620b0060d7006", "0x200220b0060020090020db0063761a100620b0070d90060300020d9006", "0x12000720b00612000635a00200220b0061a100603300200220b00600211e", "0x20b00612407d00715f00212400620b0061750961731a30940162100021a3", "0x21ad00620b00618f0060160021a51a400720b00612400620e002124006", "0x1c80021b21a60df00920b0061ae1ad0070f40021ae00620b0060bf00612b", "0x61b40061ca00200220b0060020090020e50063771b400620b0071b2006", "0x1bd1ba01020b0061b80061eb0021b800620b0060e70061d40020e700620b", "0x200220b0061bd0060fa00200220b0061ba00604d0021c10ef1bf0ec0ea", "0x220b0061bf00604d00200220b0060ec00606100200220b0060ea0061ef", "0x620b0060020000021c500620b00600237800200220b0061c100604d002", "0x37a0021c800620b0060020ef0020f400620b0060ef0f21c50093790020f2", "0x620b0061ca00604b0021c800620b0061c800604b0021ca00620b006002", "0x1d600720b0060f400637c0020f81d400720b0061ca1c80be00937b0021ca", "0x20b00600237e0020fa00620b0060020ef00200220b0061d600637d0021eb", "0x37b0021ef00620b0061ef00604b0020fa00620b0060fa00604b0021ef006", "0x63800021eb00620b0061eb00637f0020fe0fc00720b0061ef0fa1d4009", "0x1f800604d0021f91f810000920b0061f60063810021f61eb00720b0061eb", "0x4b0022f600620b0061000061b200200220b0061f900604d00200220b006", "0x63800021fb10300720b0062f60fe0fc00937b0020fe00620b0060fe006", "0x20600604d00230000020600920b0061ff0063810021ff1eb00720b0061eb", "0x4b00230400620b0060000061b200200220b00630000604d00200220b006", "0x638100230730500720b0063041fb10300937b0021fb00620b0061fb006", "0x20b00630900604d00200220b00630800604d00230a30930800920b0061eb", "0x937b00230700620b00630700604b00230b00620b00630a0061b2002002", "0x630e00604b00230f00620b00600238200230e30c00720b00630b307305", "0x720b00630f30e30c00937b00230f00620b00630f00604b00230e00620b", "0x37b00231100620b00631100604b0020f800620b0060f800604b002311310", "0x612b00231600620b0060df00601600231331200720b0063110f8310009", "0x31200615d00231503e31400920b00631731600738300231700620b0061a6", "0x620b00603e12a00713b00231300620b00631300604b00231200620b006", "0xec00200220b00600200900231a00638431900620b0073150060ea00203e", "0x31c31331200937b00231c00620b00631b0061bf00231b00620b006319006", "0x620b00631400601600232900620b0060bd00600c00212c32000720b006", "0x707900232c00620b0061a500616300232b00620b00632000615d00232a", "0x32832632232100c20b00632c32b32a32900c38500212c00620b00612c12b", "0x615200200220b00600200900233100638632d00620b007328006151002", "0x600238200233321200720b00633212c32600937b00233200620b00632d", "0x233400620b00633400604b00233300620b00633300604b00233400620b", "0x33733633501620b0061a40063550020c403a00720b00633433321200937b", "0x33700634900200220b00633600604d00200220b0063350060fa002211339", "0x233d33b00720b00601000613200200220b00633900634900200220b006", "0x620b00600202a00233f00620b00633d00605300200220b00633b006051", "0xb90b70ba0b50b30c60cb0ca01412a00234200620b00634000602e002340", "0x34900620b00600600612c00234800620b00632100600c00234300620b006", "0x34300604100234b00620b00603e00612b00234a00620b006322006016002", "0x620b00634d0060fc00234d21100720b00621100635c00234c00620b006", "0x234e0c400720b0060c400635a0020c400620b0060c406500707900234d", "0x634200602c00234f00620b00633f00600f00234e00620b00634e00604b", "0x34c34b34a3493480150fe00203a00620b00603a03c00708700235000620b", "0x620b00601701b00716200234734634501721001620b00635034f34e34d", "0x1f600200220b00600200900235200638735100620b00734700617d002017", "0x620b00600202a00200220b00620f00603300220f35300720b006351006", "0x2902b02d05401420b00635300637100235500620b00635400602e002354", "0x36100620b00634500601600236000620b00621000600c00202f03335611e", "0x35600637300236600620b00634600612b00236500620b00603a00615d002", "0x36e00620b00635500602c00236900620b00612000604b00236800620b006", "0x38900235c35b01935a35701620b00636e369368366365361360010388002", "0x2c00720d00202d00620b00602d02e00738a00205400620b00605411b007", "0x611e03700738c00202900620b00602902a00738b00202b00620b00602b", "0x620b00602f03000738e00203300620b00603304800738d00211e00620b", "0x639036f00620b00735c00638f00201900620b00601901c00708700202f", "0x37200603300237203900720b00636f00639100200220b006002009002371", "0x237a00620b00635a00601600237900620b00635700600c00200220b006", "0x3903500739200237c00620b0062110060fc00237b00620b00635b00612b", "0x30500237820e37437300c20b00637c37b37a37900c30400203900620b006", "0x637d00630700200220b00600200900237e00639337d00620b007378006", "0x37f00720b00601400606c00201400620b00601401500730800201400620b", "0x12a00238200620b0063810c400730a00238100620b006380006309002380", "0x620b00637300600c00238300620b00602f03303911e02902b02d054014", "0x604100238c00620b00620e00612b00238b00620b00637400601600220d", "0x38d38c38b20d01630c00238e00620b00638200630b00238d00620b006383", "0x239100639438f00620b00738a00617d00238a38938838500c20b00638e", "0x20b00639500603300239539200720b00638f0061f600200220b006002009", "0xc00239600620b00620c00630f00220c00620b00637f39200730e002002", "0x20b00638800601600239800620b00601700612c00239700620b006385006", "0x31000239b00620b00638900612b00239a00620b00601900615d002399006", "0x220b00600200900239c39b39a39939839700f00639c00620b006396006", "0x638500600c00239d00620b00639100631100200220b00637f00613c002", "0x23a000620b00638800601600239f00620b00601700612c00239e00620b", "0x639d0063100023a200620b00638900612b0023a100620b00601900615d", "0x604d00200220b0060020090023a33a23a13a039f39e00f0063a300620b", "0x39600200220b00602f00620c00200220b00605400639500200220b0060c4", "0x200220b00611e00639800200220b00603900639700200220b006033006", "0x220b00602d00639b00200220b00602b00639a00200220b006029006399", "0x637300600c0023a400620b00637e00631100200220b006015006312002", "0x23a700620b0063740060160023a600620b00601700612c0023a500620b", "0x63a40063100023a900620b00620e00612b0023a800620b00601900615d", "0x604d00200220b0060020090023aa3a93a83a73a63a500f0063aa00620b", "0x39b00200220b00602b00639a00200220b00605400639500200220b0060c4", "0x200220b00602f00620c00200220b00601500631200200220b00602d006", "0x220b00602900639900200220b00611e00639800200220b006033006396", "0x20b00637100631100200220b00603500639d00200220b00621100639c002", "0x160023ad00620b00601700612c0023ac00620b00635700600c0023ab006", "0x20b00635b00612b0023af00620b00601900615d0023ae00620b00635a006", "0x90023b13b03af3ae3ad3ac00f0063b100620b0063ab0063100023b0006", "0x31200200220b00603500639d00200220b0060c400604d00200220b006002", "0x200220b00603000639e00200220b00601c00615700200220b006015006", "0x220b00611b00639f00200220b00612000604d00200220b00621100639c", "0x20b00602a0063a200200220b00602c0063a100200220b00602e0063a0002", "0x635200631100200220b0060480063a400200220b0060370063a3002002", "0x23b400620b00601700612c0023b300620b00621000600c0023b200620b", "0x634600612b0023b600620b00603a00615d0023b500620b006345006016", "0x23b83b73b63b53b43b300f0063b800620b0063b20063100023b700620b", "0x200220b0060480063a400200220b0060c600639a00200220b006002009", "0x220b0061a400608a00200220b00602c0063a100200220b00603500639d", "0x20b00601c00615700200220b00601500631200200220b0060370063a3002", "0x612000604d00200220b00601000605100200220b00603000639e002002", "0x2e0063a000200220b00611b00639f00200220b00602a0063a200200220b", "0x639b00200220b0060ca00639500200220b00601b00615400200220b006", "0x39700200220b0060b700639600200220b0060b900620c00200220b0060cb", "0x200220b0060b300639900200220b0060b500639800200220b0060ba006", "0x220b00612c00604d00200220b00606500614e00200220b00603c006157", "0x600612c0023ba00620b00632100600c0023b900620b006331006311002", "0x3bd00620b00632600615d0023bc00620b0063220060160023bb00620b006", "0x3bb3ba00f0063bf00620b0063b90063100023be00620b00603e00612b002", "0x63a400200220b0060c600639a00200220b0060020090023bf3be3bd3bc", "0x8a00200220b00602c0063a100200220b00603500639d00200220b006048", "0x200220b00601500631200200220b0060370063a300200220b0061a4006", "0x220b00601000605100200220b00603000639e00200220b00601c006157", "0x20b00611b00639f00200220b00602a0063a200200220b00612000604d002", "0x60ca00639500200220b00601b00615400200220b00602e0063a0002002", "0xb900620c00200220b00606500614e00200220b0060cb00639b00200220b", "0x639800200220b0060ba00639700200220b0060b700639600200220b006", "0x8a00200220b00603c00615700200220b0060b300639900200220b0060b5", "0x200220b00631300604d00200220b00612b00614e00200220b0061a5006", "0x600600612c0023c100620b0060bd00600c0023c000620b00631a006311", "0x23c400620b00631200615d0023c300620b0063140060160023c200620b", "0x3c33c23c100f0063c600620b0063c00063100023c500620b00603e00612b", "0x480063a400200220b0060c600639a00200220b0060020090023c63c53c4", "0x608a00200220b00602c0063a100200220b00603500639d00200220b006", "0x15700200220b00601500631200200220b0060370063a300200220b0061a4", "0x200220b00601000605100200220b00603000639e00200220b00601c006", "0x220b00611b00639f00200220b00602a0063a200200220b00612000604d", "0x20b0060ca00639500200220b00601b00615400200220b00602e0063a0002", "0x60b900620c00200220b00606500614e00200220b0060cb00639b002002", "0xb500639800200220b0060ba00639700200220b0060b700639600200220b", "0x608a00200220b00603c00615700200220b0060b300639900200220b006", "0x31100200220b00612a00614500200220b00612b00614e00200220b0061a5", "0x20b00600600612c0023c800620b0060bd00600c0023c700620b0060e5006", "0x12b00221700620b0060be00615d0023ca00620b0060df0060160023c9006", "0x2173ca3c93c800f0063cc00620b0063c70063100023cb00620b0061a6006", "0x20b0060db00603300200220b00600211e00200220b0060020090023cc3cb", "0x603500639d00200220b0060480063a400200220b0060c600639a002002", "0x1500631200200220b0060370063a300200220b00602c0063a100200220b", "0x605100200220b00603000639e00200220b00601c00615700200220b006", "0x39f00200220b00602a0063a200200220b00612000604d00200220b006010", "0x200220b00601b00615400200220b00602e0063a000200220b00611b006", "0x220b00606500614e00200220b0060cb00639b00200220b0060ca006395", "0x20b0060b700639600200220b0060b900620c00200220b00612a006145002", "0x60b300639900200220b0060b500639800200220b0060ba006397002002", "0x7d00615b00200220b00612b00614e00200220b00603c00615700200220b", "0x634900200220b00609600634900200220b00617500639c00200220b006", "0x3a50023cd00620b00600213100200220b0060940060fa00200220b006173", "0x20b0062183cd00705b00221800620b00621800604b00221800620b006002", "0x3110023d000620b0063ce3cf00705d0023cf00620b0060021350023ce006", "0x20b00600600612c0023d200620b0060bd00600c0023d100620b0063d0006", "0x12b0023d500620b0060be00615d0023d400620b00618f0060160023d3006", "0x3d53d43d33d200f0063d700620b0063d10063100023d600620b0060bf006", "0x20b0060c600639a00200220b00600211e00200220b0060020090023d73d6", "0x602c0063a100200220b00603500639d00200220b0060480063a4002002", "0x1c00615700200220b00601500631200200220b0060370063a300200220b", "0x604d00200220b00601000605100200220b00603000639e00200220b006", "0x3a000200220b00611b00639f00200220b00602a0063a200200220b006120", "0x200220b0060ca00639500200220b00601b00615400200220b00602e006", "0x220b00612a00614500200220b00606500614e00200220b0060cb00639b", "0x20b0060ba00639700200220b0060b700639600200220b0060b900620c002", "0x603c00615700200220b0060b300639900200220b0060b5006398002002", "0x17500639c00200220b00607d00615b00200220b00612b00614e00200220b", "0x60fa00200220b00617300634900200220b00609600634900200220b006", "0x3d900620b0060bd00600c0023d800620b0060d600631100200220b006094", "0xbe00615d0023db00620b00618f0060160023da00620b00600600612c002", "0x3de00620b0063d80063100023dd00620b0060bf00612b0023dc00620b006", "0x220b00600211e00200220b0060020090023de3dd3dc3db3da3d900f006", "0x20b00603500639d00200220b0060480063a400200220b0060c9006033002", "0x60370063a300200220b0060940060fa00200220b00602c0063a1002002", "0x3000639e00200220b00601c00615700200220b00601500631200200220b", "0x63a200200220b00612000604d00200220b00601000605100200220b006", "0x15400200220b00602e0063a000200220b00611b00639f00200220b00602a", "0x200220b00606500614e00200220b00612b00614e00200220b00601b006", "0x220b00609600634900200220b00612a00614500200220b006173006349", "0x20b00603c00615700200220b00607d00615b00200220b00617500639c002", "0x20b0060023a60023df00620b00600213100200220b006016006047002002", "0x23e100620b0063e03df00705b0023e000620b0063e000604b0023e0006", "0x63e30063110023e300620b0063e13e200705d0023e200620b006002135", "0x23e600620b00600600612c0023e500620b0060a000600c0023e400620b", "0x608e00612b0023e800620b00600900615d0023e700620b0060ed006016", "0x23ea3e93e83e73e63e500f0063ea00620b0063e40063100023e900620b", "0x39d00200220b0060480063a400200220b00600211e00200220b006002009", "0x200220b0060370063a300200220b00602c0063a100200220b006035006", "0x220b00603000639e00200220b00601c00615700200220b006015006312", "0x20b00602a0063a200200220b00614100608a00200220b006010006051002", "0x601b00615400200220b00602e0063a000200220b00611b00639f002002", "0x3c00615700200220b00606500614e00200220b00612b00614e00200220b", "0x604700200220b00607d00615b00200220b00612a00614500200220b006", "0x23eb00620b00616d00631100200220b00610d00614e00200220b006016", "0x60ed0060160023ed00620b00600600612c0023ec00620b00600200600c", "0x23f000620b00608e00612b0023ef00620b00600900615d0023ee00620b", "0x20b0060020090023f13f03ef3ee3ed3ec00f0063f100620b0063eb006310", "0x20b00610d00614e00200220b00616e00603300200220b00600211e002002", "0x602c0063a100200220b00603500639d00200220b0060480063a4002002", "0x1c00615700200220b00601500631200200220b0060370063a300200220b", "0x63a200200220b00601000605100200220b00603000639e00200220b006", "0x15400200220b00602e0063a000200220b00611b00639f00200220b00602a", "0x200220b00606500614e00200220b00612b00614e00200220b00601b006", "0x220b00601600604700200220b00612a00614500200220b00603c006157", "0x20b00604500634900200220b00612e00639c00200220b00607d00615b002", "0x60c70060fa00200220b00604300604d00200220b00612d006349002002", "0x3f300604b0023f300620b0060023a70023f200620b00600213100200220b", "0x3f500620b0060021350023f400620b0063f33f200705b0023f300620b006", "0x600c0023f700620b0063f60063110023f600620b0063f43f500705d002", "0x620b0061450060160023f900620b00600600612c0023f800620b006002", "0x63100023fc00620b00607500612b0023fb00620b00600900615d0023fa", "0x200220b0060020090023fd3fc3fb3fa3f93f800f0063fd00620b0063f7", "0x200220b0060480063a400200220b00610d00614e00200220b00600211e", "0x220b0060370063a300200220b00602c0063a100200220b00603500639d", "0x20b00603000639e00200220b00601c00615700200220b006015006312002", "0x611b00639f00200220b00602a0063a200200220b006010006051002002", "0x12b00614e00200220b00601b00615400200220b00602e0063a000200220b", "0x614500200220b00603c00615700200220b00606500614e00200220b006", "0x39c00200220b00607d00615b00200220b00601600604700200220b00612a", "0x200220b00612d00634900200220b00604500634900200220b00612e006", "0x620b00614b00631100200220b0060410060fa00200220b00604300604d", "0x60160023ff00620b00600600612c00221b00620b00600200600c0023fe", "0x620b00607500612b00240100620b00600900615d00240000620b006145", "0x20750024034024014003ff21b00f00640300620b0063fe006310002402", "0x211e00200220b00600213900201500620b00600206400201000620b006", "0x201b01700720b00601600620e00200220b00600c00604700200220b006", "0x20b00600900612b00206500620b00600600601600200220b00601700608a", "0x620b0070c40061c80020c401c01900920b0060540650070f4002054006", "0x1d400202a00620b00611b0061ca00200220b00600200900202900640411b", "0x4803303002f02e02d02c01020b00602b0061eb00202b00620b00602a006", "0x20b00602e0061ef00200220b00602d0060fa00200220b00602c00604d002", "0x604800604d00200220b00603000604d00200220b00602f006061002002", "0x3900937900203500620b00600200000203900620b00600237800200220b", "0x12000620b00600237a00203700620b0060020ef00211e00620b006033035", "0x700937b00212000620b00612000604b00203700620b00603700604b002", "0x3c00637d00212403c00720b00611e00637c00203a10d00720b006120037", "0x604b00203e00620b00600237e00207d00620b0060020ef00200220b006", "0x603e07d10d00937b00203e00620b00603e00604b00207d00620b00607d", "0x12400720b00612400638000212400620b00612400637f00212c12a00720b", "0x4d00200220b00604300604d00212d04304100920b00612b00638100212b", "0x620b00612c00604b00204500620b0060410061b200200220b00612d006", "0x12400720b00612400638000204712e00720b00604512c12a00937b00212c", "0x4d00200220b00613000604d00204b04d13000920b006131006381002131", "0x620b00604700604b00204e00620b00604d0061b200200220b00604b006", "0x5100920b00612400638100213204f00720b00604e04712e00937b002047", "0x12f0061b200200220b00605300604d00200220b00605100604d00212f053", "0x20b00605613204f00937b00213200620b00613200604b00205600620b006", "0x4b00205800620b00605800604b00213600620b006002382002058133007", "0x604b00205b13400720b00613605813300937b00213600620b006136006", "0x605b03a13400937b00205b00620b00605b00604b00203a00620b00603a", "0x13800620b00601c00612b00206100620b00601900601600205d13500720b", "0x213500620b00613500615d00205f01413700920b006138061007383002", "0x5f0060ea00201400620b00601401500713b00205d00620b00605d00604b", "0x620b0060640060ec00200220b00600200900213900640506400620b007", "0xf06900720b00613b05d13500937b00213b00620b0060670061bf002067", "0x6900615d00207100620b00613700601600213f00620b00600200600c002", "0x620b00600f01000707900214500620b00601b00616300214100620b006", "0x706f00615100206f13c06c06a00c20b00614514107113f00c38500200f", "0x7700620b00607500615200200220b00600200900207600640607500620b", "0x4b00214b00620b00600238200214607900720b00607700f13c00937b002", "0x14b14607900937b00214b00620b00614b00604b00214600620b006146006", "0x620b00607f00633200207f00620b00614a00633100214a07b00720b006", "0x615d00215200620b00606c00601600215100620b00606a00600c0020c7", "0x620b0060c700621200214f00620b00601400612b00214e00620b00607b", "0x20b00600f00604d00200220b00600200900208314f14e152151016006083", "0x601600215000620b00606a00600c00208500620b006076006333002002", "0x620b00601400612b00216100620b00613c00615d00215e00620b00606c", "0x600200900215f16016115e15001600615f00620b006085006212002160", "0x5d00604d00200220b00601000614e00200220b00601b00608a00200220b", "0x216300620b00600200600c00215d00620b00613900633300200220b006", "0x601400612b00216200620b00613500615d00215c00620b006137006016", "0x900215408716215c16301600615400620b00615d00621200208700620b", "0x14500200220b00601000614e00200220b00601b00608a00200220b006002", "0x620b00600200600c00215700620b00602900633300200220b006015006", "0x612b00216e00620b00600700615d00215b00620b00601900601600208a", "0xed16816e15b08a0160060ed00620b00615700621200216800620b00601c", "0x600f00639500201c01901b01701501401000f01420b00600c006371002", "0x1500639900200220b00601400639a00200220b00601000639b00200220b", "0x620c00200220b00601900639600200220b00601700639800200220b006", "0x2b00620b00600600601600202a00620b00600200600c00200220b00601c", "0x1b00637300202d00620b00600900612b00202c00620b00600700615d002", "0x2e02d02c02b02a00f37400202f00620b00601600604b00202e00620b006", "0x3300640703000620b0070290060ed00202911b0540650c401620b00602f", "0x20b00604800602f00204800620b00603000608e00200220b006002009002", "0xc00211e00620b0060350063a900203500620b0060390063a8002039006", "0x20b00605400615d00212000620b00606500601600203700620b0060c4006", "0x1600603c00620b00611e0063aa00203a00620b00611b00612b00210d006", "0x212400620b0060330063ab00200220b00600200900203c03a10d120037", "0x605400615d00203e00620b00606500601600207d00620b0060c400600c", "0x612b00620b0061240063aa00212c00620b00611b00612b00212a00620b", "0x20b00700700603000200700620b00600200636f00212b12c12a03e07d016", "0xef00200220b00600900603300200220b00600200900200c006408009006", "0x200240900600202d00200f00620b00601600604b00201600620b006002", "0x201000620b00600200000200220b00600c00603300200220b006002009", "0x1400604d00201501400720b00600f00613000200f00620b00601000604b", "0x201c00620b00600600604e00201900620b0060150061b200200220b006", "0x600202a00200220b00601b00603300201b01700720b00601c01900704f", "0x605400620b0060c40061ff00206500620b00601700604e0020c400620b", "0x900700720b00600c00607600200c00620b00600600600f002054065007", "0x73ac00200220b00600200900200f00640a01600620b007009006077002", "0x140063ad00200220b00600200900201500640b01401000720b007016002", "0x1900620b00600700600f00201b00620b00601000600c00201700620b006", "0x200220b00600200900201c01901b00900601c00620b0060170063ae002", "0x20b00601500600c00206500620b0060c40063af0020c400620b00600202a", "0x900602900620b0060650063ae00211b00620b00600700600f002054006", "0x600c00202a00620b00600f0063af00200220b00600200900202911b054", "0x620b00602a0063ae00202c00620b00600700600f00202b00620b006002", "0x200220b00600213900201000620b0060023b000202d02c02b00900602d", "0x620b00600700612b00201b00620b00600600601600200220b00600211e", "0x1c00620b0070170060ea00201701501400920b00601901b007383002019", "0x636000206500620b00601c0060ec00200220b0060020090020c400640c", "0x620b00601400601600200220b0060540060fa00211b05400720b006065", "0x2b02a02900920b00602d02c0071bd00202d00620b00601500612b00202c", "0x200900202f00640d02e00620b00702b0060ea00200220b006002006002", "0x4803300720b00603000636000203000620b00602e0060ec00200220b006", "0x60390061bf00203900620b00611b00636100200220b0060330060fa002", "0x200220b00611e00604d00203711e00720b00603500613000203500620b", "0x610d00613000210d00620b0061200061bf00212000620b006048006361", "0x212400620b0060370061b200200220b00603a00604d00203c03a00720b", "0x3e00604b00203e00620b00607d1240071c100207d00620b00603c0061b2", "0x220b00600200900212a00640e00220b00703e0061c500203e00620b006", "0x612b00602c00212b00620b00612c00602e00212c00620b00600202a002", "0x612a0060f200200220b00600200900200240f00600202d00204100620b", "0x602c00212d00620b00604300602b00204300620b00600202a00200220b", "0x620b00604500602c00204500620b00604100602f00204100620b00612d", "0x11e00200220b00600200900204700641012e00620b007045006030002045", "0x13100c00720b00600c0063b100200220b00612e00603300200220b006002", "0x602900601600204d00620b0060023b300213000620b0061310063b2002", "0x205300620b0061300063b400205100620b00602a00612b00213200620b", "0x4f04e04b00920b00612f05305113200c3b500212f00620b00604d00604b", "0x608e00200220b00600200900213300641105600620b00704f0060ed002", "0x620b00613600602c00213600620b00605800602f00205800620b006056", "0x3300200220b00600200900205b00641213400620b007136006030002136", "0x13504e04b0093b600213500c00720b00600c0063b100200220b006134006", "0x600202a00200220b00600200900213806105f00941313705d00720b007", "0x206700620b00605d00601600213900620b0060640063b700206400620b", "0x41400600202d00206900620b0061390063b800213b00620b00613700612b", "0x605f00601600206a00620b0061380063b900200220b006002009002002", "0x206900620b00606a0063b800213b00620b00606100612b00206700620b", "0x706c0063bc00206c00620b00613c0063bb00213c00620b0060690063ba", "0x200220b00606f0063bd00200220b00600200900213f00641506f00620b", "0x200600c00214100620b0060710063be00207100c00720b00600c0063b1", "0x14b00620b00613b00612b00214600620b00606700601600207900620b006", "0x790163c000214a00620b0061410063bf00207b00620b006009006041002", "0x41607f00620b00707700617d00207707607514500c20b00614a07b14b146", "0x603300215100f00720b00607f0061f600200220b0060020090020c7006", "0x15000620b00614500600c00215200620b00600c0063c100200220b006151", "0x1520063c200216100620b00607600612b00215e00620b006075006016002", "0x620b00600f0100073c300215f00620b00601600604e00216000620b006", "0x850063c500208508314f14e00c20b00615f16016115e1500163c400200f", "0x620b00615d0063c600200220b00600200900216300641715d00620b007", "0xc00208700620b0061620063c800216200620b00615c00f0073c700215c", "0x20b00608300612b00215700620b00614f00601600215400620b00614e006", "0x600200900215b08a15715400c00615b00620b0060870063c900208a006", "0x600c00216e00620b0061630063ca00200220b00600f00604700200220b", "0x620b00608300612b0020ed00620b00614f00601600216800620b00614e", "0x20b00600200900216b08e0ed16800c00616b00620b00616e0063c900208e", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x1600216c00620b00614500600c0020d000620b0060c70063ca00200220b", "0x20b0060d00063c900216d00620b00607600612b00209200620b006075006", "0x20b00600c00609b00200220b00600200900217116d09216c00c006171006", "0x600900604700200220b00601000621700200220b006016006051002002", "0x1600217300620b00600200600c00209400620b00613f0063ca00200220b", "0x20b0060940063c900217500620b00613b00612b00209600620b006067006", "0x20b00605b00603300200220b0060020090020d117509617300c0060d1006", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x60023cb00209900620b00600213100200220b00600900604700200220b", "0x9b00620b00617609900705b00217600620b00617600604b00217600620b", "0x9d0063ca00209d00620b00609b17a00705d00217a00620b006002135002", "0xa000620b00604b0060160020cc00620b00600200600c00217c00620b006", "0xa00cc00c0060a200620b00617c0063c900217d00620b00604e00612b002", "0x601600605100200220b00600c00609b00200220b0060020090020a217d", "0x1330063ca00200220b00600900604700200220b00601000621700200220b", "0x17f00620b00604b0060160020a400620b00600200600c00217e00620b006", "0x17f0a400c0060d200620b00617e0063c90020cd00620b00604e00612b002", "0x20b00604700603300200220b00600211e00200220b0060020090020d20cd", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x60023cc0020a800620b00600213100200220b00600900604700200220b", "0xce00620b0061800a800705b00218000620b00618000604b00218000620b", "0x1810063ca00218100620b0060ce0ab00705d0020ab00620b006002135002", "0xc900620b0060290060160020c800620b00600200600c0020cf00620b006", "0xc90c800c0060cb00620b0060cf0063c90020ca00620b00602a00612b002", "0x20b00600c00609b00200220b00600211e00200220b0060020090020cb0ca", "0x600900604700200220b00601000621700200220b006016006051002002", "0x600c0020c600620b00602f0063ca00200220b00611b0060fa00200220b", "0x620b00602a00612b0020b500620b0060290060160020b300620b006002", "0x20b0060020090020b718e0b50b300c0060b700620b0060c60063c900218e", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x600c0020b900620b0060c40063ca00200220b00600900604700200220b", "0x620b00601500612b0020bb00620b0060140060160020ba00620b006002", "0x20b00600211e00218f0bd0bb0ba00c00618f00620b0060b90063c90020bd", "0x1c00200c00620b00601600601900201600700720b0060070063cd002002", "0x20b00601000611b00200220b00600f0060c400201000f00720b00600c006", "0x1501400720b00601b0170070bf00201b00620b00600900604e002017006", "0x600200600c00201900620b00600700605300200220b006015006033002", "0x202900620b00601900600f00211b00620b00600600601600205400620b", "0x650c401c00920b00602a02911b05400c21800202a00620b00601400604e", "0x614100200220b00600200900202c00641802b00620b007065006071002", "0x2f00620b00600202a00200220b00602e00603300202e02d00720b00602b", "0x600c00203300620b00603000631a00203000620b00602f02d007319002", "0x620b00603300631b00203900620b0060c400601600204800620b00601c", "0x11e00620b00602c00631c00200220b006002009002035039048009006035", "0x11e00631b00212000620b0060c400601600203700620b00601c00600c002", "0x600206400200f00620b0060023b000210d12003700900610d00620b006", "0x206400201900620b00600206400201700620b0060023ce00201400620b", "0x600601600200220b00600211e00200220b0060021390020c400620b006", "0x920b00602a02900738300202a00620b00600700612b00202900620b006", "0x220b00600200900202c00641902b00620b00711b0060ea00211b054065", "0x60fa00202f02e00720b00602d00636000202d00620b00602b0060ec002", "0x3500620b00605400612b00203900620b00606500601600200220b00602e", "0x60ea00200220b00600200600204803303000920b0060350390071bd002", "0x20b00611e0060ec00200220b00600200900203700641a11e00620b007048", "0x36100200220b00610d0060fa00203a10d00720b006120006360002120006", "0x20b00612400613000212400620b00603c0061bf00203c00620b00602f006", "0x1bf00212a00620b00603a00636100200220b00607d00604d00203e07d007", "0x612b00604d00204112b00720b00612c00613000212c00620b00612a006", "0x1c100212d00620b0060410061b200204300620b00603e0061b200200220b", "0x70450061c500204500620b00604500604b00204500620b00612d043007", "0x2e00204700620b00600202a00200220b00600200900212e00641b00220b", "0x241c00600202d00213000620b00613100602c00213100620b006047006", "0x4d00620b00600202a00200220b00612e0060f200200220b006002009002", "0x13000602f00213000620b00604b00602c00204b00620b00604d00602b002", "0x4f00620b00704e00603000204e00620b00604e00602c00204e00620b006", "0x900637100200220b00604f00603300200220b00600200900213200641d", "0x13505b00720b0060530063cf00213413605813305612f05305101420b006", "0x1350063d000213800620b00603300612b00206100620b006030006016002", "0x5f00615100205f13705d00920b0060641380610093d100206400620b006", "0x620b00613900615200200220b00600200900206700641e13900620b007", "0x20ef00200220b00606900604d00206a06900720b00613b00613000213b", "0x220b00613c00604d00206f13c00720b00606c00613000206c00620b006", "0x604d00214107100720b00613f00613000213f00620b00606a0061b2002", "0x7500720b00614500613000214500620b00606f0061b200200220b006071", "0x760061b200207700620b0061410061b200200220b00607500604d002076", "0x620b00614600604b00214600620b0060790770071c100207900620b006", "0x202a00200220b00600200900214b00641f00220b0071460061c5002146", "0x7f00620b00614a00602c00214a00620b00607b00602e00207b00620b006", "0x200220b00614b0060f200200220b00600200900200242000600202d002", "0x20b00615100602c00215100620b0060c700602b0020c700620b00600202a", "0x2f00215200620b00615200602c00215200620b00607f00602f00207f006", "0x20b00714e00603000214e00620b00614e00602c00214e00620b006152006", "0x603300200220b00600211e00200220b00600200900208300642114f006", "0x620b00605d00601600215008500720b00612f0063d200200220b00614f", "0x93d400216300620b0061500063d300215d00620b00613700612b00215f", "0x16200642215c00620b00716000615100216016115e00920b00616315d15f", "0x20b0060510063d500208700620b00615c00615200200220b006002009002", "0x8500720b0060850063d700215705b00720b00605b0063d6002154051007", "0x216e13300720b0061330063d900215b05600720b0060560063d800208a", "0x63dc0020ed13600720b0061360063db00216805800720b0060580063da", "0x620b00608e0ed16816e15b08a15715401412a00208e13400720b006134", "0x90020d000642300220b0070870061c500200220b00616b00604700216b", "0x620b00615e00601600209216c00720b0060560063dd00200220b006002", "0x93df00217500620b0060920063de00209600620b00616100612b002173", "0x709400615100200220b00600200600209417116d00920b006175096173", "0x17600620b0060d100615200200220b0060020090020990064240d100620b", "0x60020ef00200220b00609b00604d00217a09b00720b006176006130002", "0x200220b00617c00604d0020cc17c00720b00609d00613000209d00620b", "0x17d0a00071c100217d00620b0060cc0061b20020a000620b00617a0061b2", "0x42500220b0070a20061c50020a200620b0060a200604b0020a200620b006", "0x60a400602e0020a400620b00600202a00200220b00600200900217e006", "0x200900200242600600202d0020cd00620b00617f00602c00217f00620b", "0x602b0020d200620b00600202a00200220b00617e0060f200200220b006", "0x620b0060cd00602f0020cd00620b0060a800602c0020a800620b0060d2", "0xab0064270ce00620b00718000603000218000620b00618000602c002180", "0x200220b0060ce00603300200220b00600211e00200220b006002009002", "0x20b00616d00601600218100620b00613413605813316c08505b05101412a", "0x2d0020c900620b0061810060410020c800620b00617100612b0020cf006", "0xab00603300200220b00600211e00200220b006002009002002428006002", "0x614500200220b0060170063e000200220b00601400614500200220b006", "0x14500200220b00600f00621700200220b00600c00605100200220b006019", "0x200220b00613600639600200220b00613400620c00200220b0060c4006", "0x220b00616c00639900200220b00613300639800200220b006058006397", "0x20b00605100639500200220b00605b00639b00200220b00608500639a002", "0x60cb00604b0020cb00620b0060023e10020ca00620b006002131002002", "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", "0x200600c00218e00620b0060b50063ca0020b500620b0060c60b300705d", "0xba00620b00617100612b0020b900620b00616d0060160020b700620b006", "0x220b0060020090020bb0ba0b90b700c0060bb00620b00618e0063c9002", "0x220b0060170063e000200220b00601400614500200220b00600211e002", "0x20b00600f00621700200220b00600c00605100200220b006019006145002", "0x613600639600200220b00613400620c00200220b0060c4006145002002", "0x16c00639900200220b00613300639800200220b00605800639700200220b", "0x639500200220b00605b00639b00200220b00608500639a00200220b006", "0x18f00620b00600200600c0020bd00620b0060990063ca00200220b006051", "0xbd0063c90020bf00620b00617100612b0020be00620b00616d006016002", "0xd00060f200200220b0060020090020c10bf0be18f00c0060c100620b006", "0x1600219000620b00613413605813305608505b05101412a00200220b006", "0x20b0061900060410020c800620b00616100612b0020cf00620b00615e006", "0x63e200219f0d61a019d0d419c19b0c301420b0060c90063710020c9006", "0x20b0060cf0060160021a500620b00600200600c0020d90d700720b0060c3", "0x3e40021b200620b0060d90063e30021a600620b0060c800612b0020df006", "0x3e500200220b0060020060021a41a30db1a100c20b0061b21a60df1a500c", "0x61ad0063e600200220b0060020090021ae0064291ad00620b0071a4006", "0x21b800620b0060023e80020e70e500720b0061b40063e70021b400620b", "0x60e70063e700200220b0061ba00609b0021bd1ba00720b0061b80063e7", "0xef1bf00720b0061bd0063e700200220b0060ea00609b0020ec0ea00720b", "0x60ef0061730021c500620b0060ec00617300200220b0061bf00609b002", "0xf400620b0061c100602f0021c100620b0060f21c50073e90020f200620b", "0x3d70021ca19b00720b00619b0063d60021c80d700720b0060d70063d5002", "0x19d0063d90020f80d400720b0060d40063d80021d419c00720b00619c006", "0x20b0060d60063db0021eb1a000720b0061a00063da0021d619d00720b006", "0x1d60f81d41ca1c801412a0021ef19f00720b00619f0063dc0020fa0d6007", "0x20b0060f400602c00200220b0060fc0060470020fc00620b0061ef0fa1eb", "0x200220b0060020090021f600642a0fe00620b0070f40060300020f4006", "0x200220b0060e500609b00200220b0060fe00603300200220b00600211e", "0x20b0061a100600c00210000620b00619f0d61a019d0d419c19b0d701412a", "0x4100201c00620b0061a300612b0021f900620b0060db0060160021f8006", "0x3300200220b00600200900200242b00600202d00201600620b006100006", "0x1ff1fb00942c1032f600720b0070e51a30db0093b600200220b0061f6006", "0x20b0060000063b700200000620b00600202a00200220b006002009002206", "0x3b800230500620b00610300612b00230400620b0062f6006016002300006", "0x3b900200220b00600200900200242d00600202d00230700620b006300006", "0x20b0061ff00612b00230400620b0061fb00601600230800620b006206006", "0x3bb00230a00620b0063070063ba00230700620b0063080063b8002305006", "0x200900230c00642e30b00620b0073090063bc00230900620b00630a006", "0x601600230e00620b0060023e800200220b00630b0063bd00200220b006", "0x620b0060d70063e300231300620b00630500612b00231200620b006304", "0x30f00920b00631531431331200c3ea00231500620b00630e006173002314", "0x200220b00600200900231700642f31600620b0073110063eb002311310", "0x619b0063cf00200220b00631a00603300231a31900720b0063160063ec", "0x32800620b00631000612b00232600620b00630f00601600231c31b00720b", "0x32232132000920b0063293283260093d100232900620b00631c0063d0002", "0x211e00200220b00600200900232b00643032a00620b007322006151002", "0x232d00620b00632c0063ed00232c00620b00632a00615200200220b006", "0x20b0061a100600c00233100620b00619f0d61a019d0d419c31b31901412a", "0x4100233700620b00632100612b00233600620b006320006016002335006", "0x3373363350163ef00221100620b00632d0063ee00233900620b006331006", "0x33d00643133b00620b00733400617d00233433321233200c20b006211339", "0x634000603300234033f00720b00633b0061f600200220b006002009002", "0x12b0021f900620b0062120060160021f800620b00633200600c00200220b", "0x20b00600c00613200201600620b00633f00604100201c00620b006333006", "0x34634500720b00621000601c00221000620b006343006019002343342007", "0x20b00634700601c00234700620b00600206500200220b0063450060c4002", "0x5400234a00620b00634600605400200220b0063480060c4002349348007", "0x601c0c400713b00234a00620b00634a00611b00234b00620b006349006", "0x220b00734b34a00702900201600620b00601600f0073c300201c00620b", "0x605100234d34c00720b00634200613200200220b006002009002002432", "0x35200620b0061f800600c00234e00620b00634d00605300200220b00634c", "0x35200901000220f00620b00634e00600f00235300620b0061f9006016002", "0x20b00735100601400200220b00600200600235135034f00920b00620f353", "0x35735600720b00635400601500200220b006002009002355006433354006", "0x601b00200220b00600200900235a00643401500620b007357006017002", "0x720b00635c00601c00235c00620b00635b00601900235b00620b006356", "0x36500601c00236500620b00600206500200220b0063600060c4002361360", "0x36900620b00636100605400200220b0063660060c400236836600720b006", "0x170073f000236900620b00636900611b00236e00620b006368006054002", "0x20b00600200900200243500220b00736e36900702900201500620b006015", "0x37100602c00237100620b00636f00602b00236f00620b00600202a002002", "0x600202a00200220b00600200900200243600600202d00237200620b006", "0x237200620b00637400602c00237400620b00637300602e00237300620b", "0x720e00603000220e00620b00620e00602c00220e00620b00637200602f", "0x200220b00637800603300200220b00600200900237900643737800620b", "0x35000601600237c00620b00637b0061d600237b37a00720b0060150060f8", "0x920b00638037f00738300238000620b00601c00612b00237f00620b006", "0x1b00620b00601b01900713b00237c00620b00637c0060fc00237e01b37d", "0x211e00200220b00600200900238200643838100620b00737e0060ea002", "0x238a00620b00634f00600c00238300620b0063810060ec00200220b006", "0x63830063f100238b00620b00637c0060fc00220d00620b00637d006016", "0x3890063f300238938838500920b00638c38b20d38a00c3f200238c00620b", "0x220b00638d0063f400200220b00600200900238e00643938d00620b007", "0x3910061d600200220b00638f00613600239138f00720b00637a0060f8002", "0x39800620b00638800601600239700620b00638500600c00239200620b006", "0x39700c30400239a00620b0063920060fc00239900620b00601b00612b002", "0x201000620b00601001400713b00239601020c39500c20b00639a399398", "0x39b00630700200220b00600200900239c00643a39b00620b007396006305", "0x3a039f00720b00639d00606c00239e00620b00600213100239d00620b006", "0x620c0060160023a400620b00639500600c00200220b00639f00613c002", "0x23a700620b00639e00604e0023a600620b0063a000606f0023a500620b", "0x3a800620b0073a30060710023a33a23a100920b0063a73a63a53a400c13f", "0x330023ab3aa00720b0063a800614100200220b0060020090023a900643b", "0x20b0063ac0063c80023ac00620b0063aa0160073c700200220b0063ab006", "0x12b0023af00620b0063a20060160023ae00620b0063a100600c0023ad006", "0x3b13b03af3ae00c0063b100620b0063ad0063c90023b000620b006010006", "0x620b0063a90063ca00200220b00601600604700200220b006002009002", "0x612b0023b400620b0063a20060160023b300620b0063a100600c0023b2", "0x23b63b53b43b300c0063b600620b0063b20063c90023b500620b006010", "0x3b700620b00639c0063ca00200220b00601600604700200220b006002009", "0x1000612b0023b900620b00620c0060160023b800620b00639500600c002", "0x90023bb3ba3b93b800c0063bb00620b0063b70063c90023ba00620b006", "0x13600200220b00601400614500200220b00601600604700200220b006002", "0x620b00638500600c0023bc00620b00638e0063ca00200220b00637a006", "0x63c90023bf00620b00601b00612b0023be00620b0063880060160023bd", "0x211e00200220b0060020090023c03bf3be3bd00c0063c000620b0063bc", "0x613600200220b00601400614500200220b00601600604700200220b006", "0x23c100620b0063820063ca00200220b00637c00639c00200220b00637a", "0x601b00612b0023c300620b00637d0060160023c200620b00634f00600c", "0x20090023c53c43c33c200c0063c500620b0063c10063c90023c400620b", "0x1600604700200220b00637900603300200220b00600211e00200220b006", "0x613600200220b00601900614500200220b00601400614500200220b006", "0x4b0023c700620b0060023f50023c600620b00600213100200220b006015", "0x20b0060021350023c800620b0063c73c600705b0023c700620b0063c7006", "0x221700620b0063ca0063ca0023ca00620b0063c83c900705d0023c9006", "0x601c00612b0023cc00620b0063500060160023cb00620b00634f00600c", "0x20090022183cd3cc3cb00c00621800620b0062170063c90023cd00620b", "0x1600604700200220b00635a00603300200220b00600211e00200220b006", "0x606100200220b00601900614500200220b00601400614500200220b006", "0x3f50023ce00620b00600213100200220b0060170063e000200220b006356", "0x20b0063cf3ce00705b0023cf00620b0063cf00604b0023cf00620b006002", "0x3ca0023d200620b0063d03d100705d0023d100620b0060021350023d0006", "0x20b0063500060160023d400620b00634f00600c0023d300620b0063d2006", "0xc0063d700620b0063d30063c90023d600620b00601c00612b0023d5006", "0x1600604700200220b00600211e00200220b0060020090023d73d63d53d4", "0x63e000200220b00601900614500200220b00601400614500200220b006", "0x3d900620b00634f00600c0023d800620b0063550063ca00200220b006017", "0x3d80063c90023db00620b00601c00612b0023da00620b006350006016002", "0x1400614500200220b0060020090023dc3db3da3d900c0063dc00620b006", "0x605100200220b00601900614500200220b0060170063e000200220b006", "0x3de00620b0063dd0160073c70023dd00620b00600213100200220b006342", "0x1f90060160023e000620b0061f800600c0023df00620b0063de0063c8002", "0x3e300620b0063df0063c90023e200620b00601c00612b0023e100620b006", "0x200220b00601400614500200220b0060020090023e33e23e13e000c006", "0x220b00600c00605100200220b00601900614500200220b0060170063e0", "0x20b00633d0063ca00200220b0060c400614500200220b00600f006217002", "0x12b0023e600620b0062120060160023e500620b00633200600c0023e4006", "0x3e83e73e63e500c0063e800620b0063e40063c90023e700620b006333006", "0x200220b00600f00621700200220b00600211e00200220b006002009002", "0x220b0060170063e000200220b0060c400614500200220b006014006145", "0x20b00631900639500200220b00600c00605100200220b006019006145002", "0x61a000639700200220b0060d600639600200220b00619f00620c002002", "0x19c00639a00200220b0060d400639900200220b00619d00639800200220b", "0xc0023e900620b00632b0063ca00200220b00631b00639b00200220b006", "0x20b00632100612b0023eb00620b0063200060160023ea00620b0061a1006", "0x60020090023ed3ec3eb3ea00c0063ed00620b0063e90063c90023ec006", "0x601400614500200220b00600f00621700200220b00600211e00200220b", "0x1900614500200220b0060170063e000200220b0060c400614500200220b", "0x639a00200220b00619b00639b00200220b00600c00605100200220b006", "0x39700200220b0060d600639600200220b00619f00620c00200220b00619c", "0x200220b0060d400639900200220b00619d00639800200220b0061a0006", "0x630f0060160023ef00620b0061a100600c0023ee00620b0063170063ca", "0x63f200620b0063ee0063c90023f100620b00631000612b0023f000620b", "0x621700200220b00600211e00200220b0060020090023f23f13f03ef00c", "0x3e000200220b0060c400614500200220b00601400614500200220b00600f", "0x200220b00600c00605100200220b00601900614500200220b006017006", "0x220b00619c00639a00200220b0060d400639900200220b00619b00639b", "0x20b0061a000639700200220b0060d600639600200220b00619f00620c002", "0x630c0063ca00200220b0060d700639500200220b00619d006398002002", "0x23f500620b0063040060160023f400620b0061a100600c0023f300620b", "0x3f63f53f400c0063f700620b0063f30063c90023f600620b00630500612b", "0x220b00601400614500200220b00600211e00200220b0060020090023f7", "0x20b00600c00605100200220b00601900614500200220b0060170063e0002", "0x619f00620c00200220b0060c400614500200220b00600f006217002002", "0x19d00639800200220b0061a000639700200220b0060d600639600200220b", "0x639b00200220b00619c00639a00200220b0060d400639900200220b006", "0x23f800620b0061ae0063ca00200220b0060d700639500200220b00619b", "0x61a300612b0023fa00620b0060db0060160023f900620b0061a100600c", "0x20090023fc3fb3fa3f900c0063fc00620b0063f80063c90023fb00620b", "0x63e000200220b00601400614500200220b00605b00639b00200220b006", "0x39500200220b00600c00605100200220b00601900614500200220b006017", "0x200220b0060c400614500200220b00600f00621700200220b006051006", "0x220b00605800639700200220b00613600639600200220b00613400620c", "0x20b00605600639900200220b00608500639a00200220b006133006398002", "0x60160023fe00620b00600200600c0023fd00620b0061620063ca002002", "0x620b0063fd0063c90023ff00620b00616100612b00221b00620b00615e", "0x200220b00600211e00200220b0060020090024003ff21b3fe00c006400", "0x220b00601400614500200220b00605b00639b00200220b006083006033", "0x20b00600c00605100200220b00601900614500200220b0060170063e0002", "0x60c400614500200220b00600f00621700200220b006051006395002002", "0x5800639700200220b00613600639600200220b00613400620c00200220b", "0x639a00200220b00605600639900200220b00613300639800200220b006", "0x4b00240200620b0060023f600240100620b00600213100200220b00612f", "0x20b00600213500240300620b00640240100705b00240200620b006402006", "0x221a00620b00643d0063ca00243d00620b00640343c00705d00243c006", "0x613700612b00243f00620b00605d00601600243e00620b00600200600c", "0x200900244144043f43e00c00644100620b00621a0063c900244000620b", "0x1400614500200220b00605b00639b00200220b00600211e00200220b006", "0x605100200220b00601900614500200220b0060170063e000200220b006", "0x14500200220b00600f00621700200220b00605100639500200220b00600c", "0x200220b00613600639600200220b00613400620c00200220b0060c4006", "0x220b00605600639900200220b00613300639800200220b006058006397", "0x600200600c00244200620b0060670063ca00200220b00612f00639a002", "0x244500620b00613700612b00244400620b00605d00601600244300620b", "0x200220b00600200900244644544444300c00644600620b0064420063c9", "0x200220b00601400614500200220b00613200603300200220b00600211e", "0x220b00600c00605100200220b00601900614500200220b0060170063e0", "0x20b00600900604700200220b0060c400614500200220b00600f006217002", "0x644800604b00244800620b0060023cc00244700620b006002131002002", "0x244a00620b00600213500244900620b00644844700705b00244800620b", "0x200600c00244c00620b00644b0063ca00244b00620b00644944a00705d", "0x44e00620b00603300612b00221900620b00603000601600244d00620b006", "0x220b00600200900244f44e21944d00c00644f00620b00644c0063c9002", "0x220b0060170063e000200220b00601400614500200220b00600211e002", "0x20b00600f00621700200220b00600c00605100200220b006019006145002", "0x602f0060fa00200220b00600900604700200220b0060c4006145002002", "0x1600245100620b00600200600c00245000620b0060370063ca00200220b", "0x20b0064500063c900245300620b00603300612b00245200620b006030006", "0x20b00600900604700200220b00600200900245445345245100c006454006", "0x601900614500200220b0060170063e000200220b006014006145002002", "0xc400614500200220b00600f00621700200220b00600c00605100200220b", "0x245600620b00600200600c00245500620b00602c0063ca00200220b006", "0x64550063c900245800620b00605400612b00245700620b006065006016", "0x700601600200220b00601600604d00245945845745600c00645900620b", "0x920b0060170150070f400201700620b00600900612b00201500620b006", "0x220b00600200900201900645a01b00620b0070140061c800201401000f", "0xc40061eb0020c400620b00601c0061d400201c00620b00601b0061ca002", "0x61ef00200220b0060540060fa00202c02b02a02911b05406501020b006", "0x13000200220b00602c00604d00200220b00602b00604d00200220b00611b", "0x20b00602f00613000202f00620b0060023f700202e02d00720b006065006", "0x13000204800620b00602e0061b200200220b00603000604d002033030007", "0x20b0060330061b200200220b00603900604d00203503900720b006048006", "0x1b200200220b00603700604d00212003700720b00611e00613000211e006", "0x20b00610d00604b00203a00620b0061200061b200210d00620b006035006", "0x203c00620b00603c00604b00203c00620b00603a10d0071c100210d006", "0x602d00604b00202900620b00602900600f00202a00620b00602a00604b", "0x200220b00600200900212400645b00220b00703c0061c500202d00620b", "0x20b00603e00602c00203e00620b00607d00602e00207d00620b00600202a", "0x20b0061240060f200200220b00600200900200245c00600202d00212a006", "0x12b00602c00212b00620b00612c00602b00212c00620b00600202a002002", "0x4100620b00604100602c00204100620b00612a00602f00212a00620b006", "0x603300200220b00600200900212d00645d04300620b007041006030002", "0x200900200245e00600202d00200220b00602d00604d00200220b006043", "0x212e04500720b00602d00613000200220b00612d00603300200220b006", "0x720b00604700613000204700620b0060023f800200220b00604500604d", "0x61b200204d00620b00612e0061b200200220b00613100604d002130131", "0x20b00604e00604b00204e00620b00604b04d0071c100204b00620b006130", "0x2a00200220b00600200900204f00645f00220b00704e0061c500204e006", "0x620b00605100602c00205100620b00613200602e00213200620b006002", "0x220b00604f0060f200200220b00600200900200246000600202d002053", "0x605600602c00205600620b00612f00602b00212f00620b00600202a002", "0x213300620b00613300602c00213300620b00605300602f00205300620b", "0x5800603300200220b00600200900213600646105800620b007133006030", "0x206100620b00600600612c00205f00620b00600200600c00200220b006", "0x600c00604100206400620b00601000612b00213800620b00600f006016", "0x213b00620b00602900600f00206700620b00602a00604b00213900620b", "0x63bc00213705d13505b13401620b00613b06713906413806105f0103f9", "0x20b0060690063bd00200220b00600200900206a00646206900620b007137", "0x13c00633200213c00620b00606c00633100206c00620b006002100002002", "0x7100620b00605b00612c00213f00620b00613400600c00206f00620b006", "0x6f00621200214500620b00605d00612b00214100620b006135006016002", "0x633300200220b00600200900207514514107113f01600607500620b006", "0x620b00605b00612c00207700620b00613400600c00207600620b00606a", "0x621200214b00620b00605d00612b00214600620b006135006016002079", "0x3300200220b00600200900207b14b14607907701600607b00620b006076", "0x200220b00602a00604d00200220b00602900606100200220b006136006", "0x7f00620b00600231300214a00620b00600213100200220b00600c006047", "0x21350020c700620b00607f14a00705b00207f00620b00607f00604b002", "0x620b00615200633300215200620b0060c715100705d00215100620b006", "0x601600208300620b00600600612c00214f00620b00600200600c00214e", "0x620b00614e00621200215000620b00601000612b00208500620b00600f", "0x20b00600c00604700200220b00600200900215e15008508314f01600615e", "0x612c00216000620b00600200600c00216100620b006019006333002002", "0x620b00601000612b00215d00620b00600f00601600215f00620b006006", "0x1600604d00215c16315d15f16001600615c00620b006161006212002163", "0x604d00200220b00601000604d00200220b00600f00604d00200220b006", "0x1c00620b00600900612b00201900620b00600700601600200220b006014", "0x4630c400620b00701b0061c800201b01701500920b00601c0190070f4002", "0x540061d400205400620b0060c40061ca00200220b006002009002065006", "0xfa00202f02e02d02c02b02a02901020b00611b0061eb00211b00620b006", "0x200220b00602e00604d00200220b00602b0061ef00200220b00602a006", "0x20b00600200000203303000720b00602900613000200220b00602f00604d", "0x1b200200220b00603900604d00203503900720b006048006130002048006", "0x603700604d00212003700720b00611e00613000211e00620b006033006", "0x203c03a00720b00610d00613000210d00620b0060350061b200200220b", "0x20b00603c0061b200212400620b0061200061b200200220b00603a00604d", "0x203e00620b00607d1240071c100212400620b00612400604b00207d006", "0x602c00600f00202d00620b00602d00604b00203e00620b00603e00604b", "0x646400220b00703e0061c500203000620b00603000604b00202c00620b", "0x20b00612c00602e00212c00620b00600202a00200220b00600200900212a", "0x600200900200246500600202d00204100620b00612b00602c00212b006", "0x4300602b00204300620b00600202a00200220b00612a0060f200200220b", "0x4500620b00604100602f00204100620b00612d00602c00212d00620b006", "0x204700646612e00620b00704500603000204500620b00604500602c002", "0x200220b00603000604d00200220b00612e00603300200220b006002009", "0x13000200220b00604700603300200220b00600200900200246700600202d", "0x620b00600230000200220b00613100604d00213013100720b006030006", "0x61b200200220b00604b00604d00204e04b00720b00604d00613000204d", "0x20b00613204f0071c100213200620b00604e0061b200204f00620b006130", "0x5300646800220b0070510061c500205100620b00605100604b002051006", "0x620b00612f00602e00212f00620b00600202a00200220b006002009002", "0x20b00600200900200246900600202d00213300620b00605600602c002056", "0x605800602b00205800620b00600202a00200220b0060530060f2002002", "0x213400620b00613300602f00213300620b00613600602c00213600620b", "0x900213500646a05b00620b00713400603000213400620b00613400602c", "0x206400620b00600200600c00200220b00605b00603300200220b006002", "0x601700612b00206700620b00601500601600213900620b00600600612c", "0x206a00620b00602d00604b00206900620b00600c00604100213b00620b", "0x1620b00606c06a06913b0671390640103f900206c00620b00602c00600f", "0x600200900206f00646b13c00620b0071380063bc00213806105f13705d", "0x13f00633100213f00620b00600210000200220b00613c0063bd00200220b", "0x14500620b00605d00600c00214100620b00607100633200207100620b006", "0x6100612b00207600620b00605f00601600207500620b00613700612c002", "0x207907707607514501600607900620b00614100621200207700620b006", "0x620b00605d00600c00214600620b00606f00633300200220b006002009", "0x612b00214a00620b00605f00601600207b00620b00613700612c00214b", "0xc707f14a07b14b0160060c700620b00614600621200207f00620b006061", "0x220b00602c00606100200220b00613500603300200220b006002009002", "0x620b00600213100200220b00600c00604700200220b00602d00604d002", "0x15100705b00215200620b00615200604b00215200620b006002313002151", "0x620b00614e14f00705d00214f00620b00600213500214e00620b006152", "0x612c00215000620b00600200600c00208500620b006083006333002083", "0x620b00601700612b00216100620b00601500601600215e00620b006006", "0x600200900215f16016115e15001600615f00620b006085006212002160", "0x600c00215d00620b00606500633300200220b00600c00604700200220b", "0x620b00601500601600215c00620b00600600612c00216300620b006002", "0x16301600615400620b00615d00621200208700620b00601700612b002162", "0x7500201900620b00600208300201700620b00600214f00215408716215c", "0x601600200220b00600211e00200220b0060021390020c400620b006002", "0x20b00602a02900738300202a00620b00600c00612b00202900620b006007", "0x20b00600200900202c00646c02b00620b00711b0060ea00211b054065009", "0xfa00202f02e00720b00602d00636000202d00620b00602b0060ec002002", "0x620b00605400612b00203900620b00606500601600200220b00602e006", "0xea00200220b00600200600204803303000920b0060350390071bd002035", "0x611e0060ec00200220b00600200900203700646d11e00620b007048006", "0x200220b00610d0060fa00203a10d00720b00612000636000212000620b", "0x612400613000212400620b00603c0061bf00203c00620b00602f006361", "0x212a00620b00603a00636100200220b00607d00604d00203e07d00720b", "0x12b00604d00204112b00720b00612c00613000212c00620b00612a0061bf", "0x212d00620b0060410061b200204300620b00603e0061b200200220b006", "0x450061c500204500620b00604500604b00204500620b00612d0430071c1", "0x204700620b00600202a00200220b00600200900212e00646e00220b007", "0x46f00600202d00213000620b00613100602c00213100620b00604700602e", "0x620b00600202a00200220b00612e0060f200200220b006002009002002", "0x602f00213000620b00604b00602c00204b00620b00604d00602b00204d", "0x620b00704e00603000204e00620b00604e00602c00204e00620b006130", "0x4f00603300200220b00600211e00200220b00600200900213200647004f", "0x13600620b00600200600c00205305100720b00601600607f00200220b006", "0x900615d00205b00620b00603000601600213400620b00600600612c002", "0x13700620b00605300604100205d00620b00603300612b00213500620b006", "0x604b00205f00620b00605f00604b00205f00f00720b00600f00635a002", "0x13505b1341360153fa00213800620b00601400604b00206100620b006010", "0x601b01900716200205813301505601b12f00f20b00613806105f13705d", "0x6400620b0070580063bc00201500620b00601501700708700201b00620b", "0x5100637100200220b0060640063bd00200220b006002009002139006471", "0x14107100720b00606c0063fb00213f06f13c06c06a06913b06701420b006", "0x13300612b00214600620b00605600601600207900620b00612f00600c002", "0x607b14b14607900c3fd00207b00620b0061410063fc00214b00620b006", "0x200900207f00647214a00620b0070770060c800207707607514500c20b", "0x15215100920b0060c70063fe0020c700620b00614a0060c900200220b006", "0x614500600c00200220b00614e00604d00200220b00615200604d00214e", "0x216000620b00607600612b00216100620b00607500601600215e00620b", "0x8508314f00c20b00615f16016115e00c3ff00215f00620b00615100621b", "0x40100200220b00600200900216300647315d00620b007150006400002150", "0x20b00600202a00208716200720b00615c00640200215c00620b00615d006", "0x215b08a00720b00615700640200215700620b006154006403002154006", "0x20b00615b00643d00216800620b00608700643d00200220b00608a00643c", "0x47408e00620b00716e00603000216e00620b0060ed16800721a0020ed006", "0x20b00600243e00200220b00608e00603300200220b00600200900216b006", "0xd000943f00209200620b0060020ef00216c00620b0060020ef0020d0006", "0x20b00608300601600217500620b00614f00600c00216d00620b00609216c", "0xc600217600620b0060710063fc00209900620b00608500612b0020d1006", "0x17309417100c20b00609b1760990d117501644000209b00620b00616d006", "0x44200200220b00600200900209d00647517a00620b007096006441002096", "0x20b00616200640200200220b0060cc0060330020cc17c00720b00617a006", "0x64430020a200620b00600202a00200220b0060a000643c00217d0a0007", "0x20b0060a400643c00217f0a400720b00617e00640200217e00620b0060a2", "0x640200200220b0060cd00643c0020d20cd00720b00617d006402002002", "0x620b0060d200643d00200220b0060a800643c0021800a800720b00617f", "0x2f0020ce00620b0061810ab00744400218100620b00618000643d0020ab", "0x613b0063d60020c806700720b0060670063d50020cf00620b0060ce006", "0x720b00606a0063d80020ca06900720b0060690063d70020c913b00720b", "0xb313c00720b00613c0063da0020c617c00720b00617c0063d90020cb06a", "0x12a00218e13f00720b00613f0063dc0020b506f00720b00606f0063db002", "0x220b0060b70060470020b700620b00618e0b50b30c60cb0ca0c90c8014", "0x20ba0064760b900620b0070cf0060300020cf00620b0060cf00602c002", "0x17c06a06913b06701412a00200220b0060b900603300200220b006002009", "0x60940060160020bd00620b00617100600c0020bb00620b00613f06f13c", "0x20bf00620b0060bb0060410020be00620b00617300612b00218f00620b", "0x12a00200220b0060ba00603300200220b00600200900200247700600202d", "0x19000620b0060024450020c100620b00613f06f13c17c06a06913b067014", "0x17300612b0021a000620b00609400601600219d00620b00617100600c002", "0xd700620b00619000644600219f00620b0060c10060410020d600620b006", "0x70d400617d0020d419c19b0c300c20b0060d719f0d61a019d016447002", "0xdb00720b0060d90061f600200220b0060020090021a10064780d900620b", "0x19b0060160020bd00620b0060c300600c00200220b0061a30060330021a3", "0xbf00620b0060db0060410020be00620b00619c00612b00218f00620b006", "0xbe0064490021a500620b00618f0064480021a400620b0060bd00636e002", "0x900200247900600202d0021a600620b0060bf00644a0020df00620b006", "0x44b00200220b0060c400614e00200220b00600f00604d00200220b006002", "0x20b00601b00612c0021ad00620b0060c300600c0021b200620b0061a1006", "0x12b0020e500620b00601500615d0021b400620b00619b0060160021ae006", "0xe51b41ae1ad00f0061b800620b0061b200644c0020e700620b00619c006", "0x60c400614e00200220b00600f00604d00200220b0060020090021b80e7", "0x13c00639700200220b00606f00639600200220b00613f00620c00200220b", "0x639a00200220b00606a00639900200220b00616200643c00200220b006", "0x44b00200220b00606700639500200220b00613b00639b00200220b006069", "0x20b00601b00612c0021bd00620b00617100600c0021ba00620b00609d006", "0x12b0021bf00620b00601500615d0020ec00620b0060940060160020ea006", "0x1bf0ec0ea1bd00f0061c100620b0061ba00644c0020ef00620b006173006", "0x616200643c00200220b00616b00603300200220b0060020090021c10ef", "0x600c0021c500620b00613f06f13c07106a06913b06701412a00200220b", "0x620b00608500612b0021a500620b0060830060160021a400620b00614f", "0x1ca1c80f40f201420b0061a60063710021a600620b0061c50060410020df", "0x21f600620b0061a50060160020fa00620b0060020650021eb1d60f81d4", "0x60fa00611b0021f800620b0061eb00644d00210000620b0060df00612b", "0xfe00644e0020fe0fc1ef00920b0061f91f81001f600c2190021f900620b", "0x720b0062f600644f00200220b00600200900210300647a2f600620b007", "0x1ef00601600220600620b00600206500200220b0061ff0060330021ff1fb", "0x30800620b0061d600645000230700620b0060fc00612b00230500620b006", "0x30000000920b00630930830730500c45100230900620b00620600611b002", "0x45300200220b00600200900230b00647b30a00620b007304006452002304", "0x1c80f40f201412a00200220b00630e00603300230e30c00720b00630a006", "0x31331231131001420b00630f00637100230f00620b0061fb30c0f81d41ca", "0x620b00600000601600231a31900720b0063110063cf002317316315314", "0x93d100232600620b00631a0063d000232200620b00630000612b002321", "0x644d00231000620b0063100063e300232031c31b00920b006326322321", "0x620b0063130063de00231200620b0063120063d300231700620b006317", "0x645000231500620b00631500637300231400620b0063140063fc002313", "0x620b00732000615100231900620b0063190063d000231600620b006316", "0x1600201c00620b00632800615200200220b00600200900232900647c328", "0x20b0063190063d000233100620b00631c00612b00232d00620b00631b006", "0x221200620b00621200604b00221200f00720b00600f00635a002332006", "0x620b00601c0c400707900232c32b32a00920b00621233233132d00c454", "0x45600200220b00600200900233400647d33300620b00732c00645500201c", "0x20b00600f00635a00200220b00633600603300233633500720b006333006", "0x31531431331233531001412a00233900620b00633700645700233700f007", "0x20b00632a00601600234200620b0061a400600c00221100620b006317316", "0x45800234500620b00621100604100221000620b00632b00612b002343006", "0x33f33d33b00c20b00634634521034334201645900234600620b006339006", "0x1f600200220b00600200900234800647e34700620b00734000617d002340", "0x20b00601c00647f00200220b00634a00603300234a34900720b006347006", "0x12b00235100620b00633d00601600235000620b00633b00600c00234b006", "0x20b00634b00648000235300620b00634900604100235200620b00633f006", "0x617d00234f34e34d34c00c20b00620f35335235135001648100220f006", "0x20b0063540061f600200220b00600200900235500648235400620b00734f", "0xc00235a00620b00600f0063ed00200220b006357006033002357356007", "0x20b00634e00612b00236600620b00634d00601600236500620b00634c006", "0x3ef00236e00620b00635a0063ee00236900620b006356006041002368006", "0x620b00736100617d00236136035c35b00c20b00636e369368366365016", "0x237337200720b00636f0061f600200220b00600200900237100648336f", "0x20b00637437200748400237400620b00600202a00200220b006373006033", "0x12c00237900620b00635b00600c00237800620b00620e00648500220e006", "0x20b00601500615d00237b00620b00635c00601600237a00620b00601b006", "0xf00637e00620b00637800644c00237d00620b00636000612b00237c006", "0x37f00620b00637100644b00200220b00600200900237e37d37c37b37a379", "0x35c00601600238100620b00601b00612c00238000620b00635b00600c002", "0x38500620b00636000612b00238300620b00601500615d00238200620b006", "0x600200900238838538338238138000f00638800620b00637f00644c002", "0x600c00238900620b00635500644b00200220b00600f00604d00200220b", "0x620b00634d00601600220d00620b00601b00612c00238a00620b00634c", "0x644c00238d00620b00634e00612b00238c00620b00601500615d00238b", "0x200220b00600200900238e38d38c38b20d38a00f00638e00620b006389", "0x620b00634800644b00200220b00601c00604d00200220b00600f00604d", "0x601600239200620b00601b00612c00239100620b00633b00600c00238f", "0x620b00633f00612b00220c00620b00601500615d00239500620b00633d", "0x200900239739620c39539239100f00639700620b00638f00644c002396", "0x639500200220b00601c00604d00200220b00600f00604d00200220b006", "0x39700200220b00631600639600200220b00631700620c00200220b006310", "0x200220b00631300639900200220b00631400639800200220b006315006", "0x20b0061a400600c00239800620b00633400644b00200220b00631200639a", "0x15d00239b00620b00632a00601600239a00620b00601b00612c002399006", "0x20b00639800644c00239d00620b00632b00612b00239c00620b006015006", "0xf00604d00200220b00600200900239e39d39c39b39a39900f00639e006", "0x639900200220b00631200639a00200220b00631000639500200220b006", "0x39700200220b00631600639600200220b00631700620c00200220b006313", "0x200220b00631900639b00200220b00631400639800200220b006315006", "0x20b0061a400600c00239f00620b00632900644b00200220b0060c400614e", "0x15d0023a200620b00631b0060160023a100620b00601b00612c0023a0006", "0x20b00639f00644c0023a400620b00631c00612b0023a300620b006015006", "0xf00604d00200220b0060020090023a53a43a33a23a13a000f0063a5006", "0x639500200220b0061fb00620c00200220b0060c400614e00200220b006", "0x39900200220b0061d400639800200220b0060f800639700200220b0060f2", "0x200220b0060f400639b00200220b0061c800639a00200220b0061ca006", "0x601b00612c0023a700620b0061a400600c0023a600620b00630b00644b", "0x23aa00620b00601500615d0023a900620b0060000060160023a800620b", "0x3a93a83a700f0063ac00620b0063a600644c0023ab00620b00630000612b", "0xc400614e00200220b00600f00604d00200220b0060020090023ac3ab3aa", "0x639500200220b0061c800639a00200220b0060f400639b00200220b006", "0x39900200220b0061d400639800200220b0060f800639700200220b0060f2", "0x3ad00620b00610300644b00200220b0061d600639600200220b0061ca006", "0x1ef0060160023af00620b00601b00612c0023ae00620b0061a400600c002", "0x3b200620b0060fc00612b0023b100620b00601500615d0023b000620b006", "0x60020090023b33b23b13b03af3ae00f0063b300620b0063ad00644c002", "0x6900639a00200220b0060c400614e00200220b00600f00604d00200220b", "0x620c00200220b00613b00639b00200220b00606700639500200220b006", "0x39900200220b00613c00639700200220b00606f00639600200220b00613f", "0x3b400620b00616300644b00200220b00607100639800200220b00606a006", "0x830060160023b600620b00601b00612c0023b500620b00614f00600c002", "0x3b900620b00608500612b0023b800620b00601500615d0023b700620b006", "0x60020090023ba3b93b83b73b63b500f0063ba00620b0063b400644c002", "0x6900639a00200220b0060c400614e00200220b00600f00604d00200220b", "0x620c00200220b00613b00639b00200220b00606700639500200220b006", "0x39800200220b00613c00639700200220b00606f00639600200220b00613f", "0x3bb00620b00607f00644b00200220b00606a00639900200220b006071006", "0x750060160023bd00620b00601b00612c0023bc00620b00614500600c002", "0x3c000620b00607600612b0023bf00620b00601500615d0023be00620b006", "0x60020090023c13c03bf3be3bd3bc00f0063c100620b0063bb00644c002", "0x5100604700200220b0060c400614e00200220b00600f00604d00200220b", "0x23c300620b00612f00600c0023c200620b00613900644b00200220b006", "0x601500615d0023c500620b0060560060160023c400620b00601b00612c", "0x63c800620b0063c200644c0023c700620b00613300612b0023c600620b", "0x200220b00600211e00200220b0060020090023c83c73c63c53c43c300f", "0x220b00600f00604d00200220b0060c400614e00200220b006132006033", "0x20b00601400604d00200220b00601700615700200220b006019006154002", "0x20b00600213100200220b00601600604700200220b00601000604d002002", "0x705b0023ca00620b0063ca00604b0023ca00620b0060023cc0023c9006", "0x20b0062173cb00705d0023cb00620b00600213500221700620b0063ca3c9", "0x12c00221800620b00600200600c0023cd00620b0063cc00644b0023cc006", "0x20b00600900615d0023cf00620b0060300060160023ce00620b006006006", "0xf0063d200620b0063cd00644c0023d100620b00603300612b0023d0006", "0x14e00200220b00600211e00200220b0060020090023d23d13d03cf3ce218", "0x200220b00601900615400200220b00600f00604d00200220b0060c4006", "0x220b00601000604d00200220b00601400604d00200220b006017006157", "0x20b00603700644b00200220b00602f0060fa00200220b006016006047002", "0x160023d500620b00600600612c0023d400620b00600200600c0023d3006", "0x20b00603300612b0023d700620b00600900615d0023d600620b006030006", "0x90023d93d83d73d63d53d400f0063d900620b0063d300644c0023d8006", "0x15400200220b00600f00604d00200220b0060c400614e00200220b006002", "0x200220b00601400604d00200220b00601700615700200220b006019006", "0x620b00602c00644b00200220b00601600604700200220b00601000604d", "0x60160023dc00620b00600600612c0023db00620b00600200600c0023da", "0x620b00605400612b0023de00620b00600900615d0023dd00620b006065", "0x211e0023e03df3de3dd3dc3db00f0063e000620b0063da00644c0023df", "0x201500620b00600700612b00201400620b00600600601600200220b006", "0x648601700620b0070100060ea00201000f01600920b006015014007383", "0x601900636000201900620b0060170060ec00200220b00600200900201b", "0x202900620b00601600601600200220b00601c0060fa0020c401c00720b", "0x600211b05406500920b00602a0290071bd00202a00620b00600f00612b", "0x20b00600200900202c00648702b00620b00711b0060ea00200220b006002", "0xfa00202f02e00720b00602d00636000202d00620b00602b0060ec002002", "0x620b0060300061bf00203000620b0060c400636100200220b00602e006", "0x636100200220b00604800604d00203904800720b006033006130002033", "0x720b00611e00613000211e00620b0060350061bf00203500620b00602f", "0x61b200210d00620b0060390061b200200220b00603700604d002120037", "0x20b00603c00604b00203c00620b00603a10d0071c100203a00620b006120", "0x2a00200220b00600200900212400648800220b00703c0061c500203c006", "0x620b00603e00602c00203e00620b00607d00602e00207d00620b006002", "0x220b0061240060f200200220b00600200900200248900600202d00212a", "0x612b00602c00212b00620b00612c00602b00212c00620b00600202a002", "0x204100620b00604100602c00204100620b00612a00602f00212a00620b", "0x4300603300200220b00600200900212d00648a04300620b007041006030", "0x48b00220b0070450061c500204500c00720b00600c00635a00200220b006", "0x4b04d13013104701420b00600900637100200220b00600200900212e006", "0x5800620b00606500601600205305100720b00604d0063dd00213204f04e", "0x580093df00213400620b0060530063de00213600620b00605400612b002", "0x213500648c05b00620b00713300615100213305612f00920b006134136", "0x720b00605d00613000205d00620b00605b00615200200220b006002009", "0x6100613000206100620b0060020ef00200220b00613700604d00205f137", "0x13900620b00605f0061b200200220b00613800604d00206413800720b006", "0x604b00213b00620b0060671390071c100206700620b0060640061b2002", "0x20b00600200900206900648d00220b00713b0061c500213b00620b00613b", "0x6c00602c00206c00620b00606a00602e00206a00620b00600202a002002", "0x690060f200200220b00600200900200248e00600202d00213c00620b006", "0x2c00213f00620b00606f00602b00206f00620b00600202a00200220b006", "0x20b00607100602c00207100620b00613c00602f00213c00620b00613f006", "0x200220b00600200900214500648f14100620b007071006030002071006", "0x4b05113013104701412a00200220b00614100603300200220b00600211e", "0x605600612b00207600620b00612f00601600207500620b00613204f04e", "0x200900200249000600202d00207900620b00607500604100207700620b", "0xc00604d00200220b00614500603300200220b00600211e00200220b006", "0x639700200220b00604f00639600200220b00613200620c00200220b006", "0x39a00200220b00605100639900200220b00604b00639800200220b00604e", "0x200220b00604700639500200220b00613100639b00200220b006130006", "0x620b00614b00604b00214b00620b0060023e100214600620b006002131", "0x705d00214a00620b00600213500207b00620b00614b14600705b00214b", "0x20b00600200600c0020c700620b00607f00644b00207f00620b00607b14a", "0x44c00214e00620b00605600612b00215200620b00612f006016002151006", "0x11e00200220b00600200900214f14e15215100c00614f00620b0060c7006", "0x39600200220b00613200620c00200220b00600c00604d00200220b006002", "0x200220b00604b00639800200220b00604e00639700200220b00604f006", "0x220b00613100639b00200220b00613000639a00200220b006051006399", "0x600200600c00208300620b00613500644b00200220b006047006395002", "0x215e00620b00605600612b00215000620b00612f00601600208500620b", "0x200220b00600200900216115e15008500c00616100620b00608300644c", "0x7600620b00606500601600200220b00612e0060f200200220b00600211e", "0x7900637100207900620b00600900604100207700620b00605400612b002", "0x8a15700720b00615c0063fb00215408716215c16315d15f16001420b006", "0x7700612b00216b00620b00607600601600208e00620b00600200600c002", "0x616c0d016b08e00c3fd00216c00620b00608a0063fc0020d000620b006", "0x200900216d00649109200620b0070ed0060c80020ed16816e15b00c20b", "0x17309400920b0061710063fe00217100620b0060920060c900200220b006", "0x615b00600c00200220b00609600604d00200220b00617300604d002096", "0x209d00620b00616800612b00217a00620b00616e00601600209b00620b", "0x990d117500c20b00617c09d17a09b00c3ff00217c00620b00609400621b", "0x40100200220b0060020090020a00064920cc00620b007176006400002176", "0x20b00600202a00217e0a200720b00617d00640200217d00620b0060cc006", "0x20d20cd00720b00617f00640200217f00620b0060a40064030020a4006", "0x20b0060d200643d00218000620b00617e00643d00200220b0060cd00643c", "0x4930ab00620b0070a80060300020a800620b0060ce18000721a0020ce006", "0x20b00600243e00200220b0060ab00603300200220b006002009002181006", "0xcf00943f0020c900620b0060020ef0020c800620b0060020ef0020cf006", "0x20b0060d100601600218e00620b00617500600c0020ca00620b0060c90c8", "0xc60020ba00620b0061570063fc0020b900620b00609900612b0020b7006", "0xb30c60cb00c20b0060bb0ba0b90b718e0164400020bb00620b0060ca006", "0x44200200220b00600200900218f0064940bd00620b0070b50064410020b5", "0x20b0060a200640200200220b0060bf0060330020bf0be00720b0060bd006", "0x64430020c300620b00600202a00200220b0060c100643c0021900c1007", "0x20b00619c00643c0020d419c00720b00619b00640200219b00620b0060c3", "0x640200200220b00619d00643c0021a019d00720b006190006402002002", "0x620b0061a000643d00200220b0060d600643c00219f0d600720b0060d4", "0x2f0020d700620b0061a10d90074440021a100620b00619f00643d0020d9", "0x615f0063d60021a316000720b0061600063d50020db00620b0060d7006", "0x720b0061630063d80021a515d00720b00615d0063d70021a415f00720b", "0x1b216200720b0061620063da0021a60be00720b0060be0063d90020df163", "0x12a0021ae15400720b0061540063dc0021ad08700720b0060870063db002", "0x220b0061b40060470021b400620b0061ae1ad1b21a60df1a51a41a3014", "0x20e70064950e500620b0070db0060300020db00620b0060db00602c002", "0xbe16315d15f16001412a00200220b0060e500603300200220b006002009", "0x60c60060160021ba00620b0060cb00600c0021b800620b006154087162", "0x20ec00620b0061b80060410020ea00620b0060b300612b0021bd00620b", "0x12a00200220b0060e700603300200220b00600200900200249600600202d", "0xef00620b0060024450021bf00620b0061540871620be16315d15f160014", "0xb300612b0021ca00620b0060c60060160021c800620b0060cb00600c002", "0x1d600620b0060ef0064460020f800620b0061bf0060410021d400620b006", "0x70f400617d0020f40f21c51c100c20b0061d60f81d41ca1c8016447002", "0x1ef00720b0061eb0061f600200220b0060020090020fa0064971eb00620b", "0x1c50060160021ba00620b0061c100600c00200220b0060fc0060330020fc", "0xec00620b0061ef0060410020ea00620b0060f200612b0021bd00620b006", "0xea0064490021f600620b0061bd0064480020fe00620b0061ba00636e002", "0x900200249800600202d0021f800620b0060ec00644a00210000620b006", "0x21f900620b0060fa00644b00200220b00600c00604d00200220b006002", "0x60f200612b00210300620b0061c50060160022f600620b0061c100600c", "0x20090021ff1fb1032f600c0061ff00620b0061f900644c0021fb00620b", "0x639600200220b00615400620c00200220b00600c00604d00200220b006", "0x39900200220b0060a200643c00200220b00616200639700200220b006087", "0x200220b00615f00639b00200220b00615d00639a00200220b006163006", "0x20b0060cb00600c00220600620b00618f00644b00200220b006160006395", "0x44c00230400620b0060b300612b00230000620b0060c6006016002000006", "0x3300200220b00600200900230530430000000c00630500620b006206006", "0x15716315d15f16001412a00200220b0060a200643c00200220b006181006", "0x60d10060160020fe00620b00617500600c00230700620b006154087162", "0x21f800620b00630700604100210000620b00609900612b0021f600620b", "0x620b00600206500231030f30e30c30b30a30930801420b0061f8006371", "0x644d00231600620b00610000612b00231500620b0061f6006016002311", "0x31931731631500c21900231900620b00631100611b00231700620b006310", "0x200900231b00649931a00620b00731400644e00231431331200920b006", "0x200220b00632000603300232031c00720b00631a00644f00200220b006", "0x20b00631300612b00232900620b00631200601600232100620b006002065", "0x45100232c00620b00632100611b00232b00620b00630f00645000232a006", "0x49a32d00620b00732800645200232832632200920b00632c32b32a32900c", "0x603300221233200720b00632d00645300200220b006002009002331006", "0x233300620b00631c33230e30c30b30a30930801412a00200220b006212", "0x20b00632200601600233d33b21133933733633533401420b006333006371", "0x35a00234500620b0063360063d300221000620b00632600612b002343006", "0x21034300c49b00234600620b00634600604b00234600c00720b00600c006", "0x3350063d000233400620b0063340063e300234234033f00920b006346345", "0x33700620b0063370063de00233d00620b00633d00644d00233500620b006", "0x33b00645000221100620b00621100637300233900620b0063390063fc002", "0x20b00600200900234800649d34700620b00734200649c00233b00620b006", "0x621600200220b00634a00603300234a34900720b00634700649e002002", "0x34c00620b00633d33b21133933734933533401412a00234b00620b00600c", "0x34000612b00235200620b00633f00601600235100620b0060fe00600c002", "0x35400620b00634b00649f00220f00620b00634c00604100235300620b006", "0x735000617d00235034f34e34d00c20b00635420f3533523510164a0002", "0x35700720b0063550061f600200220b0060020090023560064a135500620b", "0x35b35700748400235b00620b00600202a00200220b00635a00603300235a", "0x36100620b00634d00600c00236000620b00635c00648500235c00620b006", "0x36000644c00236600620b00634f00612b00236500620b00634e006016002", "0x35600644b00200220b00600200900236836636536100c00636800620b006", "0x36f00620b00634e00601600236e00620b00634d00600c00236900620b006", "0x36f36e00c00637200620b00636900644c00237100620b00634f00612b002", "0x633d00620c00200220b00633400639500200220b006002009002372371", "0x33900639800200220b00621100639700200220b00633b00639600200220b", "0x639b00200220b00600c00604d00200220b00633700639900200220b006", "0x37400620b0060fe00600c00237300620b00634800644b00200220b006335", "0x37300644c00237800620b00634000612b00220e00620b00633f006016002", "0xc00604d00200220b00600200900237937820e37400c00637900620b006", "0x639700200220b00630800639500200220b00631c00620c00200220b006", "0x39a00200220b00630b00639900200220b00630c00639800200220b00630e", "0x37a00620b00633100644b00200220b00630900639b00200220b00630a006", "0x32600612b00237c00620b00632200601600237b00620b0060fe00600c002", "0x900237e37d37c37b00c00637e00620b00637a00644c00237d00620b006", "0x4d00200220b00630900639b00200220b00630a00639a00200220b006002", "0x200220b00630e00639700200220b00630800639500200220b00600c006", "0x220b00630f00639600200220b00630b00639900200220b00630c006398", "0x31200601600238000620b0060fe00600c00237f00620b00631b00644b002", "0x38300620b00637f00644c00238200620b00631300612b00238100620b006", "0x200220b00615f00639b00200220b00600200900238338238138000c006", "0x220b00600c00604d00200220b00615d00639a00200220b006160006395", "0x20b00616200639700200220b00608700639600200220b00615400620c002", "0x60a000644b00200220b00615700639800200220b006163006399002002", "0x238900620b0060d100601600238800620b00617500600c00238500620b", "0x38a38938800c00620d00620b00638500644c00238a00620b00609900612b", "0x20b00616000639500200220b00615f00639b00200220b00600200900220d", "0x615400620c00200220b00600c00604d00200220b00615d00639a002002", "0x15700639800200220b00616200639700200220b00608700639600200220b", "0xc00238b00620b00616d00644b00200220b00616300639900200220b006", "0x20b00616800612b00238d00620b00616e00601600238c00620b00615b006", "0x600200900238f38e38d38c00c00638f00620b00638b00644c00238e006", "0x600c00604d00200220b00612d00603300200220b00600211e00200220b", "0x60023cc00239100620b00600213100200220b00600900604700200220b", "0x39500620b00639239100705b00239200620b00639200604b00239200620b", "0x39600644b00239600620b00639520c00705d00220c00620b006002135002", "0x39900620b00606500601600239800620b00600200600c00239700620b006", "0x39939800c00639b00620b00639700644c00239a00620b00605400612b002", "0x20b00600c00604d00200220b00600211e00200220b00600200900239b39a", "0x602c00644b00200220b0060c40060fa00200220b006009006047002002", "0x239e00620b00606500601600239d00620b00600200600c00239c00620b", "0x39f39e39d00c0063a000620b00639c00644c00239f00620b00605400612b", "0x20b00600c00604d00200220b00600900604700200220b0060020090023a0", "0x60160023a200620b00600200600c0023a100620b00601b00644b002002", "0x620b0063a100644c0023a400620b00600f00612b0023a300620b006016", "0x620b00600600601600200220b00600211e0023a53a43a33a200c0063a5", "0x1000f01600920b00601501400738300201500620b00600700612b002014", "0x60ec00200220b00600200900201b0064a201700620b0070100060ea002", "0x20b00601c0060fa0020c401c00720b00601900636000201900620b006017", "0x71bd00202a00620b00600f00612b00202900620b006016006016002002", "0x20b00711b0060ea00200220b00600200600211b05406500920b00602a029", "0x202d00620b00602b0060ec00200220b00600200900202c0064a302b006", "0x60c400636100200220b00602e0060fa00202f02e00720b00602d006360", "0x3904800720b00603300613000203300620b0060300061bf00203000620b", "0x60350061bf00203500620b00602f00636100200220b00604800604d002", "0x200220b00603700604d00212003700720b00611e00613000211e00620b", "0x3a10d0071c100203a00620b0061200061b200210d00620b0060390061b2", "0x4a400220b00703c0061c500203c00620b00603c00604b00203c00620b006", "0x607d00602e00207d00620b00600202a00200220b006002009002124006", "0x20090020024a500600202d00212a00620b00603e00602c00203e00620b", "0x602b00212c00620b00600202a00200220b0061240060f200200220b006", "0x620b00612a00602f00212a00620b00612b00602c00212b00620b00612c", "0x12d0064a604300620b00704100603000204100620b00604100602c002041", "0x720b00600900607f00200220b00604300603300200220b006002009002", "0x639500213204f04e04b04d13013104701420b00612e00637100212e045", "0x39800200220b00604d00639900200220b00613100639b00200220b006047", "0x200220b00604f00639600200220b00604e00639700200220b00604b006", "0x20b00605400612b00205600620b00606500601600200220b00613200620c", "0x5100920b0060581330560093d400205800620b0061300063d3002133006", "0x200220b0060020090021340064a713600620b00712f00615100212f053", "0x13500604d00205d13500720b00605b00613000205b00620b006136006152", "0x206105f00720b00613700613000213700620b0060020ef00200220b006", "0x20b00613800613000213800620b00605d0061b200200220b00605f00604d", "0x13000206700620b0060610061b200200220b00606400604d002139064007", "0x20b0061390061b200200220b00613b00604d00206913b00720b006067006", "0x213c00620b00606c06a0071c100206c00620b0060690061b200206a006", "0x200900206f0064a800220b00713c0061c500213c00620b00613c00604b", "0x2c00207100620b00613f00602e00213f00620b00600202a00200220b006", "0xf200200220b0060020090020024a900600202d00214100620b006071006", "0x7500620b00614500602b00214500620b00600202a00200220b00606f006", "0x7600602c00207600620b00614100602f00214100620b00607500602c002", "0x7700620b00607700602c00207700620b00607600602f00207600620b006", "0x211e00200220b0060020090021460064aa07900620b007077006030002", "0x14a07b14b01420b00604500637100200220b00607900603300200220b006", "0x20b00600200600c00208314f00720b0060c70063fb00214e1521510c707f", "0x3fc00215d00620b00605300612b00215f00620b006051006016002160006", "0x16115e15008500c20b00616315d15f16000c3fd00216300620b006083006", "0x60c900200220b0060020090021620064ab15c00620b0071610060c8002", "0x615700604d00208a15715400920b0060870063fe00208700620b00615c", "0x601600208e00620b00608500600c00200220b00608a00604d00200220b", "0x620b00615400621b0020d000620b00615e00612b00216b00620b006150", "0x70ed0064000020ed16816e15b00c20b00616c0d016b08e00c3ff00216c", "0x17100620b00609200640100200220b00600200900216d0064ac09200620b", "0x9600640300209600620b00600202a00217309400720b006171006402002", "0x220b0060d100643c0020990d100720b00617500640200217500620b006", "0x9b00721a00217a00620b00609900643d00209b00620b00617300643d002", "0x600200900217c0064ad09d00620b00717600603000217600620b00617a", "0x60020ef0020cc00620b00600243e00200220b00609d00603300200220b", "0xa200620b00617d0a00cc00943f00217d00620b0060020ef0020a000620b", "0x16800612b0020a800620b00616e0060160020d200620b00615b00600c002", "0xab00620b0060a20060c60020ce00620b00614f0063fc00218000620b006", "0x70cd0064410020cd17f0a417e00c20b0060ab0ce1800a80d2016440002", "0xc800720b00618100644200200220b0060020090020cf0064ae18100620b", "0x643c0020cb0ca00720b00609400640200200220b0060c90060330020c9", "0x20b300620b0060c60064430020c600620b00600202a00200220b0060ca", "0x60cb00640200200220b0060b500643c00218e0b500720b0060b3006402", "0xbb0ba00720b00618e00640200200220b0060b700643c0020b90b700720b", "0x60bb00643d00218f00620b0060b900643d00200220b0060ba00643c002", "0xbf00620b0060bd00602f0020bd00620b0060be18f0074440020be00620b", "0x3d700219007b00720b00607b0063d60020c114b00720b00614b0063d5002", "0xc80063d900219b07f00720b00607f0063d80020c314a00720b00614a006", "0x20b0061520063db0020d415100720b0061510063da00219c0c800720b006", "0x19c19b0c31900c101412a0021a014e00720b00614e0063dc00219d152007", "0x20b0060bf00602c00200220b0060d60060470020d600620b0061a019d0d4", "0x200220b0060020090020d70064af19f00620b0070bf0060300020bf006", "0x620b00614e1521510c807f14a07b14b01412a00200220b00619f006033", "0x612b0020db00620b0060a40060160021a100620b00617e00600c0020d9", "0x20024b000600202d0021a400620b0060d90060410021a300620b00617f", "0xc807f14a07b14b01412a00200220b0060d700603300200220b006002009", "0x20b00617e00600c0020df00620b0060024450021a500620b00614e152151", "0x410020e700620b00617f00612b0020e500620b0060a40060160021b4006", "0xe70e51b40164470021ba00620b0060df0064460021b800620b0061a5006", "0xea0064b11bd00620b0071ae00617d0021ae1ad1b21a600c20b0061ba1b8", "0x61bf0060330021bf0ec00720b0061bd0061f600200220b006002009002", "0x12b0020db00620b0061b20060160021a100620b0061a600600c00200220b", "0x20b0061a100636e0021a400620b0060ec0060410021a300620b0061ad006", "0x44a0021c500620b0061a30064490021c100620b0060db0064480020ef006", "0x4d00200220b0060020090020024b200600202d0020f200620b0061a4006", "0x620b0061a600600c0020f400620b0060ea00644b00200220b00600c006", "0x644c0021d400620b0061ad00612b0021ca00620b0061b20060160021c8", "0x604d00200220b0060020090020f81d41ca1c800c0060f800620b0060f4", "0x39700200220b00615200639600200220b00614e00620c00200220b00600c", "0x200220b00607f00639900200220b00609400643c00200220b006151006", "0x220b00614b00639500200220b00607b00639b00200220b00614a00639a", "0xa40060160021eb00620b00617e00600c0021d600620b0060cf00644b002", "0xfc00620b0061d600644c0021ef00620b00617f00612b0020fa00620b006", "0x200220b00617c00603300200220b0060020090020fc1ef0fa1eb00c006", "0x620b00614e15215114f07f14a07b14b01412a00200220b00609400643c", "0x612b0021c100620b00616e0060160020ef00620b00615b00600c0020fe", "0x1420b0060f20063710020f200620b0060fe0060410021c500620b006168", "0x61c100601600220600620b0060020650021ff1fb1032f61f91f81001f6", "0x230800620b0061ff00644d00230700620b0061c500612b00230500620b", "0x30430000000920b00630930830730500c21900230900620b00620600611b", "0x644f00200220b00600200900230b0064b330a00620b00730400644e002", "0x30f00620b00600206500200220b00630e00603300230e30c00720b00630a", "0x1fb00645000231400620b00630000612b00231300620b006000006016002", "0x631631531431300c45100231600620b00630f00611b00231500620b006", "0x60020090023190064b431700620b00731200645200231231131000920b", "0x12a00200220b00631b00603300231b31a00720b00631700645300200220b", "0x1420b00631c00637100231c00620b00630c31a1032f61f91f81001f6014", "0x31100612b00233200620b00631000601600232b32a329328326322321320", "0xc00720b00600c00635a00233300620b0063260063de00221200620b006", "0x32c00920b00633433321233200c4b500233400620b00633400604b002334", "0x3d300232100620b0063210063d000232000620b0063200063e300233132d", "0x20b0063280063fc00232b00620b00632b00644d00232200620b006322006", "0x4b600232a00620b00632a00645000232900620b006329006373002328006", "0x63350064b800200220b0060020090023360064b733500620b007331006", "0x221100620b00600c0064b900200220b00633900603300233933700720b", "0x20b0060ef00600c00233b00620b00632b32a32932833732232132001412a", "0x4100234500620b00632d00612b00221000620b00632c006016002343006", "0x3452103430164bb00234700620b0062110064ba00234600620b00633b006", "0x3490064bc34800620b00734200617d00234234033f33d00c20b006347346", "0x634b00603300234b34a00720b0063480061f600200220b006002009002", "0x48500234d00620b00634c34a00748400234c00620b00600202a00200220b", "0x20b00633f00601600234f00620b00633d00600c00234e00620b00634d006", "0xc00635200620b00634e00644c00235100620b00634000612b002350006", "0xc00235300620b00634900644b00200220b00600200900235235135034f", "0x20b00634000612b00235400620b00633f00601600220f00620b00633d006", "0x600200900235635535420f00c00635600620b00635300644c002355006", "0x32a00639600200220b00632b00620c00200220b00632000639500200220b", "0x604d00200220b00632800639800200220b00632900639700200220b006", "0x44b00200220b00632100639b00200220b00632200639a00200220b00600c", "0x20b00632c00601600235a00620b0060ef00600c00235700620b006336006", "0xc00636000620b00635700644c00235c00620b00632d00612b00235b006", "0x620c00200220b00600c00604d00200220b00600200900236035c35b35a", "0x39800200220b00610300639700200220b0061f600639500200220b00630c", "0x200220b0061f800639a00200220b0061f900639900200220b0062f6006", "0x20b0060ef00600c00236100620b00631900644b00200220b00610000639b", "0x44c00236800620b00631100612b00236600620b006310006016002365006", "0x39a00200220b00600200900236936836636500c00636900620b006361006", "0x200220b00600c00604d00200220b00610000639b00200220b0061f8006", "0x220b0062f600639800200220b00610300639700200220b0061f6006395", "0x20b00630b00644b00200220b0061fb00639600200220b0061f9006399002", "0x12b00237100620b00600000601600236f00620b0060ef00600c00236e006", "0x37337237136f00c00637300620b00636e00644c00237200620b006300006", "0x220b00614b00639500200220b00607b00639b00200220b006002009002", "0x20b00614e00620c00200220b00600c00604d00200220b00614a00639a002", "0x607f00639900200220b00615100639700200220b006152006396002002", "0x600c00237400620b00616d00644b00200220b00614f00639800200220b", "0x620b00616800612b00237800620b00616e00601600220e00620b00615b", "0x20b00600200900237a37937820e00c00637a00620b00637400644c002379", "0x614a00639a00200220b00614b00639500200220b00607b00639b002002", "0x15200639600200220b00614e00620c00200220b00600c00604d00200220b", "0x639900200220b00614f00639800200220b00615100639700200220b006", "0x37c00620b00608500600c00237b00620b00616200644b00200220b00607f", "0x37b00644c00237e00620b00615e00612b00237d00620b006150006016002", "0x600211e00200220b00600200900237f37e37d37c00c00637f00620b006", "0x4500604700200220b00600c00604d00200220b00614600603300200220b", "0x604b00238100620b0060024bd00238000620b00600213100200220b006", "0x620b00600213500238200620b00638138000705b00238100620b006381", "0xc00238800620b00638500644b00238500620b00638238300705d002383", "0x20b00605300612b00238a00620b00605100601600238900620b006002006", "0x600200900238b20d38a38900c00638b00620b00638800644c00220d006", "0x604500604700200220b00600c00604d00200220b00600211e00200220b", "0x1600238d00620b00600200600c00238c00620b00613400644b00200220b", "0x20b00638c00644c00238f00620b00605300612b00238e00620b006051006", "0x220b00600211e00200220b00600200900239138f38e38d00c006391006", "0x20b00600900604700200220b00600c00604d00200220b00612d006033002", "0x639500604b00239500620b0060023cc00239200620b006002131002002", "0x239600620b00600213500220c00620b00639539200705b00239500620b", "0x200600c00239800620b00639700644b00239700620b00620c39600705d", "0x39b00620b00605400612b00239a00620b00606500601600239900620b006", "0x220b00600200900239c39b39a39900c00639c00620b00639800644c002", "0x220b00600900604700200220b00600c00604d00200220b00600211e002", "0x600200600c00239d00620b00602c00644b00200220b0060c40060fa002", "0x23a000620b00605400612b00239f00620b00606500601600239e00620b", "0x200220b0060020090023a13a039f39e00c0063a100620b00639d00644c", "0x620b00601b00644b00200220b00600900604700200220b00600c00604d", "0x612b0023a400620b0060160060160023a300620b00600200600c0023a2", "0x23a63a53a43a300c0063a600620b0063a200644c0023a500620b00600f", "0x620b00600700612b00201400620b00600600601600200220b00600211e", "0x1700620b0070100060ea00201000f01600920b006015014007383002015", "0x636000201900620b0060170060ec00200220b00600200900201b0064be", "0x620b00601600601600200220b00601c0060fa0020c401c00720b006019", "0x11b05406500920b00602a0290071bd00202a00620b00600f00612b002029", "0x200900202c0064bf02b00620b00711b0060ea00200220b006002006002", "0x2f02e00720b00602d00636000202d00620b00602b0060ec00200220b006", "0x60300061bf00203000620b0060c400636100200220b00602e0060fa002", "0x200220b00604800604d00203904800720b00603300613000203300620b", "0x611e00613000211e00620b0060350061bf00203500620b00602f006361", "0x210d00620b0060390061b200200220b00603700604d00212003700720b", "0x3c00604b00203c00620b00603a10d0071c100203a00620b0061200061b2", "0x220b0060020090021240064c000220b00703c0061c500203c00620b006", "0x603e00602c00203e00620b00607d00602e00207d00620b00600202a002", "0x61240060f200200220b0060020090020024c100600202d00212a00620b", "0x602c00212b00620b00612c00602b00212c00620b00600202a00200220b", "0x620b00604100602c00204100620b00612a00602f00212a00620b00612b", "0x11e00200220b00600200900212d0064c204300620b007041006030002041", "0x12e04501420b00600900637100200220b00604300603300200220b006002", "0x600200600c00213204f00720b0061300063fb00204e04b04d130131047", "0x213600620b00605400612b00205800620b00606500601600213300620b", "0x12f05305100c20b00613413605813300c3fd00213400620b0061320063fc", "0xc900200220b0060020090021350064c305b00620b0070560060c8002056", "0x6100604d00206105f13700920b00605d0063fe00205d00620b00605b006", "0x206400620b00613805f0071c100213800620b00600200000200220b006", "0x20090021390064c400220b0070640061c500206400620b00606400604b", "0x213c00620b00605300601600206c00620b00605100600c00200220b006", "0x13c06c00c3ff00213f00620b00613700621b00206f00620b00612f00612b", "0x1410064c507100620b00706a00640000206a06913b06700c20b00613f06f", "0x20b00614500640200214500620b00607100640100200220b006002009002", "0x644300207700620b00600202a00200220b00607500643c002076075007", "0x20b00614600643c00214b14600720b00607900640200207900620b006077", "0x721a00207f00620b00614b00643d00214a00620b00607600643d002002", "0x20b0060c700602c0020c700620b00607b00602f00207b00620b00607f14a", "0x200220b0060020090021520064c615100620b0070c70060300020c7006", "0x20b00613b00601600214e00620b00606700600c00200220b006151006033", "0x60020090020024c700600202d00208300620b00606900612b00214f006", "0xc00604d00200220b00604500639500200220b00615200603300200220b", "0x639700200220b00604b00639600200220b00604e00620c00200220b006", "0x39a00200220b00613100639900200220b00604f00639800200220b00604d", "0x208500620b00600213100200220b00612e00639b00200220b006047006", "0x615008500705b00215000620b00615000604b00215000620b0060024c8", "0x216000620b00615e16100705d00216100620b00600213500215e00620b", "0x613b00601600215d00620b00606700600c00215f00620b00616000644b", "0x616200620b00615f00644c00215c00620b00606900612b00216300620b", "0x4d00200220b00604500639500200220b00600200900216215c16315d00c", "0x200220b00604b00639600200220b00604e00620c00200220b00600c006", "0x220b00613100639900200220b00604f00639800200220b00604d006397", "0x20b00614100644b00200220b00612e00639b00200220b00604700639a002", "0x12b00215700620b00613b00601600215400620b00606700600c002087006", "0x15b08a15715400c00615b00620b00608700644c00208a00620b006069006", "0x220b00613700634900200220b0061390060f200200220b006002009002", "0x12f00612b00214f00620b00605300601600214e00620b00605100600c002", "0x216e00620b00604e04b04d04f13104712e04501412a00208300620b006", "0x20b0060d00063fb00216d09216c0d016b08e0ed16801420b00616e006371", "0x217600620b00614f00644800209900620b00614e00636e002094171007", "0x17609900c3fd00217a00620b0060940063fc00209b00620b006083006449", "0x63d000216800620b0061680063e30020d117509617300c20b00617a09b", "0x620b00616b0063de00208e00620b00608e0063d30020ed00620b0060ed", "0x645000216c00620b00616c00637300216d00620b00616d00644d00216b", "0x620b0070d10060c800217100620b0061710063fc00209200620b006092", "0x3fe0020cc00620b00609d0060c900200220b00600200900217c0064c909d", "0x60a200604d00200220b00617d00604d0020a217d0a000920b0060cc006", "0x12b0020a800620b0060960060160020d200620b00617300600c00200220b", "0x1800a80d200c3ff0020ce00620b0060a000621b00218000620b006175006", "0x21810064ca0ab00620b0070cd0064000020cd17f0a417e00c20b0060ce", "0x720b0060cf0064020020cf00620b0060ab00640100200220b006002009", "0x64020020cb00620b0060ca0064030020ca00620b00600202a0020c90c8", "0x620b0060c900643d00200220b0060c600643c0020b30c600720b0060cb", "0x300020b500620b0060b718e00721a0020b700620b0060b300643d00218e", "0x60b900603300200220b0060020090020ba0064cb0b900620b0070b5006", "0x60020ef0020bd00620b0060020ef0020bb00620b00600243e00200220b", "0x620b00617e00600c0020be00620b00618f0bd0bb00943f00218f00620b", "0x63fc0020d400620b00617f00612b00219c00620b0060a400601600219b", "0x19d0d419c19b0164400021a000620b0060be0060c600219d00620b006171", "0x219f0064cc0d600620b0070c30064410020c31900c10bf00c20b0061a0", "0x20b0060d90060330020d90d700720b0060d600644200200220b006002009", "0x202a00200220b0061a100643c0020db1a100720b0060c8006402002002", "0x1a500720b0061a40064020021a400620b0061a30064430021a300620b006", "0x643c0021b21a600720b0060db00640200200220b0061a500643c0020df", "0x220b0061ad00643c0021ae1ad00720b0060df00640200200220b0061a6", "0xe50074440020e700620b0061ae00643d0020e500620b0061b200643d002", "0x720b0061680063d50021b800620b0061b400602f0021b400620b0060e7", "0xea08e00720b00608e0063d70021bd0ed00720b0060ed0063d60021ba168", "0x3da0021bf0d700720b0060d70063d90020ec16b00720b00616b0063d8002", "0x16d0063dc0021c109200720b0060920063db0020ef16c00720b00616c006", "0xf200620b0061c51c10ef1bf0ec0ea1bd1ba01412a0021c516d00720b006", "0x71b80060300021b800620b0061b800602c00200220b0060f2006047002", "0x200220b0060f400603300200220b0060020090021c80064cd0f400620b", "0x20b0060bf00600c0021ca00620b00616d09216c0d716b08e0ed16801412a", "0x410021d600620b00619000612b0020f800620b0060c10060160021d4006", "0x3300200220b0060020090020024ce00600202d0021eb00620b0061ca006", "0xfa00620b00616d09216c0d716b08e0ed16801412a00200220b0061c8006", "0x60c10060160021f800620b0060bf00600c0021ef00620b006002445002", "0x210300620b0060fa0060410022f600620b00619000612b0021f900620b", "0xfe0fc00c20b0061fb1032f61f91f80164470021fb00620b0061ef006446", "0x200220b0060020090022060064cf1ff00620b00710000617d0021001f6", "0x60fc00600c00200220b00630000603300230000000720b0061ff0061f6", "0x21d600620b0061f600612b0020f800620b0060fe0060160021d400620b", "0x60f800644800230400620b0061d400636e0021eb00620b006000006041", "0x230800620b0061eb00644a00230700620b0061d600644900230500620b", "0x44b00200220b00600c00604d00200220b0060020090020024d000600202d", "0x20b0060fe00601600230a00620b0060fc00600c00230900620b006206006", "0xc00630e00620b00630900644c00230c00620b0061f600612b00230b006", "0x620c00200220b00600c00604d00200220b00600200900230e30c30b30a", "0x43c00200220b00616c00639700200220b00609200639600200220b00616d", "0x200220b00608e00639a00200220b00616b00639900200220b0060c8006", "0x620b00619f00644b00200220b00616800639500200220b0060ed00639b", "0x612b00231100620b0060c100601600231000620b0060bf00600c00230f", "0x231331231131000c00631300620b00630f00644c00231200620b006190", "0x200220b0060c800643c00200220b0060ba00603300200220b006002009", "0x20b00617e00600c00231400620b00616d09216c17116b08e0ed16801412a", "0x4100230700620b00617f00612b00230500620b0060a4006016002304006", "0x20b00630700612b00231900620b00630500601600230800620b006314006", "0x620b00731700636600231731631500920b00631a31900736500231a006", "0x4d200232000620b00631b00636800200220b00600200900231c0064d131b", "0x620b00632000621b00232800620b00630400600c00232100620b006002", "0x32632200720b00632a3293280094d300232a00620b00632100621b002329", "0x636800200220b00600200900232c0064d432b00620b007326006366002", "0x32d00720b00632d00635b00233100620b0060023f700232d00620b00632b", "0x33300620b00621233133200943f00221200c00720b00600c00635a002332", "0x632200600c00233d33b21133933733633533401420b006308006371002", "0x234600620b00631600612b00234500620b00631500601600221000620b", "0x34521001644000234800620b0063330060c600234700620b0063390063fc", "0x64d534900620b00734300644100234334234033f00c20b006348347346", "0x34c00603300234c34b00720b00634900644200200220b00600200900234a", "0x34b33733633533401412a00234d00620b00600c32d0074d600200220b006", "0x634000601600235300620b00633f00600c00234e00620b00633d33b211", "0x235500620b00634e00604100235400620b00634200612b00220f00620b", "0x35034f00c20b00635635535420f3530164d800235600620b00634d0064d7", "0x200220b00600200900235a0064d935700620b00735200617d002352351", "0x20b00600202a00200220b00635c00603300235c35b00720b0063570061f6", "0x236500620b00636100648500236100620b00636035b007484002360006", "0x635100612b00236800620b00635000601600236600620b00634f00600c", "0x200900236e36936836600c00636e00620b00636500644c00236900620b", "0x237100620b00634f00600c00236f00620b00635a00644b00200220b006", "0x636f00644c00237300620b00635100612b00237200620b006350006016", "0x633400639500200220b00600200900237437337237100c00637400620b", "0x21100639700200220b00633b00639600200220b00633d00620c00200220b", "0x639a00200220b00633700639900200220b00632d00634900200220b006", "0x44b00200220b00600c00604d00200220b00633500639b00200220b006336", "0x20b00634000601600237800620b00633f00600c00220e00620b00634a006", "0xc00637b00620b00620e00644c00237a00620b00634200612b002379006", "0x604700200220b00600c00604d00200220b00600200900237b37a379378", "0x37d00620b00632200600c00237c00620b00632c00644b00200220b006308", "0x37c00644c00237f00620b00631600612b00237e00620b006315006016002", "0x30800604700200220b00600200900238037f37e37d00c00638000620b006", "0xc00238100620b00631c00644b00200220b00600c00604d00200220b006", "0x20b00631600612b00238300620b00631500601600238200620b006304006", "0x600200900238838538338200c00638800620b00638100644c002385006", "0xc00604d00200220b0060ed00639b00200220b00616800639500200220b", "0x639600200220b00616d00620c00200220b00608e00639a00200220b006", "0x39800200220b00616b00639900200220b00616c00639700200220b006092", "0x620b00617e00600c00238900620b00618100644b00200220b006171006", "0x644c00238b00620b00617f00612b00220d00620b0060a400601600238a", "0x639500200220b00600200900238c38b20d38a00c00638c00620b006389", "0x39a00200220b00600c00604d00200220b0060ed00639b00200220b006168", "0x200220b00609200639600200220b00616d00620c00200220b00608e006", "0x220b00616b00639900200220b00617100639800200220b00616c006397", "0x9600601600238e00620b00617300600c00238d00620b00617c00644b002", "0x39200620b00638d00644c00239100620b00617500612b00238f00620b006", "0x200220b00604500639500200220b00600200900239239138f38e00c006", "0x220b00604700639a00200220b00600c00604d00200220b00612e00639b", "0x20b00604d00639700200220b00604b00639600200220b00604e00620c002", "0x613500644b00200220b00613100639900200220b00604f006398002002", "0x239600620b00605300601600220c00620b00605100600c00239500620b", "0x39739620c00c00639800620b00639500644c00239700620b00612f00612b", "0x220b00612d00603300200220b00600211e00200220b006002009002398", "0x620b00600213100200220b00600900604700200220b00600c00604d002", "0x39900705b00239a00620b00639a00604b00239a00620b0060023cc002399", "0x620b00639b39c00705d00239c00620b00600213500239b00620b00639a", "0x601600239f00620b00600200600c00239e00620b00639d00644b00239d", "0x620b00639e00644c0023a100620b00605400612b0023a000620b006065", "0x200220b00600211e00200220b0060020090023a23a13a039f00c0063a2", "0x220b0060c40060fa00200220b00600900604700200220b00600c00604d", "0x650060160023a400620b00600200600c0023a300620b00602c00644b002", "0x3a700620b0063a300644c0023a600620b00605400612b0023a500620b006", "0x200220b00600c00604d00200220b0060020090023a73a63a53a400c006", "0x20b00600200600c0023a800620b00601b00644b00200220b006009006047", "0x44c0023ab00620b00600f00612b0023aa00620b0060160060160023a9006", "0x1600200220b00600211e0023ac3ab3aa3a900c0063ac00620b0063a8006", "0x601501400738300201500620b00600700612b00201400620b006006006", "0x600200900201b0064da01700620b0070100060ea00201000f01600920b", "0x20c401c00720b00601900636000201900620b0060170060ec00200220b", "0x20b00600f00612b00202900620b00601600601600200220b00601c0060fa", "0x200220b00600200600211b05406500920b00602a0290071bd00202a006", "0x2b0060ec00200220b00600200900202c0064db02b00620b00711b0060ea", "0x220b00602e0060fa00202f02e00720b00602d00636000202d00620b006", "0x3300613000203300620b0060300061bf00203000620b0060c4006361002", "0x3500620b00602f00636100200220b00604800604d00203904800720b006", "0x604d00212003700720b00611e00613000211e00620b0060350061bf002", "0x3a00620b0061200061b200210d00620b0060390061b200200220b006037", "0x61c500203c00620b00603c00604b00203c00620b00603a10d0071c1002", "0x7d00620b00600202a00200220b0060020090021240064dc00220b00703c", "0x600202d00212a00620b00603e00602c00203e00620b00607d00602e002", "0x20b00600202a00200220b0061240060f200200220b0060020090020024dd", "0x2f00212a00620b00612b00602c00212b00620b00612c00602b00212c006", "0x20b00704100603000204100620b00604100602c00204100620b00612a006", "0x603300200220b00600211e00200220b00600200900212d0064de043006", "0x204e04b04d13013104712e04501420b00600900637100200220b006043", "0x6500601600213300620b00600200600c00213204f00720b0061300063fb", "0x13400620b0061320063fc00213600620b00605400612b00205800620b006", "0x20b0070560060c800205612f05305100c20b00613413605813300c3fd002", "0x205d00620b00605b0060c900200220b0060020090021350064df05b006", "0x6100604d00200220b00605f00604d00206105f13700920b00605d0063fe", "0x206900620b00605300601600213b00620b00605100600c00200220b006", "0x6913b00c3ff00206c00620b00613700621b00206a00620b00612f00612b", "0x6f0064e013c00620b00706700640000206713906413800c20b00606c06a", "0x20b00613f00640200213f00620b00613c00640100200220b006002009002", "0x40200207500620b00614500640300214500620b00600202a002141071007", "0x20b00614100643d00200220b00607600643c00207707600720b006075006", "0x207900620b00614b14600721a00214b00620b00607700643d002146006", "0x7b00603300200220b00600200900214a0064e107b00620b007079006030", "0x20ef0020c700620b0060020ef00207f00620b00600243e00200220b006", "0x20b00613800600c00215200620b0061510c707f00943f00215100620b006", "0x3fc00216100620b00613900612b00215e00620b006064006016002150006", "0x16115e15001644000215f00620b0061520060c600216000620b00604f006", "0x1630064e215d00620b00708500644100208508314f14e00c20b00615f160", "0x616200603300216215c00720b00615d00644200200220b006002009002", "0x2a00200220b00608700643c00215408700720b00607100640200200220b", "0x720b00608a00640200208a00620b00615700644300215700620b006002", "0x43c0020ed16800720b00615400640200200220b00615b00643c00216e15b", "0x20b00608e00643c00216b08e00720b00616e00640200200220b006168006", "0x744400209200620b00616b00643d00216c00620b0060ed00643d002002", "0x20b0060450063d500216d00620b0060d000602f0020d000620b00609216c", "0x4700720b0060470063d700209412e00720b00612e0063d6002171045007", "0x217515c00720b00615c0063d900209613100720b0061310063d8002173", "0x63dc00209904b00720b00604b0063db0020d104d00720b00604d0063da", "0x620b0061760990d117509617309417101412a00217604e00720b00604e", "0x16d00603000216d00620b00616d00602c00200220b00609b00604700209b", "0x220b00617a00603300200220b00600200900209d0064e317a00620b007", "0x614e00600c00217c00620b00604e04b04d15c13104712e04501412a002", "0x217d00620b00608300612b0020a000620b00614f0060160020cc00620b", "0x200220b0060020090020024e400600202d0020a200620b00617c006041", "0x620b00604e04b04d15c13104712e04501412a00200220b00609d006033", "0x14f00601600218000620b00614e00600c0020a400620b00600244500217e", "0x18100620b00617e0060410020ab00620b00608300612b0020ce00620b006", "0x17f00c20b0060cf1810ab0ce1800164470020cf00620b0060a4006446002", "0x220b0060020090020c90064e50c800620b0070a800617d0020a80d20cd", "0x17f00600c00200220b0060cb0060330020cb0ca00720b0060c80061f6002", "0x17d00620b0060d200612b0020a000620b0060cd0060160020cc00620b006", "0xa00064480020c600620b0060cc00636e0020a200620b0060ca006041002", "0x18e00620b0060a200644a0020b500620b00617d0064490020b300620b006", "0x200220b00600c00604d00200220b0060020090020024e600600202d002", "0x60cd0060160020b900620b00617f00600c0020b700620b0060c900644b", "0x60bd00620b0060b700644c0020bb00620b0060d200612b0020ba00620b", "0x20c00200220b00600c00604d00200220b0060020090020bd0bb0ba0b900c", "0x200220b00604d00639700200220b00604b00639600200220b00604e006", "0x220b00604700639a00200220b00613100639900200220b00607100643c", "0x20b00616300644b00200220b00604500639500200220b00612e00639b002", "0x12b0020bf00620b00614f0060160020be00620b00614e00600c00218f006", "0x1900c10bf0be00c00619000620b00618f00644c0020c100620b006083006", "0x220b00607100643c00200220b00614a00603300200220b006002009002", "0x613800600c0020c300620b00604e04b04d04f13104712e04501412a002", "0x20b500620b00613900612b0020b300620b0060640060160020c600620b", "0x60b500612b00219d00620b0060b300601600218e00620b0060c3006041", "0x20b0070d40063660020d419c19b00920b0061a019d0073650021a000620b", "0x20d700620b0060d600636800200220b00600200900219f0064e70d6006", "0x20b0060d700621b0021a300620b0060c600600c0020d900620b0060024d2", "0x1a100720b0061a51a41a30094d30021a500620b0060d900621b0021a4006", "0x36800200220b0060020090021a60064e80df00620b0070db0063660020db", "0x720b0061b200635b0021ad00620b0060020000021b200620b0060df006", "0x620b0061b41ad1ae00943f0021b400c00720b00600c00635a0021ae1b2", "0x1a100600c0020ef1bf0ec0ea1bd1ba1b80e701420b00618e0063710020e5", "0x1d400620b00619c00612b0021ca00620b00619b0060160021c800620b006", "0x1c80164400021d600620b0060e50060c60020f800620b0060ea0063fc002", "0x4e91eb00620b0070f40064410020f40f21c51c100c20b0061d60f81d41ca", "0x60330020fc1ef00720b0061eb00644200200220b0060020090020fa006", "0x1bd1ba1b80e701412a0020fe00620b00600c1b20074ea00200220b0060fc", "0x1c500601600210300620b0061c100600c0021f600620b0060ef1bf0ec1ef", "0x20600620b0061f60060410021ff00620b0060f200612b0021fb00620b006", "0x10000c20b0060002061ff1fb10301621500200000620b0060fe0064eb002", "0x220b0060020090023040064ec30000620b0072f600617d0022f61f91f8", "0x600202a00200220b00630700603300230730500720b0063000061f6002", "0x30a00620b00630900648500230900620b00630830500748400230800620b", "0x1f900612b00230c00620b0061f800601600230b00620b00610000600c002", "0x900230f30e30c30b00c00630f00620b00630a00644c00230e00620b006", "0x31100620b00610000600c00231000620b00630400644b00200220b006002", "0x31000644c00231300620b0061f900612b00231200620b0061f8006016002", "0xe700639500200220b00600200900231431331231100c00631400620b006", "0x639700200220b0061bf00639600200220b0060ef00620c00200220b006", "0x39a00200220b0061bd00639900200220b0061b200634900200220b0060ec", "0x200220b00600c00604d00200220b0061b800639b00200220b0061ba006", "0x61c500601600231600620b0061c100600c00231500620b0060fa00644b", "0x631a00620b00631500644c00231900620b0060f200612b00231700620b", "0x4700200220b00600c00604d00200220b00600200900231a31931731600c", "0x620b0061a100600c00231b00620b0061a600644b00200220b00618e006", "0x644c00232100620b00619c00612b00232000620b00619b00601600231c", "0x604700200220b00600200900232232132031c00c00632200620b00631b", "0x232600620b00619f00644b00200220b00600c00604d00200220b00618e", "0x619c00612b00232900620b00619b00601600232800620b0060c600600c", "0x200900232b32a32932800c00632b00620b00632600644c00232a00620b", "0x604d00200220b00612e00639b00200220b00604500639500200220b006", "0x39600200220b00604e00620c00200220b00604700639a00200220b00600c", "0x200220b00613100639900200220b00604d00639700200220b00604b006", "0x20b00613800600c00232c00620b00606f00644b00200220b00604f006398", "0x44c00233200620b00613900612b00233100620b00606400601600232d006", "0x39500200220b00600200900221233233132d00c00621200620b00632c006", "0x200220b00600c00604d00200220b00612e00639b00200220b006045006", "0x220b00604b00639600200220b00604e00620c00200220b00604700639a", "0x20b00613100639900200220b00604f00639800200220b00604d006397002", "0x601600233400620b00605100600c00233300620b00613500644b002002", "0x620b00633300644c00233600620b00612f00612b00233500620b006053", "0x200220b00600211e00200220b00600200900233733633533400c006337", "0x220b00600900604700200220b00600c00604d00200220b00612d006033", "0x20b00621100604b00221100620b0060023cc00233900620b006002131002", "0x5d00233d00620b00600213500233b00620b00621133900705b002211006", "0x600200600c00234000620b00633f00644b00233f00620b00633b33d007", "0x221000620b00605400612b00234300620b00606500601600234200620b", "0x200220b00600200900234521034334200c00634500620b00634000644c", "0x200220b00600900604700200220b00600c00604d00200220b00600211e", "0x20b00600200600c00234600620b00602c00644b00200220b0060c40060fa", "0x44c00234900620b00605400612b00234800620b006065006016002347006", "0x4d00200220b00600200900234a34934834700c00634a00620b006346006", "0x34b00620b00601b00644b00200220b00600900604700200220b00600c006", "0xf00612b00234d00620b00601600601600234c00620b00600200600c002", "0x7500234f34e34d34c00c00634f00620b00634b00644c00234e00620b006", "0x11e00200220b00600213900201000620b00600207500201600620b006002", "0x1900620b00600700612b00201b00620b00600600601600200220b006002", "0x4ed01c00620b0070170060ea00201701501400920b00601901b007383002", "0x6500636000206500620b00601c0060ec00200220b0060020090020c4006", "0x2c00620b00601400601600200220b0060540060fa00211b05400720b006", "0x202b02a02900920b00602d02c0071bd00202d00620b00601500612b002", "0x600200900202f0064ee02e00620b00702b0060ea00200220b006002006", "0x204803300720b00603000636000203000620b00602e0060ec00200220b", "0x20b0060390061bf00203900620b00611b00636100200220b0060330060fa", "0x36100200220b00611e00604d00203711e00720b006035006130002035006", "0x20b00610d00613000210d00620b0061200061bf00212000620b006048006", "0x1b200212400620b0060370061b200200220b00603a00604d00203c03a007", "0x603e00604b00203e00620b00607d1240071c100207d00620b00603c006", "0x200220b00600200900212a0064ef00220b00703e0061c500203e00620b", "0x20b00612b00602c00212b00620b00612c00602e00212c00620b00600202a", "0x20b00612a0060f200200220b0060020090020024f000600202d002041006", "0x12d00602c00212d00620b00604300602b00204300620b00600202a002002", "0x4500620b00604500602c00204500620b00604100602f00204100620b006", "0x211e00200220b0060020090020470064f112e00620b007045006030002", "0x4d13013101420b00600900637100200220b00612e00603300200220b006", "0x20b00600200600c00212f05300720b00604e0063fb00205113204f04e04b", "0x3fc00213500620b00602a00612b00205b00620b006029006016002134006", "0x13605813305600c20b00605d13505b13400c3fd00205d00620b00612f006", "0x60c900200220b00600200900205f0064f213700620b0071360060c8002", "0x606400604d00200c06413800920b0060610063fe00206100620b006137", "0x12b00206c00620b00613300601600206a00620b00605600600c00200220b", "0x13c06c06a00c3ff00206f00620b00613800621b00213c00620b006058006", "0x640000200c00620b00600c01600707900206913b06713900c20b00606f", "0x20b00613f00640100200220b0060020090020710064f313f00620b007069", "0x2a00200220b00614500643c00207514500720b006141006402002141006", "0x720b00607700640200207700620b0060760064f400207600620b006002", "0x643d00207b00620b00607500643d00200220b00607900643c002146079", "0x20b00614b00602f00214b00620b00614a07b00721a00214a00620b006146", "0x64f50c700620b00707f00603000207f00620b00607f00602c00207f006", "0x4d13013101412a00200220b0060c700603300200220b006002009002151", "0x8508314f14e01420b00615200637100215200620b00605113204f05304b", "0x216200620b00606700601600215f00620b00600206500216016115e150", "0x615f00611b00215400620b00616000644d00208700620b00613b00612b", "0x14e0063e300215c16315d00920b00615715408716200c21900215700620b", "0x8300620b0060830063d300214f00620b00614f0063d000214e00620b006", "0x15e00637300215000620b0061500063fc00208500620b0060850063de002", "0x8a00620b00715c00644e00216100620b00616100645000215e00620b006", "0x3300216816e00720b00608a00644f00200220b00600200900215b0064f6", "0x16c00620b00615d0060160020ed00620b00600206500200220b006168006", "0xed00611b00216d00620b00616100645000209200620b00616300612b002", "0x64520020d016b08e00920b00617116d09216c00c45100217100620b006", "0x20b00609400645300200220b0060020090021730064f709400620b0070d0", "0x9615e15008508314f14e01412a00200220b006175006033002175096007", "0xa00cc17c09d17a09b17609901420b0060d10063710020d100620b00616e", "0x612b0020cd00620b00608e0060160020a217d00720b0061760063cf002", "0x60a80d20cd0093d10020a800620b0060a20063d00020d200620b00616b", "0x620b0060a000644d00209900620b0060990063e300217f0a417e00920b", "0x63fc00217a00620b00617a0063de00209b00620b00609b0063d30020a0", "0x620b0060cc00645000217c00620b00617c00637300209d00620b00609d", "0xce0064f818000620b00717f00615100217d00620b00617d0063d00020cc", "0x20b00617e00601600200f00620b00618000615200200220b006002009002", "0x35a0020ca00620b00617d0063d00020c900620b0060a400612b0020c8006", "0xc90c800c4540020cb00620b0060cb00604b0020cb00c00720b00600c006", "0x645500200f00620b00600f0100070790020cf1810ab00920b0060cb0ca", "0x20b0060c600645600200220b0060020090020b30064f90c600620b0070cf", "0x20b700c00720b00600c00635a00200220b00618e00603300218e0b5007", "0x20b0060a00cc17c09d17a09b0b509901412a0020b900620b0060b70064fa", "0x12b0020c100620b0060ab0060160020bf00620b00613900600c0020ba006", "0x20b0060b90064fb0020c300620b0060ba00604100219000620b006181006", "0x617d0020be18f0bd0bb00c20b00619b0c31900c10bf0164fc00219b006", "0x20b00619c0061f600200220b0060020090020d40064fd19c00620b0070be", "0xc0020d600620b00600f00647f00200220b0061a00060330021a019d007", "0x20b00618f00612b0021a300620b0060bd0060160020db00620b0060bb006", "0x4810020df00620b0060d60064800021a500620b00619d0060410021a4006", "0x620b0071a100617d0021a10d90d719f00c20b0060df1a51a41a30db016", "0x21ae1ad00720b0061a60061f600200220b0060020090021b20064fe1a6", "0x20b00619f00600c0021b400620b00600c0063ed00200220b0061ae006033", "0x410020ec00620b0060d900612b0020ea00620b0060d70060160021bd006", "0xec0ea1bd0163ef0020ef00620b0061b40063ee0021bf00620b0061ad006", "0x1c50064ff1c100620b0071ba00617d0021ba1b80e70e500c20b0060ef1bf", "0x60f40060330020f40f200720b0061c10061f600200220b006002009002", "0x60020ef0021ca00620b0060020ef0021c800620b00600243e00200220b", "0x1420b0060f20063710020f800620b0061d41ca1c800943f0021d400620b", "0xe70060160021fb00620b0060e500600c0021001f60fe0fc1ef0fa1eb1d6", "0x620b0060fc0063fc00220600620b0061b800612b0021ff00620b006", "0x1f800c20b0063000002061ff1fb01644000230000620b0060f80060c6002", "0x220b00600200900230500650030400620b0071030064410021032f61f9", "0x1d601412a00200220b00630800603300230830700720b006304006442002", "0x48400230a00620b00600202a00230900620b0061001f60fe3071ef0fa1eb", "0x61f800600c00230c00620b00630b00648500230b00620b00630a309007", "0x231000620b0062f600612b00230f00620b0061f900601600230e00620b", "0x200220b00600200900231131030f30e00c00631100620b00630c00644c", "0x220b0060fe00639700200220b0061f600639600200220b00610000620c", "0x20b0060fa00639a00200220b0061ef00639900200220b0061d6006395002", "0x1f800600c00231200620b00630500644b00200220b0061eb00639b002002", "0x31500620b0062f600612b00231400620b0061f900601600231300620b006", "0x220b00600200900231631531431300c00631600620b00631200644c002", "0xe700601600231900620b0060e500600c00231700620b0061c500644b002", "0x31c00620b00631700644c00231b00620b0061b800612b00231a00620b006", "0x200220b00600c00604d00200220b00600200900231c31b31a31900c006", "0x60d700601600232100620b00619f00600c00232000620b0061b200644b", "0x632800620b00632000644c00232600620b0060d900612b00232200620b", "0x4d00200220b00600c00604d00200220b00600200900232832632232100c", "0x620b0060bb00600c00232900620b0060d400644b00200220b00600f006", "0x644c00232c00620b00618f00612b00232b00620b0060bd00601600232a", "0x604d00200220b00600200900232d32c32b32a00c00632d00620b006329", "0x20c00200220b00609900639500200220b00600f00604d00200220b00600c", "0x200220b00617c00639700200220b0060cc00639600200220b0060a0006", "0x220b00609b00639a00200220b00617a00639900200220b00609d006398", "0xab00601600233200620b00613900600c00233100620b0060b300644b002", "0x33400620b00633100644c00233300620b00618100612b00221200620b006", "0x200220b00600c00604d00200220b00600200900233433321233200c006", "0x220b00617a00639900200220b00609b00639a00200220b006099006395", "0x20b00617c00639700200220b0060cc00639600200220b0060a000620c002", "0x601000614e00200220b00617d00639b00200220b00609d006398002002", "0x1600233600620b00613900600c00233500620b0060ce00644b00200220b", "0x20b00633500644c00233900620b0060a400612b00233700620b00617e006", "0x20b00600c00604d00200220b00600200900221133933733600c006211006", "0x614e00639500200220b00616e00620c00200220b00601000614e002002", "0x8500639900200220b00615000639800200220b00615e00639700200220b", "0x644b00200220b00614f00639b00200220b00608300639a00200220b006", "0x620b00608e00601600233d00620b00613900600c00233b00620b006173", "0x33d00c00634200620b00633b00644c00234000620b00616b00612b00233f", "0x1000614e00200220b00600c00604d00200220b00600200900234234033f", "0x639500200220b00608300639a00200220b00614f00639b00200220b006", "0x39900200220b00615000639800200220b00615e00639700200220b00614e", "0x34300620b00615b00644b00200220b00616100639600200220b006085006", "0x16300612b00234500620b00615d00601600221000620b00613900600c002", "0x900234734634521000c00634700620b00634300644c00234600620b006", "0x14e00200220b00600c00604d00200220b00615100603300200220b006002", "0x200220b00613200639600200220b00605100620c00200220b006010006", "0x220b00604b00639900200220b00605300639800200220b00604f006397", "0x20b00613100639500200220b00613000639b00200220b00604d00639a002", "0x634900604b00234900620b00600250100234800620b006002131002002", "0x234b00620b00600213500234a00620b00634934800705b00234900620b", "0x13900600c00234d00620b00634c00644b00234c00620b00634a34b00705d", "0x35000620b00613b00612b00234f00620b00606700601600234e00620b006", "0x220b00600200900235135034f34e00c00635100620b00634d00644c002", "0x20b00605100620c00200220b00601000614e00200220b00600c00604d002", "0x605300639800200220b00604f00639700200220b006132006396002002", "0x13000639b00200220b00604d00639a00200220b00604b00639900200220b", "0xc00235200620b00607100644b00200220b00613100639500200220b006", "0x20b00613b00612b00220f00620b00606700601600235300620b006139006", "0x600200900235535420f35300c00635500620b00635200644c002354006", "0x4d00639a00200220b00613000639b00200220b00601000614e00200220b", "0x639600200220b00605100620c00200220b00613100639500200220b006", "0x39900200220b00605300639800200220b00604f00639700200220b006132", "0x35600620b00605f00644b00200220b00601600614e00200220b00604b006", "0x5800612b00235a00620b00613300601600235700620b00605600600c002", "0x900235c35b35a35700c00635c00620b00635600644c00235b00620b006", "0x614e00200220b00604700603300200220b00600211e00200220b006002", "0x13100200220b00600900604700200220b00601000614e00200220b006016", "0x36100620b00636100604b00236100620b0060023cc00236000620b006002", "0x36600705d00236600620b00600213500236500620b00636136000705b002", "0x620b00600200600c00236900620b00636800644b00236800620b006365", "0x644c00237100620b00602a00612b00236f00620b00602900601600236e", "0x211e00200220b00600200900237237136f36e00c00637200620b006369", "0x604700200220b00601000614e00200220b00601600614e00200220b006", "0x237300620b00602f00644b00200220b00611b0060fa00200220b006009", "0x602a00612b00220e00620b00602900601600237400620b00600200600c", "0x200900237937820e37400c00637900620b00637300644c00237800620b", "0x604700200220b00601000614e00200220b00601600614e00200220b006", "0x37b00620b00600200600c00237a00620b0060c400644b00200220b006009", "0x37a00644c00237d00620b00601500612b00237c00620b006014006016002", "0x600601600200220b00600211e00237e37d37c37b00c00637e00620b006", "0x920b00601401000738300201400620b00600700612b00201000620b006", "0x220b00600200900201700650201500620b00700f0060ea00200f01600c", "0x60fa00201c01900720b00601b00636000201b00620b0060150060ec002", "0x2900620b00601600612b00211b00620b00600c00601600200220b006019", "0x60ea00200220b0060020060020540650c400920b00602911b0071bd002", "0x20b00602a0060ec00200220b00600200900202b00650302a00620b007054", "0x36100200220b00602d0060fa00202e02d00720b00602c00636000202c006", "0x20b00603000613000203000620b00602f0061bf00202f00620b00601c006", "0x1bf00203900620b00602e00636100200220b00603300604d002048033007", "0x611e00604d00203711e00720b00603500613000203500620b006039006", "0x1c100210d00620b0060370061b200212000620b0060480061b200200220b", "0x703a0061c500203a00620b00603a00604b00203a00620b00610d120007", "0x2e00212400620b00600202a00200220b00600200900203c00650400220b", "0x250500600202d00203e00620b00607d00602c00207d00620b006124006", "0x12a00620b00600202a00200220b00603c0060f200200220b006002009002", "0x3e00602f00203e00620b00612c00602c00212c00620b00612a00602b002", "0x4100620b00712b00603000212b00620b00612b00602c00212b00620b006", "0x604100603300200220b00600211e00200220b006002009002043006506", "0x63fb00204b04d13013104712e04512d01420b00600900637100200220b", "0x20b0060c400601600205600620b00600200600c00204f04e00720b006131", "0x3fd00213600620b00604f0063fc00205800620b00606500612b002133006", "0x13400620b00712f0060c800212f05305113200c20b00613605813305600c", "0x63fe00213500620b0061340060c900200220b00600200900205b006507", "0x20b00613200600c00200220b00613700604d00205f13705d00920b006135", "0x21b00206900620b00605300612b00213b00620b006051006016002067006", "0x13906413806100c20b00606a06913b06700c3ff00206a00620b00605d006", "0x640100200220b00600200900213c00650806c00620b007139006400002", "0x20b00613f00643c00207113f00720b00606f00640200206f00620b00606c", "0x14500640200214500620b0061410064f400214100620b00600202a002002", "0x7900620b00607100643d00200220b00607500643c00207607500720b006", "0x602f00207700620b00614607900721a00214600620b00607600643d002", "0x620b00714b00603000214b00620b00614b00602c00214b00620b006077", "0x1412a00200220b00607b00603300200220b00600200900214a00650907b", "0xc701420b00607f00637100207f00620b00604b04d13004e04712e04512d", "0x20b00613800601600215e00620b00600206500215008508314f14e152151", "0x11b00215c00620b00615000644d00216300620b00606400612b00215d006", "0x215f16016100920b00616215c16315d00c21900216200620b00615e006", "0x61520063d300215100620b0061510063d00020c700620b0060c70063e3", "0x214f00620b00614f0063fc00214e00620b00614e0063de00215200620b", "0x715f00644e00208500620b00608500645000208300620b006083006373", "0x15700720b00608700644f00200220b00600200900215400650a08700620b", "0x616100601600215b00620b00600206500200220b00608a00603300208a", "0x20d000620b00608500645000216b00620b00616000612b00208e00620b", "0xed16816e00920b00616c0d016b08e00c45100216c00620b00615b00611b", "0x645300200220b00600200900216d00650b09200620b0070ed006452002", "0x14e1521510c701412a00200220b00609400603300209417100720b006092", "0x1760990d117509601420b00617300637100217300620b00615717108314f", "0x20a200620b00616800612b00217d00620b00616e00601600209d17a09b", "0xa400604b0020a405f00720b00605f00635a00217e00620b0060d10063d3", "0x63e30020a00cc17c00920b0060a417e0a217d00c49b0020a400620b006", "0x620b00609d00644d00217500620b0061750063d000209600620b006096", "0x637300217600620b0061760063fc00209900620b0060990063de00209d", "0x620b0070a000649c00217a00620b00617a00645000209b00620b00609b", "0x20a80d200720b00617f00649e00200220b0060020090020cd00650c17f", "0xd217509601412a00218000620b00605f00650d00200220b0060a8006033", "0x60160020c900620b00606100600c0020ce00620b00609d17a09b176099", "0x620b0060ce0060410020cb00620b0060cc00612b0020ca00620b00617c", "0xc20b0060b30c60cb0ca0c901650f0020b300620b00618000650e0020c6", "0x20b00600200900218e0065100b500620b0070c800617d0020c80cf1810ab", "0x243e00200220b0060b90060330020b90b700720b0060b50061f6002002", "0x43f0020bd00620b0060020ef0020bb00620b0060020ef0020ba00620b006", "0xc31900c10bf0be01420b0060b700637100218f00620b0060bd0bb0ba009", "0x20d900620b0061810060160020d700620b0060ab00600c0020d419c19b", "0x618f0060c60020db00620b0060c30063fc0021a100620b0060cf00612b", "0x44100219f0d61a019d00c20b0061a30db1a10d90d70164400021a300620b", "0x61a400644200200220b0060020090021a50065111a400620b00719f006", "0x19b0df1900c10bf0be01412a00200220b0061a60060330021a60df00720b", "0x20b0061ad1b20074840021ad00620b00600202a0021b200620b0060d419c", "0x160020e500620b00619d00600c0021b400620b0061ae0064850021ae006", "0x20b0061b400644c0021b800620b0060d600612b0020e700620b0061a0006", "0x20b0060d400620c00200220b0060020090021ba1b80e70e500c0061ba006", "0x60be00639500200220b00619b00639700200220b00619c006396002002", "0xbf00639b00200220b0060c100639a00200220b00619000639900200220b", "0x20ea00620b00619d00600c0021bd00620b0061a500644b00200220b006", "0x61bd00644c0021bf00620b0060d600612b0020ec00620b0061a0006016", "0x618e00644b00200220b0060020090020ef1bf0ec0ea00c0060ef00620b", "0x20f200620b0061810060160021c500620b0060ab00600c0021c100620b", "0xf40f21c500c0061c800620b0061c100644c0020f400620b0060cf00612b", "0x20b00609d00620c00200220b00609600639500200220b0060020090021c8", "0x617600639800200220b00609b00639700200220b00617a006396002002", "0x17500639b00200220b00605f00604d00200220b00609900639900200220b", "0x21d400620b00606100600c0021ca00620b0060cd00644b00200220b006", "0x61ca00644c0021d600620b0060cc00612b0020f800620b00617c006016", "0x605f00604d00200220b0060020090021eb1d60f81d400c0061eb00620b", "0x8300639700200220b0060c700639500200220b00615700620c00200220b", "0x639a00200220b00614e00639900200220b00614f00639800200220b006", "0x20fa00620b00616d00644b00200220b00615100639b00200220b006152", "0x616800612b0020fc00620b00616e0060160021ef00620b00606100600c", "0x20090021f60fe0fc1ef00c0061f600620b0060fa00644c0020fe00620b", "0x604d00200220b00615100639b00200220b00615200639a00200220b006", "0x39800200220b00608300639700200220b0060c700639500200220b00605f", "0x200220b00608500639600200220b00614e00639900200220b00614f006", "0x61610060160021f800620b00606100600c00210000620b00615400644b", "0x610300620b00610000644c0022f600620b00616000612b0021f900620b", "0x4d00200220b00614a00603300200220b0060020090021032f61f91f800c", "0x200220b00604d00639600200220b00604b00620c00200220b00605f006", "0x220b00604700639900200220b00604e00639800200220b006130006397", "0x20b00612d00639500200220b00604500639b00200220b00612e00639a002", "0x61ff00604b0021ff00620b0060025010021fb00620b006002131002002", "0x200000620b00600213500220600620b0061ff1fb00705b0021ff00620b", "0x6100600c00230400620b00630000644b00230000620b00620600000705d", "0x30800620b00606400612b00230700620b00613800601600230500620b006", "0x220b00600200900230930830730500c00630900620b00630400644c002", "0x20b00604d00639600200220b00604b00620c00200220b00605f00604d002", "0x604700639900200220b00604e00639800200220b006130006397002002", "0x12d00639500200220b00604500639b00200220b00612e00639a00200220b", "0x230b00620b00606100600c00230a00620b00613c00644b00200220b006", "0x630a00644c00230e00620b00606400612b00230c00620b006138006016", "0x612d00639500200220b00600200900230f30e30c30b00c00630f00620b", "0x4b00620c00200220b00604500639b00200220b00612e00639a00200220b", "0x639800200220b00613000639700200220b00604d00639600200220b006", "0x231000620b00605b00644b00200220b00604700639900200220b00604e", "0x605300612b00231200620b00605100601600231100620b00613200600c", "0x200900231431331231100c00631400620b00631000644c00231300620b", "0x900604700200220b00604300603300200220b00600211e00200220b006", "0x604b00231600620b0060023cc00231500620b00600213100200220b006", "0x620b00600213500231700620b00631631500705b00231600620b006316", "0xc00231b00620b00631a00644b00231a00620b00631731900705d002319", "0x20b00606500612b00232000620b0060c400601600231c00620b006002006", "0x600200900232232132031c00c00632200620b00631b00644c002321006", "0x601c0060fa00200220b00600900604700200220b00600211e00200220b", "0x1600232800620b00600200600c00232600620b00602b00644b00200220b", "0x20b00632600644c00232a00620b00606500612b00232900620b0060c4006", "0x20b00600900604700200220b00600200900232b32a32932800c00632b006", "0x601600232d00620b00600200600c00232c00620b00601700644b002002", "0x620b00632c00644c00233200620b00601600612b00233100620b00600c", "0x620b00600600601600200220b00600211e00221233233132d00c006212", "0xf01600c00920b00601401000738300201400620b00600700612b002010", "0x60ec00200220b00600200900201700651201500620b00700f0060ea002", "0x20b0060190060fa00201c01900720b00601b00636000201b00620b006015", "0x71bd00202900620b00601600612b00211b00620b00600c006016002002", "0x20b0070540060ea00200220b0060020060020540650c400920b00602911b", "0x202c00620b00602a0060ec00200220b00600200900202b00651302a006", "0x601c00636100200220b00602d0060fa00202e02d00720b00602c006360", "0x4803300720b00603000613000203000620b00602f0061bf00202f00620b", "0x60390061bf00203900620b00602e00636100200220b00603300604d002", "0x200220b00611e00604d00203711e00720b00603500613000203500620b", "0x10d1200071c100210d00620b0060370061b200212000620b0060480061b2", "0x51400220b00703a0061c500203a00620b00603a00604b00203a00620b006", "0x612400602e00212400620b00600202a00200220b00600200900203c006", "0x200900200251500600202d00203e00620b00607d00602c00207d00620b", "0x602b00212a00620b00600202a00200220b00603c0060f200200220b006", "0x620b00603e00602f00203e00620b00612c00602c00212c00620b00612a", "0x4300651604100620b00712b00603000212b00620b00612b00602c00212b", "0x200220b00604100603300200220b00600211e00200220b006002009002", "0x20b0061310063fb00204b04d13013104712e04512d01420b006009006371", "0x213300620b0060c400601600205600620b00600200600c00204f04e007", "0x13305600c3fd00213600620b00604f0063fc00205800620b00606500612b", "0x5b00651713400620b00712f0060c800212f05305113200c20b006136058", "0x20b0061350063fe00213500620b0061340060c900200220b006002009002", "0xc00200220b00605f00604d00200220b00613700604d00205f13705d009", "0x20b00605300612b00213b00620b00605100601600206700620b006132006", "0xc20b00606a06913b06700c3ff00206a00620b00605d00621b002069006", "0x20b00600200900213c00651806c00620b007139006400002139064138061", "0x43c00207113f00720b00606f00640200206f00620b00606c006401002002", "0x14500620b00614100640300214100620b00600202a00200220b00613f006", "0x7100640200200220b00607500643c00207607500720b006145006402002", "0x14600720b00607600640200200220b00607700643c00207907700720b006", "0x14b00643d00214a00620b00607900643d00200220b00614600643c00214b", "0x620b00607b00602f00207b00620b00607f14a00744400207f00620b006", "0x602c00215100620b0060c700602f0020c700620b0060c700602c0020c7", "0x600200900214e00651915200620b00715100603000215100620b006151", "0x4b04d13004e04712e04512d01412a00200220b00615200603300200220b", "0x215d15f16016115e15008508301420b00614f00637100214f00620b006", "0x13800601600208a00620b00606100600c00215c16300720b0061610063fb", "0x16800620b00615c0063fc00216e00620b00606400612b00215b00620b006", "0x20b0060830063e300215715408716200c20b00616816e15b08a00c3fd002", "0x3de00215000620b0061500063d300208500620b0060850063d0002083006", "0x20b00616000637300215d00620b00615d00644d00215e00620b00615e006", "0xc800216300620b0061630063fc00215f00620b00615f006450002160006", "0x60ed0060c900200220b00600200900208e00651a0ed00620b007157006", "0x220b00616c00604d00209216c0d000920b00616b0063fe00216b00620b", "0x608700601600209600620b00616200600c00200220b00609200604d002", "0x209900620b0060d000621b0020d100620b00615400612b00217500620b", "0x620b00717300640000217309417116d00c20b0060990d117509600c3ff", "0x40200217a00620b00617600640100200220b00600200900209b00651b176", "0x20b0060cc0064030020cc00620b00600202a00217c09d00720b00617a006", "0x43d00200220b00617d00643c0020a217d00720b0060a00064020020a0006", "0x617f0a400721a00217f00620b0060a200643d0020a400620b00617c006", "0x220b0060020090020d200651c0cd00620b00717e00603000217e00620b", "0x620b0060020ef0020a800620b00600243e00200220b0060cd006033002", "0xc0020ab00620b0060ce1800a800943f0020ce00620b0060020ef002180", "0x20b00609400612b0020cb00620b0061710060160020ca00620b00616d006", "0x4400020b500620b0060ab0060c60020b300620b0061630063fc0020c6006", "0x620b0070c90064410020c90c80cf18100c20b0060b50b30c60cb0ca016", "0x20ba0b900720b00618e00644200200220b0060020090020b700651d18e", "0x60bb00643c0020bd0bb00720b00609d00640200200220b0060ba006033", "0x64020020be00620b00618f00644300218f00620b00600202a00200220b", "0x720b0060bd00640200200220b0060bf00643c0020c10bf00720b0060be", "0x43c00219c19b00720b0060c100640200200220b00619000643c0020c3190", "0x620b00619c00643d00219d00620b0060c300643d00200220b00619b006", "0x3d50020d600620b0060d400602f0020d400620b0061a019d0074440021a0", "0x1500063d70020d708500720b0060850063d600219f08300720b006083006", "0x20b0060b90063d90021a115e00720b00615e0063d80020d915000720b006", "0x15f00720b00615f0063db0021a316000720b0061600063da0020db0b9007", "0x1a41a30db1a10d90d719f01412a0021a515d00720b00615d0063dc0021a4", "0xd600620b0060d600602c00200220b0060df0060470020df00620b0061a5", "0x603300200220b0060020090021b200651e1a600620b0070d6006030002", "0x21ad00620b00615d15f1600b915e15008508301412a00200220b0061a6", "0x60c800612b0021b400620b0060cf0060160021ae00620b00618100600c", "0x200900200251f00600202d0020e700620b0061ad0060410020e500620b", "0x15f1600b915e15008508301412a00200220b0061b200603300200220b006", "0xef00620b00618100600c0021ba00620b0060024450021b800620b00615d", "0x1b80060410021c500620b0060c800612b0021c100620b0060cf006016002", "0xf40f21c51c10ef0164470020f400620b0061ba0064460020f200620b006", "0x90021ca0065201c800620b0071bf00617d0021bf0ec0ea1bd00c20b006", "0x220b0060f80060330020f81d400720b0061c80061f600200220b006002", "0xec00612b0021b400620b0060ea0060160021ae00620b0061bd00600c002", "0x1d600620b0061ae00636e0020e700620b0061d40060410020e500620b006", "0xe700644a0020fa00620b0060e50064490021eb00620b0061b4006448002", "0x1ca00644b00200220b00600200900200252100600202d0021ef00620b006", "0x1f600620b0060ea0060160020fe00620b0061bd00600c0020fc00620b006", "0x1f60fe00c0061f800620b0060fc00644c00210000620b0060ec00612b002", "0x615f00639600200220b00615d00620c00200220b0060020090021f8100", "0x15e00639900200220b00609d00643c00200220b00616000639700200220b", "0x639500200220b00608500639b00200220b00615000639a00200220b006", "0x2f600620b00618100600c0021f900620b0060b700644b00200220b006083", "0x1f900644c0021fb00620b0060c800612b00210300620b0060cf006016002", "0xd200603300200220b0060020090021ff1fb1032f600c0061ff00620b006", "0x15f16016315e15008508301412a00200220b00609d00643c00200220b006", "0x620b0061710060160021d600620b00616d00600c00220600620b00615d", "0x63710021ef00620b0062060060410020fa00620b00609400612b0021eb", "0x230b00620b00600206500230a30930830730530430000001420b0061ef", "0x630a00644d00231100620b0060fa00612b00231000620b0061eb006016", "0x20b00631331231131000c21900231300620b00630b00611b00231200620b", "0x20b00600200900231500652231400620b00730f00644e00230f30e30c009", "0x206500200220b00631700603300231731600720b00631400644f002002", "0x32100620b00630e00612b00232000620b00630c00601600231900620b006", "0x32000c45100232600620b00631900611b00232200620b006309006450002", "0x32900652332800620b00731c00645200231c31b31a00920b006326322321", "0x632b00603300232b32a00720b00632800645300200220b006002009002", "0x202a00232c00620b00631632a30830730530430000001412a00200220b", "0x620b00633100648500233100620b00632d32c00748400232d00620b006", "0x612b00233300620b00631a00601600221200620b0061d600600c002332", "0x233533433321200c00633500620b00633200644c00233400620b00631b", "0x200220b00600000639500200220b00631600620c00200220b006002009", "0x220b00630500639900200220b00630700639800200220b006308006397", "0x20b00632900644b00200220b00630000639b00200220b00630400639a002", "0x12b00233900620b00631a00601600233700620b0061d600600c002336006", "0x33b21133933700c00633b00620b00633600644c00221100620b00631b006", "0x220b00630400639a00200220b00630000639b00200220b006002009002", "0x20b00630700639800200220b00630800639700200220b006000006395002", "0x631500644b00200220b00630900639600200220b006305006399002002", "0x234000620b00630c00601600233f00620b0061d600600c00233d00620b", "0x34234033f00c00634300620b00633d00644c00234200620b00630e00612b", "0x20b00615000639a00200220b00608300639500200220b006002009002343", "0x615f00639600200220b00615d00620c00200220b00608500639b002002", "0x16300639800200220b00615e00639900200220b00616000639700200220b", "0x234500620b00616d00600c00221000620b00609b00644b00200220b006", "0x621000644c00234700620b00609400612b00234600620b006171006016", "0x608300639500200220b00600200900234834734634500c00634800620b", "0x15d00620c00200220b00608500639b00200220b00615000639a00200220b", "0x639800200220b00616000639700200220b00615f00639600200220b006", "0x234900620b00608e00644b00200220b00615e00639900200220b006163", "0x615400612b00234b00620b00608700601600234a00620b00616200600c", "0x200900234d34c34b34a00c00634d00620b00634900644c00234c00620b", "0x639600200220b00604b00620c00200220b00614e00603300200220b006", "0x39900200220b00604e00639800200220b00613000639700200220b00604d", "0x200220b00604500639b00200220b00612e00639a00200220b006047006", "0x34f00620b00600250100234e00620b00600213100200220b00612d006395", "0x213500235000620b00634f34e00705b00234f00620b00634f00604b002", "0x620b00635200644b00235200620b00635035100705d00235100620b006", "0x612b00235400620b00613800601600220f00620b00606100600c002353", "0x235635535420f00c00635600620b00635300644c00235500620b006064", "0x200220b00604d00639600200220b00604b00620c00200220b006002009", "0x220b00604700639900200220b00604e00639800200220b006130006397", "0x20b00612d00639500200220b00604500639b00200220b00612e00639a002", "0x601600235a00620b00606100600c00235700620b00613c00644b002002", "0x620b00635700644c00235c00620b00606400612b00235b00620b006138", "0x220b00612e00639a00200220b00600200900236035c35b35a00c006360", "0x20b00604b00620c00200220b00604500639b00200220b00612d006395002", "0x604e00639800200220b00613000639700200220b00604d006396002002", "0x600c00236100620b00605b00644b00200220b00604700639900200220b", "0x620b00605300612b00236600620b00605100601600236500620b006132", "0x20b00600200900236936836636500c00636900620b00636100644c002368", "0x20b00600900604700200220b00604300603300200220b00600211e002002", "0x636f00604b00236f00620b0060023cc00236e00620b006002131002002", "0x237200620b00600213500237100620b00636f36e00705b00236f00620b", "0x200600c00237400620b00637300644b00237300620b00637137200705d", "0x37900620b00606500612b00237800620b0060c400601600220e00620b006", "0x220b00600200900237a37937820e00c00637a00620b00637400644c002", "0x220b00601c0060fa00200220b00600900604700200220b00600211e002", "0xc400601600237c00620b00600200600c00237b00620b00602b00644b002", "0x37f00620b00637b00644c00237e00620b00606500612b00237d00620b006", "0x200220b00600900604700200220b00600200900237f37e37d37c00c006", "0x600c00601600238100620b00600200600c00238000620b00601700644b", "0x638500620b00638000644c00238300620b00601600612b00238200620b", "0x1701501401000f01600c00901420b00600700637100238538338238100c", "0x20b00600f00639900200220b00601600639a00200220b006009006395002", "0x601500639600200220b00601400639700200220b006010006398002002", "0x612b0020c400620b00600200601600200220b00601700620c00200220b", "0x60540650c40093d100205400620b00600c0063d000206500620b006006", "0x600200900202900652411b00620b00701c00615100201c01901b00920b", "0x33200202b00620b00602a00633100202a00620b00611b00615200200220b", "0x20b00601900612b00202d00620b00601b00601600202c00620b00602b006", "0x20b00600200900202f02e02d00900602f00620b00602c00621200202e006", "0x612b00203300620b00601b00601600203000620b006029006333002002", "0x37100203904803300900603900620b00603000621200204800620b006019", "0x220b00600900639500201701501401000f01600c00901420b006007006", "0x20b00601000639800200220b00600f00639900200220b00600c00639b002", "0x601700620c00200220b00601500639600200220b006014006397002002", "0x3d300206500620b00600600612b0020c400620b00600200601600200220b", "0x15100201c01901b00920b0060540650c40093d400205400620b006016006", "0x611b00615200200220b00600200900202900652511b00620b00701c006", "0x202c00620b00602b00633200202b00620b00602a00633100202a00620b", "0x602c00621200202e00620b00601900612b00202d00620b00601b006016", "0x20b00602900633300200220b00600200900202f02e02d00900602f00620b", "0x21200204800620b00601900612b00203300620b00601b006016002030006", "0xc00901420b00600700637100203904803300900603900620b006030006", "0x220b00600c00639b00200220b00600900639500201701501401000f016", "0x20b00601400639700200220b00601000639800200220b00601600639a002", "0x600200601600200220b00601700620c00200220b006015006396002002", "0x205400620b00600f0063de00206500620b00600600612b0020c400620b", "0x52611b00620b00701c00615100201c01901b00920b0060540650c40093df", "0x2a00633100202a00620b00611b00615200200220b006002009002029006", "0x2d00620b00601b00601600202c00620b00602b00633200202b00620b006", "0x2e02d00900602f00620b00602c00621200202e00620b00601900612b002", "0x601b00601600203000620b00602900633300200220b00600200900202f", "0x603900620b00603000621200204800620b00601900612b00203300620b", "0x201b01701501401000f01600c01420b006009006371002039048033009", "0x220b00600f00639a00200220b00601600639b00200220b00600c006395", "0x20b00601700639600200220b00601500639700200220b006010006399002", "0x600601600205400620b00600200600c00200220b00601b00620c002002", "0x2a00620b0060140063fc00202900620b00600700612b00211b00620b006", "0x20b0070650060c80020650c401c01900c20b00602a02911b05400c3fd002", "0x202d00620b00602b0060c900200220b00600200900202c00652702b006", "0x601900600c00202f00620b00602e00621400202e00620b00602d006528", "0x204800620b0060c400612b00203300620b00601c00601600203000620b", "0x200220b00600200900203904803303000c00603900620b00602f006529", "0x601c00601600211e00620b00601900600c00203500620b00602c00652a", "0x610d00620b00603500652900212000620b0060c400612b00203700620b", "0x20b0060070063fe00200700200720b00600200652b00210d12003711e00c", "0x21b00200220b00601600604d00200220b00600c00604d00201600c009009", "0x601501400752c00201500620b00600600604e00201400620b006009006", "0x1700200720b00600200652b00200220b00601000603300201000f00720b", "0x604d00200220b00601b00634900201c01901b00920b0060170063fe002", "0x11b00620b00600f00604e00205400620b00601900604b00200220b00601c", "0x63fe00200220b0060650060330020650c400720b00611b05400704f002", "0x20b00602a00604d00200220b00602900634900202b02a02900920b006002", "0x704f00202f00620b0060c400604e00202e00620b00602b00604b002002", "0x602d00652e00203000620b00602c00652d00202d02c00720b00602f02e", "0x620b00600252f00200220b00600200604700203303000700603300620b", "0x700600953100200900620b00600252f00200700620b006002530002006", "0x200653200201600600601600620b00600c0060b900200c00620b006009", "0x600c00653400201600c00900920b00600700653300200700200720b006", "0x604e00201400620b00600900653500200220b00601600653400200220b", "0x601000603300201000f00720b00601501400753600201500620b006006", "0x1901b00920b00601700653300201700200720b00600200653200200220b", "0x601900653500200220b00601c00653400200220b00601b00653400201c", "0xc400720b00611b05400753600211b00620b00600f00604e00205400620b", "0x53400202b02a02900920b00600200653300200220b006065006033002065", "0x2e00620b00602b00653500200220b00602a00653400200220b006029006", "0x52d00202d02c00720b00602f02e00753600202f00620b0060c400604e002", "0x37100203303000700603300620b00602d00652e00203000620b00602c006", "0x220b00600c00639500201b01701501401000f01600c01420b006009006", "0x20b00601000639900200220b00600f00639a00200220b00601600639b002", "0x601b00620c00200220b00601500639700200220b006014006398002002", "0x12b00211b00620b00600600601600205400620b00600200600c00200220b", "0x2911b05400c53700202a00620b00601700645000202900620b006007006", "0x202c00653802b00620b00706500618f0020650c401c01900c20b00602a", "0x620b00602d00653900202d00620b00602b0060be00200220b006002009", "0x601600203000620b00601900600c00202f00620b00602e00653a00202e", "0x620b00602f00621300204800620b0060c400612b00203300620b00601c", "0x620b00602c00653b00200220b00600200900203904803303000c006039", "0x612b00203700620b00601c00601600211e00620b00601900600c002035", "0x210d12003711e00c00610d00620b00603500621300212000620b0060c4", "0x600900613000200900620b00600700653c00200700620b006002006054", "0x201400620b00601600604b00200220b00600c00604d00201600c00720b", "0x603300201000f00720b00601501400704f00201500620b00600600604e", "0x201b00620b00600f00604e00201700620b00600202a00200220b006010", "0x1600c01420b00600900637100201901b00700601900620b0060170061ff", "0x220b00601600639b00200220b00600c00639500201b01701501401000f", "0x20b00601400639800200220b00601000639900200220b00600f00639a002", "0x600200600c00200220b00601700639600200220b006015006397002002", "0x202900620b00600700612b00211b00620b00600600601600205400620b", "0xc401c01900c20b00602a02911b05400c53d00202a00620b00601b00644d", "0xbe00200220b00600200900202c00653e02b00620b00706500618f002065", "0x20b00602e00653a00202e00620b00602d00653900202d00620b00602b006", "0x12b00203300620b00601c00601600203000620b00601900600c00202f006", "0x3904803303000c00603900620b00602f00621300204800620b0060c4006", "0x20b00601900600c00203500620b00602c00653b00200220b006002009002", "0x21300212000620b0060c400612b00203700620b00601c00601600211e006", "0xc01420b00600900637100210d12003711e00c00610d00620b006035006", "0x20b00601600639b00200220b00600c00639500201b01701501401000f016", "0x601500639700200220b00601000639900200220b00600f00639a002002", "0x200600c00200220b00601b00620c00200220b00601700639600200220b", "0x2900620b00600700612b00211b00620b00600600601600205400620b006", "0x1c01900c20b00602a02911b05400c3fd00202a00620b0060140063fc002", "0x200220b00600200900202c00653f02b00620b0070650060c80020650c4", "0x600c00203002f02e00920b00602d0063fe00202d00620b00602b0060c9", "0x620b0060c400612b00203700620b00601c00601600211e00620b006019", "0x3ff00210d00620b00610d00621b00210d02e00720b00602e00635b002120", "0x3a00620b00703500640000203503904803300c20b00610d12003711e00c", "0x943f00212400620b00603a00640100200220b00600200900203c006540", "0x3e00654200203e00620b00612407d00754100207d00620b00603002f02e", "0x12b00620b00603300600c00212c00620b00612a00654300212a00620b006", "0x12c00654400204300620b00603900612b00204100620b006048006016002", "0x2e00634900200220b00600200900212d04304112b00c00612d00620b006", "0x654500200220b00602f00604d00200220b00603000604d00200220b006", "0x620b00604800601600212e00620b00603300600c00204500620b00603c", "0x12e00c00613000620b00604500654400213100620b00603900612b002047", "0x600c00204d00620b00602c00654500200220b006002009002130131047", "0x620b0060c400612b00204e00620b00601c00601600204b00620b006019", "0x600200654600213204f04e04b00c00613200620b00604d00654400204f", "0x1000620b00600600604e00200f00620b0060070060c600200900700720b", "0x643d00200220b00601600603300201600c00720b00601000f0070b3002", "0x20b00601b01700754700201b00620b00600c00604e00201700620b006009", "0x601c00620b00601500652e00201900620b00601400652d002015014007", "0x635a00200700620b00600254800200220b00600200604700201c019007", "0x600900604b00200900620b00600700c0071c100200c00600720b006006", "0x200220b00600200900201600654900220b0070090061c500200900620b", "0x620b00600f00602e00200f00620b00600202a00200220b00600600604d", "0x20b00600200900200254a00600202d00201400620b00601000602c002010", "0x600600635a00201500620b0060023b300200220b0060160060f2002002", "0x620b00601700604b00201700620b00601501b0071c100201b00600720b", "0x604d00200220b00600200900201900654b00220b0070170061c5002017", "0x20c400620b00601c00602e00201c00620b00600202a00200220b006006", "0x200220b00600200900200254c00600202d00206500620b0060c400602c", "0x720b00600600635a00205400620b00600254d00200220b0060190060f2", "0x211b00620b00611b00604b00211b00620b0060540290071c1002029006", "0x600600604d00200220b00600200900202a00654e00220b00711b0061c5", "0x602c00202c00620b00602b00602e00202b00620b00600202a00200220b", "0x60f200200220b00600200900200254f00600202d00202d00620b00602c", "0x3000600720b00600600635a00202e00620b00600255000200220b00602a", "0x61c500202f00620b00602f00604b00202f00620b00602e0300071c1002", "0x220b00600600604d00200220b00600200900203300655100220b00702f", "0x603900602c00203900620b00604800602e00204800620b00600202a002", "0x60330060f200200220b00600200900200255200600202d00203500620b", "0x1c100212000600720b00600600635a00211e00620b00600255300200220b", "0x70370061c500203700620b00603700604b00203700620b00611e120007", "0x2a00200220b00600600604d00200220b00600200900210d00655400220b", "0x620b00603c00602c00203c00620b00603a00602e00203a00620b006002", "0x220b00610d0060f200200220b00600200900200255500600202d002124", "0x3e00604b00203e00620b00607d0060071c100207d00620b006002556002", "0x220b00600200900212a00655700220b00703e0061c500203e00620b006", "0x612b00602c00212b00620b00612c00602e00212c00620b00600202a002", "0x612a0060f200200220b00600200900200255800600202d00204100620b", "0x602c00212d00620b00604300602b00204300620b00600202a00200220b", "0x620b00612400636f00212400620b00604100636f00204100620b00612d", "0x636f00206500620b00602d00636f00202d00620b00603500636f002035", "0x200604100204500600604500620b00601400636f00201400620b006065", "0x620b00600c0090070d600200c00620b00600600604b00200900620b006", "0x3300200220b00600200900200f00655901600620b007007006030002007", "0x1400620b00601000604b00201000620b0060020ef00200220b006016006", "0x200220b00600f00603300200220b00600200900200255a00600202d002", "0x20b0060140061b200201400620b00601500604b00201500620b006002000", "0x620b00600600612c00201900620b00600200600c002017006006017006", "0x604100206500620b00600900612b0020c400620b00600700601600201c", "0x620b00600f00604e00211b00620b00601600604b00205400620b00600c", "0x201b01701501401001620b00602911b0540650c401c0190100c7002029", "0x2a00615200200220b00600200900202b00655b02a00620b00701b006151", "0x220b00602d00604d00202e02d00720b00602c00613000202c00620b006", "0x3000604d00203303000720b00602f00613000202f00620b006002100002", "0x203900620b0060330061b200204800620b00602e0061b200200220b006", "0x350061c500203500620b00603500604b00203500620b0060390480071c1", "0x203700620b00600202a00200220b00600200900211e00655c00220b007", "0x55d00600202d00210d00620b00612000602c00212000620b00603700602e", "0x620b00600202a00200220b00611e0060f200200220b006002009002002", "0x602f00210d00620b00603c00602c00203c00620b00603a00602b00203a", "0x620b00712400603000212400620b00612400602c00212400620b00610d", "0x200000200220b00607d00603300200220b00600200900203e00655e07d", "0x12b00620b00612c00633200212c00620b00612a00633100212a00620b006", "0x1500601600204300620b00601400612c00204100620b00601000600c002", "0x12e00620b00612b00621200204500620b00601700612b00212d00620b006", "0x220b00603e00603300200220b00600200900212e04512d043041016006", "0x20b00613100604b00213100620b00600255f00204700620b006002131002", "0x5d00204d00620b00600213500213000620b00613104700705b002131006", "0x601000600c00204e00620b00604b00633300204b00620b00613004d007", "0x205100620b00601500601600213200620b00601400612c00204f00620b", "0x5113204f01600612f00620b00604e00621200205300620b00601700612b", "0x1000600c00205600620b00602b00633300200220b00600200900212f053", "0x13600620b00601500601600205800620b00601400612c00213300620b006", "0x5813301600605b00620b00605600621200213400620b00601700612b002", "0xef00201000f00720b00600c00613000200220b00600211e00205b134136", "0x20b00601500604d00201701500720b00601400613000201400620b006002", "0x4d00201c01900720b00601b00613000201b00620b0060100061b2002002", "0x720b0060c40061300020c400620b0060170061b200200220b006019006", "0x61b200211b00620b00601c0061b200200220b00606500604d002054065", "0x20b00602a00604b00202a00620b00602911b0071c100202900620b006054", "0x2a00200220b00600200900202b00656000220b00702a0061c500202a006", "0x620b00602d00602c00202d00620b00602c00602e00202c00620b006002", "0x220b00602b0060f200200220b00600200900200256100600202d00202e", "0x603000602c00203000620b00602f00602b00202f00620b00600202a002", "0x203300620b00603300602c00203300620b00602e00602f00202e00620b", "0x704800603000204800620b00604800602c00204800620b00603300602f", "0x200220b00603900603300200220b00600200900203500656203900620b", "0x20b00600600601600207d12403c03a10d12003711e01420b006009006371", "0x35a00204300620b0060370063d000204100620b00600700612b00212b006", "0x4112b00c45400212d00620b00612d00604b00212d00f00720b00600f006", "0x212e00656304500620b00712c00645500212c12a03e00920b00612d043", "0x20b00613100603300213104700720b00604500645600200220b006002009", "0x63d300204f00620b00612a00612b00204e00620b00603e006016002002", "0x20b00605100604b00205101600720b00601600635a00213200620b006120", "0x704b00649c00204b04d13000920b00605113204f04e00c49b002051006", "0x5600720b00605300649e00200220b00600200900212f00656405300620b", "0x613000601600205800620b0060020ef00200220b006133006033002133", "0x213700620b00610d0063de00205d00620b00604d00612b00213500620b", "0x5b13413600920b00605f13705d13500c4b500205f00620b00605800604b", "0x64b800200220b00600200900213800656506100620b00705b0064b6002", "0x720b00600f00635a00200220b00613900603300213906400720b006061", "0x3c03a06405604711e01412a00213b00620b00601606700756600206700f", "0x20b00613600601600213f00620b00600200600c00206900620b00607d124", "0x56700214500620b00606900604100214100620b00613400612b002071006", "0x13c06c06a00c20b00607514514107113f01656800207500620b00613b006", "0x1f600200220b00600200900207700656907600620b00706f00617d00206f", "0x20b00600f0063ed00200220b00614600603300214607900720b006076006", "0x12b00215200620b00606c00601600215100620b00606a00600c00214b006", "0x20b00614b0063ee00214f00620b00607900604100214e00620b00613c006", "0x617d0020c707f14a07b00c20b00608314f14e1521510163ef002083006", "0x20b0060850061f600200220b00600200900215000656a08500620b0070c7", "0x748400216000620b00600202a00200220b00616100603300216115e007", "0x20b00607b00600c00215d00620b00615f00648500215f00620b00616015e", "0x44c00216200620b00607f00612b00215c00620b00614a006016002163006", "0x44b00200220b00600200900208716215c16300c00608700620b00615d006", "0x20b00614a00601600215700620b00607b00600c00215400620b006150006", "0xc00616e00620b00615400644c00215b00620b00607f00612b00208a006", "0x644b00200220b00600f00604d00200220b00600200900216e15b08a157", "0x620b00606c0060160020ed00620b00606a00600c00216800620b006077", "0xed00c0060d000620b00616800644c00216b00620b00613c00612b00208e", "0x11e00639500200220b00600f00604d00200220b0060020090020d016b08e", "0x639700200220b00612400639600200220b00607d00620c00200220b006", "0x39a00200220b00601600604d00200220b00603a00639800200220b00603c", "0x16c00620b00613800644b00200220b00604700639b00200220b006056006", "0x13400612b00216d00620b00613600601600209200620b00600200600c002", "0x900209417116d09200c00609400620b00616c00644c00217100620b006", "0x39b00200220b00611e00639500200220b00600f00604d00200220b006002", "0x200220b00612400639600200220b00607d00620c00200220b006047006", "0x220b00601600604d00200220b00603a00639800200220b00603c006397", "0x600200600c00217300620b00612f00644b00200220b00610d006399002", "0x20d100620b00604d00612b00217500620b00613000601600209600620b", "0x200220b0060020090020990d117509600c00609900620b00617300644c", "0x220b00610d00639900200220b00611e00639500200220b00600f00604d", "0x20b00603c00639700200220b00612400639600200220b00607d00620c002", "0x612000639a00200220b00601600604d00200220b00603a006398002002", "0x1600209b00620b00600200600c00217600620b00612e00644b00200220b", "0x20b00617600644c00209d00620b00612a00612b00217a00620b00603e006", "0x20b00603500603300200220b00600200900217c09d17a09b00c00617c006", "0x600900604700200220b00601600604d00200220b00600f00604d002002", "0xa000604b0020a000620b0060023f60020cc00620b00600213100200220b", "0xa200620b00600213500217d00620b0060a00cc00705b0020a000620b006", "0x600c0020a400620b00617e00644b00217e00620b00617d0a200705d002", "0x620b00600700612b0020cd00620b00600600601600217f00620b006002", "0x20b00600211e0020a80d20cd17f00c0060a800620b0060a400644c0020d2", "0x200903500201600620b00601600603900201600620b006002048002002", "0x635a00200220b00600200900201501400756b01000f00720b007016006", "0x20b0070170061c500200f00620b00600f00600c00201700c00720b00600c", "0x656d00200220b00600c00604d00200220b00600200900201b00656c002", "0x20b00601c0060e500201c00620b0060190070071b400201900620b006009", "0xe700205400620b00601000601600206500620b00600f00600c0020c4006", "0x60f200200220b00600200900211b05406500900611b00620b0060c4006", "0x2d00620b00601000601600202c00620b00600f00600c00200220b00601b", "0x2b02a02900920b00602e02d02c00956e00202e00620b00600700600f002", "0x657100200220b00600200900203000657002f00620b00702b00656f002", "0x200900203500657303900620b00704800657200204803300720b00602f", "0x203700620b00600200000211e00620b00603900900757400200220b006", "0x2a00601600212400620b00602900600c00212000620b00603700c0071c1", "0x12a00620b00611e00604300203e00620b00603300600f00207d00620b006", "0x10d00920b00612c12a03e07d1240161ae00212c00620b00612000604b002", "0x200220b00600200900204100657512b00620b00703c00601400203c03a", "0x60e500204500620b00612d0430071b400212d04300720b00612b006015", "0x620b00603a00601600204700620b00610d00600c00212e00620b006045", "0x220b00600200900213013104700900613000620b00612e0060e7002131", "0x3a00601600204b00620b00610d00600c00204d00620b0060410061b8002", "0x200900204f04e04b00900604f00620b00604d0060e700204e00620b006", "0x61ba00200220b00600900613600200220b00600c00604d00200220b006", "0x20b0060510060e500205100620b0061320330071b400213200620b006035", "0xe700205600620b00602a00601600212f00620b00602900600c002053006", "0x604d00200220b00600200900213305612f00900613300620b006053006", "0x205800620b0060300061b800200220b00600900613600200220b00600c", "0x60580060e700213400620b00602a00601600213600620b00602900600c", "0x20b00600c00604d00200220b00600200900205b13413600900605b00620b", "0x20b00600213100200220b00600700606100200220b006009006136002002", "0x705b00205d00620b00605d00604b00205d00620b006002134002135006", "0x20b00613705f00705d00205f00620b00600213500213700620b00605d135", "0x1600206400620b00601400600c00213800620b0060610061b8002061006", "0x206713906400900606700620b0061380060e700213900620b006015006", "0xf01600757600200f00620b00600600612b00201600620b006002006016", "0x200900201400657801000620b00700c00657700200c00900700920b006", "0x201700620b00601500657a00201500620b00601000657900200220b006", "0x57d00200220b00601b00657c0020650c401c01901b01620b00601700657b", "0x200220b00606500604d00200220b0060c40060fa00200220b006019006", "0x600700601600211b00620b00605400657f00205400620b00601c00657e", "0x602b00620b00611b00658000202a00620b00600900612b00202900620b", "0x1600202c00620b00601400658100200220b00600200900202b02a029009", "0x20b00602c00658000202e00620b00600900612b00202d00620b006007006", "0x600600612b00201600620b00600200601600202f02e02d00900602f006", "0x20b00700c00657700200c00900700920b00600f01600757600200f00620b", "0x201500620b00601000657900200220b006002009002014006582010006", "0x20650c401c01901b01620b00601700657b00201700620b00601500657a", "0x220b0060c40060fa00200220b00601c0060fa00200220b00601b00657c", "0x605400658400205400620b00601900658300200220b00606500604d002", "0x202a00620b00600900612b00202900620b00600700601600211b00620b", "0x58600200220b00600200900202b02a02900900602b00620b00611b006585", "0x20b00600900612b00202d00620b00600700601600202c00620b006014006", "0x20b00600206400202f02e02d00900602f00620b00602c00658500202e006", "0x900612b00201c00620b00600700601600200220b006002139002017006", "0x1501700713b00201901501b00920b0060c401c0075760020c400620b006", "0x20b00600200900205400658706500620b00701900657700201500620b006", "0x657b00202900620b00611b00657a00211b00620b006065006579002002", "0x2c0060fa00200220b00602a00657c00202e02d02c02b02a01620b006029", "0x1d400202b00620b00602b00658800200220b00602e00604d00200220b006", "0x3711e03503904803303001020b00602f0061eb00202f00620b00602b006", "0x20b00603900606100200220b0060480061ef00200220b0060330060fa002", "0x603700604d00200220b00611e00604d00200220b00603500604d002002", "0x13000203a00620b00600200000210d12000720b00603000613000200220b", "0x20b00610d0061b200200220b00603c00604d00212403c00720b00603a006", "0x1b200200220b00603e00604d00212a03e00720b00607d00613000207d006", "0x612b00604d00204112b00720b00612c00613000212c00620b006124006", "0x4b00212d00620b0060410061b200204300620b00612a0061b200200220b", "0x604500604b00204500620b00612d0430071c100204300620b006043006", "0x212000620b00612000604b00202d00620b00602d0063f100204500620b", "0x20b00600202a00200220b00600200900212e00658900220b0070450061c5", "0x2d00213000620b00613100602c00213100620b00604700602e002047006", "0x202a00200220b00612e0060f200200220b00600200900200258a006002", "0x13000620b00604b00602c00204b00620b00604d00602b00204d00620b006", "0x4e00603000204e00620b00604e00602c00204e00620b00613000602f002", "0x220b00604f00603300200220b00600200900213200658b04f00620b007", "0x200220b00600200900200258c00600202d00200220b00612000604d002", "0x605100604d00205305100720b00612000613000200220b006132006033", "0x4d00213305600720b00612f00613000212f00620b00600230000200220b", "0x620b0061330061b200205800620b0060530061b200200220b006056006", "0x1c500213400620b00613400604b00213400620b0061360580071c1002136", "0x620b00600202a00200220b00600200900205b00658d00220b007134006", "0x202d00213700620b00605d00602c00205d00620b00613500602e002135", "0x600202a00200220b00605b0060f200200220b00600200900200258e006", "0x213700620b00606100602c00206100620b00605f00602b00205f00620b", "0x713800603000213800620b00613800602c00213800620b00613700602f", "0x200220b00606400603300200220b00600200900213900658f06400620b", "0x13b00659100213b00620b00606700659000206701600720b00601600635c", "0x220b00606a0060c400206c06a00720b00606900601c00206900620b006", "0x6f0060c400213f06f00720b00613c00601c00213c00620b006002592002", "0x214100620b00613f00605400207100620b00606c00605400200220b006", "0x200900200259300220b00714107100702900207100620b00607100611b", "0x200600c00200220b0060140060d000200220b00600211e00200220b006", "0x14600620b0060160060fc00207900620b00601b00601600207700620b006", "0x7514500920b00614b14607907700c3f200214b00620b00602d0063f1002", "0x3f400200220b00600200900214a00659407b00620b0070760063f3002076", "0x620b00607500601600207f00620b00614500600c00200220b00607b006", "0x220b00600c00604700200220b00600200900200259500600202d0020c7", "0x20b00614a00644b00200220b00600f00604d00200220b006010006061002", "0x1600214e00620b00600600612c00215200620b00614500600c002151006", "0x20b00615100644c00208300620b00601500612b00214f00620b006075006", "0x601600659000200220b00600200900208508314f14e152016006085006", "0x59600215f00620b00600200600c00215e00620b00600206500215000620b", "0x16315d15f00959700216300620b00615e00611b00215d00620b006150006", "0x600200900216200659915c00620b00716000659800216016100720b006", "0x59c00215400620b00608700659b00208700620b00615c00659a00200220b", "0x615700659e00215715400720b00615400659d00215400620b006154006", "0x200220b00616e00659f00200220b00615b00604d00216e15b08a00920b", "0xed0060fa00208e0ed00720b00616800636000216800620b00608a006361", "0x200220b00616b0060fa0020d016b00720b00602d00636000200220b006", "0x609200613000209200620b00616c0061bf00216c00620b00608e006361", "0x209400620b0060d000636100200220b00616d00604d00217116d00720b", "0x9600604d00217509600720b00617300613000217300620b0060940061bf", "0x209900620b0061750061b20020d100620b0061710061b200200220b006", "0x1760061c500217600620b00617600604b00217600620b0060990d10071c1", "0x15400720b00615400659d00200220b00600200900209b0065a000220b007", "0x59f00200220b00609d0060fa0020cc17c09d00920b00617a00659e00217a", "0x17d00620b0060025a10020a000620b00617c0061b200200220b0060cc006", "0x4b0020a200620b00617d17e0071c100217e0a000720b0060a000635a002", "0x60020090020a40065a200220b0070a20061c50020a200620b0060a2006", "0x602c00217f00620b00601400602f00200220b0060a000604d00200220b", "0x60020090020d20065a30cd00620b00717f00603000217f00620b00617f", "0x60160020a800620b00616100600c00200220b0060cd00603300200220b", "0x620b00600c0060410020ce00620b00601500612b00218000620b00601b", "0x220b0060d200603300200220b0060020090020025a400600202d0020ab", "0x60c60065a50020b30c60cb0ca0c90c80cf18101420b00600c006371002", "0x18f00620b00601b0060160020bd00620b00616100600c00218e0b500720b", "0xbd00c5370020bf00620b00618e0064500020be00620b00601500612b002", "0x65a60c100620b0070bb00618f0020bb0ba0b90b700c20b0060bf0be18f", "0x60b700600c0020c300620b0060c10060be00200220b006002009002190", "0x219f00620b0060ba00612b0020d600620b0060b90060160021a000620b", "0x1a000c5a80020d700620b0060d700611b0020d70c300720b0060c30065a7", "0x65a90d900620b00719d0063bc00219d0d419c19b00c20b0060d719f0d6", "0x620b00600259200200220b0060d90063bd00200220b0060020090021a1", "0x611b0020df00620b0060c300611b0021a500620b00619b00600c0020db", "0x1a400618f0021a41a300720b0061a60df1a50095aa0021a600620b0060db", "0x620b0061b20060be00200220b0060020090021ad0065ab1b200620b007", "0x64500021ba00620b0060d400612b0021b800620b00619c0060160021ae", "0xea1bd1ba1b800c4510020ea00620b0061ae00611b0021bd00620b0060b5", "0x20090021bf0065ac0ec00620b0070e70064520020e70e51b400920b006", "0x200220b0061c10060330021c10ef00720b0060ec00645300200220b006", "0x20b0061a300600c0021c500620b0060b30ef0cb0ca0c90c80cf18101412a", "0x410020ce00620b0060e500612b00218000620b0061b40060160020a8006", "0xf20060fa0021c80f40f200920b00615400659e0020ab00620b0061c5006", "0xf0021ca00620b0061c800605300200220b0060f400604d00200220b006", "0x70f80060770020f81d400720b0061d60060760021d600620b0061ca006", "0x1ef00620b0061d400601b00200220b0060020090020fa0065ad1eb00620b", "0x60c40021f60fe00720b0060fc00601c0020fc00620b0061ef006019002", "0x1f91f800720b00610000601c00210000620b00600206500200220b0060fe", "0x61f90060540022f600620b0061f600605400200220b0061f80060c4002", "0x5ae00220b0071032f60070290022f600620b0062f600611b00210300620b", "0x20b0061fb00602b0021fb00620b00600202a00200220b006002009002002", "0x60020090020025af00600202d00220600620b0061ff00602c0021ff006", "0x602c00230000620b00600000602e00200000620b00600202a00200220b", "0x620b00630400602c00230400620b00620600602f00220600620b006300", "0x3300200220b0060020090023070065b030500620b007304006030002304", "0x20b00630800604d00230930800720b0061eb00613000200220b006305006", "0x604d00230c30b00720b00630a00613000230a00620b0060020ef002002", "0x30f00720b00630e00613000230e00620b0063090061b200200220b00630b", "0x31100613000231100620b00630c0061b200200220b00630f00604d002310", "0x31400620b0063100061b200200220b00631200604d00231331200720b006", "0x604b00231600620b0063153140071c100231500620b0063130061b2002", "0x20b0060020090023170065b100220b0073160061c500231600620b006316", "0x31a00602c00231a00620b00631900602e00231900620b00600202a002002", "0x3170060f200200220b0060020090020025b200600202d00231b00620b006", "0x2c00232000620b00631c00602b00231c00620b00600202a00200220b006", "0x20b00632100602c00232100620b00631b00602f00231b00620b006320006", "0x3000232200620b00632200602c00232200620b00632100602f002321006", "0x632600603300200220b0060020090023280065b332600620b007322006", "0x32c32b01420b00632a00637100232a32900720b0060ab00607f00200220b", "0x220b00632c00639b00200220b00632b00639500233433321233233132d", "0x20b00621200639700200220b00633200639800200220b006331006399002", "0x618000601600200220b00633400620c00200220b006333006396002002", "0x233b00620b00632d0063d300221100620b0060ce00612b00233900620b", "0x5b433d00620b00733700615100233733633500920b00633b2113390093d4", "0x34000613000234000620b00633d00615200200220b00600200900233f006", "0x221000620b0060020ef00200220b00634200604d00234334200720b006", "0x63430061b200200220b00634500604d00234634500720b006210006130", "0x200220b00634800604d00234934800720b00634700613000234700620b", "0x34b00604d00234c34b00720b00634a00613000234a00620b0063460061b2", "0x234e00620b00634c0061b200234d00620b0063490061b200200220b006", "0x34f0061c500234f00620b00634f00604b00234f00620b00634e34d0071c1", "0x235100620b00600202a00200220b0060020090023500065b500220b007", "0x5b600600202d00235300620b00635200602c00235200620b00635100602e", "0x620b00600202a00200220b0063500060f200200220b006002009002002", "0x602f00235300620b00635400602c00235400620b00620f00602b00220f", "0x620b00635500602f00235500620b00635500602c00235500620b006353", "0x35a0065b735700620b00735600603000235600620b00635600602c002356", "0x200220b00635700603300200220b00600211e00200220b006002009002", "0x600612c00236900620b0060a800600c00235c35b00720b00632900607f", "0x37100620b00633600612b00236f00620b00633500601600236e00620b006", "0x1000600f00237300620b00600f00604b00237200620b00635c006041002", "0x36536136001620b00637437337237136f36e3690105b800237400620b006", "0x200220b0060020090023780065b920e00620b0073680060ed002368366", "0x637a00602c00237a00620b00637900602f00237900620b00620e00608e", "0x220b00600200900237c0065ba37b00620b00737a00603000237a00620b", "0x637d35b00748400237d00620b00600202a00200220b00637b006033002", "0x238000620b00636000600c00237f00620b00637e00648500237e00620b", "0x636600612b00238200620b00636500601600238100620b00636100612c", "0x900238538338238138001600638500620b00637f00644c00238300620b", "0x13100200220b00635b00604700200220b00637c00603300200220b006002", "0x38900620b00638900604b00238900620b0060025bb00238800620b006002", "0x20d00705d00220d00620b00600213500238a00620b00638938800705b002", "0x620b00636000600c00238c00620b00638b00644b00238b00620b00638a", "0x612b00238f00620b00636500601600238e00620b00636100612c00238d", "0x39239138f38e38d01600639200620b00638c00644c00239100620b006366", "0x620b00637800644b00200220b00635b00604700200220b006002009002", "0x601600239600620b00636100612c00220c00620b00636000600c002395", "0x620b00639500644c00239800620b00636600612b00239700620b006365", "0x220b00600211e00200220b00600200900239939839739620c016006399", "0x20b00600f00604d00200220b00601000606100200220b00635a006033002", "0x20b0060024bd00239a00620b00600213100200220b006329006047002002", "0x239c00620b00639b39a00705b00239b00620b00639b00604b00239b006", "0x639e00644b00239e00620b00639c39d00705d00239d00620b006002135", "0x23a100620b00600600612c0023a000620b0060a800600c00239f00620b", "0x639f00644c0023a300620b00633600612b0023a200620b006335006016", "0x600211e00200220b0060020090023a43a33a23a13a00160063a400620b", "0x32900604700200220b00600f00604d00200220b00601000606100200220b", "0x23a600620b0060a800600c0023a500620b00633f00644b00200220b006", "0x633600612b0023a800620b0063350060160023a700620b00600600612c", "0x90023aa3a93a83a73a60160063aa00620b0063a500644c0023a900620b", "0x606100200220b00632800603300200220b00600211e00200220b006002", "0x13100200220b0060ab00604700200220b00600f00604d00200220b006010", "0x3ac00620b0063ac00604b0023ac00620b0060023f60023ab00620b006002", "0x3ae00705d0023ae00620b0060021350023ad00620b0063ac3ab00705b002", "0x620b0060a800600c0023b000620b0063af00644b0023af00620b0063ad", "0x612b0023b300620b0061800060160023b200620b00600600612c0023b1", "0x3b53b43b33b23b10160063b500620b0063b000644c0023b400620b0060ce", "0x200220b00630700603300200220b00600211e00200220b006002009002", "0x220b0060ab00604700200220b00600f00604d00200220b006010006061", "0x620b0060025bc0023b600620b00600213100200220b0061eb00604d002", "0x1350023b800620b0063b73b600705b0023b700620b0063b700604b0023b7", "0x20b0063ba00644b0023ba00620b0063b83b900705d0023b900620b006002", "0x160023bd00620b00600600612c0023bc00620b0060a800600c0023bb006", "0x20b0063bb00644c0023bf00620b0060ce00612b0023be00620b006180006", "0x20b00600211e00200220b0060020090023c03bf3be3bd3bc0160063c0006", "0x600f00604d00200220b00601000606100200220b0060fa006033002002", "0x600213100200220b0061d400606100200220b0060ab00604700200220b", "0x5b0023c200620b0063c200604b0023c200620b0060025bc0023c100620b", "0x63c33c400705d0023c400620b0060021350023c300620b0063c23c1007", "0x23c700620b0060a800600c0023c600620b0063c500644b0023c500620b", "0x60ce00612b0023c900620b0061800060160023c800620b00600600612c", "0x90022173ca3c93c83c701600621700620b0063c600644c0023ca00620b", "0x606100200220b0061540065bd00200220b00600211e00200220b006002", "0x39500200220b0060b300620c00200220b00600f00604d00200220b006010", "0x200220b0060ca00639800200220b0060cb00639700200220b006181006", "0x220b0060cf00639b00200220b0060c800639a00200220b0060c9006399", "0x600612c0023cc00620b0061a300600c0023cb00620b0061bf00644b002", "0x3ce00620b0060e500612b00221800620b0061b40060160023cd00620b006", "0x20b0060020090023cf3ce2183cd3cc0160063cf00620b0063cb00644c002", "0x20b00601000606100200220b0061540065bd00200220b00600211e002002", "0x60cf00639b00200220b0060c800639a00200220b00600f00604d002002", "0xcb00639700200220b00618100639500200220b0060b300620c00200220b", "0x639600200220b0060c900639900200220b0060ca00639800200220b006", "0x3d100620b0061a300600c0023d000620b0061ad00644b00200220b0060b5", "0xd400612b0023d300620b00619c0060160023d200620b00600600612c002", "0x23d53d43d33d23d10160063d500620b0063d000644c0023d400620b006", "0x6100200220b0061540065bd00200220b00600211e00200220b006002009", "0x200220b0060c800639a00200220b00600f00604d00200220b006010006", "0x220b00618100639500200220b0060b300620c00200220b0060cf00639b", "0x20b0060c900639900200220b0060ca00639800200220b0060cb006397002", "0x61a100644b00200220b0060c30060c400200220b0060b5006396002002", "0x23d800620b00600600612c0023d700620b00619b00600c0023d600620b", "0x63d600644c0023da00620b0060d400612b0023d900620b00619c006016", "0x600211e00200220b0060020090023db3da3d93d83d70160063db00620b", "0xf00604d00200220b00601000606100200220b0061540065bd00200220b", "0x639b00200220b0060b500639600200220b0060c800639a00200220b006", "0x39700200220b00618100639500200220b0060b300620c00200220b0060cf", "0x200220b0060c900639900200220b0060ca00639800200220b0060cb006", "0x600600612c0023dd00620b0060b700600c0023dc00620b00619000644b", "0x23e000620b0060ba00612b0023df00620b0060b90060160023de00620b", "0x220b0060020090023e13e03df3de3dd0160063e100620b0063dc00644c", "0x20b0060a000635a0023e200620b00600222100200220b0060a40060f2002", "0x3e300620b0063e300604b0023e300620b0063e23e40071c10023e40a0007", "0xa000604d00200220b0060020090023e50065be00220b0073e30061c5002", "0x23e600620b0063e600602c0023e600620b00601400602f00200220b006", "0x3e700603300200220b0060020090023e80065bf3e700620b0073e6006030", "0x23ea00620b00601b0060160023e900620b00616100600c00200220b006", "0x5c000600202d0023ec00620b00600c0060410023eb00620b00601500612b", "0x20b00600c00637100200220b0063e800603300200220b006002009002002", "0xc0023f63f500720b0063f30065a50023f43f33f23f13f03ef3ee3ed014", "0x20b00601500612b0023fc00620b00601b0060160023fb00620b006161006", "0xc20b0063fe3fd3fc3fb00c5370023fe00620b0063f60064500023fd006", "0x20b0060020090023ff0065c121b00620b0073fa00618f0023fa3f93f83f7", "0x601600243d00620b0063f700600c00240000620b00621b0060be002002", "0x720b0064000065a700243e00620b0063f900612b00221a00620b0063f8", "0xc20b00643f43e21a43d00c5a800243f00620b00643f00611b00243f400", "0x20b0060020090024410065c244000620b00743c0063bc00243c403402401", "0x640100600c00244200620b00600259200200220b0064400063bd002002", "0x244700620b00644200611b00244600620b00640000611b00244500620b", "0x65c344800620b00744400618f00244444300720b0064474464450095aa", "0x640200601600244a00620b0064480060be00200220b006002009002449", "0x244f00620b0063f500645000244e00620b00640300612b00221900620b", "0x44d44c44b00920b00645044f44e21900c45100245000620b00644a00611b", "0x645300200220b0060020090024520065c445100620b00744d006452002", "0x3f03ef3ee3ed01412a00200220b00645400603300245445300720b006451", "0x44b0060160023e900620b00644300600c00245500620b0063f44533f23f1", "0x3ec00620b0064550060410023eb00620b00644c00612b0023ea00620b006", "0x604d00200220b0064560060fa00245845745600920b00615400659e002", "0x47f00720b00645900601c00245900620b00645800601900200220b006457", "0x648100601c00248100620b00600206500200220b00647f0060c4002480", "0x249b00620b00648000605400200220b0064840060c400248548400720b", "0x49c49b00702900249b00620b00649b00611b00249c00620b006485006054", "0x2b00249e00620b00600202a00200220b0060020090020025c500220b007", "0x25c600600202d00249f00620b00621600602c00221600620b00649e006", "0x620b0064a000602e0024a000620b00600202a00200220b006002009002", "0x602c0024b600620b00649f00602f00249f00620b0064b500602c0024b5", "0x60020090024b90065c74b800620b0074b60060300024b600620b0064b6", "0x3710024bb4ba00720b0063ec00607f00200220b0064b800603300200220b", "0x220b0064bd0063950024ea4d84d74d64d34d24c84bd01420b0064bb006", "0x20b0064d600639800200220b0064d300639900200220b0064c800639b002", "0x64ea00620c00200220b0064d800639600200220b0064d7006397002002", "0x3d30024fb00620b0063eb00612b0024fa00620b0063ea00601600200220b", "0x1510024f42154eb00920b0064fc4fb4fa0093d40024fc00620b0064d2006", "0x650100615200200220b00600200900250d0065c850100620b0074f4006", "0x200220b00650f00604d00252850f00720b00650e00613000250e00620b", "0x652900604d00252a52900720b00621400613000221400620b0060020ef", "0x252d52c00720b00652b00613000252b00620b0065280061b200200220b", "0x20b00652e00613000252e00620b00652a0061b200200220b00652c00604d", "0x1b200253100620b00652d0061b200200220b00652f00604d00253052f007", "0x653300604b00253300620b0065325310071c100253200620b006530006", "0x200220b0060020090025340065c900220b0075330061c500253300620b", "0x20b00653600602c00253600620b00653500602e00253500620b00600202a", "0x20b0065340060f200200220b0060020090020025ca00600202d002537006", "0x53a00602c00253a00620b00653900602b00253900620b00600202a002002", "0x21300620b00621300602c00221300620b00653700602f00253700620b006", "0x53b00603000253b00620b00653b00602c00253b00620b00621300602f002", "0x220b00653c00603300200220b00600200900253d0065cb53c00620b007", "0x65450063fb00254854754654554454354254101420b0064ba006371002", "0x56800620b0064eb00601600256700620b0063e900600c00255054d00720b", "0x56700c3fd00256e00620b0065500063fc00256d00620b00621500612b002", "0x65cc56f00620b0075660060c800256655f55655300c20b00656e56d568", "0x65720063fe00257200620b00656f0060c900200220b006002009002571", "0x57900720b00657600613000200220b00657400634900257757657400920b", "0x657b00613000257b00620b0060023f700200220b00657900604d00257a", "0x257e00620b00657a0061b200200220b00657c00604d00257d57c00720b", "0x58000604b00258000620b00657f57e0071c100257f00620b00657d0061b2", "0x220b0060020090025810065cd00220b0075800061c500258000620b006", "0x658400602c00258400620b00658300602e00258300620b00600202a002", "0x65810060f200200220b0060020090020025ce00600202d00258500620b", "0x602c00258800620b00658600602b00258600620b00600202a00200220b", "0x620b00659000602c00259000620b00658500602f00258500620b006588", "0x3300200220b0060020090025920065cf59100620b007590006030002590", "0x20b00659600604d00259759600720b00657700613000200220b006591006", "0x604d00259b59a00720b00659800613000259800620b0060020ef002002", "0x59d00720b00659c00613000259c00620b0065970061b200200220b00659a", "0x59f00613000259f00620b00659b0061b200200220b00659d00604d00259e", "0x5a700620b00659e0061b200200220b0065a100604d0025a55a100720b006", "0x604b0025aa00620b0065a85a70071c10025a800620b0065a50061b2002", "0x20b0060020090025b80065d000220b0075aa0061c50025aa00620b0065aa", "0x5bc00602c0025bc00620b0065bb00602e0025bb00620b00600202a002002", "0x5b80060f200200220b0060020090020025d100600202d0025bd00620b006", "0x2c0025d200620b00622100602b00222100620b00600202a00200220b006", "0x20b0065d300602c0025d300620b0065bd00602f0025bd00620b0065d2006", "0x300025d400620b0065d400602c0025d400620b0065d300602f0025d3006", "0x20b00600211e00200220b0060020090025d60065d522200620b0075d4006", "0x654854754654d54454354254101412a00200220b006222006033002002", "0x5da00620b00655300600c0025d95d800720b0065d700607f0025d700620b", "0x55f00612b0025dc00620b0065560060160025db00620b00600600612c002", "0x5df00620b00600f00604b0025de00620b0065d90060410025dd00620b006", "0x20b0065e05df5de5dd5dc5db5da0105b80025e000620b00601000600f002", "0x20b0075e50060ed0025d800620b0065d80060410025e55e45e35e25e1016", "0x25e900620b0065e600608e00200220b0060020090025e80065e75e6006", "0x75ea0060300025ea00620b0065ea00602c0025ea00620b0065e900602f", "0x200220b0065eb00603300200220b0060020090025ed0065ec5eb00620b", "0x65ef0064850025ef00620b0065ee5d80074840025ee00620b00600202a", "0x25f200620b0065e200612c0025f100620b0065e100600c0025f000620b", "0x65f000644c0025f400620b0065e400612b0025f300620b0065e3006016", "0x5ed00603300200220b0060020090025f55f45f35f25f10160065f500620b", "0x25bb0025f600620b00600213100200220b0065d800604700200220b006", "0x620b0065f75f600705b0025f700620b0065f700604b0025f700620b006", "0x644b0025fa00620b0065f85f900705d0025f900620b0060021350025f8", "0x620b0065e200612c0025fc00620b0065e100600c0025fb00620b0065fa", "0x644c0025ff00620b0065e400612b0025fe00620b0065e30060160025fd", "0x4700200220b0060020090026005ff5fe5fd5fc01600660000620b0065fb", "0x620b0065e100600c00260100620b0065e800644b00200220b0065d8006", "0x612b00260400620b0065e300601600260300620b0065e200612c002602", "0x60660560460360201600660600620b00660100644c00260500620b0065e4", "0x200220b0065d600603300200220b00600211e00200220b006002009002", "0x220b00654800620c00200220b00600f00604d00200220b006010006061", "0x20b00654d00639800200220b00654600639700200220b006547006396002", "0x654200639b00200220b00654300639a00200220b006544006399002002", "0x60023f600260700620b00600213100200220b00654100639500200220b", "0x60900620b00660860700705b00260800620b00660800604b00260800620b", "0x60b00644b00260b00620b00660960a00705d00260a00620b006002135002", "0x60e00620b00600600612c00260d00620b00655300600c00260c00620b006", "0x60c00644c00261000620b00655f00612b00260f00620b006556006016002", "0x211e00200220b00600200900261161060f60e60d01600661100620b006", "0x604d00200220b00601000606100200220b00659200603300200220b006", "0x39700200220b00654700639600200220b00654800620c00200220b00600f", "0x200220b00654400639900200220b00654d00639800200220b006546006", "0x220b00654100639500200220b00654200639b00200220b00654300639a", "0x620b00600250100222600620b00600213100200220b00657700604d002", "0x13500261300620b00661222600705b00261200620b00661200604b002612", "0x20b00661500644b00261500620b00661361400705d00261400620b006002", "0x1600261800620b00600600612c00261700620b00655300600c002616006", "0x20b00661600644c00222500620b00655f00612b00261900620b006556006", "0x20b00600211e00200220b00600200900261a22561961861701600661a006", "0x654800620c00200220b00600f00604d00200220b006010006061002002", "0x54d00639800200220b00654600639700200220b00654700639600200220b", "0x639b00200220b00654300639a00200220b00654400639900200220b006", "0x261b00620b00657100644b00200220b00654100639500200220b006542", "0x655600601600261d00620b00600600612c00261c00620b00655300600c", "0x662000620b00661b00644c00261f00620b00655f00612b00261e00620b", "0x3300200220b00600211e00200220b00600200900262061f61e61d61c016", "0x200220b00600f00604d00200220b00601000606100200220b00653d006", "0x22400620b0060024bd00262100620b00600213100200220b0064ba006047", "0x213500262200620b00622462100705b00222400620b00622400604b002", "0x620b00662400644b00262400620b00662262300705d00262300620b006", "0x601600262700620b00600600612c00262600620b0063e900600c002625", "0x620b00662500644c00262900620b00621500612b00262800620b0064eb", "0x220b00600211e00200220b00600200900262a62962862762601600662a", "0x20b0064ba00604700200220b00600f00604d00200220b006010006061002", "0x612c00262c00620b0063e900600c00262b00620b00650d00644b002002", "0x620b00621500612b00262e00620b0064eb00601600262d00620b006006", "0x600200900263062f62e62d62c01600663000620b00662b00644c00262f", "0x601000606100200220b0064b900603300200220b00600211e00200220b", "0x600213100200220b0063ec00604700200220b00600f00604d00200220b", "0x5b00263200620b00663200604b00263200620b0060025bc00263100620b", "0x663363400705d00263400620b00600213500263300620b006632631007", "0x263600620b0063e900600c00222300620b00663500644b00263500620b", "0x63eb00612b00263800620b0063ea00601600263700620b00600600612c", "0x900263a63963863763601600663a00620b00622300644c00263900620b", "0x606100200220b0061540065bd00200220b00600211e00200220b006002", "0x39500200220b0063f400620c00200220b00600f00604d00200220b006010", "0x200220b0063f100639800200220b0063f200639700200220b0063ed006", "0x220b0063ee00639b00200220b0063ef00639a00200220b0063f0006399", "0x600612c00263c00620b00644300600c00263b00620b00645200644b002", "0x63f00620b00644c00612b00263e00620b00644b00601600263d00620b006", "0x20b00600200900264063f63e63d63c01600664000620b00663b00644c002", "0x20b00601000606100200220b0061540065bd00200220b00600211e002002", "0x63ee00639b00200220b0063ef00639a00200220b00600f00604d002002", "0x3f200639700200220b0063ed00639500200220b0063f400620c00200220b", "0x639600200220b0063f000639900200220b0063f100639800200220b006", "0x64200620b00644300600c00264100620b00644900644b00200220b0063f5", "0x40300612b00264400620b00640200601600264300620b00600600612c002", "0x264664564464364201600664600620b00664100644c00264500620b006", "0x6100200220b0061540065bd00200220b00600211e00200220b006002009", "0x200220b0063ef00639a00200220b00600f00604d00200220b006010006", "0x220b0063ed00639500200220b0063f400620c00200220b0063ee00639b", "0x20b0063f000639900200220b0063f100639800200220b0063f2006397002", "0x644100644b00200220b0064000060c400200220b0063f5006396002002", "0x264900620b00600600612c00264800620b00640100600c00264700620b", "0x664700644c00264b00620b00640300612b00264a00620b006402006016", "0x600211e00200220b00600200900264c64b64a64964801600664c00620b", "0xf00604d00200220b00601000606100200220b0061540065bd00200220b", "0x639b00200220b0063f500639600200220b0063ef00639a00200220b006", "0x39700200220b0063ed00639500200220b0063f400620c00200220b0063ee", "0x200220b0063f000639900200220b0063f100639800200220b0063f2006", "0x600600612c00222000620b0063f700600c00264d00620b0063ff00644b", "0x265000620b0063f900612b00264f00620b0063f800601600264e00620b", "0x220b00600200900265165064f64e22001600665100620b00664d00644c", "0x20b0060a000635a00265200620b0060025d200200220b0063e50060f2002", "0x65400620b00665400604b00265400620b0066526530071c10026530a0007", "0xa000604d00200220b00600200900265600665500220b0076540061c5002", "0x265700620b00665700602c00265700620b00601400602f00200220b006", "0x65800603300200220b00600200900265a00665965800620b007657006030", "0x265c00620b00601b00601600265b00620b00616100600c00200220b006", "0x65f00600202d00265e00620b00600c00604100265d00620b00601500612b", "0x20b00600c00637100200220b00665a00603300200220b006002009002002", "0xc00266866700720b0066660065d300266621f665664663662661660014", "0x20b00601500612b00266a00620b00601b00601600266900620b006161006", "0xc20b00666c66b66a66900c53d00266c00620b00666800644d00266b006", "0x20b00600200900267300667267100620b00767000618f00267066f66e66d", "0x601600267400620b00666d00600c00221e00620b0066710060be002002", "0x720b00621e0065a700267600620b00666f00612b00267500620b00666e", "0xc20b00667767667567400c5a800267700620b00667700611b00267721e", "0x20b00600200900267e00667d67c00620b00767b0063bc00267b67a679678", "0x667800600c00267f00620b00600259200200220b00667c0063bd002002", "0x268200620b00667f00611b00268100620b00621e00611b00268000620b", "0x668668500620b00768400618f00268468300720b0066826816800095aa", "0x667900601600268800620b0066850060be00200220b006002009002687", "0x268b00620b00666700644d00268a00620b00667a00612b00268900620b", "0x21d68e68d00920b00668c68b68a68900c21900268c00620b00668800611b", "0x644f00200220b00600200900269100669068f00620b00721d00644e002", "0x66366266166001412a00200220b00669300603300269369200720b00668f", "0x68d00601600265b00620b00668300600c00269400620b00669221f665664", "0x65e00620b00669400604100265d00620b00668e00612b00265c00620b006", "0x604d00200220b0066950060fa00269769669500920b00615400659e002", "0x69900620b00669800600f00269800620b00669700605300200220b006696", "0x69d00669c69b00620b00769a00607700269a21c00720b006699006076002", "0x20b00669e00601900269e00620b00621c00601b00200220b006002009002", "0x6500200220b0066a00060c40026a16a000720b00669f00601c00269f006", "0x20b0066a30060c40026a46a300720b0066a200601c0026a200620b006002", "0x611b0026a600620b0066a40060540026a500620b0066a1006054002002", "0x20b0060020090020026a700220b0076a66a50070290026a500620b0066a5", "0x6a900602c0026a900620b0066a800602b0026a800620b00600202a002002", "0x600202a00200220b0060020090020026ab00600202d0026aa00620b006", "0x26aa00620b0066ad00602c0026ad00620b0066ac00602e0026ac00620b", "0x76ae0060300026ae00620b0066ae00602c0026ae00620b0066aa00602f", "0x200220b0066af00603300200220b0060020090026b10066b06af00620b", "0x665e00637100200220b0060020090026b30066b200220b00769b0061c5", "0x26bd6bc00720b0066b70063dd0026bb6ba6b96b86b76b66b56b401420b", "0x66bd0063de0026bf00620b00665d00612b0026be00620b00665c006016", "0x76c30061510026c36c26c100920b0066c06bf6be0093df0026c000620b", "0x6c700620b0066c400615200200220b0060020090026c60066c56c400620b", "0x60020ef00200220b0066c800604d0026c96c800720b0066c7006130002", "0x200220b0066cb00604d0026cc6cb00720b0066ca0061300026ca00620b", "0x6ce6cd0071c10026ce00620b0066cc0061b20026cd00620b0066c90061b2", "0x6d000220b0076cf0061c50026cf00620b0066cf00604b0026cf00620b006", "0x622a00602e00222a00620b00600202a00200220b0060020090026d1006", "0x20090020026d400600202d0026d300620b0066d200602c0026d200620b", "0x602b0026d500620b00600202a00200220b0066d10060f200200220b006", "0x620b0066d300602f0026d300620b00622b00602c00222b00620b0066d5", "0x6d90066d86d700620b0076d60060300026d600620b0066d600602c0026d6", "0x6bc6b66b56b401412a00200220b0066d700603300200220b006002009002", "0x6c200612b0026db00620b0066c10060160026da00620b0066bb6ba6b96b8", "0x90020026de00600202d0026dd00620b0066da0060410026dc00620b006", "0x606100200220b0066d900603300200220b00600211e00200220b006002", "0x39600200220b0066bb00620c00200220b00600f00604d00200220b006010", "0x200220b0066b800639800200220b0066b900639700200220b0066ba006", "0x220b0066b500639b00200220b0066b600639a00200220b0066bc006399", "0x620b0060023e10026df00620b00600213100200220b0066b4006395002", "0x1350026e100620b0066e06df00705b0026e000620b0066e000604b0026e0", "0x20b0066e300644b0026e300620b0066e16e200705d0026e200620b006002", "0x160026e600620b00600600612c0026e500620b00665b00600c0026e4006", "0x20b0066e400644c0026e800620b0066c200612b0026e700620b0066c1006", "0x20b00600211e00200220b0060020090026e96e86e76e66e50160066e9006", "0x66bb00620c00200220b00600f00604d00200220b006010006061002002", "0x6b800639800200220b0066b900639700200220b0066ba00639600200220b", "0x639b00200220b0066b600639a00200220b0066bc00639900200220b006", "0x26ea00620b0066c600644b00200220b0066b400639500200220b0066b5", "0x66c10060160026ec00620b00600600612c0026eb00620b00665b00600c", "0x66ef00620b0066ea00644c0026ee00620b0066c200612b0026ed00620b", "0x200220b0066b30060f200200220b0060020090026ef6ee6ed6ec6eb016", "0x665e0060410026dc00620b00665d00612b0026db00620b00665c006016", "0x6f201420b0066f10063710026f16f000720b0066dd00607f0026dd00620b", "0x20b0066f300639b00200220b0066f20063950026f96f86f76f66f56f46f3", "0x66f700639700200220b0066f600639800200220b0066f5006399002002", "0x6db00601600200220b0066f900620c00200220b0066f800639600200220b", "0x6fc00620b0066f40063d30026fb00620b0066dc00612b0026fa00620b006", "0x70000620b0076ff0061510026ff6fe6fd00920b0066fc6fb6fa0093d4002", "0x613000270300620b00670000615200200220b006002009002702006701", "0x70600620b0060020ef00200220b00670400604d00270570400720b006703", "0x7050061b200200220b00670700604d00270870700720b006706006130002", "0x220b00670900604d00270a70900720b00622e00613000222e00620b006", "0x604d00270d70c00720b00670b00613000270b00620b0067080061b2002", "0x70f00620b00670d0061b200270e00620b00670a0061b200200220b00670c", "0x61c500222d00620b00622d00604b00222d00620b00670f70e0071c1002", "0x71200620b00600202a00200220b00600200900271100671000220b00722d", "0x600202d00271400620b00671300602c00271300620b00671200602e002", "0x20b00600202a00200220b0067110060f200200220b006002009002002715", "0x2f00271400620b00671700602c00271700620b00671600602b002716006", "0x20b00671800602f00271800620b00671800602c00271800620b006714006", "0x671b71a00620b00771900603000271900620b00671900602c002719006", "0x220b00671a00603300200220b00600211e00200220b00600200900271c", "0x612c00271f00620b00665b00600c00271e71d00720b0066f000607f002", "0x620b0066fe00612b00272100620b0066fd00601600272000620b006006", "0x600f00272400620b00600f00604b00272300620b00671e006041002722", "0x72772601620b00672572472372272172071f0105d400272500620b006010", "0x220b00600200900272c00672b72a00620b0077290060ed00272922c728", "0x72e00602c00272e00620b00672d00602f00272d00620b00672a00608e002", "0x20b00600200900273100673072f00620b00772e00603000272e00620b006", "0x73271d00748400273200620b00600202a00200220b00672f006033002002", "0x73500620b00672600600c00273400620b00673300648500273300620b006", "0x22c00612b00222900620b00672800601600273600620b00672700612c002", "0x273873722973673501600673800620b00673400644c00273700620b006", "0x200220b00671d00604700200220b00673100603300200220b006002009", "0x620b00673a00604b00273a00620b00600222200273900620b006002131", "0x705d00273c00620b00600213500273b00620b00673a73900705b00273a", "0x20b00672600600c00273e00620b00673d00644b00273d00620b00673b73c", "0x12b00274100620b00672800601600274000620b00672700612c00273f006", "0x74274174073f01600674300620b00673e00644c00274200620b00622c006", "0x20b00672c00644b00200220b00671d00604700200220b006002009002743", "0x1600274600620b00672700612c00274500620b00672600600c002744006", "0x20b00674400644c00274700620b00622c00612b00222800620b006728006", "0x20b00600211e00200220b006002009002748747228746745016006748006", "0x600f00604d00200220b00601000606100200220b00671c006033002002", "0x60024bd00274900620b00600213100200220b0066f000604700200220b", "0x74b00620b00674a74900705b00274a00620b00674a00604b00274a00620b", "0x74d00644b00274d00620b00674b74c00705d00274c00620b006002135002", "0x74f00620b00600600612c00222700620b00665b00600c00274e00620b006", "0x74e00644c00275100620b0066fe00612b00275000620b0066fd006016002", "0x211e00200220b00600200900275275175074f22701600675200620b006", "0x604700200220b00600f00604d00200220b00601000606100200220b006", "0x75400620b00665b00600c00275300620b00670200644b00200220b0066f0", "0x6fe00612b00275600620b0066fd00601600275500620b00600600612c002", "0x275875775675575401600675800620b00675300644c00275700620b006", "0x6100200220b0066b100603300200220b00600211e00200220b006002009", "0x200220b00665e00604700200220b00600f00604d00200220b006010006", "0x75a00620b0060025bc00275900620b00600213100200220b00669b00604d", "0x213500275b00620b00675a75900705b00275a00620b00675a00604b002", "0x620b00675d00644b00275d00620b00675b75c00705d00275c00620b006", "0x601600276000620b00600600612c00275f00620b00665b00600c00275e", "0x620b00675e00644c00276200620b00665d00612b00276100620b00665c", "0x220b00600211e00200220b00600200900276376276176075f016006763", "0x20b00600f00604d00200220b00601000606100200220b00669d006033002", "0x20b00600213100200220b00621c00606100200220b00665e006047002002", "0x705b00276500620b00676500604b00276500620b0060025bc002764006", "0x20b00676676700705d00276700620b00600213500276600620b006765764", "0x12c00276a00620b00665b00600c00276900620b00676800644b002768006", "0x20b00665d00612b00276c00620b00665c00601600276b00620b006006006", "0x200900276e76d76c76b76a01600676e00620b00676900644c00276d006", "0x1000606100200220b0061540065bd00200220b00600211e00200220b006", "0x639600200220b00666000639500200220b00600f00604d00200220b006", "0x39900200220b00666400639800200220b00666500639700200220b00621f", "0x200220b00666100639b00200220b00666200639a00200220b006663006", "0x600600612c00277000620b00668300600c00276f00620b00669100644b", "0x277300620b00668e00612b00277200620b00668d00601600277100620b", "0x220b00600200900277477377277177001600677400620b00676f00644c", "0x220b00601000606100200220b0061540065bd00200220b00600211e002", "0x20b00666100639b00200220b00666200639a00200220b00600f00604d002", "0x666500639700200220b00621f00639600200220b006660006395002002", "0x66700620c00200220b00666300639900200220b00666400639800200220b", "0x277600620b00668300600c00277500620b00668700644b00200220b006", "0x667a00612b00277700620b00667900601600223100620b00600600612c", "0x900277977877723177601600677900620b00677500644c00277800620b", "0x606100200220b0061540065bd00200220b00600211e00200220b006002", "0x39b00200220b00666200639a00200220b00600f00604d00200220b006010", "0x200220b00621f00639600200220b00666000639500200220b006661006", "0x220b00666300639900200220b00666400639800200220b006665006397", "0x20b00667e00644b00200220b00621e0060c400200220b00666700620c002", "0x1600277b00620b00600600612c00277a00620b00667800600c002232006", "0x20b00623200644c00277d00620b00667a00612b00277c00620b006679006", "0x20b00600211e00200220b00600200900277e77d77c77b77a01600677e006", "0x600f00604d00200220b00601000606100200220b0061540065bd002002", "0x66100639b00200220b00666700620c00200220b00666200639a00200220b", "0x639700200220b00621f00639600200220b00666000639500200220b006", "0x44b00200220b00666300639900200220b00666400639800200220b006665", "0x20b00600600612c00278000620b00666d00600c00277f00620b006673006", "0x44c00278300620b00666f00612b00278200620b00666e006016002781006", "0x200220b00600200900278478378278178001600678400620b00677f006", "0x720b0060a000635a00278500620b0060025d600200220b0066560060f2", "0x278700620b00678700604b00278700620b0067857860071c10027860a0", "0x60a000604d00200220b00600200900278900678800220b0077870061c5", "0x3000278a00620b00678a00602c00278a00620b00601400602f00200220b", "0x678b00603300200220b00600200900278d00678c78b00620b00778a006", "0x12b00278f00620b00601b00601600278e00620b00616100600c00200220b", "0x279200600202d00279100620b00600c00604100279000620b006015006", "0x1420b00600c00637100200220b00678d00603300200220b006002009002", "0x600c00279c79b00720b00679a0065d300279a799798797796795794793", "0x620b00601500612b00279e00620b00601b00601600279d00620b006161", "0x7a100c20b0067a079f79e79d00c53d0027a000620b00679c00644d00279f", "0x220b0060020090027a70067a67a500620b0077a400618f0027a47a37a2", "0x7a20060160027a900620b0067a100600c0027a800620b0067a50060be002", "0x7a800720b0067a80065a70027aa00620b0067a300612b00223500620b006", "0x7ac00c20b0067ab7aa2357a900c5a80027ab00620b0067ab00611b0027ab", "0x220b0060020090027b20067b17b000620b0077af0063bc0027af7ae7ad", "0x20b0067ac00600c0027b300620b00600259200200220b0067b00063bd002", "0x5aa0027b500620b0067b300611b0027b400620b0067a800611b002234006", "0x7ba0067b97b800620b0077b700618f0027b77b600720b0067b57b4234009", "0x20b0067ad0060160027bb00620b0067b80060be00200220b006002009002", "0x11b0027be00620b00679b00644d0027bd00620b0067ae00612b0027bc006", "0x27c27c17c000920b0067bf7be7bd7bc00c2190027bf00620b0067bb006", "0x7c300644f00200220b0060020090027c50067c47c300620b0077c200644e", "0x79779679579479301412a00200220b0062330060330022337c600720b006", "0x67c000601600278e00620b0067b600600c0027c700620b0067c6799798", "0x279100620b0067c700604100279000620b0067c100612b00278f00620b", "0x7c900604d00200220b0067c80060fa0021067c97c800920b00615400659e", "0x7cc7cb00720b0067ca00601c0027ca00620b00610600601900200220b006", "0x20b0067cd00601c0027cd00620b00600206500200220b0067cb0060c4002", "0x540027d000620b0067cc00605400200220b0067ce0060c40027cf7ce007", "0x77d17d00070290027d000620b0067d000611b0027d100620b0067cf006", "0x602b0027d300620b00600202a00200220b0060020090020027d200220b", "0x20027d600600202d0027d500620b0067d400602c0027d400620b0067d3", "0x7d800620b0067d700602e0027d700620b00600202a00200220b006002009", "0x7d900602c0027d900620b0067d500602f0027d500620b0067d800602c002", "0x20b0060020090022300067db7da00620b0077d90060300027d900620b006", "0x63710027dd7dc00720b00679100607f00200220b0067da006033002002", "0x200220b0067de0063950027e57e47e37e27e17e07df7de01420b0067dd", "0x220b0067e200639800200220b0067e100639900200220b0067df00639b", "0x20b0067e500620c00200220b0067e400639600200220b0067e3006397002", "0x63d30027e700620b00679000612b0027e600620b00678f006016002002", "0x61510027eb7ea7e900920b0067e87e77e60093d40027e800620b0067e0", "0x20b00622f00615200200220b0060020090027ed0067ec22f00620b0077eb", "0xef00200220b0067ef00604d0027f07ef00720b0067ee0061300027ee006", "0x20b0067f200604d0027f37f200720b0067f10061300027f100620b006002", "0x4d0027f67f500720b0067f40061300027f400620b0067f00061b2002002", "0x720b0067f70061300027f700620b0067f30061b200200220b0067f5006", "0x61b20027fa00620b0067f60061b200200220b0067f800604d0027f97f8", "0x20b0067fc00604b0027fc00620b0067fb7fa0071c10027fb00620b0067f9", "0x2a00200220b0060020090027fe0067fd00220b0077fc0061c50027fc006", "0x620b00680000602c00280000620b0067ff00602e0027ff00620b006002", "0x220b0067fe0060f200200220b00600200900200280200600202d002801", "0x680400602c00280400620b00680300602b00280300620b00600202a002", "0x280500620b00680500602c00280500620b00680100602f00280100620b", "0x780600603000280600620b00680600602c00280600620b00680500602f", "0x200220b00680700603300200220b00600200900280900680880700620b", "0x20b00680e0063fb00281181080f80e80d80c80b80a01420b0067dc006371", "0x281500620b0067e900601600281400620b00678e00600c002813812007", "0x81581400c3fd00281700620b0068130063fc00281600620b0067ea00612b", "0x81e00681d81c00620b00781b0060c800281b81a81981800c20b006817816", "0x20b00681f0063fe00281f00620b00681c0060c900200220b006002009002", "0x82482300720b00682100613000200220b006820006349002822821820009", "0x20b00682500613000282500620b00600200000200220b00682300604d002", "0x1b200282700620b0068240061b200200220b00682600604d00223a826007", "0x682900604b00282900620b0068288270071c100282800620b00623a006", "0x200220b00600200900223b00682a00220b0078290061c500282900620b", "0x20b00682c00602c00282c00620b00682b00602e00282b00620b00600202a", "0x20b00623b0060f200200220b00600200900200282e00600202d00282d006", "0x83000602c00283000620b00682f00602b00282f00620b00600202a002002", "0x83100620b00683100602c00283100620b00682d00602f00282d00620b006", "0x603300200220b00600200900283400683383200620b007831006030002", "0x720b00680b0063d600283580a00720b00680a0063d500200220b006832", "0x83880d00720b00680d0063d800283780c00720b00680c0063d700283680b", "0x3db00283a80f00720b00680f0063da00283981200720b0068120063d9002", "0x83501412a00283c81100720b0068110063dc00283b81000720b006810006", "0x1c500200220b00683d00604700283d00620b00683c83b83a839838837836", "0x20b00680d0063dd00200220b00600200900283f00683e00220b007822006", "0x284300620b00681a00612b00284200620b006819006016002841840007", "0x284784684500920b0068448438420093df00284400620b0068410063de", "0x84800615200200220b00600200900284a00684984800620b007847006151", "0x220b00684c00604d00284d84c00720b00684b00613000284b00620b006", "0x84f00604d00285084f00720b00684e00613000284e00620b0060020ef002", "0x285200620b0068500061b200285100620b00684d0061b200200220b006", "0x8530061c500285300620b00685300604b00285300620b0068528510071c1", "0x285600620b00600202a00200220b00600200900285500685400220b007", "0x85900600202d00285800620b00685700602c00285700620b00685600602e", "0x620b00600202a00200220b0068550060f200200220b006002009002002", "0x602f00285800620b00685b00602c00285b00620b00685a00602b00285a", "0x620b00785c00603000285c00620b00685c00602c00285c00620b006858", "0x1412a00200220b00685d00603300200220b00600200900285f00685e85d", "0x86100620b00684500601600286000620b00681181080f81284080c80b80a", "0x600202d00286300620b00686000604100286200620b00684600612b002", "0x20b00685f00603300200220b00600211e00200220b006002009002002864", "0x681100620c00200220b00600f00604d00200220b006010006061002002", "0x81200639800200220b00680f00639700200220b00681000639600200220b", "0x639b00200220b00680c00639a00200220b00684000639900200220b006", "0x3e100286500620b00600213100200220b00680a00639500200220b00680b", "0x20b00686686500705b00286600620b00686600604b00286600620b006002", "0x44b00286800620b00623f86700705d00286700620b00600213500223f006", "0x20b00600600612c00286a00620b00681800600c00286900620b006868006", "0x44c00223e00620b00684600612b00286c00620b00684500601600286b006", "0x200220b00600200900286d23e86c86b86a01600686d00620b006869006", "0x200220b00600f00604d00200220b00601000606100200220b00600211e", "0x220b00680f00639700200220b00681000639600200220b00681100620c", "0x20b00680c00639a00200220b00684000639900200220b006812006398002", "0x684a00644b00200220b00680a00639500200220b00680b00639b002002", "0x287000620b00600600612c00286f00620b00681800600c00286e00620b", "0x686e00644c00287200620b00684600612b00287100620b006845006016", "0x83f0060f200200220b00600200900223d87287187086f01600623d00620b", "0x1600287300620b00681181080f81280d80c80b80a01412a00200220b006", "0x20b00687300604100286200620b00681a00612b00286100620b006819006", "0x600c00287587400720b00686300607f00200220b00600211e002863006", "0x620b00686100601600287700620b00600600612c00287600620b006818", "0x604b00287a00620b00687500604100287900620b00686200612b002878", "0x8798788778760105d400287c00620b00601000600f00287b00620b00600f", "0x88388200620b0078810060ed00288188087f87e87d01620b00687c87b87a", "0x88400602f00288400620b00688200608e00200220b00600200900223c006", "0x88600620b00788500603000288500620b00688500602c00288500620b006", "0x600202a00200220b00688600603300200220b006002009002888006887", "0x88b00620b00688a00648500288a00620b00688987400748400288900620b", "0x87f00601600288d00620b00687e00612c00288c00620b00687d00600c002", "0x89000620b00688b00644c00288f00620b00688000612b00288e00620b006", "0x220b00688800603300200220b00600200900289088f88e88d88c016006", "0x620b00600222200289100620b00600213100200220b006874006047002", "0x13500289300620b00689289100705b00289200620b00689200604b002892", "0x20b00689500644b00289500620b00689389400705d00289400620b006002", "0x1600289800620b00687e00612c00289700620b00687d00600c002896006", "0x20b00689600644c00289900620b00688000612b00223900620b00687f006", "0x687400604700200220b00600200900289a89923989889701600689a006", "0x12c00289c00620b00687d00600c00289b00620b00623c00644b00200220b", "0x20b00688000612b00289e00620b00687f00601600289d00620b00687e006", "0x20090028a089f89e89d89c0160068a000620b00689b00644c00289f006", "0x1000606100200220b00683400603300200220b00600211e00200220b006", "0x639500200220b00680b00639b00200220b00600f00604d00200220b006", "0x39700200220b00681000639600200220b00681100620c00200220b00680a", "0x200220b00680c00639a00200220b00681200639800200220b00680f006", "0x8a100620b00600213100200220b00682200604d00200220b00680d006399", "0x8a28a100705b0028a200620b0068a200604b0028a200620b006002501002", "0x8a500620b0068a38a400705d0028a400620b0060021350028a300620b006", "0x600612c0028a700620b00681800600c0028a600620b0068a500644b002", "0x23800620b00681a00612b0028a900620b0068190060160028a800620b006", "0x20b0060020090028aa2388a98a88a70160068aa00620b0068a600644c002", "0x20b00600f00604d00200220b00601000606100200220b00600211e002002", "0x681100620c00200220b00680a00639500200220b00680b00639b002002", "0x81200639800200220b00680f00639700200220b00681000639600200220b", "0x644b00200220b00680d00639900200220b00680c00639a00200220b006", "0x620b00600600612c0028ac00620b00681800600c0028ab00620b00681e", "0x644c0028af00620b00681a00612b0028ae00620b0068190060160028ad", "0x11e00200220b0060020090028b08af8ae8ad8ac0160068b000620b0068ab", "0x4d00200220b00601000606100200220b00680900603300200220b006002", "0x28b100620b00600213100200220b0067dc00604700200220b00600f006", "0x68b28b100705b0028b200620b0068b200604b0028b200620b0060024bd", "0x28b400620b0062378b300705d0028b300620b00600213500223700620b", "0x600600612c0028b600620b00678e00600c0028b500620b0068b400644b", "0x28b900620b0067ea00612b0028b800620b0067e90060160028b700620b", "0x220b0060020090028ba8b98b88b78b60160068ba00620b0068b500644c", "0x220b00600f00604d00200220b00601000606100200220b00600211e002", "0x678e00600c0028bb00620b0067ed00644b00200220b0067dc006047002", "0x28be00620b0067e90060160028bd00620b00600600612c0028bc00620b", "0x8be8bd8bc0160068c000620b0068bb00644c0028bf00620b0067ea00612b", "0x20b00623000603300200220b00600211e00200220b0060020090028c08bf", "0x679100604700200220b00600f00604d00200220b006010006061002002", "0x8c200604b0028c200620b0060025bc0028c100620b00600213100200220b", "0x23600620b0060021350028c300620b0068c28c100705b0028c200620b006", "0x600c0028c500620b0068c400644b0028c400620b0068c323600705d002", "0x620b00678f0060160028c700620b00600600612c0028c600620b00678e", "0x8c60160068ca00620b0068c500644c0028c900620b00679000612b0028c8", "0x1540065bd00200220b00600211e00200220b0060020090028ca8c98c88c7", "0x639500200220b00600f00604d00200220b00601000606100200220b006", "0x39800200220b00679800639700200220b00679900639600200220b006793", "0x200220b00679500639a00200220b00679600639900200220b006797006", "0x20b0067b600600c0028cb00620b0067c500644b00200220b00679400639b", "0x12b0028ce00620b0067c00060160028cd00620b00600600612c0028cc006", "0x8cf8ce8cd8cc0160068d000620b0068cb00644c0028cf00620b0067c1006", "0x220b0061540065bd00200220b00600211e00200220b0060020090028d0", "0x20b00679500639a00200220b00600f00604d00200220b006010006061002", "0x679900639600200220b00679300639500200220b00679400639b002002", "0x79600639900200220b00679700639800200220b00679800639700200220b", "0xc0028d100620b0067ba00644b00200220b00679b00620c00200220b006", "0x20b0067ad0060160028d300620b00600600612c0028d200620b0067b6006", "0x160068d600620b0068d100644c0028d500620b0067ae00612b0028d4006", "0x65bd00200220b00600211e00200220b0060020090028d68d58d48d38d2", "0x39a00200220b00600f00604d00200220b00601000606100200220b006154", "0x200220b00679300639500200220b00679400639b00200220b006795006", "0x220b00679700639800200220b00679800639700200220b006799006396", "0x20b0067a80060c400200220b00679b00620c00200220b006796006399002", "0x612c0028d800620b0067ac00600c0028d700620b0067b200644b002002", "0x620b0067ae00612b0028da00620b0067ad0060160028d900620b006006", "0x60020090028dc8db8da8d98d80160068dc00620b0068d700644c0028db", "0x601000606100200220b0061540065bd00200220b00600211e00200220b", "0x79b00620c00200220b00679500639a00200220b00600f00604d00200220b", "0x639600200220b00679300639500200220b00679400639b00200220b006", "0x39900200220b00679700639800200220b00679800639700200220b006799", "0x620b0067a100600c0028dd00620b0067a700644b00200220b006796006", "0x612b0028e000620b0067a20060160028df00620b00600600612c0028de", "0x8e28e18e08df8de0160068e200620b0068dd00644c0028e100620b0067a3", "0x220b0061540065bd00200220b0067890060f200200220b006002009002", "0x8e300604d0028e48e300720b0060a000613000200220b0060140060d0002", "0x28e78e600720b0068e50061300028e500620b0060025d700200220b006", "0x20b0068e80061300028e800620b0068e40061b200200220b0068e600604d", "0x1300028eb00620b0068e70061b200200220b0068e900604d0028ea8e9007", "0x20b0068ea0061b200200220b0068ec00604d0028ed8ec00720b0068eb006", "0x28f000620b0068ef8ee0071c10028ef00620b0068ed0061b20028ee006", "0x20090028f20068f100220b0078f00061c50028f000620b0068f000604b", "0x2c0028f400620b0068f300602e0028f300620b00600202a00200220b006", "0xf200200220b0060020090020028f500600202d00224300620b0068f4006", "0x8f700620b0068f600602b0028f600620b00600202a00200220b0068f2006", "0x8f800602c0028f800620b00624300602f00224300620b0068f700602c002", "0x24400620b00624400602c00224400620b0068f800602f0028f800620b006", "0x603300200220b0060020090028fb0068fa8f900620b007244006030002", "0x600211e00200220b0060020090020028fc00600202d00200220b0068f9", "0x1000606100200220b00600c00604700200220b0068fb00603300200220b", "0x25d80028fd00620b00600213100200220b00600f00604d00200220b006", "0x620b0068fe8fd00705b0028fe00620b0068fe00604b0028fe00620b006", "0x644b00290100620b0068ff90000705d00290000620b0060021350028ff", "0x620b00600600612c00290300620b00616100600c00290200620b006901", "0x644c00290600620b00601500612b00290500620b00601b006016002904", "0xf200200220b00600200900290790690590490301600690700620b006902", "0x200220b0060140060d000200220b0061540065bd00200220b00609b006", "0x620b00601b00601600207f00620b00616100600c00200220b00600211e", "0x12c00290a00620b00607f00600c00290990800720b00600c00607f0020c7", "0x20b00601500612b00290c00620b0060c700601600290b00620b006006006", "0xf00290f00620b00600f00604b00290e00620b00690900604100290d006", "0x91101620b00691090f90e90d90c90b90a0103f900291000620b006010006", "0x20b00600200900291800691791600620b0079150063bc002915914913912", "0x91990800748400291900620b00600202a00200220b0069160063bd002002", "0x91c00620b00691100600c00291b00620b00691a00648500291a00620b006", "0x91400612b00291e00620b00691300601600291d00620b00691200612c002", "0x292091f91e91d91c01600692000620b00691b00644c00291f00620b006", "0x92100620b00691800644b00200220b00690800604700200220b006002009", "0x91300601600292300620b00691200612c00292200620b00691100600c002", "0x92600620b00692100644c00292500620b00691400612b00292400620b006", "0x200220b00600211e00200220b006002009002926925924923922016006", "0x220b00600f00604d00200220b00601000606100200220b00602d0060fa", "0x20b00616200644b00200220b0060140060d000200220b00600c006047002", "0x1600292900620b00600600612c00292800620b00616100600c002927006", "0x20b00692700644c00292b00620b00601500612b00292a00620b00601b006", "0x20b00600211e00200220b00600200900292c92b92a92992801600692c006", "0x601000606100200220b00600c00604700200220b006139006033002002", "0x1600639c00200220b00602d0060fa00200220b00600f00604d00200220b", "0x231300292d00620b00600213100200220b0060140060d000200220b006", "0x620b00692e92d00705b00292e00620b00692e00604b00292e00620b006", "0x644b00293000620b00624892f00705d00292f00620b006002135002248", "0x620b00600600612c00293200620b00600200600c00293100620b006930", "0x644c00224700620b00601500612b00293400620b00601b006016002933", "0x11e00200220b00600200900293524793493393201600693500620b006931", "0x4d00200220b00601000606100200220b00600c00604700200220b006002", "0x200220b00601600639c00200220b0060140060d000200220b00600f006", "0x600600612c00293700620b00600200600c00293600620b00605400644b", "0x293a00620b00601500612b00293900620b00601b00601600293800620b", "0x220b00600211e00224693a93993893701600624600620b00693600644c", "0x20b00600200600c00201600620b0060020ef00200c00620b0060025d9002", "0xfc00201900620b00600700612b00201b00620b006006006016002017006", "0x20b00600c0065e10020c400620b00601600604b00201c00620b006009006", "0x5e300201501401000f00c20b0060650c401c01901b01700f5e2002065006", "0x60540065e400200220b00600200900211b00693b05400620b007015006", "0x220b00602b00604d00200220b00602900639c00202c02b02a02900c20b", "0x602d0065da00202d00620b00602a0065e500200220b00602c006033002", "0x203000620b00601000601600202f00620b00600f00600c00202e00620b", "0x3303002f00c00604800620b00602e0065db00203300620b00601400612b", "0x600f00600c00203900620b00611b0065dc00200220b006002009002048", "0x203700620b00601400612b00211e00620b00601000601600203500620b", "0x620b00600c00630b00212003711e03500c00612000620b0060390065db", "0x600213100201000620b00600213100201600620b00600f0065dd00200f", "0x200220b0060150065df00201701500720b0060160065de00201400620b", "0x60170065e000206500620b0060060060160020c400620b00600200600c", "0x202900620b00601400604e00211b00620b00601000604e00205400620b", "0x200220b00600200600201c01901b00920b00602911b0540650c40165e6", "0x2a0065e900200220b00600200900202b00693c02a00620b00701c0065e8", "0x720b00602c00613200200220b00602e00603300202e02d02c00920b006", "0x613200203300620b00603000605300200220b00602f00605100203002f", "0x620b00603900605300200220b00604800605100203904800720b00602d", "0xc5ea00203500620b00603500600f00203300620b00603300600f002035", "0x220b00600200900203a10d12000993d03711e00720b007035033007019", "0x611e00601600212400620b00603c0063b700203c00620b00600202a002", "0x212a00620b0061240063b800203e00620b00603700612b00207d00620b", "0x212c00620b00603a0063b900200220b00600200900200293e00600202d", "0x612c0063b800203e00620b00610d00612b00207d00620b006120006016", "0x212b00620b0060410063bb00204100620b00612a0063ba00212a00620b", "0x600211e00200220b00600200900212d00693f04300620b00712b0063bc", "0x212e00620b00604500900748400204500620b0060430065eb00200220b", "0x607d00601600213100620b00601b00600c00204700620b00612e006485", "0x604b00620b00604700644c00204d00620b00603e00612b00213000620b", "0x604700200220b00600211e00200220b00600200900204b04d13013100c", "0x4f00620b00601b00600c00204e00620b00612d00644b00200220b006009", "0x4e00644c00205100620b00603e00612b00213200620b00607d006016002", "0x600211e00200220b00600200900205305113204f00c00605300620b006", "0x600c00212f00620b00602b00644b00200220b00600900604700200220b", "0x620b00600700612b00213300620b00601900601600205600620b00601b", "0x20b0060025ed00213605813305600c00613600620b00612f00644c002058", "0x600f00603900200f00620b00600204800200220b006002139002016006", "0x900201701500794001401000720b00700f00600200903500200f00620b", "0x1000620b00601000600c00201b00620b0060070065ee00200220b006002", "0x5f000200220b0060020090020c400694101c01900720b00701b0065ef002", "0x20b0060650065f100205400620b00601900606f00206500620b00601c006", "0x620b00600202a00200220b00600200900200294200600202d00211b006", "0x65f100205400620b0060c400606f00202a00620b0060290065f2002029", "0x620b00600c00631600200c00620b00605400630900211b00620b00602a", "0x694302b00620b00711b0065f400200c00620b00600c0160075f300200c", "0x620b00602b0065f500200220b00600211e00200220b00600200900202c", "0x600f00204800620b00601400601600203300620b00601000600c00202d", "0x3503904803300c5f600203500620b00600900604e00203900620b00602d", "0x200900203700694411e00620b00703000607100203002f02e00920b006", "0x200220b00610d00603300210d12000720b00611e00614100200220b006", "0x600c00631600203e00620b00602f00601600207d00620b00602e00600c", "0x20b00612c12a03e07d00c31700212c00620b00612000604e00212a00620b", "0x20b00600200900204100694512b00620b00712400607100212403c03a009", "0x600c00200220b00612d00603300212d04300720b00612b006141002002", "0x620b00604300604e00212e00620b00603c00601600204500620b00603a", "0x620b00604100631c00200220b00600200900200294600600202d002047", "0x631b00204d00620b00603c00601600213000620b00603a00600c002131", "0xc0065f700200220b00600200900204b04d13000900604b00620b006131", "0x204f00620b00602e00600c00204e00620b00603700631c00200220b006", "0x5113204f00900605100620b00604e00631b00213200620b00602f006016", "0x200220b00602c00603300200220b00600211e00200220b006002009002", "0x20b00601400601600204500620b00601000600c00200220b00600c0065f7", "0x731900205300620b00600202a00204700620b00600900604e00212e006", "0x20b00604500600c00205600620b00612f00631a00212f00620b006053047", "0x900613600620b00605600631b00205800620b00612e006016002133006", "0x60160065f800200220b00600211e00200220b006002009002136058133", "0x600213100200220b0060070065f700200220b00600900605100200220b", "0x5b00205b00620b00605b00604b00205b00620b00600213400213400620b", "0x613505d00705d00205d00620b00600213500213500620b00605b134007", "0x206100620b00601500600c00205f00620b00613700631c00213700620b", "0x6413806100900606400620b00605f00631b00213800620b006017006016", "0x620b00601600603900201600620b00600204800200220b00600211e002", "0x600200900201501400794701000f00720b007016006002009035002016", "0x200f00620b00600f00600c00201700c00720b00600c00635a00200220b", "0x600c00604d00200220b00600200900201b00694800220b0070170061c5", "0x201c00620b00601900700732800201900620b0060090065f900200220b", "0x601000601600206500620b00600f00600c0020c400620b00601c006329", "0x600200900211b05406500900611b00620b0060c400632a00205400620b", "0x607600202b00620b00600700600f00200220b00601b0060f200200220b", "0x200900202d00694902c00620b00702a00607700202a02900720b00602b", "0x202f00620b00600200000202e00620b00602c00900705b00200220b006", "0x1000601600203500620b00600f00600c00203000620b00602f00c0071c1", "0x12000620b00602e00604e00203700620b00602900600f00211e00620b006", "0x3300920b00610d12003711e03501632600210d00620b00603000604b002", "0x200220b00600200900203c00694a03a00620b00703900614b002039048", "0x632900203e00620b00607d12400732800207d12400720b00603a00607b", "0x620b00604800601600212c00620b00603300600c00212a00620b00603e", "0x220b00600200900204112b12c00900604100620b00612a00632a00212b", "0x4800601600212d00620b00603300600c00204300620b00603c00632b002", "0x200900212e04512d00900612e00620b00604300632a00204500620b006", "0x632c00200220b00600900605100200220b00600c00604d00200220b006", "0x20b00613100632900213100620b00604702900732800204700620b00602d", "0x32a00204b00620b00601000601600204d00620b00600f00600c002130006", "0x604d00200220b00600200900204e04b04d00900604e00620b006130006", "0x13100200220b00600700606100200220b00600900605100200220b00600c", "0x13200620b00613200604b00213200620b00600213400204f00620b006002", "0x5300705d00205300620b00600213500205100620b00613204f00705b002", "0x620b00601400600c00205600620b00612f00632b00212f00620b006051", "0x13300900613600620b00605600632a00205800620b006015006016002133", "0x5fa00201700620b00600f00600f00201500620b00600200600c002136058", "0x201900694b01b00620b0070140065fb00201401000720b006017015007", "0x720b00601c0065fd00201c00620b00601b0065fc00200220b006002009", "0x1600202d00620b00600600612c00202c00620b00601000600c0020650c4", "0x20b00600c0065fe00202f00620b00600900612b00202e00620b006007006", "0x3301600720b00601600635a00203000620b00603000604100203000c007", "0x2c0105d400204800620b0060c400600f00203300620b00603300604b002", "0x20b00702b0060ed00202b02a02911b05401620b00604803303002f02e02d", "0x211e00620b00603900608e00200220b00600200900203500694c039006", "0x703700603000203700620b00603700602c00203700620b00611e00602f", "0x200220b00612000603300200220b00600200900210d00694d12000620b", "0x12a03e07d12403c01420b00603a00637100203a00c00720b00600c0065fe", "0x639900200220b00612400639b00200220b00603c00639500204112b12c", "0x39600200220b00612c00639700200220b00612a00639800200220b00603e", "0x12e00620b00602900601600200220b00604100620c00200220b00612b006", "0x12e0093d400213100620b00607d0063d300204700620b00602a00612b002", "0x204d00694e13000620b00704500615100204512d04300920b006131047", "0x220b00704b0061c500204b00620b00613000615200200220b006002009", "0xc00604700200220b00601600604d00200220b00600200900204e00694f", "0x213200620b00604f00601900204f00620b00606500601b00200220b006", "0x20b00600206500200220b0060510060c400205305100720b00613200601c", "0x5400200220b0060560060c400213305600720b00612f00601c00212f006", "0x20b00605800611b00213600620b00613300605400205800620b006053006", "0x2a00200220b00600200900200295000220b007136058007029002058006", "0x620b00605b00602c00205b00620b00613400602b00213400620b006002", "0x5d00620b00600202a00200220b00600200900200295100600202d002135", "0x5400600c00213500620b00613700602c00213700620b00605d00602e002", "0x13800620b00604300601600206100620b00611b00612c00205f00620b006", "0x600202d00213900620b00613500602c00206400620b00612d00612b002", "0x605400600c00200220b00604e0060f200200220b006002009002002952", "0x213f00620b00604300601600206f00620b00611b00612c00213c00620b", "0x601600604b00214100620b00600c00604100207100620b00612d00612b", "0x14514107113f06f13c0105b800207500620b00606500600f00214500620b", "0x7700695307600620b00706c0060ed00206c06a06913b06701620b006075", "0x20b00606700600c00207900620b00607600608e00200220b006002009002", "0x12b00213800620b00606900601600206100620b00613b00612c00205f006", "0x20b0061390063a800213900620b00607900602c00206400620b00606a006", "0x12c00207b00620b00605f00600c00214b00620b0061460063a9002146006", "0x20b00606400612b00207f00620b00613800601600214a00620b006061006", "0x20090021510c707f14a07b01600615100620b00614b0063aa0020c7006", "0x214e00620b00606700600c00215200620b0060770063ab00200220b006", "0x606a00612b00208300620b00606900601600214f00620b00613b00612c", "0x900215008508314f14e01600615000620b0061520063aa00208500620b", "0x4700200220b00601600604d00200220b00606500606100200220b006002", "0x620b00605400600c00215e00620b00604d0063ab00200220b00600c006", "0x612b00215f00620b00604300601600216000620b00611b00612c002161", "0x16315d15f16016101600616300620b00615e0063aa00215d00620b00612d", "0x220b00600c00604700200220b00610d00603300200220b006002009002", "0x620b00600202a00200220b00606500606100200220b00601600604d002", "0x63a900208700620b0061620063a800216200620b00615c00602b00215c", "0x620b00611b00612c00215700620b00605400600c00215400620b006087", "0x63aa00216e00620b00602a00612b00215b00620b00602900601600208a", "0x4700200220b00600200900216816e15b08a15701600616800620b006154", "0x200220b00606500606100200220b00601600604d00200220b00600c006", "0x611b00612c00208e00620b00605400600c0020ed00620b0060350063ab", "0x216c00620b00602a00612b0020d000620b00602900601600216b00620b", "0x220b00600200900209216c0d016b08e01600609200620b0060ed0063aa", "0x20b0060190063ab00200220b00601600604d00200220b00600c006047002", "0x1600209400620b00600600612c00217100620b00601000600c00216d006", "0x20b00616d0063aa00209600620b00600900612b00217300620b006007006", "0x607600200c00620b00600600600f002175096173094171016006175006", "0x200900200f00695401600620b00700900607700200900700720b00600c", "0x600200900201500695501401000720b0070160020075ff00200220b006", "0xf00201b00620b00601000600c00201700620b00601400660000200220b", "0x201c01901b00900601c00620b00601700660100201900620b006007006", "0x6500620b0060c40066020020c400620b00600202a00200220b006002009", "0x6500660100211b00620b00600700600f00205400620b00601500600c002", "0x600f00660200200220b00600200900202911b05400900602900620b006", "0x202c00620b00600700600f00202b00620b00600200600c00202a00620b", "0x700620b00600600601b00202d02c02b00900602d00620b00602a006601", "0x1a300200220b00600200900201600695600c00900720b0070070060db002", "0x20b00600f0061a400201000620b00600900609900200f00620b00600c006", "0x620b00600202a00200220b00600200900200295700600202d002014006", "0x61a400201000620b00601600609900201700620b0060150061a5002015", "0x620b00601b00600f00201b00620b00601000605300201400620b006017", "0x1a600200220b00600200900201c00695801900620b0070140060df00201b", "0x20b00600200600c00206500620b0060c40061b20020c400620b006019006", "0x11b05400720b00602a02900760300202a00620b00606500604b002029006", "0x660400200220b00600200900202c00695902b00620b00711b00633b002", "0x620b00601b00600f00202e00620b00605400600c00202d00620b00602b", "0x220b00600200900203002f02e00900603000620b00602d00660500202f", "0x1b00600f00204800620b00605400600c00203300620b00602c006606002", "0x200900203503904800900603500620b00603300660500203900620b006", "0x660600211e00620b00600202a00200220b00601c00603300200220b006", "0x620b00601b00600f00212000620b00600200600c00203700620b00611e", "0x220b00600211e00203a10d12000900603a00620b00603700660500210d", "0xf00695a01600c00720b0070090060db00200900620b00600700601b002", "0x20b00600c00609900201000620b0060160061a300200220b006002009002", "0x600200900200295b00600202d00201500620b0060100061a4002014006", "0x609900201b00620b0060170061a500201700620b00600202a00200220b", "0x620b00601400605300201500620b00601b0061a400201400620b00600f", "0xc400695c01c00620b0070150060df00201900620b00601900600f002019", "0x20b0060650061b200206500620b00601c0061a600200220b006002009002", "0x601600202c00620b00600200600c00211b00620b0060021ad002054006", "0x620b00611b00604300202e00620b00601900600f00202d00620b006006", "0x920b00603002f02e02d02c0161ae00203000620b00605400604b00202f", "0x220b00600200900204800695d03300620b00702b00601400202b02a029", "0x3700695e11e00620b00703500601700203503900720b006033006015002", "0x612000613600210d12000720b00611e0060f800200220b006002009002", "0x60800203c00620b00603a00660700203a00620b00610d0061d600200220b", "0x602900600c00207d00620b00612400660900212400620b00603c039007", "0x612c00620b00607d00660a00212a00620b00602a00601600203e00620b", "0x60800212b00620b00603700660b00200220b00600200900212c12a03e009", "0x602900600c00204300620b00604100660900204100620b00612b039007", "0x612e00620b00604300660a00204500620b00602a00601600212d00620b", "0xc00204700620b00604800660c00200220b00600200900212e04512d009", "0x20b00604700660a00213000620b00602a00601600213100620b006029006", "0x220b0060c400603300200220b00600200900204d13013100900604d006", "0x4e01900760800204e00620b00604b00660b00204b00620b00600202a002", "0x5100620b00600200600c00213200620b00604f00660900204f00620b006", "0x5305100900612f00620b00613200660a00205300620b006006006016002", "0x760d00200f00620b00600600612b00201600620b00600200601600212f", "0x201400695f01000620b00700c00660e00200c00900700920b00600f016", "0x620b00601500661000201500620b00601000660f00200220b006002009", "0xfa00200220b00601b00634900201c01901b00920b006017006611002017", "0x620b0060c40066120020c400620b00601900622600200220b00601c006", "0x661300211b00620b00600900612b00205400620b006007006016002065", "0x1400661400200220b00600200900202911b05400900602900620b006065", "0x2c00620b00600900612b00202b00620b00600700601600202a00620b006", "0x620b00600200600c00202d02c02b00900602d00620b00602a006613002", "0x604b00201b00620b00600c00637300201700620b00600700615d002015", "0x6500201401000f00920b00601901b01701500c61500201900620b006016", "0x620b00600900612b00211b00620b00600600601600201c00620b006002", "0xc61700202b00620b00601400661600202a00620b00601c00611b002029", "0x61900202d00620b0060540066180020540650c400920b00602b02a02911b", "0x200900202f00696002e00620b00702c0060ed00202c00620b00602d006", "0x203300620b0060300063a800203000620b00602e00608e00200220b006", "0x60c400601600203900620b00600f00600c00204800620b0060330063a9", "0x203700620b00606500612b00211e00620b00601000615d00203500620b", "0x220b00600200900212003711e03503901600612000620b0060480063aa", "0xc400601600203a00620b00600f00600c00210d00620b00602f0063ab002", "0x7d00620b00606500612b00212400620b00601000615d00203c00620b006", "0x600200601600203e07d12403c03a01600603e00620b00610d0063aa002", "0x700920b00600f01600757600200f00620b00600600612b00201600620b", "0x200220b00600200900201400696101000620b00700c00657700200c009", "0x601700657b00201700620b00601500657a00201500620b006010006579", "0x20b00601900657d00200220b00601b00657c0020650c401c01901b01620b", "0x60c400657e00200220b00606500604d00200220b00601c0060fa002002", "0x202900620b00600700601600211b00620b00605400657f00205400620b", "0x2b02a02900900602b00620b00611b00658000202a00620b00600900612b", "0x20b00600700601600202c00620b00601400658100200220b006002009002", "0x900602f00620b00602c00658000202e00620b00600900612b00202d006", "0x35500200c00900720b00600900622500200220b00600211e00202f02e02d", "0x604d00200220b0060160060fa00201501401000f01601620b00600c006", "0x61a00200220b00601400634900200220b00601000634900200220b00600f", "0x620b00600200600c00201b00620b0060020ef00201700620b006015006", "0x60fc00202900620b00600700615d00211b00620b006006006016002054", "0x2a02911b05401661b00202b00620b00601b00604b00202a00620b006017", "0x202d00696202c00620b00706500661c0020650c401c01900c20b00602b", "0x602e00639c00203002f02e00920b00602c00661d00200220b006002009", "0x35500203300900720b00600900622500200220b00603000603300200220b", "0x604d00200220b0060480060fa00203711e03503904801620b006033006", "0x61a00200220b00611e00634900200220b00603500634900200220b006039", "0x20b00610d00659100210d00620b00612000659000212000620b006037006", "0x37b00203c00620b00603c00604b00203c00620b00603a00653c00203a006", "0x600261e00203e00620b0060020ef00207d12400720b00603c02f0c4009", "0x212a00620b00612a00604b00203e00620b00603e00604b00212a00620b", "0x204100900720b00600900622500212b12c00720b00612a03e12400937b", "0x34900200220b00612d00604d00204712e04512d04301620b006041006355", "0x200220b00604700639c00200220b00612e00634900200220b006045006", "0x612b00604b00213000620b0061310061bf00213100620b006043006361", "0x20b00600900622500204b04d00720b00613012b12c00937b00212b00620b", "0x604f0060fa00212f05305113204f01620b00604e00635500204e009007", "0x12f00639c00200220b00605300634900200220b00605100634900200220b", "0x204b00620b00604b00604b00205600620b0061320061b200200220b006", "0x213600900720b00600900622500205813300720b00605604b04d00937b", "0x4d00200220b0061340060fa00213705d13505b13401620b006136006355", "0x200220b00613700639c00200220b00605d00634900200220b00605b006", "0x605800604b00206100620b00605f00662000205f00620b00613500661f", "0x20b00600900622500206413800720b00606105813300937b00205800620b", "0x60670060fa00206c06a06913b06701620b006139006355002139009007", "0x6c00639c00200220b00606900634900200220b00613b00604d00200220b", "0x206f00620b00613c00662000213c00620b00606a00661f00200220b006", "0x35500207113f00720b00606f06413800937b00206400620b00606400604b", "0x604d00200220b0061410060fa00207707607514514101620b006009006", "0x61a00200220b00607600634900200220b00607500634900200220b006145", "0x20b00614600659100214600620b00607900659000207900620b006077006", "0x4b00207100620b00607100604b00207b00620b00614b00653c00214b006", "0x604b00207f14a00720b00607b07113f00937b00207b00620b00607b006", "0x607d07f14a00937b00207d00620b00607d00604b00207f00620b00607f", "0x215100620b00615100604b00215200620b0060026210021510c700720b", "0x33100214f14e00720b0061521510c700937b00215200620b00615200604b", "0x20b00601900600c00208500620b00608300633200208300620b00614f006", "0x21200216100620b00614e00615d00215e00620b00601c006016002150006", "0x8a00200220b00600200900216016115e15000c00616000620b006085006", "0x620b00601900600c00215f00620b00602d00633300200220b006009006", "0x621200215c00620b0060c400615d00216300620b00601c00601600215d", "0x1401000720b00600c00637200216215c16315d00c00616200620b00615f", "0x1400637300201c00620b00600700615d00201900620b00600200600c002", "0x60650c401c01900c61500206500620b00601600604b0020c400620b006", "0x11b00620b00700f00603000205400620b00600206500201b01701500920b", "0x60020ef00200220b00611b00603300200220b006002009002029006963", "0x200900200296400600202d00202b00620b00602a00604b00202a00620b", "0x604b00202c00620b00600200000200220b00602900603300200220b006", "0x620b00605400611b00202d00620b00601b00622400202b00620b00602c", "0x204803303000996502f02e00720b00702b02d054009006016622002054", "0x3500620b0060390063b700203900620b00600202a00200220b006002009", "0x350063b800203700620b00602f00612b00211e00620b00602e006016002", "0x480063b900200220b00600200900200296600600202d00212000620b006", "0x3700620b00603300612b00211e00620b00603000601600210d00620b006", "0x3c0063bb00203c00620b0061200063ba00212000620b00610d0063b8002", "0x20b00600200900207d00696712400620b00703a0063bc00203a00620b006", "0x62400212a00620b00603e01000762300203e00620b0061240065eb002002", "0x20b00611e00601600212b00620b00601500600c00212c00620b00612a006", "0x62500212d00620b00603700612b00204300620b00601700615d002041006", "0x200220b00600200900204512d04304112b01600604500620b00612c006", "0x20b00601500600c00212e00620b00607d00662600200220b006010006397", "0x12b00213000620b00601700615d00213100620b00611e006016002047006", "0x4d13013104701600604b00620b00612e00662500204d00620b006037006", "0x604d00200f01600720b00600900613000200c00620b00600213100204b", "0x1700620b00600c00604e00201500620b00600f00604b00200220b006016", "0x662700200220b00601400603300201401000720b00601701500704f002", "0x20b00601900605100201c01900720b00601000613200201b00620b006007", "0x6500604b00206500620b0060026280020c400620b00601c006053002002", "0xc406501b0060020166290020c400620b0060c400600f00206500620b006", "0x662a00200220b00600200900202c02b02a00996802911b05400920b007", "0x620b00611b00612b00202e00620b00605400601600202d00620b006029", "0x20b00600200900200296900600202d00203000620b00602d00662b00202f", "0x612b00202e00620b00602a00601600203300620b00602c00662c002002", "0x620b00603000662d00203000620b00603300662b00202f00620b00602b", "0x11e00696a03500620b00704800662f00204800620b00603900662e002039", "0x20b00603700600f00203700620b00603500663000200220b006002009002", "0x63200200220b00612000606100210d12000720b00603a00663100203a006", "0x603c0063a800200220b00600200900212400696b03c00620b00710d006", "0x212a00620b00602e00601600203e00620b00607d0063a900207d00620b", "0x12b12c12a00900612b00620b00603e0063aa00212c00620b00602f00612b", "0x4100620b00600213100200220b00612400603300200220b006002009002", "0x4304100705b00204300620b00604300604b00204300620b006002633002", "0x12e00620b00612d04500705d00204500620b00600213500212d00620b006", "0x2f00612b00213100620b00602e00601600204700620b00612e0063ab002", "0x200900204d13013100900604d00620b0060470063aa00213000620b006", "0x204e00620b00602e00601600204b00620b00611e0063ab00200220b006", "0x13204f04e00900613200620b00604b0063aa00204f00620b00602f00612b", "0x663500200220b00600200900200700696c00600620b007002006634002", "0x620b00600c00663600200c00620b00600900622300200900620b006006", "0x705d00200f00620b00600213500200220b006002009002016006006016", "0x20b00601400663600201400620b00601000663700201000620b00600700f", "0x620b00600f00663800200f00620b00600c0063bf002015006006015006", "0x60160065de00201400620b00600213100201000620b006002131002016", "0x20c400620b00600200600c00200220b0060150065df00201701500720b", "0x601000604e00205400620b0060170065e000206500620b006006006016", "0x602911b0540650c40165e600202900620b00601400604e00211b00620b", "0x96d02a00620b00701c0065e800200220b00600200600201c01901b00920b", "0x3300202e02d02c00920b00602a0065e900200220b00600200900202b006", "0x20b00602f00605100203002f00720b00602c00613200200220b00602e006", "0x5100203904800720b00602d00613200203300620b006030006053002002", "0x620b00603300600f00203500620b00603900605300200220b006048006", "0x11e00720b00703503300701900c5ea00203500620b00603500600f002033", "0x203c00620b00600202a00200220b00600200900203a10d12000996e037", "0x603700612b00207d00620b00611e00601600212400620b00603c0063b7", "0x200900200296f00600202d00212a00620b0061240063b800203e00620b", "0x207d00620b00612000601600212c00620b00603a0063b900200220b006", "0x612a0063ba00212a00620b00612c0063b800203e00620b00610d00612b", "0x97004300620b00712b0063bc00212b00620b0060410063bb00204100620b", "0x20b0060430065eb00200220b00600211e00200220b00600200900212d006", "0x204700620b00612e00648500212e00620b006045009007484002045006", "0x603e00612b00213000620b00607d00601600213100620b00601b00600c", "0x200900204b04d13013100c00604b00620b00604700644c00204d00620b", "0x12d00644b00200220b00600900604700200220b00600211e00200220b006", "0x13200620b00607d00601600204f00620b00601b00600c00204e00620b006", "0x13204f00c00605300620b00604e00644c00205100620b00603e00612b002", "0x20b00600900604700200220b00600211e00200220b006002009002053051", "0x601600205600620b00601b00600c00212f00620b00602b00644b002002", "0x620b00612f00644c00205800620b00600700612b00213300620b006019", "0x220b00600213900200f00620b00600206400213605813305600c006136", "0x1400605100201501400720b00600c00613200201000620b006002131002", "0x20c400620b00600600601600201c00620b00600200600c00200220b006", "0xc401c00c17600205400620b00601000604e00206500620b006015006099", "0x20b00701900607100200220b00600200600201901b01700920b006054065", "0x2b02a00720b00611b00614100200220b00600200900202900697111b006", "0x602a00613200202c00620b00600900663900200220b00602b006033002", "0x202f00620b00602e00605300200220b00602d00605100202e02d00720b", "0x20b00602f00600f00203000620b00603000604b00203000620b0060025d7", "0x11e03500997203904803300920b00702f03002c00701b01662900202f006", "0x603300601600212000620b00603900662a00200220b006002009002037", "0x203a00620b00612000662b00201600620b00604800612b00210d00620b", "0x203c00620b00603700662c00200220b00600200900200297300600202d", "0x603c00662b00201600620b00611e00612b00210d00620b006035006016", "0x212400620b00607d00662e00207d00620b00603a00662d00203a00620b", "0x212a00697403e00620b00712400662f00201600620b00601600f00713b", "0x212c00620b00603e00663000200220b00600211e00200220b006002009", "0x612c00600f00204500620b00610d00601600212d00620b00601700600c", "0x704300614b00204304112b00920b00612e04512d00914600212e00620b", "0x13000720b00604700607b00200220b00600200900213100697504700620b", "0x204e00697604b00620b00704d00614a00200220b00613000606100204d", "0x620b00604f00663b00204f00620b00604b00663a00200220b006002009", "0x612b00205300620b00604100601600205100620b00612b00600c002132", "0x205612f05305100c00605600620b00613200663c00212f00620b006016", "0x213300620b00600213100200220b00604e00603300200220b006002009", "0x605813300705b00205800620b00605800604b00205800620b006002633", "0x205b00620b00613613400705d00213400620b00600213500213600620b", "0x604100601600205d00620b00612b00600c00213500620b00605b00663d", "0x606100620b00613500663c00205f00620b00601600612b00213700620b", "0x213800620b00613100663d00200220b00600200900206105f13705d00c", "0x601600612b00213900620b00604100601600206400620b00612b00600c", "0x200900213b06713906400c00613b00620b00613800663c00206700620b", "0x600c00206900620b00612a00663d00200220b00600211e00200220b006", "0x620b00601600612b00206c00620b00610d00601600206a00620b006017", "0x20b00600200900206f13c06c06a00c00606f00620b00606900663c00213c", "0x20b00600900663e00200220b00600f00614500200220b00600211e002002", "0x601600207100620b00601700600c00213f00620b00602900663d002002", "0x620b00613f00663c00214500620b00600700612b00214100620b00601b", "0x20b00600c00603900200c00620b00600204800207514514107100c006075", "0x200900201401000797700f01600720b00700c00600200903500200c006", "0x201600620b00601600600c00201500620b00600700601b00200220b006", "0x61a300200220b00600200900201900697801b01700720b0070150060db", "0x620b00601c0061a40020c400620b00601700609900201c00620b00601b", "0x5400620b00600202a00200220b00600200900200297900600202d002065", "0x11b0061a40020c400620b00601900609900211b00620b0060540061a5002", "0x2900620b00602900600f00202900620b0060c400605300206500620b006", "0x211e00200220b00600200900202b00697a02a00620b0070650060df002", "0x202f00620b00602c00604b00202c00620b00602a0061a600200220b006", "0x603300202e02d00720b00603002f00704f00203000620b00600900604e", "0x11e00620b00600f00601600203500620b00601600600c00200220b00602e", "0x3500c21800212000620b00602d00604e00203700620b00602900600f002", "0x3a00697b10d00620b00703900607100203904803300920b00612003711e", "0x612400603300212403c00720b00610d00614100200220b006002009002", "0x4e00203e00620b00604800601600207d00620b00603300600c00200220b", "0x31c00200220b00600200900200297c00600202d00212a00620b00603c006", "0x20b00604800601600212b00620b00603300600c00212c00620b00603a006", "0x20b00600200900204304112b00900604300620b00612c00631b002041006", "0x20b00602900606100200220b00602b00603300200220b00600211e002002", "0x604e00203e00620b00600f00601600207d00620b00601600600c002002", "0x620b00612d12a00731900212d00620b00600202a00212a00620b006009", "0x601600204700620b00607d00600c00212e00620b00604500631a002045", "0x900213013104700900613000620b00612e00631b00213100620b00603e", "0x605100200220b00600700606100200220b00600211e00200220b006002", "0x4b00204b00620b00600213400204d00620b00600213100200220b006009", "0x20b00600213500204e00620b00604b04d00705b00204b00620b00604b006", "0x205100620b00613200631c00213200620b00604e04f00705d00204f006", "0x605100631b00212f00620b00601400601600205300620b00601000600c", "0x20b00600263f00200220b00600700639b00205612f05300900605600620b", "0x611b00201600620b00600206500200c00620b006009006224002009006", "0xc01600600200c64100200c00620b00600c00664000201600620b006016", "0x664200200220b00600200900201b01701500997d01401000f00920b007", "0x620b00601000612b00201c00620b00600f00601600201900620b006014", "0x20b00600200900200297e00600202d00206500620b0060190066430020c4", "0x612b00201c00620b00601500601600205400620b00601b006644002002", "0x620b00606500664500206500620b0060540066430020c400620b006017", "0x2b00697f02a00620b00711b00615100211b00620b006029006646002029", "0x20b00602c00633100202c00620b00602a00615200200220b006002009002", "0x12b00202f00620b00601c00601600202e00620b00602d00633200202d006", "0x203303002f00900603300620b00602e00621200203000620b0060c4006", "0x620b00601c00601600204800620b00602b00633300200220b006002009", "0x3900900611e00620b00604800621200203500620b0060c400612b002039", "0x900622400200900620b00600264700200220b00600700639a00211e035", "0x201600620b00601600611b00201600620b00600206500200c00620b006", "0x1401000f00920b00700c01600600200c64100200c00620b00600c006640", "0x201900620b00601400664200200220b00600200900201b017015009980", "0x60190066430020c400620b00601000612b00201c00620b00600f006016", "0x601b00664400200220b00600200900200298100600202d00206500620b", "0x20c400620b00601700612b00201c00620b00601500601600205400620b", "0x602900664600202900620b00606500664500206500620b006054006643", "0x220b00600200900202b00698202a00620b00711b00615100211b00620b", "0x2d00633200202d00620b00602c00633100202c00620b00602a006152002", "0x3000620b0060c400612b00202f00620b00601c00601600202e00620b006", "0x200220b00600200900203303002f00900603300620b00602e006212002", "0x60c400612b00203900620b00601c00601600204800620b00602b006333", "0x700639900211e03503900900611e00620b00604800621200203500620b", "0x6500200c00620b00600900622400200900620b00600264800200220b006", "0x620b00600c00664000201600620b00601600611b00201600620b006002", "0x201b01701500998301401000f00920b00700c01600600200c64100200c", "0x620b00600f00601600201900620b00601400664200200220b006002009", "0x202d00206500620b0060190066430020c400620b00601000612b00201c", "0x601600205400620b00601b00664400200220b006002009002002984006", "0x620b0060540066430020c400620b00601700612b00201c00620b006015", "0x615100211b00620b00602900664600202900620b006065006645002065", "0x20b00602a00615200200220b00600200900202b00698502a00620b00711b", "0x1600202e00620b00602d00633200202d00620b00602c00633100202c006", "0x20b00602e00621200203000620b0060c400612b00202f00620b00601c006", "0x620b00602b00633300200220b00600200900203303002f009006033006", "0x621200203500620b0060c400612b00203900620b00601c006016002048", "0x264900200220b00600900639500211e03503900900611e00620b006048", "0x201700620b00600200600c00201600620b00600206500200c00620b006", "0x601600611b00201900620b00600700612b00201b00620b006006006016", "0x60c401c01901b01701664a0020c400620b00600c00661600201c00620b", "0x200900205400698606500620b00701500664b00201501401000f00c20b", "0x202a00620b00611b00664d00211b00620b00606500664c00200220b006", "0x900202c00698702b00620b0070290063e500202900620b00602a006220", "0x2e00620b00602d00664e00202d00620b00602b0063e600200220b006002", "0x1000601600203000620b00600f00600c00202f00620b00602e00664f002", "0x3900620b00602f00665000204800620b00601400612b00203300620b006", "0x3500620b00602c00665100200220b00600200900203904803303000c006", "0x1400612b00203700620b00601000601600211e00620b00600f00600c002", "0x900210d12003711e00c00610d00620b00603500665000212000620b006", "0x3c00620b00600f00600c00203a00620b00605400665100200220b006002", "0x3a00665000207d00620b00601400612b00212400620b006010006016002", "0x65200200700620b00600200665200203e07d12403c00c00603e00620b006", "0x20b00600c00665400200c00620b00600700665200200900620b006006006", "0x65200200220b00600f00604d00201000f00720b006016006130002016006", "0x20b00601500613000201500620b00601400665400201400620b006009006", "0x1b200201900620b0060100061b200200220b00601700604d00201b017007", "0x60c400604b0020c400620b00601c0190071c100201c00620b00601b006", "0x200220b00600200900206500698800220b0070c40061c50020c400620b", "0x20b00611b00602c00211b00620b00605400602e00205400620b00600202a", "0x20b0060650060f200200220b00600200900200298900600202d002029006", "0x2b00602c00202b00620b00602a00602b00202a00620b00600202a002002", "0x60070063e200202c00600602c00620b00602900636f00202900620b006", "0x65400200f00620b00600264900200220b00601600639500201600c00720b", "0x620b00600206500201400620b00600f00622400201000620b006009006", "0x1662200201400620b00601400664000201500620b00601500611b002015", "0x20b0060020090020c401c01900998a01b01700720b007010014015006002", "0x1700601600205400620b0060650063b700206500620b00600202a002002", "0x2a00620b0060540063b800202900620b00601b00612b00211b00620b006", "0x2b00620b0060c40063b900200220b00600200900200298b00600202d002", "0x2b0063b800202900620b00601c00612b00211b00620b006019006016002", "0x2c00620b00602d0063bb00202d00620b00602a0063ba00202a00620b006", "0x65eb00200220b00600200900202f00698c02e00620b00702c0063bc002", "0x20b00603300665600203300620b00603000c00765300203000620b00602e", "0x65700203500620b00602900612b00203900620b00611b006016002048006", "0x639500200220b00600200900211e03503900900611e00620b006048006", "0x12000620b00611b00601600203700620b00602f00665800200220b00600c", "0x10d12000900603a00620b00603700665700210d00620b00602900612b002", "0x213100201600620b00600f00665a00200f00620b00600c0063ee00203a", "0x1701500720b0060160065de00201400620b00600213100201000620b006", "0x60060060160020c400620b00600200600c00200220b0060150065df002", "0x211b00620b00601000604e00205400620b0060170065e000206500620b", "0x1901b00920b00602911b0540650c40165e600202900620b00601400604e", "0x900202b00698d02a00620b00701c0065e800200220b00600200600201c", "0x20b00602e00603300202e02d02c00920b00602a0065e900200220b006002", "0x605300200220b00602f00605100203002f00720b00602c006132002002", "0x20b00604800605100203904800720b00602d00613200203300620b006030", "0x600f00203300620b00603300600f00203500620b006039006053002002", "0x12000998e03711e00720b00703503300701900c5ea00203500620b006035", "0x603c0063b700203c00620b00600202a00200220b00600200900203a10d", "0x203e00620b00603700612b00207d00620b00611e00601600212400620b", "0x200220b00600200900200298f00600202d00212a00620b0061240063b8", "0x610d00612b00207d00620b00612000601600212c00620b00603a0063b9", "0x204100620b00612a0063ba00212a00620b00612c0063b800203e00620b", "0x900212d00699004300620b00712b0063bc00212b00620b0060410063bb", "0x48400204500620b0060430065eb00200220b00600211e00200220b006002", "0x601b00600c00204700620b00612e00648500212e00620b006045009007", "0x204d00620b00603e00612b00213000620b00607d00601600213100620b", "0x200220b00600200900204b04d13013100c00604b00620b00604700644c", "0x4e00620b00612d00644b00200220b00600900604700200220b00600211e", "0x3e00612b00213200620b00607d00601600204f00620b00601b00600c002", "0x900205305113204f00c00605300620b00604e00644c00205100620b006", "0x644b00200220b00600900604700200220b00600211e00200220b006002", "0x620b00601900601600205600620b00601b00600c00212f00620b00602b", "0x5600c00613600620b00612f00644c00205800620b00600700612b002133", "0x3500200c00620b00600c00603900200c00620b006002048002136058133", "0x200220b00600200900201401000799100f01600720b00700c006002009", "0x701500665b00201600620b00601600600c00201500620b006007006590", "0x620b00601b00665c00200220b00600200900201900699201b01700720b", "0x202d00206500620b00601c00665d0020c400620b00601700659600201c", "0x5400665e00205400620b00600202a00200220b006002009002002993006", "0x6500620b00611b00665d0020c400620b00601900659600211b00620b006", "0x6500666000202900620b0060290060fc00202900620b0060c40061d6002", "0x620b00602a00659b00200220b00600200900202b00699402a00620b007", "0x202f02e02d00920b00602c00659e00202c00620b00602c00659c00202c", "0x620b00602d00636100200220b00602f00659f00200220b00602e00604d", "0x636000200220b0060330060fa00204803300720b006030006360002030", "0x611e0060fa00203711e00720b00604800636000203503900720b006009", "0x3f100200220b0061200060fa00210d12000720b00603500636000200220b", "0x612403c00766100212400620b00610d0063f100203c00620b006037006", "0x207d00620b00607d00602c00207d00620b00603a00602f00203a00620b", "0x703e00603000203e00620b00603e00602c00203e00620b00607d00602f", "0x3300200220b00600211e00200220b00600200900212c00699512a00620b", "0x620b00600f00601600212d00620b00601600600c00200220b00612a006", "0xc3f200204700620b0060390063f100212e00620b0060290060fc002045", "0x699613100620b0070430063f300204304112b00920b00604712e04512d", "0x4d00766300204b04d00720b00613100666200200220b006002009002130", "0x620b00612b00600c00204f00620b00604e00666400204e00620b00604b", "0x13200900605300620b00604f00666500205100620b006041006016002132", "0x12b00600c00212f00620b00613000621f00200220b006002009002053051", "0x5800620b00612f00666500213300620b00604100601600205600620b006", "0x603300200220b00600211e00200220b006002009002058133056009006", "0x13100200220b00602900639c00200220b0060390060fa00200220b00612c", "0x13400620b00613400604b00213400620b00600266600213600620b006002", "0x13500705d00213500620b00600213500205b00620b00613413600705b002", "0x620b00601600600c00213700620b00605d00621f00205d00620b00605b", "0x5f00900613800620b00613700666500206100620b00600f00601600205f", "0x20b00602b00603300200220b00600211e00200220b006002009002138061", "0x6402900766300206400620b00600202a00200220b0060090060fa002002", "0x13b00620b00601600600c00206700620b00613900666400213900620b006", "0x6913b00900606a00620b00606700666500206900620b00600f006016002", "0x220b0060090060fa00200220b00600211e00200220b00600200900206a", "0x620b00600213400206c00620b00600213100200220b00600700639c002", "0x13500206f00620b00613c06c00705b00213c00620b00613c00604b00213c", "0x20b00607100621f00207100620b00606f13f00705d00213f00620b006002", "0x66500207500620b00601400601600214500620b00601000600c002141006", "0x201500620b00600200600c00207607514500900607600620b006141006", "0x65fb00201401000720b0060170150075fa00201700620b00600f00600f", "0x20b00601b0065fc00200220b00600200900201900699701b00620b007014", "0x202c00620b00601000600c0020650c400720b00601c0065fd00201c006", "0x600900612b00202e00620b00600700601600202d00620b00600600612c", "0x3000620b00603000604100203000c00720b00600c0065fe00202f00620b", "0x600f00203300620b00603300604b00203301600720b00601600635a002", "0x11b05401620b00604803303002f02e02d02c0105d400204800620b0060c4", "0x220b00600200900203500699803900620b00702b0060ed00202b02a029", "0x3700602c00203700620b00611e00602f00211e00620b00603900608e002", "0x20b00600200900210d00699912000620b00703700603000203700620b006", "0x637100203a00c00720b00600c0065fe00200220b006120006033002002", "0x200220b00603c00639500204112b12c12a03e07d12403c01420b00603a", "0x220b00612a00639800200220b00603e00639900200220b00612400639b", "0x20b00604100620c00200220b00612b00639600200220b00612c006397002", "0x63d300204700620b00602a00612b00212e00620b006029006016002002", "0x615100204512d04300920b00613104712e0093d400213100620b00607d", "0x20b00613000615200200220b00600200900204d00699a13000620b007045", "0x4d00200220b00600200900204e00699b00220b00704b0061c500204b006", "0x4f00620b00606500601b00200220b00600c00604700200220b006016006", "0x60c400205305100720b00613200601c00213200620b00604f006019002", "0x13305600720b00612f00601c00212f00620b00600206500200220b006051", "0x613300605400205800620b00605300605400200220b0060560060c4002", "0x99c00220b00713605800702900205800620b00605800611b00213600620b", "0x20b00613400602b00213400620b00600202a00200220b006002009002002", "0x600200900200299d00600202d00213500620b00605b00602c00205b006", "0x602c00213700620b00605d00602e00205d00620b00600202a00200220b", "0x620b00605f00602c00205f00620b00613500602f00213500620b006137", "0x3300200220b00600200900213800699e06100620b00705f00603000205f", "0x620b00611b00612c00206400620b00605400600c00200220b006061006", "0x202d00213b00620b00612d00612b00206700620b006043006016002139", "0x600213100200220b00613800603300200220b00600200900200299f006", "0x5b00206a00620b00606a00604b00206a00620b0060025bb00206900620b", "0x606c13c00705d00213c00620b00600213500206c00620b00606a069007", "0x207100620b00605400600c00213f00620b00606f00663700206f00620b", "0x612d00612b00214500620b00604300601600214100620b00611b00612c", "0x900207607514514107101600607600620b00613f00663600207500620b", "0x214a00620b00605400600c00200220b00604e0060f200200220b006002", "0x612d00612b0020c700620b00604300601600207f00620b00611b00612c", "0x214e00620b00601600604b00215200620b00600c00604100215100620b", "0x1620b00614f14e1521510c707f14a0105b800214f00620b00606500600f", "0x60020090020850069a008300620b00707b0060ed00207b14b146079077", "0x2c00215e00620b00615000602f00215000620b00608300608e00200220b", "0x20090021600069a116100620b00715e00603000215e00620b00615e006", "0x12c00206400620b00607700600c00200220b00616100603300200220b006", "0x20b00614b00612b00206700620b00614600601600213900620b006079006", "0x622300215d00620b00615f00663500215f00620b00600202a00213b006", "0x620b00613900666700215c00620b00606400636e00216300620b00615d", "0x663600215400620b00613b00644900208700620b006067006448002162", "0x3300200220b00600200900215715408716215c01600615700620b006163", "0x215b00620b0060025bb00208a00620b00600213100200220b006160006", "0x600213500216e00620b00615b08a00705b00215b00620b00615b00604b", "0x8e00620b0060ed0066370020ed00620b00616e16800705d00216800620b", "0x1460060160020d000620b00607900612c00216b00620b00607700600c002", "0x16d00620b00608e00663600209200620b00614b00612b00216c00620b006", "0x620b00608500663700200220b00600200900216d09216c0d016b016006", "0x601600217300620b00607900612c00209400620b00607700600c002171", "0x620b00617100663600217500620b00614b00612b00209600620b006146", "0x20b00606500606100200220b0060020090020d11750961730940160060d1", "0x604d00663700200220b00600c00604700200220b00601600604d002002", "0x209b00620b00611b00612c00217600620b00605400600c00209900620b", "0x609900663600209d00620b00612d00612b00217a00620b006043006016", "0x10d00603300200220b00600200900217c09d17a09b17601600617c00620b", "0x606100200220b00600c00604700200220b00601600604d00200220b006", "0x4b0020a000620b0060022220020cc00620b00600213100200220b006065", "0x20b00600213500217d00620b0060a00cc00705b0020a000620b0060a0006", "0x20a400620b00617e00663700217e00620b00617d0a200705d0020a2006", "0x60290060160020cd00620b00611b00612c00217f00620b00605400600c", "0x618000620b0060a40066360020a800620b00602a00612b0020d200620b", "0x200220b00601600604d00200220b0060020090021800a80d20cd17f016", "0x620b00603500663700200220b00606500606100200220b00600c006047", "0x601600218100620b00611b00612c0020ab00620b00605400600c0020ce", "0x620b0060ce0066360020c800620b00602a00612b0020cf00620b006029", "0x20b00600c00604700200220b0060020090020c90c80cf1810ab0160060c9", "0x1000600c0020ca00620b00601900663700200220b00601600604d002002", "0xb300620b0060070060160020c600620b00600600612c0020cb00620b006", "0xc60cb01600618e00620b0060ca0066360020b500620b00600900612b002", "0x201b00620b0060020ef00201701500720b00600f00613000218e0b50b3", "0x60170061b200200220b00601900604d00201c01900720b00601b006130", "0x200220b00606500604d00205406500720b0060c40061300020c400620b", "0x2900604d00202a02900720b00611b00613000211b00620b00601c0061b2", "0x202c00620b00602a0061b200202b00620b0060540061b200200220b006", "0x2d0061c500202d00620b00602d00604b00202d00620b00602c02b0071c1", "0x202f00620b00600202a00200220b00600200900202e0069a200220b007", "0x9a300600202d00203300620b00603000602c00203000620b00602f00602e", "0x620b00600202a00200220b00602e0060f200200220b006002009002002", "0x602f00203300620b00603900602c00203900620b00604800602b002048", "0x620b00603500602f00203500620b00603500602c00203500620b006033", "0x1200069a403700620b00711e00603000211e00620b00611e00602c00211e", "0x620b00600700601600200220b00603700603300200220b006002009002", "0x3c03a10d00920b00607d1240070f400207d00620b00600c00612b002124", "0x61ca00200220b00600200900212a0069a503e00620b00703c0061c8002", "0x1020b00612b0061eb00212b00620b00612c0061d400212c00620b00603e", "0x20b0060430060fa00200220b00604100604d00213104712e04512d043041", "0x612e00604d00200220b00604500606100200220b00612d0061ef002002", "0x612b00204e00620b00610d00601600200220b00613100604d00200220b", "0x4700604b00204b04d13000920b00604f04e00738300204f00620b00603a", "0x20b0060020090020510069a613200620b00704b0060ea00204700620b006", "0x5813305612f01420b00601600637100205300620b0061320060ec002002", "0x39900200220b00613300639a00200220b00612f00639500213505b134136", "0x200220b00613400639700200220b00613600639800200220b006058006", "0x620b00613000601600200220b00613500620c00200220b00605b006396", "0x93d100206400620b0060560063d000213800620b00604d00612b002061", "0x670069a713900620b00705f00615100205f13705d00920b006064138061", "0x620b00600266800213b00620b00613900615200200220b006002009002", "0x206c00620b0060020ef00206a00620b00613b05304706900c66d002069", "0x606a00666e00207100620b00606c00604b00213f00620b00600900615d", "0x620b00600238200206f13c00720b00614107113f00966f00214100620b", "0x7607500720b00614506f13c00937b00214500620b00614500604b002145", "0x7600604b00207b00620b00600600612c00214b00620b00600200600c002", "0xc700620b00601000604b00207f00620b00601500604b00214a00620b006", "0x920b0061510c707f14a07b14b00f67000215100620b00601400604b002", "0x215200620b00615200602c00215200620b00614600602f002146079077", "0x900214f0069a814e00620b00715200603000207500620b00607500615d", "0x63500208300620b00600202a00200220b00614e00603300200220b006002", "0x20b00607700600c00215000620b00608500622300208500620b006083006", "0x15d00216000620b00605d00601600216100620b00607900612c00215e006", "0x20b00615000663600215d00620b00613700612b00215f00620b006075006", "0x14f00603300200220b00600200900216315d15f16016115e00f006163006", "0x604b00216200620b00600222200215c00620b00600213100200220b006", "0x620b00600213500208700620b00616215c00705b00216200620b006162", "0xc00208a00620b00615700663700215700620b00608715400705d002154", "0x20b00605d00601600216e00620b00607900612c00215b00620b006077006", "0x63600208e00620b00613700612b0020ed00620b00607500615d002168006", "0x220b00600200900216b08e0ed16816e15b00f00616b00620b00608a006", "0x20b00601500604d00200220b00601000604d00200220b00601400604d002", "0x606700663700200220b0060530060fa00200220b00604700604d002002", "0x209200620b00600600612c00216c00620b00600200600c0020d000620b", "0x613700612b00217100620b00600900615d00216d00620b00605d006016", "0x217309417116d09216c00f00617300620b0060d000663600209400620b", "0x200220b00601600604700200220b00604700604d00200220b006002009", "0x220b00601500604d00200220b00601000604d00200220b00601400604d", "0x600612c00217500620b00600200600c00209600620b006051006637002", "0x17600620b00600900615d00209900620b0061300060160020d100620b006", "0xd117500f00617a00620b00609600663600209b00620b00604d00612b002", "0x604d00200220b00601600604700200220b00600200900217a09b176099", "0x63700200220b00601500604d00200220b00601000604d00200220b006014", "0x20b00600600612c00217c00620b00600200600c00209d00620b00612a006", "0x12b00217d00620b00600900615d0020a000620b00610d0060160020cc006", "0x17d0a00cc17c00f00617e00620b00609d0066360020a200620b00603a006", "0x601600604700200220b00612000603300200220b00600200900217e0a2", "0x1500604d00200220b00601000604d00200220b00601400604d00200220b", "0x604b00217f00620b0060023f60020a400620b00600213100200220b006", "0x620b0060021350020cd00620b00617f0a400705b00217f00620b00617f", "0xc00218000620b0060a80066370020a800620b0060cd0d200705d0020d2", "0x20b0060070060160020ab00620b00600600612c0020ce00620b006002006", "0x6360020c800620b00600c00612b0020cf00620b00600900615d002181006", "0x20b0060090063980020c90c80cf1810ab0ce00f0060c900620b006180006", "0x600200600c00201600620b00600206500200c00620b006002669002002", "0x201900620b00600700612b00201b00620b00600600601600201700620b", "0x1b01701666a0020c400620b00600c00661600201c00620b00601600611b", "0x69a906500620b00701500666b00201501401000f00c20b0060c401c019", "0x611b00667100211b00620b00606500666c00200220b006002009002054", "0x9aa02b00620b0070290060c800202900620b00602a00667300202a00620b", "0x2d00652800202d00620b00602b0060c900200220b00600200900202c006", "0x3000620b00600f00600c00202f00620b00602e00621400202e00620b006", "0x2f00652900204800620b00601400612b00203300620b006010006016002", "0x2c00652a00200220b00600200900203904803303000c00603900620b006", "0x3700620b00601000601600211e00620b00600f00600c00203500620b006", "0x3711e00c00610d00620b00603500652900212000620b00601400612b002", "0xf00600c00203a00620b00605400652a00200220b00600200900210d120", "0x7d00620b00601400612b00212400620b00601000601600203c00620b006", "0x20b00600900621e00203e07d12403c00c00603e00620b00603a006529002", "0x201401000720b00600f00621e00200f00620b00600243e00201600c007", "0x20b00601400661f00201500620b00601600661f00200220b006010006349", "0x1600200220b0060020090020029ab00220b007017015007678002017006", "0x60650c400736500206500620b00600700612b0020c400620b006006006", "0x600200900211b0069ac05400620b00701c00636600201c01901b00920b", "0x202a02900720b00602900635b00202900620b00605400636800200220b", "0x9ad02d02c00720b00702b02a00200936900202b00c00720b00600c00635b", "0x60024d200200220b00602d00634900200220b00600200900202f02e007", "0x203500620b00600c00621b00203900620b00602c00600c00203000620b", "0x36600204803300720b00611e0350390094d300211e00620b00603000621b", "0x603700636800200220b0060020090021200069ae03700620b007048006", "0x900207d1240079af03c03a00720b00710d02903300936900210d00620b", "0x44300203e00620b00600202a00200220b00603c00634900200220b006002", "0x20b00612c00667a00212c00620b00612a00667900212a00620b00603e006", "0x12b00204300620b00601b00601600204100620b00603a00600c00212b006", "0x4512d04304100c00604500620b00612b00667b00212d00620b006019006", "0x12e00620b00600202a00200220b00607d00634900200220b006002009002", "0x13100667a00213100620b00604700667900204700620b00612e0064f4002", "0x4b00620b00601b00601600204d00620b00612400600c00213000620b006", "0x4b04d00c00604f00620b00613000667b00204e00620b00601900612b002", "0x612000667400200220b00602900634900200220b00600200900204f04e", "0x205300620b00601b00601600205100620b00603300600c00213200620b", "0x12f05305100c00605600620b00613200667b00212f00620b00601900612b", "0x20b00602900634900200220b00602f00634900200220b006002009002056", "0x613300667500213300620b00600202a00200220b00600c006349002002", "0x213400620b00613600667a00213600620b00605800667900205800620b", "0x601900612b00213500620b00601b00601600205b00620b00602e00600c", "0x200900213705d13505b00c00613700620b00613400667b00205d00620b", "0xc00205f00620b00611b00667400200220b00600c00634900200220b006", "0x20b00601900612b00213800620b00601b00601600206100620b006002006", "0x600200900213906413806100c00613900620b00605f00667b002064006", "0x6700640300206700620b00600202a00200220b00600c00634900200220b", "0x6a00620b00606900667a00206900620b00613b00667900213b00620b006", "0x700612b00213c00620b00600600601600206c00620b00600200600c002", "0x67600213f06f13c06c00c00613f00620b00606a00667b00206f00620b006", "0x20b0060020090020160069b200c0069b10090069b000700620b00c002006", "0x90020150069b50140069b40100069b300f00620b00c006006676002002", "0x220b00601700603300201b01700720b00600700667700200220b006002", "0x1b0061ff00200220b00601900603300201c01900720b00600f006677002", "0x620b00605406500767c00205400620b00601c0061ff00206500620b006", "0x20b0060020090020029b600600202d00211b00620b0060c400636f0020c4", "0x20b00600202a00200220b00600700603300200220b006010006033002002", "0x2d00211b00620b00602a00602c00202a00620b00602900602b002029006", "0x603300200220b00601400603300200220b0060020090020029b6006002", "0x202c00620b00602b00602b00202b00620b00600202a00200220b006007", "0x200220b0060020090020029b600600202d00211b00620b00602c00602c", "0x2d00620b00600202a00200220b00600700603300200220b006015006033", "0x11b00636f00211b00620b00602e00602c00202e00620b00602d00602b002", "0x600667600200220b0060020090020029b700600202d00202f00620b006", "0x200220b0060020090020390069ba0480069b90330069b803000620b00c", "0x3500620b00600202a00200220b00600900603300200220b006030006033", "0x600202d00203700620b00611e00602c00211e00620b00603500602b002", "0x603300210d12000720b00600900667700200220b0060020090020029bb", "0x220b00603a00603300203c03a00720b00603300667700200220b006120", "0x7d00767c00203e00620b00603c0061ff00207d00620b00610d0061ff002", "0x20029bb00600202d00203700620b00612400636f00212400620b00603e", "0x200220b00600900603300200220b00604800603300200220b006002009", "0x20b00612c00602c00212c00620b00612a00602b00212a00620b00600202a", "0x20b00603900603300200220b0060020090020029bb00600202d002037006", "0x612b00602b00212b00620b00600202a00200220b006009006033002002", "0x202f00620b00603700636f00203700620b00604100602c00204100620b", "0x9bc04300620b00c00600667600200220b0060020090020029b700600202d", "0x20b00604300603300200220b00600200900212e0069be0450069bd12d006", "0x604700602b00204700620b00600202a00200220b00600c006033002002", "0x20090020029bf00600202d00213000620b00613100602c00213100620b", "0x202a00200220b00600c00603300200220b00612d00603300200220b006", "0x13000620b00604b00602c00204b00620b00604d00602b00204d00620b006", "0x4e00720b00600c00667700200220b0060020090020029bf00600202d002", "0x603300205113200720b00604500667700200220b00604e00603300204f", "0x5600620b0060510061ff00212f00620b00604f0061ff00200220b006132", "0x202d00213000620b00605300636f00205300620b00605612f00767c002", "0xc00603300200220b00612e00603300200220b0060020090020029bf006", "0x2c00205800620b00613300602b00213300620b00600202a00200220b006", "0x29b700600202d00202f00620b00613000636f00213000620b006058006", "0x5b0069c11340069c013600620b00c00600667600200220b006002009002", "0x1600603300200220b00613600603300200220b0060020090021350069c2", "0x2c00213700620b00605d00602b00205d00620b00600202a00200220b006", "0x3300200220b0060020090020029c300600202d00205f00620b006137006", "0x206100620b00600202a00200220b00601600603300200220b006134006", "0x9c300600202d00205f00620b00613800602c00213800620b00606100602b", "0x20b00601600603300200220b00605b00603300200220b006002009002002", "0x13900602c00213900620b00606400602b00206400620b00600202a002002", "0x1600667700200220b0060020090020029c300600202d00205f00620b006", "0x6900720b00613500667700200220b00606700603300213b06700720b006", "0x6a0061ff00213c00620b00613b0061ff00200220b00606900603300206a", "0x620b00606c00636f00206c00620b00606f13c00767c00206f00620b006", "0x13f00600613f00620b00602f00636f00202f00620b00605f00636f00205f", "0x600266900200220b00600f00639800200f01600720b0060090063fb002", "0x1600201c00620b00600200600c00201400620b00600206500201000620b", "0x20b00601400611b00206500620b00600700612b0020c400620b006006006", "0x67e00202900620b00600c0060c600211b00620b006010006616002054006", "0x20b00701900667f00201901b01701500c20b00602911b0540650c401c00f", "0x202c00620b00602a00668300200220b00600200900202b0069c402a006", "0x702d0063bc00202d00620b00602e0063bb00202e00620b00602c0063b8", "0x3300620b00602f0065eb00200220b0060020090020300069c502f00620b", "0x600c00203900620b00604800668000204800620b006033016007684002", "0x620b00601b00612b00211e00620b00601700601600203500620b006015", "0x20b00600200900212003711e03500c00612000620b006039006681002037", "0x1500600c00210d00620b00603000668200200220b006016006398002002", "0x12400620b00601b00612b00203c00620b00601700601600203a00620b006", "0x220b00600200900207d12403c03a00c00607d00620b00610d006681002", "0x601500600c00203e00620b00602b00668200200220b006016006398002", "0x212b00620b00601b00612b00212c00620b00601700601600212a00620b", "0x620b00600200668500204112b12c12a00c00604100620b00603e006681", "0x643d00201600620b00600700643d00200900620b006006006685002007", "0x20b00600c00636f00200c00620b00600f01600721a00200f00620b006009", "0x620b00600f00668700200f00620b00600c006446002010006006010006", "0x60160065de00201400620b00600213100201000620b006002131002016", "0x20c400620b00600200600c00200220b0060150065df00201701500720b", "0x601000604e00205400620b0060170065e000206500620b006006006016", "0x602911b0540650c40165e600202900620b00601400604e00211b00620b", "0x9c602a00620b00701c0065e800200220b00600200600201c01901b00920b", "0x3300202e02d02c00920b00602a0065e900200220b00600200900202b006", "0x20b00602f00605100203002f00720b00602c00613200200220b00602e006", "0x5100203904800720b00602d00613200203300620b006030006053002002", "0x620b00603300600f00203500620b00603900605300200220b006048006", "0x11e00720b00703503300701900c5ea00203500620b00603500600f002033", "0x203c00620b00600202a00200220b00600200900203a10d1200099c7037", "0x603700612b00207d00620b00611e00601600212400620b00603c0063b7", "0x20090020029c800600202d00212a00620b0061240063b800203e00620b", "0x207d00620b00612000601600212c00620b00603a0063b900200220b006", "0x612a0063ba00212a00620b00612c0063b800203e00620b00610d00612b", "0x9c904300620b00712b0063bc00212b00620b0060410063bb00204100620b", "0x20b0060430065eb00200220b00600211e00200220b00600200900212d006", "0x204700620b00612e00648500212e00620b006045009007484002045006", "0x603e00612b00213000620b00607d00601600213100620b00601b00600c", "0x200900204b04d13013100c00604b00620b00604700644c00204d00620b", "0x12d00644b00200220b00600900604700200220b00600211e00200220b006", "0x13200620b00607d00601600204f00620b00601b00600c00204e00620b006", "0x13204f00c00605300620b00604e00644c00205100620b00603e00612b002", "0x20b00600900604700200220b00600211e00200220b006002009002053051", "0x601600205600620b00601b00600c00212f00620b00602b00644b002002", "0x620b00612f00644c00205800620b00600700612b00213300620b006019", "0x1600620c00201600c00720b0060070065d300213605813305600c006136", "0x22400201000620b00600900653c00200f00620b00600268800200220b006", "0x620b00601500611b00201500620b00600206500201400620b00600f006", "0x720b00701001401500600201662200201400620b006014006640002015", "0x6500620b00600202a00200220b0060020090020c401c0190099ca01b017", "0x1b00612b00211b00620b00601700601600205400620b0060650063b7002", "0x90020029cb00600202d00202a00620b0060540063b800202900620b006", "0x11b00620b00601900601600202b00620b0060c40063b900200220b006002", "0x2a0063ba00202a00620b00602b0063b800202900620b00601c00612b002", "0x2e00620b00702c0063bc00202c00620b00602d0063bb00202d00620b006", "0x768d00203000620b00602e0065eb00200220b00600200900202f0069cc", "0x20b00611b00601600204800620b00603300668e00203300620b00603000c", "0x900611e00620b00604800621d00203500620b00602900612b002039006", "0x2f00668900200220b00600c00620c00200220b00600200900211e035039", "0x10d00620b00602900612b00212000620b00611b00601600203700620b006", "0x720b0060070065a500203a10d12000900603a00620b00603700621d002", "0x900653c00200f00620b00600268a00200220b00601600639600201600c", "0x201500620b00600206500201400620b00600f00622400201000620b006", "0x600201662200201400620b00601400664000201500620b00601500611b", "0x200220b0060020090020c401c0190099cd01b01700720b007010014015", "0x20b00601700601600205400620b0060650063b700206500620b00600202a", "0x2d00202a00620b0060540063b800202900620b00601b00612b00211b006", "0x1600202b00620b0060c40063b900200220b0060020090020029ce006002", "0x20b00602b0063b800202900620b00601c00612b00211b00620b006019006", "0x3bc00202c00620b00602d0063bb00202d00620b00602a0063ba00202a006", "0x602e0065eb00200220b00600200900202f0069cf02e00620b00702c006", "0x4800620b00603300668c00203300620b00603000c00768b00203000620b", "0x4800668f00203500620b00602900612b00203900620b00611b006016002", "0x600c00639600200220b00600200900211e03503900900611e00620b006", "0x12b00212000620b00611b00601600203700620b00602f00669100200220b", "0x203a10d12000900603a00620b00603700668f00210d00620b006029006", "0x20b00600263f00200220b00601600639b00201600c00720b0060070063cf", "0x611b00201400620b00600206500201000620b00600f00622400200f006", "0x1001400600201662200201000620b00601000664000201400620b006014", "0x202a00200220b00600200900201c01901b0099d001701500720b007009", "0x5400620b00601500601600206500620b0060c40063b70020c400620b006", "0x600202d00202900620b0060650063b800211b00620b00601700612b002", "0x1b00601600202a00620b00601c0063b900200220b0060020090020029d1", "0x2900620b00602a0063b800211b00620b00601900612b00205400620b006", "0x2b0063bc00202b00620b00602c0063bb00202c00620b0060290063ba002", "0x620b00602d0065eb00200220b00600200900202e0069d202d00620b007", "0x1600203300620b00603000669300203000620b00602f00c00769200202f", "0x20b00603300669400203900620b00611b00612b00204800620b006054006", "0x220b00600c00639b00200220b006002009002035039048009006035006", "0x11b00612b00203700620b00605400601600211e00620b00602e006695002", "0x645800210d12003700900610d00620b00611e00669400212000620b006", "0x1000620b00600213100201600620b00600f00669600200f00620b00600c", "0x150065df00201701500720b0060160065de00201400620b006002131002", "0x206500620b0060060060160020c400620b00600200600c00200220b006", "0x601400604e00211b00620b00601000604e00205400620b0060170065e0", "0x200600201c01901b00920b00602911b0540650c40165e600202900620b", "0x220b00600200900202b0069d302a00620b00701c0065e800200220b006", "0x613200200220b00602e00603300202e02d02c00920b00602a0065e9002", "0x620b00603000605300200220b00602f00605100203002f00720b00602c", "0x605300200220b00604800605100203904800720b00602d006132002033", "0x620b00603500600f00203300620b00603300600f00203500620b006039", "0x900203a10d1200099d403711e00720b00703503300701900c5ea002035", "0x212400620b00603c0063b700203c00620b00600202a00200220b006002", "0x61240063b800203e00620b00603700612b00207d00620b00611e006016", "0x603a0063b900200220b0060020090020029d500600202d00212a00620b", "0x203e00620b00610d00612b00207d00620b00612000601600212c00620b", "0x60410063bb00204100620b00612a0063ba00212a00620b00612c0063b8", "0x220b00600200900212d0069d604300620b00712b0063bc00212b00620b", "0x604500900748400204500620b0060430065eb00200220b00600211e002", "0x213100620b00601b00600c00204700620b00612e00648500212e00620b", "0x604700644c00204d00620b00603e00612b00213000620b00607d006016", "0x20b00600211e00200220b00600200900204b04d13013100c00604b00620b", "0x1b00600c00204e00620b00612d00644b00200220b006009006047002002", "0x5100620b00603e00612b00213200620b00607d00601600204f00620b006", "0x220b00600200900205305113204f00c00605300620b00604e00644c002", "0x620b00602b00644b00200220b00600900604700200220b00600211e002", "0x612b00213300620b00601900601600205600620b00601b00600c00212f", "0x213605813305600c00613600620b00612f00644c00205800620b006007", "0x20b00600213100201600620b00600f00669700200f00620b00600c006480", "0x5df00201701500720b0060160065de00201400620b006002131002010006", "0x620b0060060060160020c400620b00600200600c00200220b006015006", "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", "0x600200900202b0069d702a00620b00701c0065e800200220b006002006", "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", "0x603000605300200220b00602f00605100203002f00720b00602c006132", "0x200220b00604800605100203904800720b00602d00613200203300620b", "0x603500600f00203300620b00603300600f00203500620b006039006053", "0x3a10d1200099d803711e00720b00703503300701900c5ea00203500620b", "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", "0x63b900200220b0060020090020029d900600202d00212a00620b006124", "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", "0x600200900212d0069da04300620b00712b0063bc00212b00620b006041", "0x900748400204500620b0060430065eb00200220b00600211e00200220b", "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", "0x600200900205305113204f00c00605300620b00604e00644c002051006", "0x602b00644b00200220b00600900604700200220b00600211e00200220b", "0x213300620b00601900601600205600620b00601b00600c00212f00620b", "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", "0x264700200220b00601600639a00201600c00720b0060070063d2002136", "0x201400620b00600206500201000620b00600f00622400200f00620b006", "0x600201662200201000620b00601000664000201400620b00601400611b", "0x200220b00600200900201c01901b0099db01701500720b007009010014", "0x20b00601500601600206500620b0060c40063b70020c400620b00600202a", "0x2d00202900620b0060650063b800211b00620b00601700612b002054006", "0x1600202a00620b00601c0063b900200220b0060020090020029dc006002", "0x20b00602a0063b800211b00620b00601900612b00205400620b00601b006", "0x3bc00202b00620b00602c0063bb00202c00620b0060290063ba002029006", "0x602d0065eb00200220b00600200900202e0069dd02d00620b00702b006", "0x3300620b00603000621c00203000620b00602f00c00769800202f00620b", "0x3300669a00203900620b00611b00612b00204800620b006054006016002", "0x600c00639a00200220b00600200900203503904800900603500620b006", "0x12b00203700620b00605400601600211e00620b00602e00669900200220b", "0x210d12003700900610d00620b00611e00669a00212000620b00611b006", "0x20b00600213100201600620b00600f00669b00200f00620b00600c00649f", "0x5df00201701500720b0060160065de00201400620b006002131002010006", "0x620b0060060060160020c400620b00600200600c00200220b006015006", "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", "0x600200900202b0069de02a00620b00701c0065e800200220b006002006", "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", "0x603000605300200220b00602f00605100203002f00720b00602c006132", "0x200220b00604800605100203904800720b00602d00613200203300620b", "0x603500600f00203300620b00603300600f00203500620b006039006053", "0x3a10d1200099df03711e00720b00703503300701900c5ea00203500620b", "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", "0x63b900200220b0060020090020029e000600202d00212a00620b006124", "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", "0x600200900212d0069e104300620b00712b0063bc00212b00620b006041", "0x900748400204500620b0060430065eb00200220b00600211e00200220b", "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", "0x600200900205305113204f00c00605300620b00604e00644c002051006", "0x602b00644b00200220b00600900604700200220b00600211e00200220b", "0x213300620b00601900601600205600620b00601b00600c00212f00620b", "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", "0x264800200220b00601600639900201600c00720b0060070063dd002136", "0x201400620b00600206500201000620b00600f00622400200f00620b006", "0x600201662200201000620b00601000664000201400620b00601400611b", "0x200220b00600200900201c01901b0099e201701500720b007009010014", "0x20b00601500601600206500620b0060c40063b70020c400620b00600202a", "0x2d00202900620b0060650063b800211b00620b00601700612b002054006", "0x1600202a00620b00601c0063b900200220b0060020090020029e3006002", "0x20b00602a0063b800211b00620b00601900612b00205400620b00601b006", "0x3bc00202b00620b00602c0063bb00202c00620b0060290063ba002029006", "0x602d0065eb00200220b00600200900202e0069e402d00620b00702b006", "0x3300620b00603000669e00203000620b00602f00c00769d00202f00620b", "0x3300669f00203900620b00611b00612b00204800620b006054006016002", "0x600c00639900200220b00600200900203503904800900603500620b006", "0x12b00203700620b00605400601600211e00620b00602e0066a000200220b", "0x210d12003700900610d00620b00611e00669f00212000620b00611b006", "0x20b00600213100201600620b00600f0066a100200f00620b00600c0064ba", "0x5df00201701500720b0060160065de00201400620b006002131002010006", "0x620b0060060060160020c400620b00600200600c00200220b006015006", "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", "0x600200900202b0069e502a00620b00701c0065e800200220b006002006", "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", "0x603000605300200220b00602f00605100203002f00720b00602c006132", "0x200220b00604800605100203904800720b00602d00613200203300620b", "0x603500600f00203300620b00603300600f00203500620b006039006053", "0x3a10d1200099e603711e00720b00703503300701900c5ea00203500620b", "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", "0x63b900200220b0060020090020029e700600202d00212a00620b006124", "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", "0x600200900212d0069e804300620b00712b0063bc00212b00620b006041", "0x900748400204500620b0060430065eb00200220b00600211e00200220b", "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", "0x600200900205305113204f00c00605300620b00604e00644c002051006", "0x602b00644b00200220b00600900604700200220b00600211e00200220b", "0x213300620b00601900601600205600620b00601b00600c00212f00620b", "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", "0x600200900200f0160079e900c00900720b0070070060020096a2002136", "0x6a400201400620b00600900600c00201000620b00600c0066a300200220b", "0x6a500200220b0060020090020029ea00600202d00201500620b006010006", "0x20b0060170066a400201400620b00601600600c00201700620b00600f006", "0x604b00201c00620b0060150066a800201b00620b0060026a6002015006", "0x20b00701900636600201900620b0060c401c0076a90020c400620b00601b", "0x211b00620b00606500636800200220b0060020090020540069eb065006", "0x601400600c00202a00620b00602900661200202900620b00611b006226", "0x20b00600200900202c02b00700602c00620b00602a00661300202b00620b", "0x661300202e00620b00601400600c00202d00620b006054006614002002", "0x66aa00200f00620b00600c0064d700202f02e00700602f00620b00602d", "0x201400620b00600213100201000620b00600213100201600620b00600f", "0x600200600c00200220b0060150065df00201701500720b0060160065de", "0x205400620b0060170065e000206500620b0060060060160020c400620b", "0x650c40165e600202900620b00601400604e00211b00620b00601000604e", "0x701c0065e800200220b00600200600201c01901b00920b00602911b054", "0x2c00920b00602a0065e900200220b00600200900202b0069ec02a00620b", "0x5100203002f00720b00602c00613200200220b00602e00603300202e02d", "0x720b00602d00613200203300620b00603000605300200220b00602f006", "0x600f00203500620b00603900605300200220b006048006051002039048", "0x3503300701900c5ea00203500620b00603500600f00203300620b006033", "0x600202a00200220b00600200900203a10d1200099ed03711e00720b007", "0x207d00620b00611e00601600212400620b00603c0063b700203c00620b", "0x9ee00600202d00212a00620b0061240063b800203e00620b00603700612b", "0x612000601600212c00620b00603a0063b900200220b006002009002002", "0x212a00620b00612c0063b800203e00620b00610d00612b00207d00620b", "0x712b0063bc00212b00620b0060410063bb00204100620b00612a0063ba", "0x5eb00200220b00600211e00200220b00600200900212d0069ef04300620b", "0x612e00648500212e00620b00604500900748400204500620b006043006", "0x213000620b00607d00601600213100620b00601b00600c00204700620b", "0x4d13013100c00604b00620b00604700644c00204d00620b00603e00612b", "0x220b00600900604700200220b00600211e00200220b00600200900204b", "0x7d00601600204f00620b00601b00600c00204e00620b00612d00644b002", "0x5300620b00604e00644c00205100620b00603e00612b00213200620b006", "0x4700200220b00600211e00200220b00600200900205305113204f00c006", "0x620b00601b00600c00212f00620b00602b00644b00200220b006009006", "0x644c00205800620b00600700612b00213300620b006019006016002056", "0x200f00620b00600c0064eb00213605813305600c00613600620b00612f", "0x620b00600213100201000620b00600213100201600620b00600f0066ac", "0x600c00200220b0060150065df00201701500720b0060160065de002014", "0x620b0060170065e000206500620b0060060060160020c400620b006002", "0x165e600202900620b00601400604e00211b00620b00601000604e002054", "0x65e800200220b00600200600201c01901b00920b00602911b0540650c4", "0x20b00602a0065e900200220b00600200900202b0069f002a00620b00701c", "0x3002f00720b00602c00613200200220b00602e00603300202e02d02c009", "0x602d00613200203300620b00603000605300200220b00602f006051002", "0x203500620b00603900605300200220b00604800605100203904800720b", "0x701900c5ea00203500620b00603500600f00203300620b00603300600f", "0x2a00200220b00600200900203a10d1200099f103711e00720b007035033", "0x620b00611e00601600212400620b00603c0063b700203c00620b006002", "0x202d00212a00620b0061240063b800203e00620b00603700612b00207d", "0x601600212c00620b00603a0063b900200220b0060020090020029f2006", "0x620b00612c0063b800203e00620b00610d00612b00207d00620b006120", "0x63bc00212b00620b0060410063bb00204100620b00612a0063ba00212a", "0x220b00600211e00200220b00600200900212d0069f304300620b00712b", "0x648500212e00620b00604500900748400204500620b0060430065eb002", "0x620b00607d00601600213100620b00601b00600c00204700620b00612e", "0x13100c00604b00620b00604700644c00204d00620b00603e00612b002130", "0x600900604700200220b00600211e00200220b00600200900204b04d130", "0x1600204f00620b00601b00600c00204e00620b00612d00644b00200220b", "0x20b00604e00644c00205100620b00603e00612b00213200620b00607d006", "0x220b00600211e00200220b00600200900205305113204f00c006053006", "0x601b00600c00212f00620b00602b00644b00200220b006009006047002", "0x205800620b00600700612b00213300620b00601900601600205600620b", "0x620b00600c0064fb00213605813305600c00613600620b00612f00644c", "0x600213100201000620b00600213100201600620b00600f0066ad00200f", "0x200220b0060150065df00201701500720b0060160065de00201400620b", "0x60170065e000206500620b0060060060160020c400620b00600200600c", "0x202900620b00601400604e00211b00620b00601000604e00205400620b", "0x200220b00600200600201c01901b00920b00602911b0540650c40165e6", "0x2a0065e900200220b00600200900202b0069f402a00620b00701c0065e8", "0x720b00602c00613200200220b00602e00603300202e02d02c00920b006", "0x613200203300620b00603000605300200220b00602f00605100203002f", "0x620b00603900605300200220b00604800605100203904800720b00602d", "0xc5ea00203500620b00603500600f00203300620b00603300600f002035", "0x220b00600200900203a10d1200099f503711e00720b007035033007019", "0x611e00601600212400620b00603c0063b700203c00620b00600202a002", "0x212a00620b0061240063b800203e00620b00603700612b00207d00620b", "0x212c00620b00603a0063b900200220b0060020090020029f600600202d", "0x612c0063b800203e00620b00610d00612b00207d00620b006120006016", "0x212b00620b0060410063bb00204100620b00612a0063ba00212a00620b", "0x600211e00200220b00600200900212d0069f704300620b00712b0063bc", "0x212e00620b00604500900748400204500620b0060430065eb00200220b", "0x607d00601600213100620b00601b00600c00204700620b00612e006485", "0x604b00620b00604700644c00204d00620b00603e00612b00213000620b", "0x604700200220b00600211e00200220b00600200900204b04d13013100c", "0x4f00620b00601b00600c00204e00620b00612d00644b00200220b006009", "0x4e00644c00205100620b00603e00612b00213200620b00607d006016002", "0x600211e00200220b00600200900205305113204f00c00605300620b006", "0x600c00212f00620b00602b00644b00200220b00600900604700200220b", "0x620b00600700612b00213300620b00601900601600205600620b00601b", "0x600c00650e00213605813305600c00613600620b00612f00644c002058", "0x13100201000620b00600213100201600620b00600f0066ae00200f00620b", "0x20b0060150065df00201701500720b0060160065de00201400620b006002", "0x65e000206500620b0060060060160020c400620b00600200600c002002", "0x620b00601400604e00211b00620b00601000604e00205400620b006017", "0x20b00600200600201c01901b00920b00602911b0540650c40165e6002029", "0x5e900200220b00600200900202b0069f802a00620b00701c0065e8002002", "0x602c00613200200220b00602e00603300202e02d02c00920b00602a006", "0x203300620b00603000605300200220b00602f00605100203002f00720b", "0x603900605300200220b00604800605100203904800720b00602d006132", "0x203500620b00603500600f00203300620b00603300600f00203500620b", "0x600200900203a10d1200099f903711e00720b00703503300701900c5ea", "0x601600212400620b00603c0063b700203c00620b00600202a00200220b", "0x620b0061240063b800203e00620b00603700612b00207d00620b00611e", "0x620b00603a0063b900200220b0060020090020029fa00600202d00212a", "0x63b800203e00620b00610d00612b00207d00620b00612000601600212c", "0x620b0060410063bb00204100620b00612a0063ba00212a00620b00612c", "0x11e00200220b00600200900212d0069fb04300620b00712b0063bc00212b", "0x620b00604500900748400204500620b0060430065eb00200220b006002", "0x601600213100620b00601b00600c00204700620b00612e00648500212e", "0x620b00604700644c00204d00620b00603e00612b00213000620b00607d", "0x200220b00600211e00200220b00600200900204b04d13013100c00604b", "0x20b00601b00600c00204e00620b00612d00644b00200220b006009006047", "0x44c00205100620b00603e00612b00213200620b00607d00601600204f006", "0x11e00200220b00600200900205305113204f00c00605300620b00604e006", "0x212f00620b00602b00644b00200220b00600900604700200220b006002", "0x600700612b00213300620b00601900601600205600620b00601b00600c", "0x661f00213605813305600c00613600620b00612f00644c00205800620b", "0x720b00600900613000200900620b00600700662000200700620b006002", "0x604e00201400620b00601600604b00200220b00600c00604d00201600c", "0x601000603300201000f00720b00601501400704f00201500620b006006", "0x61ff00201b00620b00600f00604e00201700620b00600202a00200220b", "0x66b100200700620b0060020066af00201901b00700601900620b006017", "0x20b00600c00604d00201600c00720b00600900613000200900620b006007", "0x704f00201500620b00600600604e00201400620b00601600604b002002", "0x620b00600202a00200220b00601000603300201000f00720b006015014", "0x1b00700601900620b0060170061ff00201b00620b00600f00604e002017", "0x20b00600206500200c00620b00600268a00200220b006009006396002019", "0x12b00201b00620b00600600601600201700620b00600200600c002016006", "0x20b00600c00661600201c00620b00601600611b00201900620b006007006", "0x66b400201501401000f00c20b0060c401c01901b0170166b30020c4006", "0x20b0060650066b500200220b0060020090020540069fc06500620b007015", "0x18f00202900620b00602a0066b700202a00620b00611b0066b600211b006", "0x602b0060be00200220b00600200900202c0069fd02b00620b007029006", "0x202f00620b00602e00653a00202e00620b00602d00653900202d00620b", "0x601400612b00203300620b00601000601600203000620b00600f00600c", "0x200900203904803303000c00603900620b00602f00621300204800620b", "0x211e00620b00600f00600c00203500620b00602c00653b00200220b006", "0x603500621300212000620b00601400612b00203700620b006010006016", "0x605400653b00200220b00600200900210d12003711e00c00610d00620b", "0x212400620b00601000601600203c00620b00600f00600c00203a00620b", "0x7d12403c00c00603e00620b00603a00621300207d00620b00601400612b", "0x20b00600206500200c00620b00600268800200220b00600900620c00203e", "0x12b00201b00620b00600600601600201700620b00600200600c002016006", "0x20b00600c00661600201c00620b00601600611b00201900620b006007006", "0x66b400201501401000f00c20b0060c401c01901b0170166b30020c4006", "0x20b0060650066b500200220b0060020090020540069fe06500620b007015", "0x18f00202900620b00602a0066b700202a00620b00611b0066b600211b006", "0x602b0060be00200220b00600200900202c0069ff02b00620b007029006", "0x202f00620b00602e00653a00202e00620b00602d00653900202d00620b", "0x601400612b00203300620b00601000601600203000620b00600f00600c", "0x200900203904803303000c00603900620b00602f00621300204800620b", "0x211e00620b00600f00600c00203500620b00602c00653b00200220b006", "0x603500621300212000620b00601400612b00203700620b006010006016", "0x605400653b00200220b00600200900210d12003711e00c00610d00620b", "0x212400620b00601000601600203c00620b00600f00600c00203a00620b", "0x7d12403c00c00603e00620b00603a00621300207d00620b00601400612b", "0x9002016006a0200c006a01009006a0000700620b00c00200667600203e", "0x1401000720b00600f00613000200f00620b0060020ef00200220b006002", "0x600600604e00201b00620b00601400604b00200220b00601000604d002", "0x220b00601700603300201701500720b00601901b00704f00201900620b", "0x650076b800205400620b00601500604e00206500620b0060070061ff002", "0x620b00601c00604e00200220b0060c40060330020c401c00720b006054", "0x2900620b00600200000200220b006002009002002a0300600202d00211b", "0x2b00604b00200220b00602a00604d00202b02a00720b006029006130002", "0x720b00602f02e00704f00202f00620b00600600604e00202e00620b006", "0x604e00204800620b0060090061ff00200220b00602d00603300202d02c", "0x603300603300203303000720b0060390480076b800203900620b00602c", "0x6002009002002a0300600202d00211b00620b00603000604e00200220b", "0x4d00203711e00720b00603500613000203500620b0060023f700200220b", "0x620b00600600604e00203a00620b00603700604b00200220b00611e006", "0x1ff00200220b00610d00603300210d12000720b00603c03a00704f00203c", "0x612a03e0076b800212a00620b00612000604e00203e00620b00600c006", "0x211b00620b00612400604e00200220b00607d00603300207d12400720b", "0x13000212c00620b0060026b900200220b006002009002002a0300600202d", "0x20b00604100604b00200220b00612b00604d00204112b00720b00612c006", "0x12d04300720b00612e04500704f00212e00620b00600600604e002045006", "0x604300604e00213000620b0060160061ff00200220b00612d006033002", "0x220b00613100603300213104700720b00604d1300076b800204d00620b", "0x611b00652d00204b00620b00600202a00211b00620b00604700604e002", "0x600c00656700204f04e00700604f00620b00604b0061ff00204e00620b", "0x13100201000620b00600213100201600620b00600f0066ba00200f00620b", "0x20b0060150065df00201701500720b0060160065de00201400620b006002", "0x65e000206500620b0060060060160020c400620b00600200600c002002", "0x620b00601400604e00211b00620b00601000604e00205400620b006017", "0x20b00600200600201c01901b00920b00602911b0540650c40165e6002029", "0x5e900200220b00600200900202b006a0402a00620b00701c0065e8002002", "0x602c00613200200220b00602e00603300202e02d02c00920b00602a006", "0x203300620b00603000605300200220b00602f00605100203002f00720b", "0x603900605300200220b00604800605100203904800720b00602d006132", "0x203500620b00603500600f00203300620b00603300600f00203500620b", "0x600200900203a10d120009a0503711e00720b00703503300701900c5ea", "0x601600212400620b00603c0063b700203c00620b00600202a00200220b", "0x620b0061240063b800203e00620b00603700612b00207d00620b00611e", "0x620b00603a0063b900200220b006002009002002a0600600202d00212a", "0x63b800203e00620b00610d00612b00207d00620b00612000601600212c", "0x620b0060410063bb00204100620b00612a0063ba00212a00620b00612c", "0x11e00200220b00600200900212d006a0704300620b00712b0063bc00212b", "0x620b00604500900748400204500620b0060430065eb00200220b006002", "0x601600213100620b00601b00600c00204700620b00612e00648500212e", "0x620b00604700644c00204d00620b00603e00612b00213000620b00607d", "0x200220b00600211e00200220b00600200900204b04d13013100c00604b", "0x20b00601b00600c00204e00620b00612d00644b00200220b006009006047", "0x44c00205100620b00603e00612b00213200620b00607d00601600204f006", "0x11e00200220b00600200900205305113204f00c00605300620b00604e006", "0x212f00620b00602b00644b00200220b00600900604700200220b006002", "0x600700612b00213300620b00601900601600205600620b00601b00600c", "0x207500213605813305600c00613600620b00612f00644c00205800620b", "0x211e00200220b00600213900200f00620b00600233500200c00620b006", "0x201b00620b00600700600f00201700620b00600200600c00200220b006", "0x6a0801600620b00701500633700201501401000920b00601b017007336", "0x606500607600206500620b00601400600f00200220b006002009002019", "0x620b0070c400607700201600620b00601600f0073390020c401c00720b", "0x1600202b00620b00601000600c00200220b006002009002054006a09009", "0x600900c00707900202d00620b00601c00600f00202c00620b006006006", "0x702a00614b00202a02911b00920b00602d02c02b00914600200900620b", "0x3000720b00602e00607b00200220b00600200900202f006a0a02e00620b", "0x6bb00200220b006002009002039006a0b04800620b00703300614a002033", "0x300076bd00211e00620b0060350066bc00203500620b006048009016009", "0x620b00611b00600c00212000620b0060370066c100203700620b00611e", "0x10d00900603c00620b0061200066c200203a00620b00602900601600210d", "0x600900604d00200220b0060160060fa00200220b00600200900203c03a", "0x207d00620b0061240300076bd00212400620b0060390066c300200220b", "0x602900601600212a00620b00611b00600c00203e00620b00607d0066c1", "0x600200900212b12c12a00900612b00620b00603e0066c200212c00620b", "0x2f0066be00200220b0060160060fa00200220b00600900604d00200220b", "0x12d00620b00602900601600204300620b00611b00600c00204100620b006", "0x200220b00600200900204512d04300900604500620b0060410066c2002", "0x620b0060540066c300200220b00600c00614e00200220b0060160060fa", "0xc00213100620b0060470066c100204700620b00612e01c0076bd00212e", "0x20b0061310066c200204d00620b00600600601600213000620b006010006", "0x220b00600c00614e00200220b00600200900204b04d13000900604b006", "0x4e0140076bd00204e00620b0060190066c300200220b00600f00634d002", "0x5100620b00601000600c00213200620b00604f0066c100204f00620b006", "0x5305100900612f00620b0061320066c200205300620b006006006016002", "0x200900201000f016009a0c00c00900700920b0070060020076bf00212f", "0x201500620b00600700601600201400620b00600c0066c000200220b006", "0xa0d00600202d00201b00620b0060140066c400201700620b00600900612b", "0x601600601600201900620b0060100066c600200220b006002009002002", "0x201b00620b0060190066c400201700620b00600f00612b00201500620b", "0x701c00657700201c00620b0060c40066c80020c400620b00601b0066c7", "0x11b00620b00606500657900200220b006002009002054006a0e06500620b", "0x1500601600202a00620b0060290066ca00202900620b00611b0066c9002", "0x2d00620b00602a0066cb00202c00620b00601700612b00202b00620b006", "0x202e00620b0060540066cc00200220b00600200900202d02c02b009006", "0x602e0066cb00203000620b00601700612b00202f00620b006015006016", "0xa0f00c00900720b0070070060020096cd00203303002f00900603300620b", "0xf0066cf00200f00620b00600c0066ce00200220b006002009002016006", "0x1500620b0060100066d100201400620b00600900600c00201000620b006", "0x222a00201700620b00600213100200220b006002009002015014007006", "0x620b00601b01700705b00201b00620b00601b00604b00201b00620b006", "0x66d20020c400620b00601901c00705d00201c00620b006002135002019", "0x620b0060650066d100205400620b00601600600c00206500620b0060c4", "0x620b00600700612b00201000620b00600600601600211b05400700611b", "0x1500620b00700f0061c800200f01600c00920b0060140100070f4002014", "0x61d400201b00620b0060150061ca00200220b006002009002017006a10", "0x202a02911b0540650c401c01020b0060190061eb00201900620b00601b", "0x220b00605400606100200220b0060c40060fa00200220b00601c00604d", "0x20b00602a00604d00200220b00602900604d00200220b00611b00604d002", "0x650066d500202b00620b00602b0066d500202b00620b0060026d3002002", "0x202f02e007a1102d02c00720b00706502b00200922b00206500620b006", "0x203000620b00600202a00200220b00602d0061ef00200220b006002009", "0x603300602c00204800620b00602c00600c00203300620b00603000602e", "0x602f0061ef00200220b006002009002002a1200600202d00203900620b", "0x600c00211e00620b00603500602b00203500620b00600202a00200220b", "0x620b00603900602f00203900620b00611e00602c00204800620b00602e", "0x10d006a1312000620b00703700603000203700620b00603700602c002037", "0x3a00620b0060026d600200220b00612000603300200220b006002009002", "0xa1412403c00720b00703a0090480096d700203a00620b00603a00611b002", "0x600202a00200220b0061240060c400200220b00600200900203e07d007", "0x212b00620b00603c00600c00212c00620b00612a00602b00212a00620b", "0x200220b006002009002002a1500600202d00204100620b00612c00602c", "0x620b00604300602e00204300620b00600202a00200220b00603e0060c4", "0x602f00204100620b00612d00602c00212b00620b00607d00600c00212d", "0x620b00704500603000204500620b00604500602c00204500620b006041", "0x202a00200220b00612e00603300200220b006002009002047006a1612e", "0x4d00620b00613000622300213000620b00613100663500213100620b006", "0x1600612b00204e00620b00600c00601600204b00620b00612b00600c002", "0x900213204f04e04b00c00613200620b00604d00663600204f00620b006", "0x6d900205100620b00600213100200220b00604700603300200220b006002", "0x20b00605305100705b00205300620b00605300604b00205300620b006002", "0x63700213300620b00612f05600705d00205600620b00600213500212f006", "0x20b00600c00601600213600620b00612b00600c00205800620b006133006", "0xc00613500620b00605800663600205b00620b00601600612b002134006", "0x60c400200220b00610d00603300200220b00600200900213505b134136", "0x4b00213700620b0060026da00205d00620b00600213100200220b006009", "0x20b00600213500205f00620b00613705d00705b00213700620b006137006", "0x206400620b00613800663700213800620b00605f06100705d002061006", "0x601600612b00206700620b00600c00601600213900620b00604800600c", "0x200900206913b06713900c00606900620b00606400663600213b00620b", "0xc00206a00620b00601700663700200220b0060090060c400200220b006", "0x20b00601600612b00213c00620b00600c00601600206c00620b006002006", "0x20096db00213f06f13c06c00c00613f00620b00606a00663600206f006", "0x66dc00200220b00600200900200f016007a1700c00900720b007007006", "0x620b0060100066dd00201400620b00600900600c00201000620b00600c", "0x620b00600f0066df00200220b006002009002002a1800600202d002015", "0x26e000201500620b0060170066dd00201400620b00601600600c002017", "0xc400620b00601b00604b00201c00620b0060150066e100201b00620b006", "0x54006a1906500620b00701900618f00201900620b0060c401c0076e2002", "0x20b00611b00653900211b00620b0060650060be00200220b006002009002", "0x21300202b00620b00601400600c00202a00620b00602900653a002029006", "0x5400653b00200220b00600200900202c02b00700602c00620b00602a006", "0x2f00620b00602d00621300202e00620b00601400600c00202d00620b006", "0x620b00601000601b00201000f00720b00600f0066e300202f02e007006", "0xc400201b01700720b00601500601c00201500620b006014006019002014", "0x1c00720b00601900601c00201900620b0060026e400200220b006017006", "0x6500601c00206500620b00601b00605400200220b00601c0060c40020c4", "0x2900620b0060c400605400200220b0060540060c400211b05400720b006", "0x11b00605400200220b00602a0060c400202b02a00720b00602900601c002", "0x2c00620b00602c00611b00202d00620b00602b00605400202c00620b006", "0x600202a00200220b006002009002002a1a00220b00702d02c007029002", "0x203000620b00602f00602c00202f00620b00602e00602b00202e00620b", "0x2e00203300620b00600202a00200220b006002009002002a1b00600202d", "0x20b00603000602f00203000620b00604800602c00204800620b006033006", "0x6a1c03500620b00703900603000203900620b00603900602c002039006", "0x20b00600f0066e500200220b00603500603300200220b00600200900211e", "0x203a00620b00610d0066e600210d00620b00612000601b002120037007", "0x20b00603a00609900203e00620b00600200600c00203c00620b006002065", "0x12400720b00612c12a03e0096e700212c00620b00603c00611b00212a006", "0x6e900200220b006002009002041006a1d12b00620b00707d0066e800207d", "0x20b00612d0061b200212d00620b0060430061a600204300620b00612b006", "0x1b00200220b00612e00606100204712e00720b0060370066e5002045006", "0x620b00600259200213000620b0061310066e600213100620b006047006", "0x611b00213200620b00613000609900204f00620b00612400600c00204d", "0x4500604b00204e04b00720b00605113204f0096e700205100620b00604d", "0x20b00600200900212f006a1e05300620b00704e0066e800204500620b006", "0x61b200213300620b0060560061a600205600620b0060530066e9002002", "0x20b00613600637100213600c00720b00600c0065fe00205800620b006133", "0x5b00639b00200220b00613400639500213806105f13705d13505b134014", "0x639700200220b00613700639800200220b00605d00639900200220b006", "0x1600200220b00613800620c00200220b00606100639600200220b00605f", "0x20b0061350063d300206900620b00600900612b00213b00620b006007006", "0x20b00605800604b00206713906400920b00606a06913b0093d400206a006", "0x200220b00600200900213c006a1f06c00620b007067006151002058006", "0x600600612c00214500620b00604b00600c00206f00620b00606c006152", "0x7600620b00607600604b00207601600720b00601600635a00207500620b", "0x604b00207904500720b00604500635a00207700620b00606f00604b002", "0x20b00614600604b00214605800720b00605800635a00207900620b006079", "0x603000214107113f00920b00614607907707607514500f670002146006", "0x20b00614b00603300200220b00600200900207b006a2014b00620b007141", "0x14a00639500208314f14e1521510c707f14a01420b00600c006371002002", "0x639800200220b0060c700639a00200220b00607f00639b00200220b006", "0x20c00200220b00614f00639600200220b00614e00639700200220b006152", "0x620b00613900612b00216100620b00606400601600200220b006083006", "0x15008500920b00615f1601610093df00215f00620b0061510063de002160", "0x15200200220b006002009002163006a2115d00620b00715e00615100215e", "0x20b00607100612c00215700620b00613f00600c00215c00620b00615d006", "0x4b00216e00620b00615c00604b00215b00620b00601600604b00208a006", "0x15b08a15700f6700020ed00620b00605800604b00216800620b006045006", "0x612c00208e00620b00616200600c00215408716200920b0060ed16816e", "0x620b00615000612b0020d000620b00608500601600216b00620b006087", "0x20b006002009002002a2200600202d00209200620b00615400602c00216c", "0x601600604d00200220b00604500604d00200220b00605800604d002002", "0x12c00217100620b00613f00600c00216d00620b0061630063ab00200220b", "0x20b00615000612b00217300620b00608500601600209400620b006071006", "0x200900217509617309417101600617500620b00616d0063aa002096006", "0x604d00200220b00601600604d00200220b00607b00603300200220b006", "0x2a00200220b00600c00604700200220b00604500604d00200220b006058", "0x620b00613f00600c00209900620b0060d100602e0020d100620b006002", "0x612b0020d000620b00606400601600216b00620b00607100612c00208e", "0x620b0060920063a800209200620b00609900602c00216c00620b006139", "0x612c00217a00620b00608e00600c00209b00620b0061760063a9002176", "0x620b00616c00612b00217c00620b0060d000601600209d00620b00616b", "0x60020090020a00cc17c09d17a0160060a000620b00609b0063aa0020cc", "0x5800604d00200220b00601600604d00200220b00600c00604700200220b", "0xc00217d00620b00613c0063ab00200220b00604500604d00200220b006", "0x20b00606400601600217e00620b00600600612c0020a200620b00604b006", "0x160060cd00620b00617d0063aa00217f00620b00613900612b0020a4006", "0x4d00200220b00600c00604700200220b0060020090020cd17f0a417e0a2", "0xd200620b00612f0063ab00200220b00604500604d00200220b006016006", "0x700601600218000620b00600600612c0020a800620b00604b00600c002", "0x18100620b0060d20063aa0020ab00620b00600900612b0020ce00620b006", "0x220b00600c00604700200220b0060020090021810ab0ce1800a8016006", "0x20b0060410063ab00200220b00603700606100200220b00601600604d002", "0x160020c900620b00600600612c0020c800620b00612400600c0020cf006", "0x20b0060cf0063aa0020cb00620b00600900612b0020ca00620b006007006", "0x611e00603300200220b0060020090020c60cb0ca0c90c80160060c6006", "0xf00606100200220b00601600604d00200220b00600c00604700200220b", "0x3a80020b500620b0060b300602b0020b300620b00600202a00200220b006", "0x20b00600200600c0020b700620b00618e0063a900218e00620b0060b5006", "0x12b0020bb00620b0060070060160020ba00620b00600600612c0020b9006", "0xbd0bb0ba0b901600618f00620b0060b70063aa0020bd00620b006009006", "0x1900201400620b00601000601b00201000f00720b00600f0066e300218f", "0x60170060c400201b01700720b00601500601c00201500620b006014006", "0xc40020c401c00720b00601900601c00201900620b0060026e400200220b", "0x720b00606500601c00206500620b00601b00605400200220b00601c006", "0x601c00202900620b0060c400605400200220b0060540060c400211b054", "0x620b00611b00605400200220b00602a0060c400202b02a00720b006029", "0x702900202c00620b00602c00611b00202d00620b00602b00605400202c", "0x2e00620b00600202a00200220b006002009002002a2300220b00702d02c", "0x600202d00203000620b00602f00602c00202f00620b00602e00602b002", "0x603300602e00203300620b00600202a00200220b006002009002002a24", "0x203900620b00603000602f00203000620b00604800602c00204800620b", "0x900211e006a2503500620b00703900603000203900620b00603900602c", "0x12003700720b00600f0066e500200220b00603500603300200220b006002", "0x600206500203a00620b00610d0066e600210d00620b00612000601b002", "0x212a00620b00603a00609900203e00620b00600200600c00203c00620b", "0x6e800207d12400720b00612c12a03e0096e700212c00620b00603c00611b", "0x612b0066e900200220b006002009002041006a2612b00620b00707d006", "0x204500620b00612d0061b200212d00620b0060430061a600204300620b", "0x604700601b00200220b00612e00606100204712e00720b0060370066e5", "0xc00204d00620b00600259200213000620b0061310066e600213100620b", "0x20b00604d00611b00213200620b00613000609900204f00620b006124006", "0x620b00604500604b00204e04b00720b00605113204f0096e7002051006", "0x6e900200220b00600200900212f006a2705300620b00704e0066e8002045", "0x20b0061330061b200213300620b0060560061a600205600620b006053006", "0x639500206105f13705d13505b13413601420b00600c006371002058006", "0x39800200220b00613500639900200220b00605b00639a00200220b006136", "0x200220b00605f00639600200220b00613700639700200220b00605d006", "0x20b00600900612b00206700620b00600700601600200220b00606100620c", "0x13800920b00606913b0670093d100206900620b0061340063d000213b006", "0x6a2806a00620b00713900615100205800620b00605800604b002139064", "0x604b00600c00213c00620b00606a00615200200220b00600200900206c", "0x207500620b00601600604b00214500620b00600600612c00214100620b", "0x605800604b00207700620b00604500604b00207600620b00613c00604b", "0x3a800207113f06f00920b00607907707607514514100f67000207900620b", "0x20b00606f00600c00214b00620b0061460063a900214600620b006071006", "0x12b00207f00620b00613800601600214a00620b00613f00612c00207b006", "0xc707f14a07b01600615100620b00614b0063aa0020c700620b006064006", "0x20b00604500604d00200220b00605800604d00200220b006002009002151", "0x4b00600c00215200620b00606c0063ab00200220b00601600604d002002", "0x8300620b00613800601600214f00620b00600600612c00214e00620b006", "0x14f14e01600615000620b0061520063aa00208500620b00606400612b002", "0xc00604700200220b00601600604d00200220b006002009002150085083", "0xc00215e00620b00612f0063ab00200220b00604500604d00200220b006", "0x20b00600700601600216000620b00600600612c00216100620b00604b006", "0x1600616300620b00615e0063aa00215d00620b00600900612b00215f006", "0x4700200220b00601600604d00200220b00600200900216315d15f160161", "0x15c00620b0060410063ab00200220b00603700606100200220b00600c006", "0x700601600208700620b00600600612c00216200620b00612400600c002", "0x8a00620b00615c0063aa00215700620b00600900612b00215400620b006", "0x220b00611e00603300200220b00600200900208a157154087162016006", "0x20b00600f00606100200220b00600c00604700200220b00601600604d002", "0x16e0063a800216e00620b00615b00602b00215b00620b00600202a002002", "0x8e00620b00600200600c0020ed00620b0061680063a900216800620b006", "0x900612b0020d000620b00600700601600216b00620b00600600612c002", "0x209216c0d016b08e01600609200620b0060ed0063aa00216c00620b006", "0x201400620b00600204800200220b00600213900201000620b006002064", "0x7a2901701500720b00701400600200903500201400620b006014006039", "0x1500600c00201c00620b00600900659000200220b00600200900201901b", "0x6002009002054006a2a0650c400720b00701c00665b00201500620b006", "0x65d00202900620b0060c400659600211b00620b00606500665c00200220b", "0x2a00200220b006002009002002a2b00600202d00202a00620b00611b006", "0x620b00605400659600202c00620b00602b00665e00202b00620b006002", "0x60fc00202d00620b0060290061d600202a00620b00602c00665d002029", "0x600200900202f006a2c02e00620b00702a00666000202d00620b00602d", "0x59d00203000620b00603000659c00203000620b00602e00659b00200220b", "0x604d00203503904800920b00603300659e00203303000720b006030006", "0x211e00620b00604800636100200220b00603500659f00200220b006039", "0xfa00203a10d12000920b00603700659e00203703000720b00603000659d", "0x3c00620b00610d0061b200200220b00603a00659f00200220b006120006", "0x604d00200220b0061240060fa00203e07d12400920b00603000659e002", "0x12a00620b00612a00600f00212a00620b00603e00605300200220b00607d", "0x212d00f043009a2d04112b12c00920b00712a03c11e0070170166ea002", "0xf00200220b00601000614500200220b00600211e00200220b006002009", "0x20b00600200000204500620b0060410160076eb00204100620b006041006", "0x204e00620b00601500600c00204700620b00612e00c0076ec00212e006", "0x602d0060fc00213200620b00612b00612b00204f00620b00612c006016", "0x212f00620b0060450065e100205300620b00604700604b00205100620b", "0x704b0065e300204b04d13013100c20b00612f05305113204f04e00f5e2", "0x5800c20b0060560065e400200220b006002009002133006a2e05600620b", "0x20b0061350066ee00213500620b00605b13413605800c6ed00205b134136", "0x12b00205f00620b00613000601600213700620b00613100600c00205d006", "0x13806105f13700c00613800620b00605d0066ef00206100620b00604d006", "0x20b00613100600c00206400620b0061330066f000200220b006002009002", "0x6ef00213b00620b00604d00612b00206700620b006130006016002139006", "0x11e00200220b00600200900206913b06713900c00606900620b006064006", "0x13100200220b00601600613c00200220b00602d00639c00200220b006002", "0x6c00620b00606c00604b00206c00620b0060026f100206a00620b006002", "0xc00206f00620b00600c13c00705b00213c00620b00606c06a00705b002", "0x20b00606f00604e00207500620b00604300601600214500620b006015006", "0x200f00620b00600f01000713b00207700620b00612d00604e002076006", "0x7900620b00714100607100214107113f00920b00607707607514500c6f2", "0x3300207b14b00720b00607900614100200220b006002009002146006a2f", "0x620b00614b14a00705d00214a00620b00600213500200220b00607b006", "0x601600215100620b00613f00600c0020c700620b00607f0066f000207f", "0x620b0060c70066ef00214e00620b00600f00612b00215200620b006071", "0x620b0061460066f000200220b00600200900214f14e15215100c00614f", "0x612b00215000620b00607100601600208500620b00613f00600c002083", "0x216115e15008500c00616100620b0060830066ef00215e00620b00600f", "0x14500200220b00602f00603300200220b00600211e00200220b006002009", "0x616000c01602d00c6ed00216000620b00600202a00200220b006010006", "0x216300620b00601500600c00215d00620b00615f0066ee00215f00620b", "0x615d0066ef00216200620b00600700612b00215c00620b006017006016", "0x20b00600211e00200220b00600200900208716215c16300c00608700620b", "0x601600613c00200220b00600900639c00200220b00600c00604d002002", "0x600213400215400620b00600213100200220b00601000614500200220b", "0x8a00620b00615715400705b00215700620b00615700604b00215700620b", "0x16e0066f000216e00620b00608a15b00705d00215b00620b006002135002", "0x8e00620b0060190060160020ed00620b00601b00600c00216800620b006", "0x8e0ed00c0060d000620b0061680066ef00216b00620b00600700612b002", "0x600600700620b0060060065e000200600620b0060020066f30020d016b", "0x6a3100f006a3001600620b01c0070066f400200220b00600211e002007", "0xa3801c006a37019006a3601b006a35017006a34015006a33014006a32010", "0x26f500200220b00600200900211b006a3b054006a3a065006a390c4006", "0x620b00602900900705b00202900620b00602900604b00202900620b006", "0x604e00202f00620b00602a00604e00202e00620b00601600656700202a", "0x603300202d02c02b00920b00603002f02e0096f600203000620b00600c", "0x4800620b00600600601600203300620b00600200600c00200220b00602d", "0x600202d00203500620b00602c00604e00203900620b00602b00604e002", "0x611e00604b00211e00620b0060026f700200220b006002009002002a3c", "0x3c00620b00600200600c00203700620b00611e00900705b00211e00620b", "0x3700604e00207d00620b00600f00630b00212400620b006006006016002", "0x12a03e07d12403c0166f800212a00620b00600c00604e00203e00620b006", "0x200900212b006a3d12c00620b00703a0065e800203a10d12000920b006", "0x220b00612d00603300212d04304100920b00612c0065e900200220b006", "0x4100604e00204800620b00610d00601600203300620b00612000600c002", "0x9002002a3c00600202d00203500620b00604300604e00203900620b006", "0x12e00620b00612000600c00204500620b00612b0066f900200220b006002", "0x4712e00900613100620b0060450066fd00204700620b00610d006016002", "0x20b00613000604b00213000620b0060026fe00200220b006002009002131", "0x213200620b0060100064d700204d00620b00613000900705b002130006", "0x511320096ff00205300620b00600c00604e00205100620b00604d00604e", "0x20b00600200600c00200220b00604f00603300204f04e04b00920b006053", "0x4e00203900620b00604b00604e00204800620b006006006016002033006", "0x6fa00200220b006002009002002a3c00600202d00203500620b00604e006", "0x20b00612f00900705b00212f00620b00612f00604b00212f00620b006002", "0x4e00205b00620b00605600604e00213400620b0060140064eb002056006", "0x3300213605813300920b00613505b1340096fb00213500620b00600c006", "0x620b00600600601600203300620b00600200600c00200220b006136006", "0x202d00203500620b00605800604e00203900620b00613300604e002048", "0x5d00604b00205d00620b0060026fc00200220b006002009002002a3c006", "0x620b0060150064fb00213700620b00605d00900705b00205d00620b006", "0x970000206700620b00600c00604e00213900620b00613700604e002064", "0x200600c00200220b00613800603300213806105f00920b006067139064", "0x3900620b00605f00604e00204800620b00600600601600203300620b006", "0x220b006002009002002a3c00600202d00203500620b00606100604e002", "0x13b00900705b00213b00620b00613b00604b00213b00620b006002702002", "0x13f00620b00606900604e00206f00620b00601700650e00206900620b006", "0x13c06c06a00920b00607113f06f00970300207100620b00600c00604e002", "0x600600601600203300620b00600200600c00200220b00613c006033002", "0x203500620b00606c00604e00203900620b00606a00604e00204800620b", "0x4b00214100620b00600270400200220b006002009002002a3c00600202d", "0x601b00644600214500620b00614100900705b00214100620b006141006", "0x214b00620b00600c00604e00214600620b00614500604e00207900620b", "0xc00200220b00607700603300207707607500920b00614b146079009705", "0x20b00607500604e00204800620b00600600601600203300620b006002006", "0x6002009002002a3c00600202d00203500620b00607600604e002039006", "0x705b00207b00620b00607b00604b00207b00620b00600270600200220b", "0x20b00614a00604e00215200620b00601900645800214a00620b00607b009", "0x7f00920b00614f14e15200970700214f00620b00600c00604e00214e006", "0x601600203300620b00600200600c00200220b0061510060330021510c7", "0x620b0060c700604e00203900620b00607f00604e00204800620b006006", "0x8300620b00600270800200220b006002009002002a3c00600202d002035", "0x649f00208500620b00608300900705b00208300620b00608300604b002", "0x620b00600c00604e00215f00620b00608500604e00216000620b00601c", "0x220b00616100603300216115e15000920b00615d15f16000922e00215d", "0x15000604e00204800620b00600600601600203300620b00600200600c002", "0x9002002a3c00600202d00203500620b00615e00604e00203900620b006", "0x216300620b00616300604b00216300620b00600270900200220b006002", "0x15c00604e00215700620b0060c40064ba00215c00620b00616300900705b", "0x20b00615b08a15700970a00215b00620b00600c00604e00208a00620b006", "0x203300620b00600200600c00200220b006154006033002154087162009", "0x608700604e00203900620b00616200604e00204800620b006006006016", "0x20b00600270b00200220b006002009002002a3c00600202d00203500620b", "0x216800620b00616e00900705b00216e00620b00616e00604b00216e006", "0x600c00604e00216c00620b00616800604e0020d000620b0060650063bf", "0x616b00603300216b08e0ed00920b00609216c0d000970c00209200620b", "0x4e00204800620b00600600601600203300620b00600200600c00200220b", "0x2a3c00600202d00203500620b00608e00604e00203900620b0060ed006", "0x620b00616d00604b00216d00620b00600270d00200220b006002009002", "0x4e00217500620b0060540063ee00217100620b00616d00900705b00216d", "0x990d117500970e00209900620b00600c00604e0020d100620b006171006", "0x620b00600200600c00200220b00609600603300209617309400920b006", "0x604e00203900620b00609400604e00204800620b006006006016002033", "0x270f00200220b006002009002002a3c00600202d00203500620b006173", "0x620b00617600900705b00217600620b00617600604b00217600620b006", "0x604e0020a000620b00609b00604e0020cc00620b00611b00648000209b", "0x603300217c09d17a00920b00617d0a00cc00922d00217d00620b00600c", "0x4800620b00600600601600203300620b00600200600c00200220b00617c", "0x600202a00203500620b00609d00604e00203900620b00617a00604e002", "0x620b00617e00671200217e00620b0060a20350390097110020a200620b", "0x66fd0020cd00620b00604800601600217f00620b00603300600c0020a4", "0x70066e300200220b00600211e0020d20cd17f0090060d200620b0060a4", "0x620b00601600601b00201600620b00600c00671300200c00700720b006", "0xc400201501400720b00601000601c00201000620b00600f00601900200f", "0x620b00600900604e00201900620b00601500611b00200220b006014006", "0x71300200220b00601b00603300201b01700720b00601c0190070bf00201c", "0x20b00600600601600202900620b00600200600c0020c400620b006007006", "0x21800202c00620b00601700604e00202b00620b0060c400600f00202a006", "0xa3e02d00620b00711b00607100211b05406500920b00602c02b02a02900c", "0x731900203002f00720b00602d00614100200220b00600200900202e006", "0x20b00606500600c00204800620b00603300631a00203300620b00603002f", "0x900611e00620b00604800631b00203500620b006054006016002039006", "0x600c00203700620b00602e00631c00200220b00600200900211e035039", "0x620b00603700631b00210d00620b00605400601600212000620b006065", "0x600700601b00200700600720b0060060066e300203a10d12000900603a", "0xf01600720b00600c00601c00200c00620b00600900601900200900620b", "0x20b00601000601c00201000620b0060026e400200220b0060160060c4002", "0x5400201700620b00600f00605400200220b0060140060c4002015014007", "0x701b01700702900201700620b00601700611b00201b00620b006015006", "0x201900600720b0060060066e300200220b006002009002002a3f00220b", "0x60c400601c0020c400620b00601c00601900201c00620b00601900601b", "0x1c00211b00620b00600271400200220b0060650060c400205406500720b", "0x20b00605400605400200220b0060290060c400202a02900720b00611b006", "0x2900202b00620b00602b00611b00202c00620b00602a00605400202b006", "0x620b00600202a00200220b006002009002002a4000220b00702c02b007", "0x202d00202f00620b00602e00602c00202e00620b00602d00602b00202d", "0x3000602e00203000620b00600202a00200220b006002009002002a41006", "0x4800620b00602f00602f00202f00620b00603300602c00203300620b006", "0x2035006a4203900620b00704800603000204800620b00604800602c002", "0x211e00620b00600213100200220b00603900603300200220b006002009", "0x10d0066e600210d00620b00612000601b00212003700720b0060060066e5", "0x203e00620b00600200600c00203c00620b00600206500203a00620b006", "0x12a03e0096e700212c00620b00603c00611b00212a00620b00603a006099", "0x2009002041006a4312b00620b00707d0066e800207d12400720b00612c", "0x212d00620b0060430061a600204300620b00612b0066e900200220b006", "0x4511e00705b00204500620b00604500604b00204500620b00612d0061b2", "0x620b00613100601b00213104700720b0060370066e500212e00620b006", "0x12400600c00204b00620b00600259200204d00620b0061300066e6002130", "0x5300620b00604b00611b00205100620b00604d00609900213200620b006", "0x212e00620b00612e00604e00204f04e00720b0060530511320096e7002", "0x12f0066e900200220b006002009002056006a4412f00620b00704f0066e8", "0x13600620b0060580061b200205800620b0061330061a600213300620b006", "0x213100213400620b00613612e00705b00213600620b00613600604b002", "0x620b00605d00601b00205d13500720b0060470066e500205b00620b006", "0x4e00600c00206100620b0060026e400205f00620b0061370066e6002137", "0x13b00620b00606100611b00206700620b00605f00609900213900620b006", "0x213400620b00613400604e00206413800720b00613b0671390096e7002", "0x690066e900200220b00600200900206a006a4506900620b0070640066e8", "0x6f00620b00613c0061b200213c00620b00606c0061a600206c00620b006", "0x66e500213f00620b00606f05b00705b00206f00620b00606f00604b002", "0x620b00614100601b00200220b00607100606100214107100720b006135", "0x13800600c00207600620b00600271600207500620b0061450066e6002145", "0x7b00620b00607600611b00214b00620b00607500609900214600620b006", "0x213f00620b00613f00604e00207907700720b00607b14b1460096e7002", "0x14a0066e900200220b00600200900207f006a4614a00620b0070790066e8", "0x15200620b0061510061b200215100620b0060c70061a60020c700620b006", "0x613200214e00620b00615213f00705b00215200620b00615200604b002", "0x620b00608300605300200220b00614f00605100208314f00720b006134", "0x605300200220b00615000605100215e15000720b00614e006132002085", "0x20b00616000671800216000620b00616108500771700216100620b00615e", "0x71a00216300620b00607700600c00215d00620b00615f00671900215f006", "0x13400605100200220b00600200900215c16300700615c00620b00615d006", "0xc00216200620b00607f00671c00200220b00613f00605100200220b006", "0x900215408700700615400620b00616200671a00208700620b006077006", "0x5100200220b00613400605100200220b00613500606100200220b006002", "0x620b00613800600c00215700620b00606a00671c00200220b00605b006", "0x200220b00600200900215b08a00700615b00620b00615700671a00208a", "0x620b00605600671c00200220b00612e00605100200220b006047006061", "0x1680070060ed00620b00616e00671a00216800620b00604e00600c00216e", "0x20b00611e00605100200220b00603700606100200220b0060020090020ed", "0x671a00216b00620b00612400600c00208e00620b00604100671c002002", "0x603500603300200220b0060020090020d016b0070060d000620b00608e", "0x600271d00216c00620b00600213100200220b00600600606100200220b", "0x16d00620b00609216c00705b00209200620b00609200604b00209200620b", "0x9400671c00209400620b00616d17100705d00217100620b006002135002", "0x17500620b00617300671a00209600620b00600200600c00217300620b006", "0x61320020d100620b00600213100200220b006002009002175096007006", "0x620b00617600605300200220b00609900605100217609900720b0060d1", "0x71900209d00620b00617a00671800217a00620b00609b00600771700209b", "0x20b00617c00671a0020cc00620b00600200600c00217c00620b00609d006", "0x200c006a4700900700720b00700600200771e0020a00cc0070060a0006", "0x620b00600700600c00201600620b00600900660400200220b006002009", "0x20b006002009002002a4800600202d00201000620b00601600660500200f", "0xc00600c00201500620b00601400660600201400620b00600202a002002", "0x1700620b00600f00636e00201000620b00601500660500200f00620b006", "0x1600620b00600200601600201b01700700601b00620b006010006726002", "0x200c00900700920b00600f01600757600200f00620b00600600612b002", "0x1000657900200220b006002009002014006a4901000620b00700c006577", "0x1b01620b00601700657b00201700620b00601500657a00201500620b006", "0xfa00200220b00601c0060fa00200220b00601900657d0020650c401c019", "0x5400620b00601b00672700200220b00606500604d00200220b0060c4006", "0x900612b00202900620b00600700601600211b00620b006054006728002", "0x200900202b02a02900900602b00620b00611b00622c00202a00620b006", "0x202d00620b00600700601600202c00620b00601400672900200220b006", "0x2f02e02d00900602f00620b00602c00622c00202e00620b00600900612b", "0x20b00600c00604b00200c00620b00600271f00200220b006007006397002", "0x620b00600f00604b00200f01600720b00600900c00600937b00200c006", "0x201500620b00601000600c00201401000720b00600f00200772000200f", "0x1b01701500900601b00620b00601400661600201700620b00601600615d", "0xf01600920b00700c00700600200c64100200c00620b006009006224002", "0x1b00720b00601000613000200220b006002009002017015014009a4a010", "0x601c00613000201c00620b0060020ef00200220b00601b00604d002019", "0x205400620b0060190061b200200220b0060c400604d0020650c400720b", "0x60650061b200200220b00611b00604d00202911b00720b006054006130", "0x200220b00602b00604d00202c02b00720b00602a00613000202a00620b", "0x602d00604b00202e00620b00602c0061b200202d00620b0060290061b2", "0x2f00620b00602f00604b00202f00620b00602e02d0071c100202d00620b", "0x2f0061c500200f00620b00600f00612b00201600620b006016006016002", "0x203300620b00600202a00200220b006002009002030006a4b00220b007", "0xa4c00600202d00203900620b00604800602c00204800620b00603300602e", "0x620b00600202a00200220b0060300060f200200220b006002009002002", "0x602f00203900620b00611e00602c00211e00620b00603500602b002035", "0x620b00601600601600212000620b00603700672100203700620b006039", "0x10d00900603c00620b00612000672200203a00620b00600f00612b00210d", "0x1400601600212400620b00601700672300200220b00600200900203c03a", "0x12a00620b00612400672200203e00620b00601500612b00207d00620b006", "0x6002009002007006a4d00600620b00700200672400212a03e07d009006", "0x3aa00200c00620b0060090063a900200900620b0060060063a800200220b", "0x20b00600213500200220b00600200900201600600601600620b00600c006", "0x201400620b0060100063ab00201000620b00600700f00705d00200f006", "0x213900200f00620b00600272500201500600601500620b0060140063aa", "0x3500201000620b00601000603900201000620b00600204800200220b006", "0x200220b00600200900201b017007a4e01501400720b007010006002009", "0x701900665b00201400620b00601400600c00201900620b006009006590", "0x620b0060c400665c00200220b006002009002065006a4f0c401c00720b", "0x202d00202900620b00605400665d00211b00620b00601c006596002054", "0x2a00665e00202a00620b00600202a00200220b006002009002002a50006", "0x2900620b00602b00665d00211b00620b00606500659600202b00620b006", "0xf00772a00201600620b0060160060fc00201600620b00611b0061d6002", "0x600200900202d006a5102c00620b00702900666000201600620b006016", "0x1400600c00202e00620b00602c00659b00200220b00600211e00200220b", "0x11e00620b00600700615d00203500620b00601500601600203900620b006", "0x3002f00c20b00603711e03503900c72c00203700620b00602e00659c002", "0x200220b00600200900210d006a5212000620b007048006151002048033", "0xc00212403c00720b00603a00c03300937b00203a00620b006120006152", "0x20b00603c00615d00204100620b00603000601600212b00620b00602f006", "0x61b00204500620b00612400604b00212d00620b0060160060fc002043006", "0x620b00712c00661c00212c12a03e07d00c20b00604512d04304112b016", "0x4d13013100920b00612e00661d00200220b006002009002047006a5312e", "0xc00204e00620b00604b00672e00204b00620b00604d13013100972d002", "0x20b00612a00615d00213200620b00603e00601600204f00620b00607d006", "0x600200900205305113204f00c00605300620b00604e00672f002051006", "0x1600205600620b00607d00600c00212f00620b00604700673100200220b", "0x20b00612f00672f00205800620b00612a00615d00213300620b00603e006", "0x20b00601600639c00200220b00600200900213605813305600c006136006", "0x2f00600c00213400620b00610d00673100200220b00600c00604d002002", "0x5d00620b00603300615d00213500620b00603000601600205b00620b006", "0x220b00600200900213705d13505b00c00613700620b00613400672f002", "0x5f00620b00600202a00200220b00602d00603300200220b00600211e002", "0xc00213800620b00606100672e00206100620b00605f00c01600972d002", "0x20b00600700615d00213900620b00601500601600206400620b006014006", "0x600200900213b06713906400c00613b00620b00613800672f002067006", "0x600f00673200200220b00600c00604d00200220b00600211e00200220b", "0x600213400206900620b00600213100200220b00600900639c00200220b", "0x6c00620b00606a06900705b00206a00620b00606a00604b00206a00620b", "0x6f00673100206f00620b00606c13c00705d00213c00620b006002135002", "0x14100620b00601b00601600207100620b00601700600c00213f00620b006", "0x14107100c00607500620b00613f00672f00214500620b00600700615d002", "0x200220b006002009002007006a5400600620b007002006733002075145", "0x600c00613300200c00620b00600900605600200900620b00600600612f", "0x200f00620b00600213500200220b00600200900201600600601600620b", "0x1400613300201400620b00601000605800201000620b00600700f00705d", "0x70060060db00200600620b00600200601b00201500600601500620b006", "0x620b0060090061a300200220b00600200900200c006a5500900700720b", "0x202d00201000620b0060160061a400200f00620b006007006099002016", "0x140061a500201400620b00600202a00200220b006002009002002a56006", "0x1000620b0060150061a400200f00620b00600c00609900201500620b006", "0x100060df00201700620b00601700600f00201700620b00600f006053002", "0x620b00601b0061a600200220b006002009002019006a5701b00620b007", "0x4d00205406500720b0060c40061300020c400620b00601c0061b200201c", "0x2900720b00611b00613000211b00620b0060020ef00200220b006065006", "0x2b00613000202b00620b0060540061b200200220b00602900604d00202a", "0x2e00620b00602a0061b200200220b00602c00604d00202d02c00720b006", "0x2d0061b200200220b00602f00604d00203002f00720b00602e006130002", "0x3300620b00603300604b00204800620b0060300061b200203300620b006", "0x61c500203900620b00603900604b00203900620b0060480330071c1002", "0x11e00620b00600202a00200220b006002009002035006a5800220b007039", "0x600202d00212000620b00603700602c00203700620b00611e00602e002", "0x20b00600202a00200220b0060350060f200200220b006002009002002a59", "0x2f00212000620b00603a00602c00203a00620b00610d00602b00210d006", "0x20b00601700600f00212400620b00603c00673400203c00620b006120006", "0x220b00600200900203e07d00700603e00620b00612400673500207d006", "0x20b00612a00673600212a00620b00600202a00200220b006019006033002", "0x700604100620b00612c00673500212b00620b00601700600f00212c006", "0x600600700620b0060060065e000200600620b00600200622900204112b", "0x33100200220b006002009002007006a5a00600620b007002006737002007", "0x20b00600c00621200200c00620b00600900633200200900620b006006006", "0x5d00200f00620b00600213500200220b006002009002016006006016006", "0x601400621200201400620b00601000633300201000620b00600700f007", "0x900700600c64100201600620b00600c00622400201500600601500620b", "0xc00200220b00600200900201b017015009a5b01401000f00920b007016", "0x60650c400773800206500620b00601400604b0020c400620b006002006", "0x1000620b00601000612b00200f00620b00600f00601600201c01900720b", "0x673900200220b00600200900211b006a5c05400620b00701c006171002", "0x620b00602a00673b00202a00620b00602900673a00202900620b006054", "0x612b00202d00620b00600f00601600202c00620b00601900600c00202b", "0x202f02e02d02c00c00602f00620b00602b00673c00202e00620b006010", "0x203000620b00600213100200220b00611b00603300200220b006002009", "0x603303000705b00203300620b00603300604b00203300620b00600273d", "0x203500620b00604803900705d00203900620b00600213500204800620b", "0x600f00601600203700620b00601900600c00211e00620b00603500673e", "0x603a00620b00611e00673c00210d00620b00601000612b00212000620b", "0x203c00620b00601b00673f00200220b00600200900203a10d12003700c", "0x600200600c00207d00620b00612400673b00212400620b00603c00673a", "0x212c00620b00601700612b00212a00620b00601500601600203e00620b", "0x620b00700200674000212b12c12a03e00c00612b00620b00607d00673c", "0x64f00200900620b00600600664e00200220b006002009002007006a5d006", "0x200900201600600601600620b00600c00665000200c00620b006009006", "0x201000620b00600700f00705d00200f00620b00600213500200220b006", "0x74100201500600601500620b00601400665000201400620b006010006651", "0x636100200700600600700620b0060060065e000200600620b006002006", "0x620b00600700636100200900620b00600600636100200700620b006002", "0x4d00201000f00720b00601600613000201600620b00600c0061bf00200c", "0x620b0060140061bf00201400620b00600900636100200220b00600f006", "0x61b200200220b00601700604d00201b01700720b006015006130002015", "0x20b00601c0190071c100201c00620b00601b0061b200201900620b006010", "0x65006a5e00220b0070c40061c50020c400620b0060c400604b0020c4006", "0x620b00605400602e00205400620b00600202a00200220b006002009002", "0x20b006002009002002a5f00600202d00202900620b00611b00602c00211b", "0x602a00602b00202a00620b00600202a00200220b0060650060f2002002", "0x602c00620b00602900636f00202900620b00602b00602c00202b00620b", "0x600900600200937b00200f01600c00900c20b00600700674200202c006", "0x20b00600c01401000937b00201400620b00601400604b00201401000720b", "0x20c400620b00601700604b00201c00620b00601500615d002017015007", "0x37b00201901b00720b0060650c401c00974300206500620b0060160063f1", "0x604b00202900620b00605400615d00211b05400720b00600f01901b009", "0x1c500200f01600720b00601600635a00202a02900700602a00620b00611b", "0x20b00601600604d00200220b006002009002010006a6000220b00700f006", "0x600900604d00200220b00600c00604d00200220b00600700604d002002", "0x600c00201500620b00601400602b00201400620b00600202a00200220b", "0x620b00601500602c00201b00620b00600600612c00201700620b006002", "0x200220b0060100060f200200220b00600200900201901b017009006019", "0x1c0650071c100206501600720b00601600635a00201c00620b006002744", "0xa6100220b0070c40061c50020c400620b0060c400604b0020c400620b006", "0x600700604d00200220b00601600604d00200220b006002009002054006", "0x600202a00200220b00600900604d00200220b00600c00604d00200220b", "0x202a00620b00600200600c00202900620b00611b00602b00211b00620b", "0x2c02b02a00900602c00620b00602900602c00202b00620b00600600612c", "0x2d00620b00600274400200220b0060540060f200200220b006002009002", "0x4b00202e00620b00602d02f0071c100202f00c00720b00600c00635a002", "0x6002009002030006a6200220b00702e0061c500202e00620b00602e006", "0xc00604d00200220b00600700604d00200220b00601600604d00200220b", "0x602b00203300620b00600202a00200220b00600900604d00200220b006", "0x620b00600600612c00203900620b00600200600c00204800620b006033", "0x220b00600200900211e03503900900611e00620b00604800602c002035", "0x10d006a6312003700720b00700900200774500200220b0060300060f2002", "0x20b00612000622800212000620b00612000674600200220b006002009002", "0x12400720b00703c03700774500203c00c00720b00600c00635a00203a006", "0x22800207d00620b00607d00674600200220b00600200900203e006a6407d", "0x12b00620b00600274800212c00620b00600274700212a00620b00607d006", "0x12400600c00212b00620b00612b00604b00212c00620b00612c00604b002", "0x20b006002009002002a6504100620b00712b12c00774900212400620b006", "0x612c00204300620b00604100622800204100620b006041006746002002", "0x620b00601600604b00204700620b00612a00674a00212e00620b006006", "0xa6600220b00704500674c00204512d00720b00613104712e00974b002131", "0x600c00604d00200220b00603a00674d00200220b006002009002130006", "0x600202a00200220b00604300674d00200220b00600700604d00200220b", "0x204e00620b00612400600c00204b00620b00604d00602b00204d00620b", "0x13204f04e00900613200620b00604b00602c00204f00620b00612d00612c", "0x605300604d00205305100720b00613000674e00200220b006002009002", "0x4b00205800620b00604300674a00213300620b00612d00612c00200220b", "0x612c00205612f00720b00613605813300974b00213600620b006007006", "0x620b00600c00604b00205d00620b00603a00674a00213500620b00612f", "0x5600720b00605600622700205b13400720b00613705d13500974b002137", "0x74a00213805b00720b00605b00622700206100620b00606100674a002061", "0x705f00674c00205f00620b00613806100774f00213800620b006138006", "0x2009002002a6800600202d00200220b006002009002064006a6700220b", "0x200220b00606700604d00206713900720b00606400674e00200220b006", "0x604b00213b00620b0060691390071c100206905100720b00605100635a", "0x20b00600200900206a006a6900220b00713b0061c500213b00620b00613b", "0x605600674d00200220b00605b00674d00200220b00605100604d002002", "0x600c00213c00620b00606c00602e00206c00620b00600202a00200220b", "0x620b00613c00602c00213f00620b00613400612c00206f00620b006124", "0x200220b00606a0060f200200220b00600200900207113f06f009006071", "0x7514500775000207500620b00605b00674a00214500620b00605600674a", "0x220b006002009002076006a6a00220b00714100674c00214100620b006", "0x200220b006002009002002a6b00600202d00200220b00605100604d002", "0x510770071c100200220b00607900604d00207907700720b00607600674e", "0xa6c00220b0071460061c500214600620b00614600604b00214600620b006", "0x607b00602e00207b00620b00600202a00200220b00600200900214b006", "0x20c700620b00613400612c00207f00620b00612400600c00214a00620b", "0xf200200220b0060020090021510c707f00900615100620b00614a00602c", "0x14e00620b00615200602b00215200620b00600202a00200220b00614b006", "0x14e00602c00208300620b00613400612c00214f00620b00612400600c002", "0x603a00674d00200220b00600200900208508314f00900608500620b006", "0x1600604d00200220b00600700604d00200220b00600c00604d00200220b", "0x602b00215000620b00600202a00200220b00612a00674d00200220b006", "0x620b00600600612c00216100620b00612400600c00215e00620b006150", "0x220b00600200900215f16016100900615f00620b00615e00602c002160", "0x20b00600c00604d00200220b00603a00674d00200220b00601600604d002", "0x615d00602b00215d00620b00600202a00200220b00600700604d002002", "0x216200620b00600600612c00215c00620b00603e00600c00216300620b", "0x4d00200220b00600200900208716215c00900608700620b00616300602c", "0x200220b00600c00604d00200220b00600700604d00200220b006016006", "0x20b00610d00600c00215700620b00615400602b00215400620b00600202a", "0x900616e00620b00615700602c00215b00620b00600600612c00208a006", "0x201700620b00600600601600201500620b00600200600c00216e15b08a", "0x1900611b00201900900720b0060090065a700201b00620b00600700612b", "0x620b00601c00661600201c00c00720b00600c00675100201900620b006", "0x1400675300201401000f01600c20b00601c01901b01701501675200201c", "0x620b0060c400675400200220b006002009002065006a6d0c400620b007", "0x75600200220b006002009002029006a6e11b00620b007054006755002054", "0x20b00602a00675700202c00c00720b00600c00675100202a00620b006002", "0x900720b0060090065a700202b00620b00602d02c00775800202d02a007", "0x2f00920b00702b02e01000f00c64100202b00620b00602b00664000202e", "0x11e00620b00600275600200220b006002009002035039048009a6f033030", "0x11e00653500203a00620b00602a00653500210d00620b00601600600c002", "0x603300604b00212003700720b00603c03a10d00975900203c00620b006", "0x203000620b00603000612b00202f00620b00602f00601600203300620b", "0x12400675b00200220b00600200900207d006a7012400620b00712000675a", "0x620b00612a00664000212a00620b00603e00c00775800203e00620b006", "0x204512d043009a7104112b12c00920b00712a00903002f00c64100212a", "0x612e00675c00212e00620b00604103311b00943f00200220b006002009", "0x213000620b00613100675e00213100620b00604700675d00204700620b", "0x612b00612b00204b00620b00612c00601600204d00620b00603700600c", "0x200900204f04e04b04d00c00604f00620b00613000675f00204e00620b", "0x676000200220b00611b00634900200220b00603300604d00200220b006", "0x620b00605100675e00205100620b00613200675d00213200620b006045", "0x612b00205600620b00604300601600212f00620b00603700600c002053", "0x205813305612f00c00605800620b00605300675f00213300620b00612d", "0x200220b00611b00634900200220b00603300604d00200220b006002009", "0x620b00607d00676200200220b00600c00676100200220b0060090060c4", "0x612b00205b00620b00602f00601600213400620b00603700600c002136", "0x205d13505b13400c00605d00620b00613600675f00213500620b006030", "0x200220b00611b00634900200220b00600c00676100200220b006002009", "0x620b00603500676000200220b0060090060c400200220b00602a006534", "0x600c00206100620b00605f00675e00205f00620b00613700675d002137", "0x620b00603900612b00206400620b00604800601600213800620b006016", "0x20b00600200900206713906413800c00606700620b00606100675f002139", "0x602900676000200220b0060090060c400200220b00600c006761002002", "0x206a00620b00606900675e00206900620b00613b00675d00213b00620b", "0x601000612b00213c00620b00600f00601600206c00620b00601600600c", "0x200900213f06f13c06c00c00613f00620b00606a00675f00206f00620b", "0x676200200220b0060090060c400200220b00600c00676100200220b006", "0x620b00600f00601600214100620b00601600600c00207100620b006065", "0x14100c00607600620b00607100675f00207500620b00601000612b002145", "0x220b006002009002007006a7200600620b007002006763002076075145", "0xc00652900200c00620b00600900621400200900620b006006006528002", "0xf00620b00600213500200220b00600200900201600600601600620b006", "0x652900201400620b00601000652a00201000620b00600700f00705d002", "0x700603300200700620b00600200652e00201500600601500620b006014", "0x2a00200220b00600900603300200900620b00600600652e00200220b006", "0x620b00601600602c00201600620b00600c00602e00200c00620b006002", "0x20b00600f00662000201401000f00920b0060160063fe00200f00600600f", "0x201700620b00601b00622400201b00c00720b00600c006751002015006", "0x1c00720b00701501701900700601662200201900900720b0060090065a7", "0x202900620b00600275600200220b00600200900211b054065009a730c4", "0x775800202c02900720b00602900675700202b00c00720b00600c006751", "0x601c00601600202d00900720b0060090065a700202a00620b00602c02b", "0x701002a02d0c401c01662200202a00620b00602a00664000201c00620b", "0x20b00600275600200220b006002009002048033030009a7402f02e00720b", "0x53500212000620b00602900653500203700620b00600200600c002039006", "0x612b00211e03500720b00610d12003700975900210d00620b006039006", "0x620b00711e00675a00202e00620b00602e00601600202f00620b00602f", "0x75800212400620b00603a00675b00200220b00600200900203c006a7503a", "0x2f02e01662200207d00620b00607d00664000207d00620b00612400c007", "0x200220b00600200900204112b12c009a7612a03e00720b00701407d009", "0x20b00612d00676400212d00620b0060430063b700204300620b00600202a", "0x1600204700620b00603500600c00212e00620b006045006765002045006", "0x20b00612e00676600213000620b00612a00612b00213100620b00603e006", "0x20b0060410063b900200220b00600200900204d13013104700c00604d006", "0xc00204f00620b00604e00676500204e00620b00604b00676400204b006", "0x20b00612b00612b00205100620b00612c00601600213200620b006035006", "0x600200900212f05305113200c00612f00620b00604f006766002053006", "0xc00676100200220b0060090060c400200220b00601400604d00200220b", "0x213300620b00603500600c00205600620b00603c00676700200220b006", "0x605600676600213600620b00602f00612b00205800620b00602e006016", "0x600c00676100200220b00600200900213413605813300c00613400620b", "0x90060c400200220b00602900653400200220b00601400604d00200220b", "0x213500620b00605b00676400205b00620b0060480063b900200220b006", "0x603000601600213700620b00600200600c00205d00620b006135006765", "0x613800620b00605d00676600206100620b00603300612b00205f00620b", "0x4d00200220b00600c00676100200220b00600200900213806105f13700c", "0x200220b0060090060c400200220b00601000604d00200220b006014006", "0x613900676500213900620b00606400676400206400620b00611b0063b9", "0x206900620b00606500601600213b00620b00600200600c00206700620b", "0x6a06913b00c00606c00620b00606700676600206a00620b00605400612b", "0x700600600700620b0060060065e000200600620b00600200676800206c", "0x200700600600700620b0060060065e000200600620b006002006769002", "0x76b00200700600600700620b0060060065e000200600620b00600200676a", "0x676c00200700600600700620b0060060065e000200600620b006002006", "0x200676d00200700600600700620b0060060065e000200600620b006002", "0x220b00600600604d00200220b006002009002009006a7700700620b007", "0x1600661300201600620b00600c00661200200c00620b006007006226002", "0x220b00600900634900200220b00600200900200f00600600f00620b006", "0x600213500201400620b00600601000705b00201000620b006002131002", "0x1b00620b00601700661400201700620b00601401500705d00201500620b", "0x200600620b00600200676e00201900600601900620b00601b006613002", "0x5e000200600620b00600200676f00200700600600700620b0060060065e0", "0x65e000200600620b00600200677000200700600600700620b006006006", "0x60065e000200600620b00600200677100200700600600700620b006006", "0x700600c64100201600620b00600c00622400200700600600700620b006", "0x200220b00600200900201b017015009a7801401000f00920b007016009", "0x650c400777200206500620b00601400604b0020c400620b00600200600c", "0x620b00601000612b00200f00620b00600f00601600201c01900720b006", "0x77400200220b00600200900211b006a7905400620b00701c006773002010", "0x20b00602a00677600202a00620b00602900677500202900620b006054006", "0x12b00202d00620b00600f00601600202c00620b00601900600c00202b006", "0x2f02e02d02c00c00602f00620b00602b00623100202e00620b006010006", "0x3000620b00600213100200220b00611b00603300200220b006002009002", "0x3303000705b00203300620b00603300604b00203300620b006002777002", "0x3500620b00604803900705d00203900620b00600213500204800620b006", "0xf00601600203700620b00601900600c00211e00620b006035006778002", "0x3a00620b00611e00623100210d00620b00601000612b00212000620b006", "0x3c00620b00601b00677900200220b00600200900203a10d12003700c006", "0x200600c00207d00620b00612400677600212400620b00603c006775002", "0x12c00620b00601700612b00212a00620b00601500601600203e00620b006", "0x20b00700200623200212b12c12a03e00c00612b00620b00607d006231002", "0x200900620b00600600653900200220b006002009002007006a7a006006", "0x900201600600601600620b00600c00621300200c00620b00600900653a", "0x1000620b00600700f00705d00200f00620b00600213500200220b006002", "0x201500600601500620b00601400621300201400620b00601000653b002", "0x620b00600600604e00200700620b00600202a00200220b006002006033", "0x620b00600200677a00200c00900700600c00620b0060070061ff002009", "0x600620b00700200677b00200700600600700620b0060060065e0002006", "0x66ca00200900620b0060060066c900200220b006002009002007006a7b", "0x600200900201600600601600620b00600c0066cb00200c00620b006009", "0x6cc00201000620b00600700f00705d00200f00620b00600213500200220b", "0x677c00201500600601500620b0060140066cb00201400620b006010006", "0x20b00600600604d00200220b006002009002009006a7c00700620b007002", "0x621300201600620b00600c00653a00200c00620b006007006539002002", "0x20b0060090060c400200220b00600200900200f00600600f00620b006016", "0x213500201400620b00600601000705b00201000620b006002131002002", "0x620b00601700653b00201700620b00601401500705d00201500620b006", "0x20b00700700600200977d00201900600601900620b00601b00621300201b", "0xf00620b00600c00677e00200220b006002009002016006a7d00c009007", "0x1000678000201400620b00600900600c00201000620b00600f00677f002", "0x620b00600213100200220b00600200900201501400700601500620b006", "0x1700705b00201b00620b00601b00604b00201b00620b00600222a002017", "0x620b00601901c00705d00201c00620b00600213500201900620b00601b", "0x678000205400620b00601600600c00206500620b0060c40067810020c4", "0x600200600c00200220b00600211e00211b05400700611b00620b006065", "0x201500620b00600900604e00201400620b00600600601600201000620b", "0xf01600c00920b00601701501401000c78200201700620b00600700604e", "0x65e900200220b006002009002019006a7e01b00620b00700f0065e8002", "0x20b00606500603300200220b00601c0060510020650c401c00920b00601b", "0x631a00211b00620b0060540c400731900205400620b00600202a002002", "0x620b00601600601600202a00620b00600c00600c00202900620b00611b", "0x220b00600200900202c02b02a00900602c00620b00602900631b00202b", "0x1600601600202e00620b00600c00600c00202d00620b00601900631c002", "0x678300203002f02e00900603000620b00602d00631b00202f00620b006", "0x601600604d00201600c00720b00600900678400200900200720b006002", "0x4f00201500620b00600600604e00201400620b00600c00604b00200220b", "0x600200678400200220b00601000603300201000f00720b006015014007", "0x20c400620b00601b00604b00200220b00601700604d00201b01700720b", "0x603300201c01900720b0060650c400704f00206500620b00600700604e", "0x211b00620b00600f00604e00205400620b00600202a00200220b00601c", "0x2a02911b00900602a00620b0060540061ff00202900620b00601900604e", "0x200220b00600211e00200220b00600213900200f00620b006002785002", "0x65f700201501400720b00601000678600201000700720b006007006787", "0x1900620b00600900604e00201b00620b00601400604b00200220b006015", "0x678600200220b00601700603300201701600720b00601901b00704f002", "0x620b00600200600c00200220b00601c00604d0020c401c00720b006007", "0x604e00202b00620b0060c400631600202a00620b006006006016002029", "0x2b02a02900c78a00201600620b00601600f00778900202c00620b00600c", "0x900202e006a7f02d00620b00711b00607100211b05406500920b00602c", "0x220b00603000603300203002f00720b00602d00614100200220b006002", "0x671200204800620b00603302f01600971100203300620b00600202a002", "0x620b00605400601600203500620b00606500600c00203900620b006048", "0x220b00600200900203711e03500900603700620b0060390066fd00211e", "0x606500600c00212000620b00602e0066f900200220b006016006051002", "0x603c00620b0061200066fd00203a00620b00605400601600210d00620b", "0x720b00600900678d00200900200720b00600200678b00203c03a10d009", "0x604e00201400620b00600c00621b00200220b00601600604d00201600c", "0x601000603300201000f00720b00601501400752c00201500620b006007", "0x4b00200220b00601700634900201b01700720b00600200678d00200220b", "0x60650c400704f00206500620b00600f00604e0020c400620b00601b006", "0x4e00205400620b00600202a00200220b00601c00603300201c01900720b", "0x20b0060540061ff00202900620b00601900604e00211b00620b006006006", "0x900678f00200900200720b00600200678e00202a02911b00900602a006", "0x1400620b00600c00621b00200220b00601600604d00201600c00720b006", "0x3300201000f00720b00601501400752c00201500620b00600700604e002", "0x20b00601700634900201b01700720b00600200678f00200220b006010006", "0x704f00206500620b00600f00604e0020c400620b00601b00604b002002", "0x620b00600202a00200220b00601c00603300201c01900720b0060650c4", "0x61ff00202900620b00601900604e00211b00620b00600600604e002054", "0x4b00200900620b00600200679000202a02911b00900602a00620b006054", "0x601000f00704f00201000620b00600700604e00200f00620b006009006", "0x4e00201400620b00600202a00200220b00601600603300201600c00720b", "0x20b0060140061ff00201700620b00600c00604e00201500620b006006006", "0x600900604b00200900620b00600200679100201b01701500900601b006", "0xc00720b00601000f00704f00201000620b00600700604e00200f00620b", "0x600600604e00201400620b00600202a00200220b006016006033002016", "0x601b00620b0060140061ff00201700620b00600c00604e00201500620b", "0x4e00200900620b00600202a00200220b00600200679300201b017015009", "0x20b0060090061ff00201600620b00600700604e00200c00620b006006006", "0x600900604b00200900620b00600200679400200f01600c00900600f006", "0xc00720b00601000f00704f00201000620b00600700604e00200f00620b", "0x600600604e00201400620b00600202a00200220b006016006033002016", "0x601b00620b0060140061ff00201700620b00600c00604e00201500620b", "0xf00620b00600900604b00200900620b00600200679500201b017015009", "0x3300201600c00720b00601000f00704f00201000620b00600700604e002", "0x1500620b00600600604e00201400620b00600202a00200220b006016006", "0x1701500900601b00620b0060140061ff00201700620b00600c00604e002", "0x604e00200f00620b00600900604b00200900620b00600200679600201b", "0x601600603300201600c00720b00601000f00704f00201000620b006007", "0x604e00201500620b00600600604e00201400620b00600202a00200220b", "0x79700201b01701500900601b00620b0060140061ff00201700620b00600c", "0x20b00600700604e00200f00620b00600900617300200900620b006002006", "0x200220b00601600603300201600c00720b00601000f007798002010006", "0x20b00600c00604e00201500620b00600600604e00201400620b00600202a", "0x600200679900201b01701500900601b00620b0060140061ff002017006", "0x201000620b00600600604e00200f00620b00600900604b00200900620b", "0x600202a00200220b00601600603300201600c00720b00601000f00704f", "0x201700620b00600700604e00201500620b00600c00604e00201400620b", "0x900620b00600200679a00201b01701500900601b00620b0060140061ff", "0xf00704f00201000620b00600600604e00200f00620b00600900604b002", "0x1400620b00600202a00200220b00601600603300201600c00720b006010", "0x140061ff00201700620b00600700604e00201500620b00600c00604e002", "0x600900659d00200220b00600211e00201b01701500900601b00620b006", "0x20b0060160060fa00201000f01600920b00600c00659e00200c00900720b", "0x60020ef00201400620b00601000605300200220b00600f00604d002002", "0x206500620b0060060060160020c400620b00600200600c00201500620b", "0x601500604b00211b00620b00601400600f00205400620b00600700615d", "0x79c00201c01901b01700c20b00602911b0540650c401679b00202900620b", "0x602a0067a100200220b00600200900202b006a8002a00620b00701c006", "0x200220b00602e00603300200220b00602c00606100202e02d02c00920b", "0xfa00204803303000920b00602f00659e00202f00900720b00600900659d", "0x3900620b00604800601900200220b00603300604d00200220b006030006", "0x1900937b00203500620b00603500604b00203500620b00603900653c002", "0x620b0060027a200212000620b0060020ef00203711e00720b00603502d", "0x937b00210d00620b00610d00604b00212000620b00612000604b00210d", "0x659e00212400900720b00600900659d00203c03a00720b00610d12011e", "0x20b00612a00659f00200220b00603e00604d00212a03e07d00920b006124", "0x604b00212b00620b00612c0061bf00212c00620b00607d006361002002", "0x900659d00204304100720b00612b03c03a00937b00203c00620b00603c", "0x60450060fa00204712e04500920b00612d00659e00212d00900720b006", "0x604b00213100620b00612e0061b200200220b00604700659f00200220b", "0x900659e00204d13000720b00613104304100937b00204300620b006043", "0x220b00604e00604d00200220b00604b0060fa00204f04e04b00920b006", "0x4d00604b00205100620b00613200653c00213200620b00604f006019002", "0x20b00605104d13000937b00205100620b00605100604b00204d00620b006", "0x203700620b00603700604b00212f00620b00612f00604b00212f053007", "0x604b00205800620b0060027a300213305600720b00603712f05300937b", "0x605813305600937b00205800620b00605800604b00213300620b006133", "0x13500620b00605b00633200205b00620b00613400633100213413600720b", "0x13600615d00213700620b00601b00601600205d00620b00601700600c002", "0x900206105f13705d00c00606100620b00613500621200205f00620b006", "0x213800620b00602b00633300200220b0060090065bd00200220b006002", "0x601900615d00213900620b00601b00601600206400620b00601700600c", "0x73ac00213b06713906400c00613b00620b00613800621200206700620b", "0x90063ad00200220b00600200900200c006a8100900700720b007006002", "0x1000620b0060160063ae00200f00620b00600700600c00201600620b006", "0x201400620b00600202a00200220b006002009002002a8200600202d002", "0x60150063ae00200f00620b00600c00600c00201500620b0060140063af", "0x601b00620b0060100067a400201700620b00600f00636e00201000620b", "0x720b00600900600200937b00200900620b0060070061bf00201b017007", "0x700601000620b00601600604b00200f00620b00600c00615d00201600c", "0x6a8300220b00700900674c00200900600720b00600600622700201000f", "0x20b00600200612c00200220b00600700604d00200220b00600200900200c", "0x6002009002002a8400600202d00200f00620b00600600674a002016006", "0x200c79e00201000620b00600279d00200220b00600600674d00200220b", "0x1400612c00201500620b00601500679f00201501400720b00600c007010", "0x220b006002009002002a8501700620b0070150067a000201400620b006", "0x600202d00201900620b00601b00674a00201b00620b006017006228002", "0x601c00674a00201c00620b0060027a500200220b006002009002002a86", "0x200f00620b00601900674a00201600620b00601400612c00201900620b", "0x20650c400700606500620b00600f0067a70020c400620b006016006667", "0x9002009006a8700220b00700700674c00200700200720b006002006227", "0x600c00620b00600600674a00200220b00600200674d00200220b006002", "0x9002016006a8800220b00700600674c00200220b00600200900200c006", "0x600f00620b00600200674a00200220b0060090067a800200220b006002", "0x20b00600279d00200220b00600200674d00200220b00600200900200f006", "0x201400620b00601400679f00201400620b0060090100077ac002010006", "0x150067a000201500620b00601500679f00201500620b0060160140077ac", "0x1b00620b00601700622800200220b006002009002002a8901700620b007", "0x220b006002009002002a8a00600202d00201900620b00601b00674a002", "0x60190067a700201900620b00601c00674a00201c00620b0060027a5002", "0x700700674c00200700600720b0060060062270020c40060060c400620b", "0x74a00200220b00600600674d00200220b006002009002009006a8b00220b", "0x60090067a800200220b00600200900200c00600600c00620b006002006", "0x74a00201000620b00600200674a00201600620b0060060067ad00200220b", "0x600f0067a700200f00620b00601401000774f00201400620b006016006", "0x900700600c64100201600620b00600c00622400201500600601500620b", "0xc00200220b00600200900201b017015009a8c01401000f00920b007016", "0x60650c400760300206500620b00601400604b0020c400620b006002006", "0x1000620b00601000612b00200f00620b00600f00601600201c01900720b", "0x67ae00200220b00600200900211b006a8d05400620b00701c00633b002", "0x620b00602a0067a900202a00620b0060290067af00202900620b006054", "0x612b00202d00620b00600f00601600202c00620b00601900600c00202b", "0x202f02e02d02c00c00602f00620b00602b00623500202e00620b006010", "0x203000620b00600213100200220b00611b00603300200220b006002009", "0x603303000705b00203300620b00603300604b00203300620b0060027aa", "0x203500620b00604803900705d00203900620b00600213500204800620b", "0x600f00601600203700620b00601900600c00211e00620b0060350067ab", "0x603a00620b00611e00623500210d00620b00601000612b00212000620b", "0x203c00620b00601b0067b000200220b00600200900203a10d12003700c", "0x600200600c00207d00620b0061240067a900212400620b00603c0067af", "0x212c00620b00601700612b00212a00620b00601500601600203e00620b", "0x70070060020097b200212b12c12a03e00c00612b00620b00607d006235", "0x20b00600c0067b300200220b00600200900200f016007a8e00c00900720b", "0x2d00201500620b0060100067b600201400620b00600900600c002010006", "0xc00201700620b00600f0067b700200220b006002009002002a8f006002", "0x620b00600223400201500620b0060170067b600201400620b006016006", "0x77b50020c400620b00601b00604b00201c00620b0060150067b400201b", "0x2009002054006a9006500620b00701900675a00201900620b0060c401c", "0x202900620b00611b0067b800211b00620b00606500675b00200220b006", "0x602a0067bb00202b00620b00601400600c00202a00620b0060290067ba", "0x620b0060540067c000200220b00600200900202c02b00700602c00620b", "0x2e00700602f00620b00602d0067bb00202e00620b00601400600c00202d", "0x220b00600200900200c006a9100900700720b0070060020077c100202f", "0x160067bc00200f00620b00600700600c00201600620b0060090067c2002", "0x600202a00200220b006002009002002a9200600202d00201000620b006", "0x200f00620b00600c00600c00201500620b0060140067bd00201400620b", "0x60100067be00201700620b00600f00636e00201000620b0060150067bc", "0x20b00600c00603900200c00620b00600204800201b01700700601b00620b", "0x2009002014010007a9300f01600720b00700c00600200903500200c006", "0x1701500720b0070070067bf00201600620b00601600600c00200220b006", "0x632000201900620b0060170061a600200220b00600200900201b006a94", "0x620b00601c0063210020c400620b00601500604e00201c00620b006019", "0x5400620b00600202a00200220b006002009002002a9500600202d002065", "0x11b0063210020c400620b00601b00604e00211b00620b006054006322002", "0x20b00600200900202a006a9602900620b00706500607700206500620b006", "0x1600600c00202b00620b00602900900705b00200220b00600211e002002", "0x3300620b0060c400604e00203000620b00600f00601600202f00620b006", "0x2d02c00920b00604803303002f00c78200204800620b00602b00604e002", "0x5e900200220b006002009002035006a9703900620b00702e0065e800202e", "0x71200210d00620b00612003711e00971100212003711e00920b006039006", "0x20b00602d00601600203c00620b00602c00600c00203a00620b00610d006", "0x20b00600200900207d12403c00900607d00620b00603a0066fd002124006", "0x601600212a00620b00602c00600c00203e00620b0060350066f9002002", "0x900212b12c12a00900612b00620b00603e0066fd00212c00620b00602d", "0x202a00200220b00602a00603300200220b00600211e00200220b006002", "0x20b00604300671200204300620b0060410090c400971100204100620b006", "0x6fd00212e00620b00600f00601600204500620b00601600600c00212d006", "0x211e00200220b00600200900204712e04500900604700620b00612d006", "0x213100200220b00600900605100200220b00600700605100200220b006", "0x213000620b00613000604b00213000620b00600213400213100620b006", "0x4d04b00705d00204b00620b00600213500204d00620b00613013100705b", "0x13200620b00601000600c00204f00620b00604e0066f900204e00620b006", "0x5113200900605300620b00604f0066fd00205100620b006014006016002", "0xc0067c500200c00700720b0060070067c300200220b00600211e002053", "0x1000620b00600f00631500200f00620b0060160065ee00201600620b006", "0x1500611b00200220b0060140060c400201501400720b00601000601c002", "0x720b00601c0190070bf00201c00620b00600900604e00201900620b006", "0x600c0020c400620b0060070067c500200220b00601b00603300201b017", "0x620b0060c400631600202a00620b00600600601600202900620b006002", "0x6500920b00602c02b02a02900c31700202c00620b00601700604e00202b", "0x200220b00600200900202e006a9802d00620b00711b00607100211b054", "0x631a00203300620b00603002f00731900203002f00720b00602d006141", "0x620b00605400601600203900620b00606500600c00204800620b006033", "0x220b00600200900211e03503900900611e00620b00604800631b002035", "0x5400601600212000620b00606500600c00203700620b00602e00631c002", "0x665200203a10d12000900603a00620b00603700631b00210d00620b006", "0x720b00600900613000200900620b00600700665400200700620b006002", "0x604e00201400620b00601600604b00200220b00600c00604d00201600c", "0x601000603300201000f00720b00601501400704f00201500620b006006", "0x61ff00201b00620b00600f00604e00201700620b00600202a00200220b", "0x1600603900201600620b00600204800201901b00700601900620b006017", "0x2015014007a9901000f00720b00701600600200903500201600620b006", "0x620b00600f00600c00201700620b00600900601b00200220b006002009", "0x200220b00600200900201c006a9a01901b00720b0070170060db00200f", "0x60c40061a400206500620b00601b0060990020c400620b0060190061a3", "0x20b00600202a00200220b006002009002002a9b00600202d00205400620b", "0x1a400206500620b00601c00609900202900620b00611b0061a500211b006", "0x20b00602a00600f00202a00620b00606500605300205400620b006029006", "0x200220b00600200900202c006a9c02b00620b0070540060df00202a006", "0x620b00602d0061b200202d00620b00602b0061a600200220b00600211e", "0x3002f00720b00602e00c00700937b00202e00620b00602e00604b00202e", "0x2f00615d00203700620b00601000601600211e00620b00600f00600c002", "0x3a00620b00603000604b00210d00620b00602a00600f00212000620b006", "0x703500679c00203503904803300c20b00603a10d12003711e01679b002", "0x7d00920b00603c0067a100200220b006002009002124006a9d03c00620b", "0x12b00620b00612c00623300212c00620b00612a03e07d0097c600212a03e", "0x3900615d00204300620b00604800601600204100620b00603300600c002", "0x900204512d04304100c00604500620b00612b0067c700212d00620b006", "0x4700620b00603300600c00212e00620b0061240067c800200220b006002", "0x12e0067c700213000620b00603900615d00213100620b006048006016002", "0x600211e00200220b00600200900204d13013104700c00604d00620b006", "0x2a0097c600204b00620b00600202a00200220b00602c00603300200220b", "0x20b00600f00600c00204f00620b00604e00623300204e00620b00604b00c", "0x7c700205300620b00600700615d00205100620b006010006016002132006", "0x11e00200220b00600200900212f05305113200c00612f00620b00604f006", "0x13100200220b00600900606100200220b00600c00604d00200220b006002", "0x13300620b00613300604b00213300620b00600213400205600620b006002", "0x13600705d00213600620b00600213500205800620b00613305600705b002", "0x620b00601400600c00205b00620b0061340067c800213400620b006058", "0x67c700213700620b00600700615d00205d00620b006015006016002135", "0xa9e00700620b0070020067c900205f13705d13500c00605f00620b00605b", "0x60070067b800200220b00600600604d00200220b006002009002009006", "0x600f00620b0060160067bb00201600620b00600c0067ba00200c00620b", "0x20b00600213100200220b00600900653400200220b00600200900200f006", "0x5d00201500620b00600213500201400620b00600601000705b002010006", "0x601b0067bb00201b00620b0060170067c000201700620b006014015007", "0x212003900604800201601603900604800201610001900600601900620b", "0x19b00900700600212003900600200c01603900600200c00200c009007006", "0x4700f3a500c009007006002120039006048002016016039006048002016", "0x1656601600c00900700600212003900604800204700f016039006048002", "0x20470166b100c009007006002120039006002047016016039006002047", "0x1603900600200c75e00c009007006002120039006002047016016039006", "0x12003900600200c01603900600200c7fc00900700600212003900600200c", "0x70060021200390060480020160160390060480020168d4009007006002", "0xc009007006002120039006048002016016039006048002016a9f00c009", "0xc00900700600212003900604800204700f01603900604800204700faa0", "0x600200caa200900700600212003900600200c01603900600200caa1016", "0x600200c01603900600200caa300900700600212003900600200c016039", "0x700600212003900600200c01603900600200caa4009007006002120039", "0x600200caa600900700600212003900600200c01603900600200caa5009", "0x600200c01603900600200caa700900700600212003900600200c016039", "0x700600212003900600200c01603900600200caa8009007006002120039", "0x600200caaa00900700600212003900600200c01603900600200caa9009", "0x600200c01603900600200caab00900700600212003900600200c016039", "0x700600212003900600200c01603900600200caac009007006002120039", "0x600200caae00900700600212003900600200c01603900600200caad009", "0x600200c01603900600200caaf00900700600212003900600200c016039", "0x700600212003900600200c01603900600200cab0009007006002120039", "0x600200cab200900700600212003900600200c01603900600200cab1009", "0x600200c01603900600200cab300900700600212003900600200c016039", "0x700600212003900600200c01603900600200cab4009007006002120039", "0xab600c009007006002120039006048002016016039006048002016ab5009", "0x9016006002009ab700900700600212003900600200c01603900600200c", "0x11e03900604800201601403303900604800200fab80070060020c4006002", "0x39007039006aba006002015009007009007007ab901600c009007006002", "0xabc00c00900700600212403900600200c014033039006002016abb002015", "0x212b016007016006abd00900700600212a00600200900907d00600200c", "0x7033039006048002010abf00700600212d006002009016006002009abe", "0x9016006002009ac000f01600c00900700600212e039006048002016009", "0x604800200f00904f033039047006048002014ac100700600212f006002", "0x1604f03303904700600200fac201000f01600c009007006002124039047", "0x1600703303904700600200fac301600c00900700600212e039047006002", "0x6002015009007009054007ac401600c009007006002133039047006002", "0x200c00905803303900600200fac6006002134016002009016002007ac5", "0x212a00600200900900c00600200cac701600c009007006002135039006", "0xc00900700600213503900600200c009033039006002016ac8009007006", "0x1600c00900700600212e03900604800201600703303900604800200fac9", "0x700600212e039006048002016007007007007033039006048002015aca", "0x4800200f007007007033039047006048002015acb01401000f01600c009", "0x7033039006002016acc01401000f01600c009007006002137039047006", "0x600200c007033039006002016acd00c00900700600213703900600200c", "0x213703900600200c007033039006002016ace00c009007006002137039", "0x900700600213703900600200c007033039006002016acf00c009007006", "0x600200cad100900700600213703900600200c03303900600200cad000c", "0x600200c03303900600200cad200900700600213703900600200c033039", "0x9ad400700600212e039006009033039006009ad3009007006002137039", "0x212e039006009033039006009ad500700600212e039006009033039006", "0x5f007ad700900700600213803900600200c03303900600200cad6007006", "0x2015009007009139007ad9002139006033006ad8006002015009007009", "0x9065007adb00900700600213b03900600200c03303900600200cada006", "0x900700600213b03900600200c03303900600200cadc006002015009007", "0x700906a007ade00900700600213c03900600200c03303900600200cadd", "0x6002007006007033007ae0006002054006007033007adf006002015009", "0xc00900700600212e039006048002016009007033039006048002010ae1", "0xc00900700600213703900600200c00700703303900600200fae200f016", "0x6007ae400c0090070060020c4006002009007014016006002016ae3016", "0x2015ae6006002146039006009039006007ae5006002141039006009039", "0x1600c00900700600213703900604800201605401600704e033039006048", "0x16ae800900700600214a03900600200c04e03900600200cae701401000f", "0x7f00600200cae900c00900700600213703900600200c0c7033039006002", "0x12d006002009007009016006002016aea00900700600212a006002009009", "0x133039006048002016016007033039006048002010aeb00c009007006002", "0x2007aed00600214e016002009016002007aec00f01600c009007006002", "0xaef007006002150006002009016006002009aee00600214f016002009016", "0x600201600702e03904700600200faf0006002154039006009039006007", "0xaf2006002141039006009039006007af101600c009007006002133039047", "0x39047006002010af300900700600212e04700600200c04f04700600200c", "0x3900600caf400f01600c00900700600215b03904700600201605400702e", "0x6002016af600216b0060ed006af5009007006002133039006009007168", "0x916c039006002016af700c00900700600213703900600200c0d0033039", "0x12a00600200900901600600200caf800c00900700600216d03900600200c", "0x39006009afa00700600212e03900600902a039006009af9009007006002", "0x700600212e03900600902c039006009afb00700600212e03900600902b", "0x6058058007afd00900700600217303900600200c02903900600200cafc", "0x2016aff00900700600217503900600905802903900600cafe006002054", "0xf04e00600200cb0000c00900700600213703900600200c0d1033039006", "0x48002016016007033039006048002010b01009007006002176006002009", "0x7007033039047006048002015b0200f01600c00900700600216b039006", "0x200cb0301401000f01600c00900700600216b03904700604800200f007", "0x200c04d03900600200cb0400900700600213803900600200c02d039006", "0x39006002016b06006002054006069069007b0500900700600217a039006", "0x6002054006069069007b0700c00900700600217c03900600200c05f02d", "0x600cb0900c00900700600213703900600200c0cc033039006002016b08", "0x3900600906502f03900600cb0a00900700600217d039006009065030039", "0xb0c00900700600217f03900600900702a03900600cb0b00900700600217e", "0x6002016b0d00c00900700600213703900600200c0cd033039006002016", "0x900702b03900600cb0e00c00900700600213703900600200c0d2033039", "0x213703900600200c0ce033039006002016b0f009007006002180039006", "0x16b1100900700600218103900600900702c03900600cb1000c009007006", "0x4d04d002009b1200c00900700600213703900600200c0cf033039006002", "0x600213703900600200c0c8033039006002016b13007006002154002007", "0xc00900700600213703900600200c0c9033039006002016b1400c009007", "0x2016b1600c00900700600213703900600200c0ca033039006002016b15", "0x900700904d007b1700c00900700600213703900600200c0cb033039006", "0x200c02f03900600200cb19006002015009007009064007b18006002015", "0x600213b03900600200c03003900600200cb1a00900700600213b039006", "0x200c0c6033039006002016b1c006002015009007009069007b1b009007", "0x700600218e006002009016006002009b1d00c009007006002137039006", "0x600219000200706504b002009b1f00600218f039006009039006007b1e", "0x65002009b2100900700600216b03900600200c06503900600200cb20007", "0x6048002016016007033039006048002010b2200700600213b002007065", "0x2016016007033039006048002010b2300f01600c009007006002133039", "0xc03a00704e03900600200fb2400f01600c009007006002133039006048", "0x6002016b2600219c0060c7006b2501600c00900700600219b039006002", "0x200900901600600200cb2700c00900700600219d00600200900900919c", "0x7007002007b290060021a1002007016002007b2800900700600212a006", "0x702e04700200cb2b0060021a3039006009039006007b2a00600214f002", "0x60021a50390060091a406503900600cb2c0090070060021a4047002009", "0x1a604700600200c00704e047006002016b2e0021330061a5006b2d009007", "0x6b310021ae016007016006b300021200061ad006b2f00c009007006002", "0x600200c1a4065039006002016b3300212e0061b4006b3200219c0060d0", "0xb3600219c0060d1006b350021730060e5006b3400c0090070060021b8039", "0xfb380070060020070470071bd007047009b3700600205400600f00f007", "0x6002016b3901600c009007006002054048002009007007007007048002", "0xb3b0021380060ea006b3a00c0090070060021bf03900600200c1a4065039", "0x1c103900600200c05f1a406503900600200fb3c006002054006015015007", "0x6b3f00219c0060cd006b3e00219c0060cc006b3d01600c009007006002", "0x71c5007b4200219c0060cf006b4100219c0060ce006b4000219c0060d2", "0x60ca006b4500219c0060c9006b4400219c0060c8006b43006002154006", "0x1c803900600200c1a4065039006002016b4700219c0060cb006b4600219c", "0x6002015009007009015007b4900213b0060f2006b4800c009007006002", "0x600213b0060071d4007b4c00218f0061ca006b4b00219c0060c6006b4a", "0x600200900900900600200cb4e0070060021d600200706500c002009b4d", "0x2016b500070060020150090090090090090c6009b4f00900700600212a", "0x90090090090c8009b5100c00900700600219d0060020090090090c7006", "0xca009b530070060020150090090090090090c9009b52007006002015009", "0x60020150090090090090090cb009b54007006002015009009009009009", "0x90090090090cd009b560070060020150090090090090090cc009b55007", "0xcf009b580070060020150090090090090090ce009b57007006002015009", "0x60020150090090090090090d0009b59007006002015009009009009009", "0x90090090090d2009b5b0070060020150090090090090090d1009b5a007", "0x900700600212e04700600200c0be04700600200cb5c007006002015009", "0x700600200704700700f007047009b5e006002134002007007002007b5d", "0xb610060020fa0060fa0fa007b600070060020fa0480070070fa048009b5f", "0x21f603900600200c1a4065039006002016b620060020fa0060fa0fa007", "0x7007002007b640070060021f8002007064064002009b6300c009007006", "0xcb6600900700600219d00600200900900900600200cb650060021f9002", "0x2015009007009058007b6700900700600212a00600200900907f006002", "0x7b6900c0090070060021fb04700600200c007016047006002016b68006", "0xb6a0060021f8006007206"], "entry_points_by_type": {"EXTERNAL": [{"selector": "0x233f7eb4ceacfd7c3e238afaf740a3ffcb352f9844a11df665e97c3b0370b6", "function_idx": 4}, {"selector": "0x29ce6d1019e7bef00e94df2973d8d36e9e9b6c5f8783275441c9e466cb8b43", "function_idx": 14}, {"selector": "0x7ec457cd7ed1630225a8328f826a29a327b19486f6b2882b4176545ebdbe3d", "function_idx": 3}, {"selector": "0x9278fa5f64a571de10741418f1c4c0c4322aef645dd9d94a429c1f3e99a8a5", "function_idx": 29}, {"selector": "0x960e70c0b7135476e33b1ba6a72e9b10cb5e261ebaa730d1ed01a0f21c22d3", "function_idx": 12}, {"selector": "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", "function_idx": 6}, {"selector": "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", "function_idx": 27}, {"selector": "0x139562604eb722f14da2b8c1f8f681c99d31226bf9d57f148ec8b4d611f92f8", "function_idx": 24}, {"selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "function_idx": 1}, {"selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "function_idx": 0}, {"selector": "0x1746f7542cac71b5c88f0b2301e87cd9b0896dab1c83b8b515762697e521040", "function_idx": 10}, {"selector": "0x178e27745484c91a084e6a72059b13e3dbebef761175a63f4330bec3ad4aaa0", "function_idx": 21}, {"selector": "0x1a1e41f464a235695e5050a846a26ca22ecc27acac54be5f6666848031efb8f", "function_idx": 7}, {"selector": "0x1e6d35df2b9d989fb4b6bbcebda1314e4254cbe5e589dd94ff4f29ea935e91c", "function_idx": 5}, {"selector": "0x213dfe25e2ca309c4d615a09cfc95fdb2fc7dc73fbcad12c450fe93b1f2ff9e", "function_idx": 31}, {"selector": "0x22e07fe65aff1304b57cc48ee7c75a04ce2583b5ef2e7866eb8acbe09be43e2", "function_idx": 25}, {"selector": "0x231c71f842bf17eb7be2cd595e2ad846543dbbbe46c1381a6477a1022625d60", "function_idx": 17}, {"selector": "0x24fd89f2d8a7798e705aa5361f39154ca43e03721c05188285138f16018955d", "function_idx": 19}, {"selector": "0x26e71b81ea2af0a2b5c6bfceb639b4fc6faae9d8de072a61fc913d3301ff56b", "function_idx": 13}, {"selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941", "function_idx": 2}, {"selector": "0x289da278a8dc833409cabfdad1581e8e7d40e42dcaed693fa4008dcdb4963b3", "function_idx": 8}, {"selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", "function_idx": 30}, {"selector": "0x2a4bb4205277617b698a9a2950b938d0a236dd4619f82f05bec02bdbd245fab", "function_idx": 22}, {"selector": "0x2aa20ff86b29546fd697eb81064769cf566031d56b10b8bba2c70125bd8403a", "function_idx": 28}, {"selector": "0x2ad0f031c5480fdb7c7a0a026c56d2281dcc7359b88bd9053a8cf10048d44c4", "function_idx": 20}, {"selector": "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead", "function_idx": 11}, {"selector": "0x31341177714d81ad9ccd0c903211bc056a60e8af988d0fd918cc43874549653", "function_idx": 23}, {"selector": "0x36fcbf06cd96843058359e1a75928beacfac10727dab22a3972f0af8aa92895", "function_idx": 9}, {"selector": "0x395b662db8770f18d407bbbfeebf45fffec4a7fa4f6c7cee13d084055a9387d", "function_idx": 15}, {"selector": "0x3ad2979f59dc1535593f6af33e41945239f4811966bcd49314582a892ebcee8", "function_idx": 16}, {"selector": "0x3ce4edd1dfe90e117a8b46482ea1d41700d9d00c1dccbce6a8e2f812c1882e4", "function_idx": 26}, {"selector": "0x3ee0bfaf5b124501fef19bbd1312e71f6966d186c42eeb91d1bff729b91d1d4", "function_idx": 18}], "L1_HANDLER": [], "CONSTRUCTOR": [{"selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", "function_idx": 32}]}, "abi": "[{\"type\": \"struct\", \"name\": \"core::starknet::account::Call\", \"members\": [{\"name\": \"to\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"selector\", \"type\": \"core::felt252\"}, {\"name\": \"calldata\", \"type\": \"core::array::Array::\"}]}, {\"type\": \"function\", \"name\": \"__validate__\", \"inputs\": [{\"name\": \"calls\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"external\"}, {\"type\": \"struct\", \"name\": \"core::array::Span::\", \"members\": [{\"name\": \"snapshot\", \"type\": \"@core::array::Array::\"}]}, {\"type\": \"function\", \"name\": \"__execute__\", \"inputs\": [{\"name\": \"calls\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::>\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"is_valid_signature\", \"inputs\": [{\"name\": \"hash\", \"type\": \"core::felt252\"}, {\"name\": \"signature\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"impl\", \"name\": \"ExecuteFromOutsideImpl\", \"interface_name\": \"lib::outside_execution::IOutsideExecution\"}, {\"type\": \"struct\", \"name\": \"lib::outside_execution::OutsideExecution\", \"members\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"nonce\", \"type\": \"core::felt252\"}, {\"name\": \"execute_after\", \"type\": \"core::integer::u64\"}, {\"name\": \"execute_before\", \"type\": \"core::integer::u64\"}, {\"name\": \"calls\", \"type\": \"core::array::Span::\"}]}, {\"type\": \"enum\", \"name\": \"core::bool\", \"variants\": [{\"name\": \"False\", \"type\": \"()\"}, {\"name\": \"True\", \"type\": \"()\"}]}, {\"type\": \"interface\", \"name\": \"lib::outside_execution::IOutsideExecution\", \"items\": [{\"type\": \"function\", \"name\": \"execute_from_outside\", \"inputs\": [{\"name\": \"outside_execution\", \"type\": \"lib::outside_execution::OutsideExecution\"}, {\"name\": \"signature\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::>\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"is_valid_outside_execution_nonce\", \"inputs\": [{\"name\": \"nonce\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::bool\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_outside_execution_message_hash\", \"inputs\": [{\"name\": \"outside_execution\", \"type\": \"lib::outside_execution::OutsideExecution\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"UpgradeableImpl\", \"interface_name\": \"lib::upgrade::IUpgradeable\"}, {\"type\": \"interface\", \"name\": \"lib::upgrade::IUpgradeable\", \"items\": [{\"type\": \"function\", \"name\": \"upgrade\", \"inputs\": [{\"name\": \"new_implementation\", \"type\": \"core::starknet::class_hash::ClassHash\"}, {\"name\": \"calldata\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"execute_after_upgrade\", \"inputs\": [{\"name\": \"data\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::\"}], \"state_mutability\": \"external\"}]}, {\"type\": \"impl\", \"name\": \"ArgentAccountImpl\", \"interface_name\": \"account::interface::IArgentAccount\"}, {\"type\": \"struct\", \"name\": \"account::escape::Escape\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\"}, {\"name\": \"escape_type\", \"type\": \"core::felt252\"}, {\"name\": \"new_signer\", \"type\": \"core::felt252\"}]}, {\"type\": \"struct\", \"name\": \"lib::version::Version\", \"members\": [{\"name\": \"major\", \"type\": \"core::integer::u8\"}, {\"name\": \"minor\", \"type\": \"core::integer::u8\"}, {\"name\": \"patch\", \"type\": \"core::integer::u8\"}]}, {\"type\": \"enum\", \"name\": \"account::escape::EscapeStatus\", \"variants\": [{\"name\": \"None\", \"type\": \"()\"}, {\"name\": \"NotReady\", \"type\": \"()\"}, {\"name\": \"Ready\", \"type\": \"()\"}, {\"name\": \"Expired\", \"type\": \"()\"}]}, {\"type\": \"interface\", \"name\": \"account::interface::IArgentAccount\", \"items\": [{\"type\": \"function\", \"name\": \"__validate_declare__\", \"inputs\": [{\"name\": \"class_hash\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"__validate_deploy__\", \"inputs\": [{\"name\": \"class_hash\", \"type\": \"core::felt252\"}, {\"name\": \"contract_address_salt\", \"type\": \"core::felt252\"}, {\"name\": \"owner\", \"type\": \"core::felt252\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"change_owner\", \"inputs\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\"}, {\"name\": \"signature_r\", \"type\": \"core::felt252\"}, {\"name\": \"signature_s\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"change_guardian\", \"inputs\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"change_guardian_backup\", \"inputs\": [{\"name\": \"new_guardian_backup\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"trigger_escape_owner\", \"inputs\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"trigger_escape_guardian\", \"inputs\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"escape_owner\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"escape_guardian\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"cancel_escape\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"get_owner\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian_backup\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_escape\", \"inputs\": [], \"outputs\": [{\"type\": \"account::escape::Escape\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_version\", \"inputs\": [], \"outputs\": [{\"type\": \"lib::version::Version\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_name\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian_escape_attempts\", \"inputs\": [], \"outputs\": [{\"type\": \"core::integer::u32\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_owner_escape_attempts\", \"inputs\": [], \"outputs\": [{\"type\": \"core::integer::u32\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_escape_and_status\", \"inputs\": [], \"outputs\": [{\"type\": \"(account::escape::Escape, account::escape::EscapeStatus)\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"Erc165Impl\", \"interface_name\": \"lib::erc165::IErc165\"}, {\"type\": \"interface\", \"name\": \"lib::erc165::IErc165\", \"items\": [{\"type\": \"function\", \"name\": \"supports_interface\", \"inputs\": [{\"name\": \"interface_id\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::bool\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"OldArgentAccountImpl\", \"interface_name\": \"account::interface::IDeprecatedArgentAccount\"}, {\"type\": \"interface\", \"name\": \"account::interface::IDeprecatedArgentAccount\", \"items\": [{\"type\": \"function\", \"name\": \"getVersion\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"getName\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"supportsInterface\", \"inputs\": [{\"name\": \"interface_id\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"isValidSignature\", \"inputs\": [{\"name\": \"hash\", \"type\": \"core::felt252\"}, {\"name\": \"signatures\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"constructor\", \"name\": \"constructor\", \"inputs\": [{\"name\": \"owner\", \"type\": \"core::felt252\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::AccountCreated\", \"kind\": \"struct\", \"members\": [{\"name\": \"owner\", \"type\": \"core::felt252\", \"kind\": \"key\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"struct\", \"name\": \"core::array::Span::>\", \"members\": [{\"name\": \"snapshot\", \"type\": \"@core::array::Array::>\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::TransactionExecuted\", \"kind\": \"struct\", \"members\": [{\"name\": \"hash\", \"type\": \"core::felt252\", \"kind\": \"key\"}, {\"name\": \"response\", \"type\": \"core::array::Span::>\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeOwnerTriggered\", \"kind\": \"struct\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\", \"kind\": \"data\"}, {\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeGuardianTriggered\", \"kind\": \"struct\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\", \"kind\": \"data\"}, {\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerEscaped\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianEscaped\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeCanceled\", \"kind\": \"struct\", \"members\": []}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianBackupChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian_backup\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::AccountUpgraded\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_implementation\", \"type\": \"core::starknet::class_hash::ClassHash\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerAdded\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner_guid\", \"type\": \"core::felt252\", \"kind\": \"key\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerRemoved\", \"kind\": \"struct\", \"members\": [{\"name\": \"removed_owner_guid\", \"type\": \"core::felt252\", \"kind\": \"key\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::Event\", \"kind\": \"enum\", \"variants\": [{\"name\": \"AccountCreated\", \"type\": \"account::argent_account::ArgentAccount::AccountCreated\", \"kind\": \"nested\"}, {\"name\": \"TransactionExecuted\", \"type\": \"account::argent_account::ArgentAccount::TransactionExecuted\", \"kind\": \"nested\"}, {\"name\": \"EscapeOwnerTriggered\", \"type\": \"account::argent_account::ArgentAccount::EscapeOwnerTriggered\", \"kind\": \"nested\"}, {\"name\": \"EscapeGuardianTriggered\", \"type\": \"account::argent_account::ArgentAccount::EscapeGuardianTriggered\", \"kind\": \"nested\"}, {\"name\": \"OwnerEscaped\", \"type\": \"account::argent_account::ArgentAccount::OwnerEscaped\", \"kind\": \"nested\"}, {\"name\": \"GuardianEscaped\", \"type\": \"account::argent_account::ArgentAccount::GuardianEscaped\", \"kind\": \"nested\"}, {\"name\": \"EscapeCanceled\", \"type\": \"account::argent_account::ArgentAccount::EscapeCanceled\", \"kind\": \"nested\"}, {\"name\": \"OwnerChanged\", \"type\": \"account::argent_account::ArgentAccount::OwnerChanged\", \"kind\": \"nested\"}, {\"name\": \"GuardianChanged\", \"type\": \"account::argent_account::ArgentAccount::GuardianChanged\", \"kind\": \"nested\"}, {\"name\": \"GuardianBackupChanged\", \"type\": \"account::argent_account::ArgentAccount::GuardianBackupChanged\", \"kind\": \"nested\"}, {\"name\": \"AccountUpgraded\", \"type\": \"account::argent_account::ArgentAccount::AccountUpgraded\", \"kind\": \"nested\"}, {\"name\": \"OwnerAdded\", \"type\": \"account::argent_account::ArgentAccount::OwnerAdded\", \"kind\": \"nested\"}, {\"name\": \"OwnerRemoved\", \"type\": \"account::argent_account::ArgentAccount::OwnerRemoved\", \"kind\": \"nested\"}]}]"} \ No newline at end of file +{"contract_class_version": "0.1.0", "sierra_program": ["0x1", "0x2", "0x0", "0x2", "0x0", "0x0", "0xb6b", "0x495", "0xdc", "0x52616e6765436865636b", "0x0", "0x4761734275696c74696e", "0x66656c74323532", "0x4172726179", "0x1", "0x2", "0x536e617073686f74", "0x3", "0x537472756374", "0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62", "0x4", "0x436f6e747261637441646472657373", "0x3693aea200ee3080885d21614d01b9532a8670f69e658a94addaadd72e9aca", "0x6", "0x7", "0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3", "0x456e756d", "0x28f184fd9e4406cc4475e4faaa80e83b54a57026386ee7d5fc4fa8f347e327d", "0x8", "0x9", "0x5", "0xa", "0x14de46c93830b854d231d540339ee8ae16bb18830a375fe81572a472d5945f1", "0xc", "0x2872422f4eae164f52022a3d9ed2c5a2a9065da5f91ed37431a700dbe6e986b", "0xb", "0xd", "0x753332", "0x3288d594b9a45d15bb2fcb7903f06cdb06b27f0ba88186ec4cfaa98307cb972", "0x4275696c74696e436f737473", "0x2c0d43e92d76a45659f0b697b9d8399be5ce9caf9809f01d805a7827a9f368b", "0x132e9b3bde7bb5a3b35e9cb467df6497f9e595756495bb732f6d570d020415b", "0x3eb025eec2624dfbbbc1527da25edeeadb5d065598bf16c4d6767d622f68b3", "0x28c643274592e2abc8d6d5b6be3ac4d05f693274f69a71116ba9f34e71f0e49", "0xd2df414ffcda9bc327e41f128f46e0121aaf753e4b9b3aa3842805109c6b9c", "0x168a19d9c33230785040a214b5b2861704cabc56be86e2d06b962ccb752e178", "0x25d56f41e1487d276dcf6b27f6936fa06c930e00004e9174cd19b99e70bbe57", "0x35c73308c1cfe40d0c45541b51ef1bdfd73c604f26df19c53c825cb3f79337f", "0x49cb7bc68923048657537e3d62ec3c683cd4a72c21defe9aafefe955763bc3", "0x12", "0x13", "0x14", "0x15", "0x16", "0x17", "0x18", "0x19", "0x45634f70", "0x53797374656d", "0x1a", "0x3aa9a19f05f2852f2cac587710738c8ca96ca6f1d55402522f4e9080c417782", "0x1d", "0x19b3b4955bdcfa379bfc5a4949111c4efdd79128f8676f4d0895419b22e2ad7", "0x1f", "0x556e696e697469616c697a6564", "0x1c", "0x22", "0x273a31807ab152305389aa8b68ec07ccbfe8dfde299241facb5cd7d87c7eb8a", "0x23", "0x1dd6d80faabe40b870e2bac9bae20133f8a150c977bf480085e39aaa4e0362a", "0x26", "0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511", "0x17b6ecc31946835b0d9d92c2dd7a9c14f29af0371571ae74a1b228828b2242", "0x2a", "0x262b845bbedf41820bc2b34dc2faff0bab3fa4d4d8a1bb282deca598d4a3627", "0x2b", "0x2f528e3c691e195fca674982b69c0dc4284f206c3ea4d680220e99b59315a92", "0x2d", "0x506564657273656e", "0x2f", "0x1b", "0x753634", "0x13d20f70b017632fd676250ec387876342924ff0d0d3c80e55961780f4e8f", "0x33", "0x179749167d3bd5ec9f49b35931aeaa79432c7f176824049eca4db90afd7d49d", "0x32", "0x34", "0x35", "0x3d7bb709566af24f4a28309c9d9b89d724fd194c2992d536ab314b4d7eae195", "0x37", "0x3209ac1b85c2191fe97194b13f4bdfed29e89e78a1338d9d73cb98474dfae5a", "0x38", "0x10", "0x358506fd2d97ec152c79646571b0b818eb31f8ed5ffd4080a2e22571074b909", "0x3a", "0x436c61737348617368", "0x3c", "0x11771f2d3e7dc3ed5afe7eae405dfd127619490dec57ceaa021ac8bc2b9b315", "0x12ac6c758b8836b49f5f132ddaee37724bc734e405ca6a2514dfcd9f53aec58", "0x3f", "0xad00da0c82d9bb5619cd07bc862005938954f64876663b63f058d5351bbbb1", "0x41", "0x25b1f5eb403a7e1245e380d4654dabdc9f9f3158b939512eb4c8cbe540d220f", "0x43", "0x72eed1ff90454d4ee83e0d0841db171293ff5d1b991ef68095521941376efd", "0x44", "0x7538", "0x12273f170557bf9e9616162ba3a242ac99ba93810c9c4d21d3c4575f07822ae", "0x46", "0xf", "0x3840086d8220f2d1639cf978fb701dd671faa8e4b9973fd7a4c3cf1f06d04e", "0x48", "0x1bdcbe0bb2973c3eed7f3cd959974b2236966c71d9784fcffce00300852eee9", "0x4a", "0x4b", "0xc9447c0781360856f987ed580e881ac951c6a5015bde94c79cb189cc8cccb0", "0x4c", "0x426f78", "0x29d7d57c04a880978e7b3689f6218e507f3be17588744b58dc17762447ad0e7", "0x4e", "0x125048bba125edb4f72a816890f2f63324d796e84a92b9bd1eb3a97f4e938ee", "0x50", "0x4e6f6e5a65726f", "0x75313238", "0x2e655a7513158873ca2e5e659a9e175d23bf69a2325cdd0397ca3b8d864b967", "0x53", "0x54", "0x55", "0x32463e9d13536f0a0b55a828c16b744aa8b58f21fd9e164166d519bb3412bcc", "0x56", "0x27f9c9f4e4a3578b197e28a3ed578eb2b57f93483b1dc21e6770e7e7b704f34", "0x59", "0x28f8d296e28032baef1f420f78ea9d933102ba47a50b1c5f80fc8a3a1041da", "0x25", "0x1eaf57b3a55713f7b468e69aa1d7c98efdf6cf624a2d3d2eb66831111304527", "0x5b", "0x3d37ad6eafb32512d2dd95a2917f6bf14858de22c27a1114392429f2e5c15d7", "0x156b6b29ca961a0da2cfe5b86b7d70df78ddc905131c6ded2cd9024ceb26b4e", "0x341d38eba34b7f63af136a2fa0264203bb537421424d8af22f13c0486c6bd62", "0x61", "0x2df4ac612d9f474861b19bfadb9282eb6a9e96dbffcd47e6c1fe7088ef7e08b", "0x62", "0x1f43b8beb72009fc550a271a621f219147c6418e55f99e720aa9256b80b9a2a", "0x6c", "0x3d084941540057ac1b90e9a1a0c84b383e87f84fada8a99f139871e1f6e96c0", "0xebaa582aec1bbd01a11c61ed232150d86283ceff85ead1aa2143443285ecd4", "0x6f", "0x2ce5530c67c658502ea15626eae6f33d2ffd2c4f7aedda0fe2fe23e013169d7", "0x101dc0399934cc08fa0d6f6f2daead4e4a38cabeea1c743e1fc28d2d6e58e99", "0xd3a26a7712a33547a4a74e7594a446ca400cb36a0c2c307b92eff9ce82ff8", "0x74", "0x38e79b5062b6ee36022a8f19492101094c935ac54b64421943cf85730efa145", "0x1e75a35b461a190303f5117738d6cd6cb9c3330a1be0c7e80290facbcdb72e7", "0x13c91f3cba438dd54eb596a082e165d9ede6281c321682acd3c28e15602ffb", "0x78", "0x1338d3578fef7f062927553e61e2ae718b31f7ddb054229e02303195a8e937d", "0x7b", "0x2132e29887635235b81487fc052f08dcce553a7bd46b2ec213485351698f9f2", "0x7d", "0x29299a4dd8765e5a9821476c7b9eaceeff6cc036d7a0c0dd8af3327e16e738f", "0x10f7a39f148bf9911ddb05e828725f238c5461d0e441b8a55ba8195ddc99eaf", "0x80", "0x3cffb882a9a02817bd5278228221c142582b97b73612a2bbad46cdded2c9c26", "0x82", "0x31d5a371e34511d0b36bb55d7b0cfca1b435f02053210dd4e77f1795b096fe9", "0x84", "0x3431146377142ad86dc873f4632d2e74caabb9230a37c8de068dd9513ea9898", "0x23fbc0021ccc20b54491663a4362d8a5bc4b7622741854f8f82b6b7d98740a6", "0x87", "0x3ded11b5c9ebee7f65144ad131a8e99a0a0830b43a6f55f34b7d3bf2b573302", "0x89", "0x2f64612c614fe41cb181d4813fe491b6992fd5cb42a2f2506362892a67ed730", "0x8b", "0x2a6f1ee5bbefc28eff9a98f2cbd5f2792f8f09998567ff2689faac1b54841b9", "0x2d61d819a9e4e98f23d58ee684c80f695821db9bc0dd70d02f6228b3d35013e", "0x34f3666fe156bf2469fed4ce24c81ae279169871818ad2c3733d6b0f846b1a1", "0x8f", "0x92647fce35633aa7cfaae80402c5d0df0f10c80acd6d4bf29224e8a80804a4", "0x9fcd95695b8c42ae1ac98f26d057950e768e98cd086c08bc62fc58b62ef6f0", "0x92", "0x23282f06f16b4d2d37f3d174562114d8e0460305ae51765c43e40266d6110d9", "0x17fb4856a1135e156fe87a2e0d50bd936f7437e8e927a4437d47e4f1e485f09", "0x16f3778660f5b9a5d10874a05d72e83b94fe89bac3d59b05e391352b1a7aec1", "0x1e7a3e04b3d1e82da51c455bc65a8a044bd017c2784aa56b04898a279eea98c", "0xc087f9a3230c11dd5a7f2adbd0fee01c0a5eb6182581c2598b6b0ade81bc3a", "0x3439adb3e4f0f99830a6dfb70c506440f8fb2ad2cb18512dcf5062ee25b3918", "0x18508a22cd4cf1437b721f596cd2277fc0a5e4dcd247b107ef2ef5fd2752cf7", "0x9a", "0x3dc696c835d6ea393cef16637741cc327e8f6be35db50ef242ea06cdeae47aa", "0x9b", "0x3808c701a5d13e100ab11b6c02f91f752ecae7e420d21b56c90ec0a475cc7e5", "0x9d", "0x19367431bdedfe09ea99eed9ade3de00f195dd97087ed511b8942ebb45dbc5a", "0x9e", "0x9f", "0xa0", "0x26c97610bba318e7be7ed9746815afccc1b89e6a3174fbec5d5534288167ac7", "0xa1", "0xa3", "0xa4", "0x3f5595797ca73d9ac98a47c023f16f9675e924b1f5b8732cb923783062e0e9c", "0xa5", "0x2279da0a991198935efd413ccdec7236f9ff34ecfc870ec2376d7f044337bdb", "0xa7", "0xe", "0x29a4451ccf4ec2f45bf46114a4107522e925bd156e7a0755f94e1b4a9f0f759", "0x99", "0x5c", "0x95", "0x96", "0x97", "0x98", "0x86", "0x8d", "0x91", "0x94", "0x76", "0x7f", "0x8e", "0xc557fedbc200e59b686799bd8c95f94bc6452bc987295354063228797ffe79", "0xaa", "0x1f5d91ca543c7f9a0585a1c8beffc7a207d4af73ee640223a154b1da196a40d", "0xad", "0xaf", "0x97667cd4a7b6c408c987bc31ccfeb87330105dcbea0ccc479dcef916c9c14e", "0xb0", "0x82e10b563da3b07f9855f46392dec37b4b43359d940178db92615e0b07446", "0xb2", "0x53746f726167654261736541646472657373", "0x248e8fae2f16a35027771ffd74d6a6f3c379424b55843563a18f566bba3d905", "0x1b59390b367137d6eb44c3792fc90406d53b6e7b6f56f72cb82d4d19b7519d0", "0xb6", "0x53746f7261676541646472657373", "0x161ee0e6962e56453b5d68e09d1cabe5633858c1ba3a7e73fee8c70867eced0", "0x2d7b9ba5597ffc180f5bbd030da76b84ecf1e4f1311043a0a15295f29ccc1b0", "0x90d0203c41ad646d024845257a6eceb2f8b59b29ce7420dd518053d2edeedc", "0x14a7ddbb1150a2edc3d078a24d9dd07049784d38d10f9253fc3ece33c2f46a3", "0xbc", "0x4c63dc3c228ce57ac3db7c6549a0264844f765e132dc50ea81033c93e01e83", "0xbd", "0x1c85cfe38772db9df99e2b01984abc87d868a6ed1abf1013cf120a0f3457fe1", "0x17fc4845052afc079cefa760760a2d2779b9b7b61a8147b160ffdac979427b0", "0xc1", "0x2e53ad4d5ceb4d3481ef21842c2a6b389bd01e8650d6b4abe90a49e7067d43b", "0xc2", "0x73", "0x2f0c6e95609e1148599821032681af9af0899172cfe34d8347ab78e46cfd489", "0xc4", "0x2fffb69a24c0eccf3220a0a3685e1cefee1b1f63c6dcbe4030d1d50aa7a7b42", "0x1289347a53bd537cb2be622dc3ef1bae97ae391de352ed7871b08a409f130a8", "0xc7", "0xfcd97190f892337fa74b5f71ab0858bd462389f0dc97f3e8491dc3eb8de023", "0xc8", "0x2c7badf5cd070e89531ef781330a9554b04ce4ea21304b67a30ac3d43df84a2", "0x39a088813bcc109470bd475058810a7465bd632650a449e0ab3aee56f2e4e69", "0x107ac1be595c82e927dbf964feb2e59168314a4f142e387bb941abb5e699f5e", "0xcc", "0x4563506f696e74", "0xcf", "0x3e4e624a497e446ce523f5b345c07be6fab07dbff47534532460e9a8288be43", "0xd1", "0x622be99a5124cfa9cd5718f23d0fddef258c1f0e40a1008568f965f7bd6192", "0xd2", "0xcd9deb349f6fb32e657baec1ad634c533f483d4a7d58d9b614521369f9345a", "0xd4", "0x19b9ae4ba181a54f9e7af894a81b44a60aea4c9803939708d6cc212759ee94c", "0x293a0e97979ae36aff9649e1d1e3a6496fc083b45da3f24c19ad5e134f26c9d", "0xd8", "0x45635374617465", "0xc048ae671041dedb3ca1f250ad42a27aeddf8a7f491e553e7f2a70ff2e1800", "0x442", "0x7265766f6b655f61705f747261636b696e67", "0x656e61626c655f61705f747261636b696e67", "0x77697468647261775f676173", "0x6272616e63685f616c69676e", "0x73746f72655f74656d70", "0x66756e6374696f6e5f63616c6c", "0x21", "0x656e756d5f6d61746368", "0x7374727563745f6465636f6e737472756374", "0x61727261795f6c656e", "0x736e617073686f745f74616b65", "0x64726f70", "0x7533325f636f6e7374", "0x72656e616d65", "0x7533325f6571", "0x7374727563745f636f6e737472756374", "0x656e756d5f696e6974", "0x6a756d70", "0x626f6f6c5f6e6f745f696d706c", "0x6765745f6275696c74696e5f636f737473", "0x11", "0x77697468647261775f6761735f616c6c", "0x64697361626c655f61705f747261636b696e67", "0x1e", "0x61727261795f6e6577", "0x20", "0x66656c743235325f636f6e7374", "0x4f7574206f6620676173", "0x61727261795f617070656e64", "0x24", "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", "0x496e70757420746f6f2073686f727420666f7220617267756d656e7473", "0x616c6c6f635f6c6f63616c", "0x66696e616c697a655f6c6f63616c73", "0x73746f72655f6c6f63616c", "0x27", "0x29", "0x28", "0x2c", "0x2e", "0x39", "0x31", "0x30", "0x36", "0x3b", "0x3e", "0x40", "0x3d", "0x42", "0x45", "0x47", "0x417267656e744163636f756e74", "0x49", "0x4d", "0x302e332e30", "0x61727261795f736e617073686f745f706f705f66726f6e74", "0x4f", "0x756e626f78", "0x51", "0x636f6e74726163745f616464726573735f746f5f66656c74323532", "0x66656c743235325f737562", "0x66656c743235325f69735f7a65726f", "0x52", "0x57", "0x56414c4944", "0x617267656e742f6e6f6e2d6e756c6c2d63616c6c6572", "0x100000000000000000000000000000001", "0x5a", "0x58", "0x617267656e742f696e76616c69642d74782d76657273696f6e", "0x647570", "0x5f", "0x60", "0x63", "0x5d", "0x5e", "0x414e595f43414c4c4552", "0x6d", "0x7536345f6f766572666c6f77696e675f737562", "0x4163636f756e742e657865637574655f66726f6d5f6f757473696465", "0x6e", "0x537461726b4e6574204d657373616765", "0x706564657273656e", "0x1bfc207425a47a5dfa1a50a4f5241203f50624ca5fdf5e18755765416b8e288", "0x70", "0x6a", "0x68", "0x64", "0x67", "0x66", "0x65", "0x6b", "0x69", "0x617267656e742f6475706c6963617465642d6f7574736964652d6e6f6e6365", "0x617267656e742f696e76616c69642d74696d657374616d70", "0x617267656e742f696e76616c69642d63616c6c6572", "0x636c6173735f686173685f7472795f66726f6d5f66656c74323532", "0x72", "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd", "0x7265706c6163655f636c6173735f73797363616c6c", "0x75", "0x77", "0x79", "0x71", "0x617267656e742f696e76616c69642d696d706c656d656e746174696f6e", "0x617267656e742f6f6e6c792d73656c66", "0x7a", "0x617267656e742f6261636b75702d73686f756c642d62652d6e756c6c", "0x7c", "0x636c6173735f686173685f636f6e7374", "0x7e", "0x81", "0x617267656e742f696e76616c69642d63616c6c73", "0x617267656e742f6e756c6c2d6f776e6572", "0x100000000000000000000000000000002", "0x83", "0x7536345f636f6e7374", "0x85", "0x88", "0x8a", "0x8c", "0x90", "0x93", "0x617267656e742f677561726469616e2d7265717569726564", "0x617267656e742f63616e6e6f742d6f766572726964652d657363617065", "0x93a80", "0x617267656e742f696e76616c69642d657363617065", "0x75385f636f6e7374", "0x7533325f746f5f66656c74323532", "0x3f918d17e5ee77373b56385708f855659a07f75997f365cf87748628532a055", "0x68cfd18b92d1907b8ba3cc324900277f5a3622099431ea85dd8089255e4181", "0x1ffc9a7", "0xa66bd575", "0x3943f10f", "0x617267656e742f696e76616c69642d7369676e6174757265", "0x9c", "0xa2", "0xa6", "0x7374727563745f736e617073686f745f6465636f6e737472756374", "0x26e71b81ea2af0a2b5c6bfceb639b4fc6faae9d8de072a61fc913d3301ff56b", "0x617267656e742f696e76616c69642d677561726469616e2d736967", "0x617267656e742f696e76616c69642d63616c6c64617461", "0x395b662db8770f18d407bbbfeebf45fffec4a7fa4f6c7cee13d084055a9387d", "0x29ce6d1019e7bef00e94df2973d8d36e9e9b6c5f8783275441c9e466cb8b43", "0x617267656e742f696e76616c69642d6f776e65722d736967", "0x3ad2979f59dc1535593f6af33e41945239f4811966bcd49314582a892ebcee8", "0x1a1e41f464a235695e5050a846a26ca22ecc27acac54be5f6666848031efb8f", "0x617267656e742f666f7262696464656e2d63616c6c", "0xa8", "0xa9", "0xab", "0x656d69745f6576656e745f73797363616c6c", "0xae", "0xac", "0xb1", "0x21adb5788e32c84f69a1863d85ef9394b7bf761a0ce1190f826984e5075c371", "0xb3", "0xb4", "0xb5", "0xb7", "0x11ff76fe3f640fa6f3d60bbd94a3b9d47141a2c96f87fdcfbeb2af1d03f7050", "0x7536345f746f5f66656c74323532", "0x73746f726167655f616464726573735f66726f6d5f62617365", "0x73746f726167655f77726974655f73797363616c6c", "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", "0x6c6962726172795f63616c6c5f73797363616c6c", "0xb9", "0xba", "0x52657475726e6564206461746120746f6f2073686f7274", "0x73746f726167655f626173655f616464726573735f636f6e7374", "0x1ccc09c8a19948e048de7add6929589945e25f22059c7345aaf7837188d8d05", "0xb8", "0x73746f726167655f726561645f73797363616c6c", "0xbb", "0x31e7534f8ddb1628d6e07db5c743e33403b9a0b57508a93f4c49582040a2f71", "0x1c0f41bf28d630c8a0bd10f3a5d5c0d1619cf96cfdb7da51b112c420ced36c9", "0xf920571b9f85bdd92a867cfdc73319d0f8836f0e69e06e4c5566b6203f75cc", "0xbe", "0x636c6173735f686173685f746f5f66656c74323532", "0xbf", "0x617267656e742f6e6f2d6d756c746963616c6c2d746f2d73656c66", "0x1746f7542cac71b5c88f0b2301e87cd9b0896dab1c83b8b515762697e521040", "0xc0", "0x13f17de67551ae34866d4aa875cbace82f3a041eaa58b1d9e34568b0d0561b", "0xc3", "0x7536345f6571", "0xc5", "0x109831a1d023b114d1da4655340bd1bb108c4ddf1bba00f9330573c23f34989", "0x3a3f1aae7e2c4017af981d69ebf959c39e6f1c53b8ffa09a3ed92f40f524ec7", "0x7536345f6f766572666c6f77696e675f616464", "0xc6", "0x7536345f616464204f766572666c6f77", "0x75385f746f5f66656c74323532", "0xc9", "0x6765745f657865637574696f6e5f696e666f5f73797363616c6c", "0xca", "0x61727261795f676574", "0x496e646578206f7574206f6620626f756e6473", "0x753132385f636f6e7374", "0xb1a2bc2ec50000", "0x753132385f6f766572666c6f77696e675f737562", "0x7533325f6f766572666c6f77696e675f737562", "0x617267656e742f6d61782d6573636170652d617474656d707473", "0x617267656e742f6d61782d6665652d746f6f2d68696768", "0x7533325f6f766572666c6f77696e675f616464", "0xcb", "0x7533325f616464204f766572666c6f77", "0xcd", "0x63616c6c5f636f6e74726163745f73797363616c6c", "0x66656c743235325f616464", "0x617267656e742f6d756c746963616c6c2d6661696c6564", "0x1d9ca8a89626bead91b5cb4275a622219e9443975b34f3fdbc683e8621231a9", "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", "0x1eb8543121901145815b1fa94ab7062e6ecb788bee88efa299b9866bab0bd64", "0x3c93161122e8fd7a48238feee22dd3d7d49a69099523547d4a7cc7c460fc9c4", "0x250670a8d933a7d458c994fc396264aba18fc1f1b9136990bb0923a27eaa060", "0x2811029a978f84c1f4c4fc70c0891f83642ded105942eda119ddc941376122e", "0x11a96d42fc514f9d4f6f7083acbde6629ff1d2753bf6d25156be7b03e5e1207", "0x67753421a99564465b580dcc61f1e7befc7fd138c447dae233bba1d477458c", "0xd885f12a9241174cd02e71d9c751eec91ebc58dffa0addd86642969cbe006f", "0x2e200b0f001d9c2e6cb94ab8cc4907810f7fe134eca20d8d02224ac5e94e01f", "0x2b2db2ed38136ca6c54b95187166f98ea84503db8768617a558705b508fec82", "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", "0xca58956845fecb30a8cb3efe23582630dbe8b80cc1fb8fd5d5e866b1356ad", "0x617267656e742f696e76616c69642d7369676e61747572652d6c656e677468", "0x7536345f7472795f66726f6d5f66656c74323532", "0x32b90df821786fc0a5a5492c92e3241a5e680e5d53cd88c2bfdd094a70c90f5", "0xad292db4ff05a993c318438c1b6c8a8303266af2da151aa28ccece6726f1f1", "0xce", "0x4e6f6e20436c61737348617368", "0x800000000000010ffffffffffffffffb781126dcae7b2321e66a241adc64d2f", "0x65635f706f696e745f66726f6d5f785f6e7a", "0xd0", "0x756e777261705f6e6f6e5f7a65726f", "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca", "0x5668060aa49730b7be4801df46ec62de53ecd11abe43a32873000c36e8dc1f", "0x65635f706f696e745f7472795f6e65775f6e7a", "0x65635f706f696e745f69735f7a65726f", "0x65635f706f696e745f756e77726170", "0xd3", "0x2679d68052ccd03a53755ca9169677965fbd93e489df62f5f40d4f03c24f7a4", "0xd5", "0xd6", "0x53746f72616765416363657373553332202d206e6f6e20753332", "0xd9", "0xf00de1fccbb286f9a020ba8821ee936b1deea42a5c485c11ccdc82c8bebb3a", "0x65635f73746174655f696e6974", "0x65635f73746174655f6164645f6d756c", "0xda", "0x65635f73746174655f7472795f66696e616c697a655f6e7a", "0x65635f706f696e745f7a65726f", "0x65635f73746174655f616464", "0x65635f6e6567", "0x53746f72616765416363657373553634202d206e6f6e20753634", "0x75385f6f766572666c6f77696e675f616464", "0xdb", "0x75385f616464204f766572666c6f77", "0x7533325f7472795f66726f6d5f66656c74323532", "0x61727261795f706f705f66726f6e74", "0x4e35", "0xffffffffffffffff", "0x14c", "0x143", "0x132", "0x11e", "0x10e", "0x107", "0x100", "0x214", "0x202", "0x1f8", "0x1e6", "0x182", "0x186", "0x1d1", "0x1c0", "0x1b8", "0x31a", "0x30c", "0x2f6", "0x2e8", "0x2d2", "0x253", "0x257", "0x2b9", "0x2a4", "0x29b", "0x292", "0x3c8", "0x3bf", "0x3ae", "0x34d", "0x351", "0x39a", "0x38a", "0x382", "0x463", "0x452", "0x3f1", "0x3f5", "0x43e", "0x42e", "0x426", "0x535", "0x523", "0x519", "0x507", "0x49a", "0x49e", "0x4f2", "0x4e1", "0x4da", "0x4d3", "0x5ea", "0x5e1", "0x5d0", "0x566", "0x56a", "0x5bc", "0x5ac", "0x5a5", "0x59e", "0x685", "0x674", "0x613", "0x617", "0x660", "0x650", "0x648", "0x76e", "0x75d", "0x74b", "0x738", "0x724", "0x6ba", "0x6be", "0x70d", "0x6fa", "0x6f2", "0x83c", "0x82a", "0x817", "0x803", "0x79f", "0x7a3", "0x7ec", "0x7d9", "0x7d0", "0x8ca", "0x8ba", "0x866", "0x86a", "0x8a7", "0x898", "0x891", "0x956", "0x946", "0x8f2", "0x8f6", "0x933", "0x924", "0x91d", "0x9e2", "0x9d2", "0x97e", "0x982", "0x9bf", "0x9b0", "0x9a9", "0xa6e", "0xa5e", "0xa0a", "0xa0e", "0xa4b", "0xa3c", "0xa35", "0xae2", "0xa92", "0xa96", "0xad0", "0xac3", "0xabc", "0xb56", "0xb06", "0xb0a", "0xb44", "0xb37", "0xb30", "0xbca", "0xb7a", "0xb7e", "0xbb8", "0xbab", "0xba4", "0xc46", "0xbee", "0xbf2", "0xc34", "0xc27", "0xc20", "0xcc2", "0xc6a", "0xc6e", "0xcb0", "0xca3", "0xc9c", "0xd3e", "0xce6", "0xcea", "0xd2c", "0xd1f", "0xd18", "0xdba", "0xd62", "0xd66", "0xda8", "0xd9b", "0xd94", "0xe29", "0xdde", "0xde2", "0xe17", "0xe0a", "0xe98", "0xe4d", "0xe51", "0xe86", "0xe79", "0xf14", "0xebc", "0xec0", "0xf02", "0xef5", "0xeee", "0xf90", "0xf38", "0xf3c", "0xf7e", "0xf71", "0xf6a", "0x100c", "0xfb4", "0xfb8", "0xffa", "0xfed", "0xfe6", "0x1093", "0x1083", "0x1034", "0x1038", "0x1070", "0x1061", "0x1102", "0x10b7", "0x10bb", "0x10f0", "0x10e3", "0x1171", "0x1126", "0x112a", "0x115f", "0x1152", "0x11f8", "0x11e8", "0x1199", "0x119d", "0x11d5", "0x11c6", "0x12bf", "0x12ad", "0x12a3", "0x1291", "0x122d", "0x1231", "0x127c", "0x126b", "0x1263", "0x1365", "0x1355", "0x1344", "0x12ed", "0x12f1", "0x1330", "0x1320", "0x1319", "0x137c", "0x1381", "0x139d", "0x1397", "0x1415", "0x13bd", "0x13c2", "0x1403", "0x13f9", "0x13f1", "0xd7", "0x14fe", "0x1443", "0x1448", "0x14eb", "0x14df", "0x1472", "0x1477", "0x147e", "0x1499", "0xdd", "0x148f", "0x1494", "0x14cc", "0xde", "0xdf", "0x14c2", "0xe0", "0xe1", "0xe2", "0xe3", "0xe4", "0xe5", "0x14ba", "0xe6", "0xe7", "0xe8", "0xe9", "0xea", "0xeb", "0xec", "0xed", "0xee", "0xef", "0x1524", "0xf0", "0xf1", "0xf2", "0xf3", "0x1531", "0x1536", "0x1540", "0xf4", "0xf5", "0xf6", "0x154f", "0x1554", "0x1570", "0xf7", "0x156a", "0xf8", "0xf9", "0xfa", "0xfb", "0xfc", "0xfd", "0x159a", "0x158e", "0x1592", "0xfe", "0xff", "0x101", "0x102", "0x103", "0x104", "0x105", "0x160a", "0x106", "0x15fe", "0x108", "0x15f2", "0x109", "0x15e6", "0x10a", "0x10b", "0x15dc", "0x10c", "0x10d", "0x15d0", "0x10f", "0x110", "0x111", "0x112", "0x113", "0x114", "0x115", "0x116", "0x117", "0x118", "0x119", "0x11a", "0x11b", "0x11c", "0x11d", "0x11f", "0x120", "0x121", "0x122", "0x1641", "0x1646", "0x123", "0x124", "0x125", "0x1657", "0x1684", "0x18e8", "0x126", "0x127", "0x1675", "0x167a", "0x18bf", "0x128", "0x129", "0x18a1", "0x12a", "0x12b", "0x1698", "0x16ab", "0x16a3", "0x16a9", "0x12c", "0x12d", "0x1879", "0x12e", "0x12f", "0x130", "0x131", "0x1851", "0x1822", "0x17fe", "0x133", "0x134", "0x135", "0x136", "0x137", "0x138", "0x139", "0x13a", "0x13b", "0x13c", "0x13d", "0x13e", "0x17da", "0x13f", "0x17b8", "0x17a2", "0x140", "0x141", "0x142", "0x144", "0x145", "0x146", "0x147", "0x148", "0x178e", "0x149", "0x14a", "0x177b", "0x1771", "0x14b", "0x14d", "0x14e", "0x14f", "0x150", "0x151", "0x152", "0x153", "0x154", "0x155", "0x156", "0x157", "0x158", "0x159", "0x15a", "0x15b", "0x15c", "0x15d", "0x15e", "0x15f", "0x160", "0x161", "0x162", "0x163", "0x164", "0x165", "0x166", "0x167", "0x168", "0x169", "0x16a", "0x16b", "0x16c", "0x16d", "0x16e", "0x16f", "0x170", "0x171", "0x172", "0x173", "0x174", "0x175", "0x176", "0x177", "0x178", "0x179", "0x17a", "0x17b", "0x17c", "0x17d", "0x17e", "0x17f", "0x180", "0x181", "0x183", "0x184", "0x185", "0x187", "0x188", "0x189", "0x18a", "0x18b", "0x18c", "0x18d", "0x18e", "0x18f", "0x190", "0x191", "0x192", "0x193", "0x194", "0x195", "0x196", "0x197", "0x198", "0x199", "0x19a", "0x19b", "0x19c", "0x19d", "0x19e", "0x19f", "0x1a0", "0x1a1", "0x1a2", "0x1a3", "0x1a4", "0x1a5", "0x1a6", "0x1a7", "0x1a8", "0x1a9", "0x1aa", "0x1ab", "0x1ac", "0x1ad", "0x1ae", "0x1af", "0x1b0", "0x1b1", "0x1b2", "0x1b3", "0x1b4", "0x1b5", "0x1b6", "0x1b7", "0x1b9", "0x1ba", "0x1bb", "0x1bc", "0x1bd", "0x197f", "0x1974", "0x196b", "0x19a5", "0x19b4", "0x19b8", "0x19d4", "0x19cd", "0x1aa6", "0x1a99", "0x1a00", "0x1a05", "0x1a86", "0x1a7b", "0x1a69", "0x1a24", "0x1a29", "0x1a5e", "0x1a54", "0x1a4c", "0x1acb", "0x1da8", "0x1d98", "0x1afb", "0x1b00", "0x1d82", "0x1d6c", "0x1b23", "0x1b28", "0x1d4f", "0x1d3a", "0x1b9f", "0x1b89", "0x1b5c", "0x1b61", "0x1b6c", "0x1ba5", "0x1d24", "0x1bd2", "0x1c09", "0x1bdc", "0x1be1", "0x1d0e", "0x1cf9", "0x1ce3", "0x1cd6", "0x1cc9", "0x1cbd", "0x1ca9", "0x1c35", "0x1c39", "0x1c96", "0x1c8a", "0x1c80", "0x1c78", "0x1c70", "0x1be", "0x1bf", "0x1c1", "0x1c2", "0x1c3", "0x1c4", "0x1c5", "0x1c6", "0x1c7", "0x1c8", "0x1c9", "0x1ca", "0x1cb", "0x1cc", "0x1cd", "0x1ce", "0x1cf", "0x1d0", "0x1d2", "0x1d3", "0x1d4", "0x1d5", "0x1d6", "0x1d7", "0x1d8", "0x1d9", "0x1da", "0x1db", "0x1dc", "0x1dd", "0x1e30", "0x1ddb", "0x1de0", "0x1de7", "0x1e02", "0x1df8", "0x1dfd", "0x1e1e", "0x1e16", "0x1eb6", "0x1e61", "0x1e66", "0x1e6d", "0x1e88", "0x1e7e", "0x1e83", "0x1ea4", "0x1e9c", "0x20b2", "0x20a0", "0x1ee7", "0x1eec", "0x2088", "0x207c", "0x2069", "0x2056", "0x1f88", "0x1f75", "0x1f53", "0x1f65", "0x1f6a", "0x1f90", "0x2044", "0x2032", "0x201f", "0x200d", "0x2002", "0x1de", "0x1df", "0x1e0", "0x1ff8", "0x1fef", "0x1e1", "0x1e2", "0x227d", "0x2272", "0x20e6", "0x20eb", "0x2261", "0x2144", "0x2133", "0x210b", "0x2110", "0x211b", "0x214a", "0x2251", "0x2241", "0x21c9", "0x21b9", "0x219a", "0x21ac", "0x21b1", "0x21d1", "0x2232", "0x2223", "0x1e3", "0x1e4", "0x2214", "0x1e5", "0x1e7", "0x1e8", "0x220d", "0x2434", "0x2429", "0x22aa", "0x22af", "0x2418", "0x240e", "0x22d9", "0x22de", "0x23fd", "0x23ed", "0x23dd", "0x2365", "0x2355", "0x2336", "0x2348", "0x234d", "0x236d", "0x23ce", "0x23bf", "0x1e9", "0x1ea", "0x23b0", "0x1eb", "0x1ec", "0x1ed", "0x1ee", "0x23a9", "0x1ef", "0x25fa", "0x25ef", "0x2461", "0x2466", "0x25de", "0x25ce", "0x24be", "0x24ae", "0x2497", "0x24c4", "0x1f0", "0x25be", "0x25ae", "0x254c", "0x253c", "0x251d", "0x252f", "0x2534", "0x2554", "0x25a5", "0x1f1", "0x1f2", "0x259c", "0x258c", "0x1f3", "0x1f4", "0x1f5", "0x2585", "0x274f", "0x2744", "0x2627", "0x262c", "0x2733", "0x2723", "0x2713", "0x26b1", "0x26a1", "0x2682", "0x2694", "0x2699", "0x26b9", "0x270a", "0x2701", "0x26f1", "0x1f6", "0x1f7", "0x26ea", "0x28e1", "0x28d5", "0x277f", "0x2784", "0x28c3", "0x28b2", "0x28a1", "0x1f9", "0x2889", "0x2879", "0x2869", "0x2858", "0x2848", "0x1fa", "0x1fb", "0x1fc", "0x283f", "0x2837", "0x2830", "0x2822", "0x1fd", "0x2a22", "0x2a18", "0x290f", "0x2914", "0x2a08", "0x29f9", "0x29e9", "0x29d2", "0x29c3", "0x29b4", "0x29a5", "0x1fe", "0x1ff", "0x200", "0x299e", "0x2990", "0x2bb6", "0x2bac", "0x2a4e", "0x2a53", "0x2b9c", "0x2b8d", "0x2b7e", "0x2b68", "0x2b59", "0x2b4a", "0x2b08", "0x2af9", "0x2adb", "0x2aed", "0x2af2", "0x2b10", "0x2b3c", "0x2b2e", "0x2bd3", "0x2bee", "0x2c09", "0x2c26", "0x201", "0x203", "0x204", "0x205", "0x206", "0x207", "0x208", "0x209", "0x20a", "0x20b", "0x20c", "0x20d", "0x20e", "0x20f", "0x210", "0x211", "0x2c7d", "0x212", "0x213", "0x215", "0x216", "0x217", "0x2ca7", "0x2cdb", "0x2cd1", "0x218", "0x219", "0x21a", "0x21b", "0x21c", "0x21d", "0x21e", "0x21f", "0x2cf9", "0x2d42", "0x2d06", "0x2d41", "0x220", "0x2d13", "0x2d40", "0x221", "0x2d20", "0x2d3f", "0x222", "0x2d2d", "0x2d3e", "0x223", "0x2d38", "0x2d3d", "0x2d4d", "0x2d51", "0x2d8f", "0x2d6d", "0x2d72", "0x2d80", "0x224", "0x2dac", "0x2db1", "0x2e36", "0x2e26", "0x2e16", "0x2e06", "0x225", "0x226", "0x227", "0x2dfe", "0x2df7", "0x2e8d", "0x2e58", "0x228", "0x229", "0x22a", "0x2e85", "0x22b", "0x22c", "0x2e7b", "0x22d", "0x2e75", "0x22e", "0x22f", "0x2eae", "0x230", "0x231", "0x232", "0x233", "0x234", "0x235", "0x236", "0x237", "0x238", "0x2ec6", "0x239", "0x23a", "0x23b", "0x23c", "0x36fb", "0x23d", "0x2efa", "0x2eff", "0x2f06", "0x2f21", "0x2f17", "0x2f1c", "0x36e5", "0x23e", "0x23f", "0x240", "0x2f46", "0x2f3b", "0x36b9", "0x241", "0x242", "0x243", "0x36d7", "0x244", "0x245", "0x246", "0x247", "0x248", "0x249", "0x36b2", "0x24a", "0x30fb", "0x2f7f", "0x2faa", "0x24b", "0x30e7", "0x24c", "0x24d", "0x30d2", "0x24e", "0x30be", "0x30ab", "0x3097", "0x2fc2", "0x2fc6", "0x3083", "0x2fe0", "0x2fe5", "0x3070", "0x3064", "0x3011", "0x3016", "0x3051", "0x24f", "0x3048", "0x3038", "0x250", "0x251", "0x252", "0x32cb", "0x310e", "0x3139", "0x32b7", "0x32a2", "0x328e", "0x327b", "0x314b", "0x314f", "0x3268", "0x325c", "0x3179", "0x317e", "0x3249", "0x3236", "0x31a0", "0x31a5", "0x321b", "0x31bf", "0x31c4", "0x254", "0x255", "0x256", "0x3201", "0x258", "0x259", "0x25a", "0x25b", "0x261", "0x262", "0x263", "0x264", "0x265", "0x266", "0x267", "0x25c", "0x25d", "0x25e", "0x25f", "0x260", "0x268", "0x31f8", "0x269", "0x26a", "0x26b", "0x26c", "0x31e8", "0x26d", "0x26e", "0x26f", "0x270", "0x271", "0x272", "0x273", "0x274", "0x275", "0x276", "0x277", "0x278", "0x279", "0x27a", "0x27b", "0x27c", "0x27d", "0x27e", "0x27f", "0x280", "0x281", "0x282", "0x283", "0x284", "0x285", "0x286", "0x287", "0x288", "0x289", "0x28a", "0x28b", "0x28c", "0x28d", "0x28e", "0x28f", "0x290", "0x291", "0x293", "0x294", "0x295", "0x296", "0x297", "0x298", "0x299", "0x29a", "0x29c", "0x29d", "0x29e", "0x29f", "0x2a0", "0x2a1", "0x2a2", "0x2a3", "0x2a5", "0x2a6", "0x2a7", "0x2a8", "0x2a9", "0x2aa", "0x2ab", "0x2ac", "0x2ad", "0x2ae", "0x2af", "0x2b0", "0x2b1", "0x2b2", "0x2b3", "0x2b4", "0x2b5", "0x2b6", "0x2b7", "0x2b8", "0x2ba", "0x2bb", "0x2bc", "0x2bd", "0x2be", "0x2bf", "0x2c0", "0x2c1", "0x2c2", "0x2c3", "0x2c4", "0x2c5", "0x2c6", "0x2c7", "0x2c8", "0x2c9", "0x2ca", "0x2cb", "0x2cc", "0x2cd", "0x2ce", "0x2cf", "0x2d0", "0x2d1", "0x2d3", "0x2d4", "0x2d5", "0x2d6", "0x2d7", "0x2d9", "0x2d8", "0x3481", "0x2da", "0x2db", "0x2dc", "0x32de", "0x2dd", "0x2de", "0x2df", "0x2e0", "0x2e1", "0x3309", "0x2e2", "0x2e3", "0x2e4", "0x2e5", "0x2e6", "0x2e7", "0x2e9", "0x2ea", "0x2eb", "0x2f0", "0x2f1", "0x2f2", "0x2f3", "0x2ec", "0x2ed", "0x2ee", "0x2ef", "0x2f4", "0x346d", "0x2f5", "0x2fb", "0x2fc", "0x2fd", "0x2fe", "0x2f7", "0x2f8", "0x2f9", "0x2fa", "0x2ff", "0x3458", "0x300", "0x301", "0x304", "0x305", "0x306", "0x302", "0x303", "0x307", "0x3444", "0x308", "0x309", "0x30d", "0x30e", "0x30f", "0x310", "0x30a", "0x30b", "0x311", "0x3431", "0x312", "0x313", "0x314", "0x315", "0x316", "0x317", "0x318", "0x319", "0x31c", "0x31b", "0x31d", "0x341d", "0x31e", "0x31f", "0x320", "0x321", "0x322", "0x323", "0x324", "0x325", "0x326", "0x327", "0x3321", "0x328", "0x329", "0x32a", "0x3325", "0x32b", "0x32c", "0x32d", "0x32e", "0x3409", "0x32f", "0x3380", "0x330", "0x331", "0x332", "0x333", "0x334", "0x335", "0x336", "0x337", "0x338", "0x339", "0x33a", "0x33e", "0x33f", "0x340", "0x33b", "0x33c", "0x33d", "0x341", "0x336d", "0x342", "0x343", "0x344", "0x345", "0x346", "0x347", "0x348", "0x349", "0x34a", "0x34b", "0x3344", "0x34c", "0x34e", "0x34f", "0x3349", "0x350", "0x352", "0x353", "0x3353", "0x354", "0x355", "0x356", "0x357", "0x358", "0x3385", "0x359", "0x35a", "0x35b", "0x35c", "0x35d", "0x35e", "0x35f", "0x360", "0x361", "0x362", "0x363", "0x364", "0x365", "0x366", "0x367", "0x368", "0x369", "0x36a", "0x36b", "0x36c", "0x36d", "0x36e", "0x36f", "0x370", "0x371", "0x372", "0x373", "0x377", "0x378", "0x379", "0x374", "0x375", "0x376", "0x37a", "0x33fd", "0x37b", "0x37c", "0x37d", "0x37e", "0x37f", "0x380", "0x381", "0x383", "0x384", "0x385", "0x386", "0x387", "0x388", "0x389", "0x33aa", "0x38b", "0x38c", "0x38d", "0x38e", "0x33af", "0x38f", "0x390", "0x391", "0x392", "0x393", "0x33ea", "0x394", "0x395", "0x396", "0x39c", "0x39d", "0x39e", "0x39f", "0x3a0", "0x3a1", "0x3a2", "0x397", "0x398", "0x399", "0x39b", "0x3a3", "0x33e1", "0x3a4", "0x3a5", "0x3a6", "0x3a7", "0x33d1", "0x3a8", "0x3a9", "0x3aa", "0x3ab", "0x3ac", "0x3ad", "0x3af", "0x3b0", "0x3b1", "0x3b2", "0x3b3", "0x3b4", "0x3b5", "0x3b6", "0x3b7", "0x3b8", "0x3b9", "0x3ba", "0x3bb", "0x3bc", "0x3bd", "0x3be", "0x3c0", "0x3c1", "0x3c2", "0x3c3", "0x3c4", "0x3c5", "0x3c6", "0x3c7", "0x3c9", "0x3ca", "0x3cb", "0x3cc", "0x3cd", "0x3ce", "0x3cf", "0x3d0", "0x3d1", "0x3d2", "0x3d3", "0x3d4", "0x3d5", "0x3d6", "0x3d7", "0x3d8", "0x3d9", "0x3da", "0x3db", "0x3dc", "0x3dd", "0x3de", "0x3df", "0x3e0", "0x3e1", "0x3e2", "0x3e3", "0x3e4", "0x3e5", "0x3e6", "0x3e7", "0x3e8", "0x3e9", "0x3ea", "0x3eb", "0x3ec", "0x3ed", "0x3ee", "0x3ef", "0x3f0", "0x3f2", "0x3f3", "0x3f4", "0x3f6", "0x3f7", "0x3f8", "0x3f9", "0x3fa", "0x3fb", "0x3fc", "0x3fd", "0x3fe", "0x3ff", "0x400", "0x401", "0x403", "0x402", "0x3679", "0x404", "0x405", "0x406", "0x3494", "0x407", "0x408", "0x409", "0x40a", "0x40b", "0x34bf", "0x40c", "0x40d", "0x40e", "0x40f", "0x410", "0x411", "0x412", "0x413", "0x414", "0x415", "0x41a", "0x41b", "0x41c", "0x41d", "0x416", "0x417", "0x418", "0x419", "0x41e", "0x3665", "0x41f", "0x420", "0x425", "0x427", "0x428", "0x421", "0x422", "0x423", "0x424", "0x429", "0x3650", "0x42a", "0x42b", "0x42f", "0x430", "0x42c", "0x42d", "0x431", "0x363c", "0x432", "0x433", "0x437", "0x438", "0x439", "0x43a", "0x434", "0x435", "0x436", "0x43b", "0x3629", "0x43c", "0x43d", "0x43f", "0x440", "0x441", "0x443", "0x444", "0x445", "0x446", "0x447", "0x448", "0x449", "0x44a", "0x34d1", "0x44b", "0x44c", "0x44d", "0x34d5", "0x44e", "0x44f", "0x450", "0x451", "0x3616", "0x453", "0x454", "0x455", "0x456", "0x457", "0x458", "0x459", "0x45a", "0x45b", "0x45c", "0x460", "0x461", "0x462", "0x45d", "0x45e", "0x45f", "0x360a", "0x464", "0x465", "0x466", "0x467", "0x468", "0x469", "0x46a", "0x46b", "0x46c", "0x46d", "0x46e", "0x46f", "0x470", "0x471", "0x472", "0x473", "0x34ff", "0x474", "0x475", "0x476", "0x477", "0x3504", "0x478", "0x479", "0x47a", "0x47b", "0x47c", "0x35f7", "0x47d", "0x47e", "0x47f", "0x480", "0x481", "0x482", "0x483", "0x484", "0x485", "0x486", "0x487", "0x48c", "0x48d", "0x48e", "0x48f", "0x488", "0x489", "0x48a", "0x48b", "0x490", "0x35e4", "0x491", "0x492", "0x493", "0x494", "0x495", "0x496", "0x497", "0x498", "0x499", "0x49b", "0x49c", "0x49d", "0x3526", "0x49f", "0x4a0", "0x4a1", "0x352b", "0x4a2", "0x4a3", "0x4a4", "0x4a5", "0x35c9", "0x4a6", "0x4a7", "0x4a8", "0x4a9", "0x4aa", "0x4ab", "0x4ac", "0x4ad", "0x4ae", "0x4af", "0x358f", "0x4b0", "0x4b1", "0x4b2", "0x4b6", "0x4b7", "0x4b8", "0x4b3", "0x4b4", "0x4b5", "0x4b9", "0x357c", "0x4ba", "0x4bb", "0x4bc", "0x4bd", "0x4be", "0x4bf", "0x4c0", "0x4c1", "0x4c2", "0x4c3", "0x3553", "0x4c4", "0x4c5", "0x4c6", "0x4c7", "0x3558", "0x4c8", "0x4c9", "0x4ca", "0x4cb", "0x3562", "0x4cc", "0x4cd", "0x4ce", "0x4cf", "0x4d0", "0x3595", "0x4d1", "0x4d2", "0x4d4", "0x4d5", "0x4d6", "0x4d7", "0x4d8", "0x4d9", "0x4db", "0x4dc", "0x4dd", "0x4de", "0x4df", "0x4e0", "0x4e2", "0x4e3", "0x4e4", "0x4ea", "0x4eb", "0x4ec", "0x4ed", "0x4ee", "0x4ef", "0x4f0", "0x4e5", "0x4e6", "0x4e7", "0x4e8", "0x4e9", "0x4f1", "0x35c0", "0x4f3", "0x4f4", "0x4f5", "0x35b0", "0x4f6", "0x4f7", "0x4f8", "0x4f9", "0x4fa", "0x4fb", "0x4fc", "0x4fd", "0x4fe", "0x4ff", "0x500", "0x501", "0x502", "0x503", "0x504", "0x505", "0x506", "0x508", "0x509", "0x50a", "0x50b", "0x50c", "0x50d", "0x50e", "0x50f", "0x510", "0x511", "0x512", "0x513", "0x514", "0x515", "0x516", "0x517", "0x518", "0x51a", "0x51b", "0x51c", "0x51d", "0x51e", "0x51f", "0x520", "0x521", "0x522", "0x524", "0x525", "0x526", "0x527", "0x528", "0x529", "0x52a", "0x52b", "0x52c", "0x52d", "0x52e", "0x52f", "0x530", "0x531", "0x532", "0x533", "0x534", "0x536", "0x537", "0x538", "0x539", "0x53a", "0x53b", "0x53c", "0x53d", "0x53e", "0x53f", "0x540", "0x541", "0x542", "0x543", "0x544", "0x545", "0x546", "0x547", "0x548", "0x549", "0x54a", "0x54b", "0x54c", "0x54d", "0x54e", "0x54f", "0x550", "0x551", "0x552", "0x553", "0x554", "0x555", "0x556", "0x557", "0x558", "0x559", "0x55a", "0x55b", "0x55c", "0x55d", "0x55e", "0x55f", "0x560", "0x561", "0x562", "0x3692", "0x563", "0x564", "0x565", "0x3697", "0x567", "0x568", "0x569", "0x56b", "0x369f", "0x56c", "0x36b6", "0x56d", "0x56e", "0x56f", "0x570", "0x571", "0x572", "0x573", "0x574", "0x575", "0x576", "0x577", "0x578", "0x579", "0x57f", "0x580", "0x581", "0x582", "0x583", "0x584", "0x585", "0x57a", "0x57b", "0x57c", "0x57d", "0x57e", "0x586", "0x36ce", "0x587", "0x588", "0x589", "0x58a", "0x58b", "0x58c", "0x58d", "0x58e", "0x58f", "0x590", "0x591", "0x592", "0x593", "0x594", "0x595", "0x596", "0x597", "0x598", "0x599", "0x59a", "0x59b", "0x59c", "0x59d", "0x59f", "0x5a0", "0x5a1", "0x5a2", "0x5a3", "0x5a4", "0x5a6", "0x5a7", "0x5a8", "0x5a9", "0x5aa", "0x5ab", "0x3720", "0x3763", "0x3748", "0x374d", "0x375a", "0x37b7", "0x377a", "0x377f", "0x37a9", "0x37a2", "0x379c", "0x37b0", "0x3800", "0x37d8", "0x37f6", "0x37f0", "0x389d", "0x3892", "0x3883", "0x3878", "0x3856", "0x384c", "0x3850", "0x3868", "0x3870", "0x38b9", "0x38b2", "0x38c6", "0x38cb", "0x38e1", "0x38db", "0x38f1", "0x38f6", "0x3920", "0x391a", "0x3912", "0x393a", "0x3958", "0x3972", "0x39de", "0x39f3", "0x39f7", "0x3a01", "0x3a06", "0x3a13", "0x3a31", "0x3a36", "0x3a53", "0x3a46", "0x3a5f", "0x3aa1", "0x3a86", "0x3a8b", "0x3a98", "0x3b01", "0x3ac7", "0x3acc", "0x3af9", "0x3af2", "0x3ae4", "0x3b47", "0x3b17", "0x3b1c", "0x3b39", "0x3b33", "0x3b40", "0x3b63", "0x3b68", "0x3b73", "0x3b86", "0x3b8b", "0x3b96", "0x3ba9", "0x3bae", "0x3bb9", "0x3bde", "0x3bd7", "0x3bf9", "0x3bfe", "0x3c10", "0x3c15", "0x3c20", "0x3c63", "0x3c48", "0x3c4d", "0x3c5a", "0x3cc8", "0x3c78", "0x3c7d", "0x3cbd", "0x3cad", "0x3ca7", "0x3d8f", "0x3d84", "0x3d72", "0x3d67", "0x3d31", "0x3d14", "0x3d18", "0x3d22", "0x3d47", "0x3d5f", "0x3d50", "0x3dad", "0x3db2", "0x3e37", "0x3e2a", "0x3e1c", "0x3e0e", "0x3dfe", "0x3e6a", "0x3e63", "0x3ec0", "0x3eb8", "0x3eab", "0x3ea3", "0x3e98", "0x3eee", "0x3f10", "0x3f32", "0x3ed8", "0x3edf", "0x3ee6", "0x3eec", "0x3f53", "0x3ef7", "0x3f01", "0x3f08", "0x3f0e", "0x3f19", "0x3f20", "0x3f2a", "0x3f30", "0x3f3b", "0x3f42", "0x3f49", "0x3f52", "0x3f77", "0x3f6f", "0x3fc2", "0x3fa7", "0x3fac", "0x3fb9", "0x3fdb", "0x3fe0", "0x3feb", "0x4002", "0x4007", "0x4012", "0x4028", "0x402d", "0x4038", "0x407b", "0x4060", "0x4065", "0x4072", "0x40c0", "0x40a5", "0x40aa", "0x40b7", "0x40d8", "0x40dd", "0x40e8", "0x412b", "0x4110", "0x4115", "0x4122", "0x4143", "0x4148", "0x4153", "0x4196", "0x417b", "0x4180", "0x418d", "0x41a5", "0x41a9", "0x41b5", "0x41f6", "0x41db", "0x41e0", "0x41ed", "0x423b", "0x4220", "0x4225", "0x4232", "0x4280", "0x4265", "0x426a", "0x4277", "0x42c5", "0x42aa", "0x42af", "0x42bc", "0x4305", "0x42fe", "0x432b", "0x4324", "0x4341", "0x434f", "0x435d", "0x436a", "0x43aa", "0x438f", "0x4394", "0x43a1", "0x43ef", "0x43e5", "0x43dd", "0x43d3", "0x4400", "0x4405", "0x4410", "0x441d", "0x4486", "0x4441", "0x4447", "0x4477", "0x4456", "0x445c", "0x4469", "0x4494", "0x4498", "0x44a4", "0x44c0", "0x44c4", "0x4561", "0x4556", "0x454b", "0x453f", "0x452a", "0x451f", "0x4537", "0x4587", "0x458b", "0x45ec", "0x45e1", "0x45d6", "0x45cb", "0x4671", "0x4609", "0x460e", "0x4665", "0x4643", "0x463c", "0x465e", "0x4696", "0x46af", "0x46bd", "0x46cb", "0x46d9", "0x46e7", "0x46f5", "0x4703", "0x4711", "0x471f", "0x472d", "0x473b", "0x4748", "0x46a9", "0x4769", "0x480e", "0x478d", "0x4791", "0x4801", "0x47fa", "0x47f3", "0x47eb", "0x47e4", "0x481f", "0x4824", "0x4839", "0x486f", "0x4864", "0x4869", "0x487b", "0x48cf", "0x488f", "0x4894", "0x48c4", "0x48bb", "0x48b4", "0x48e6", "0x48f3", "0x48f8", "0x491e", "0x4914", "0x4919", "0x492e", "0x4954", "0x4946", "0x4963", "0x4980", "0x4985", "0x49a0", "0x49b2", "0x49c4", "0x4a41", "0x4a36", "0x4a2a", "0x49e8", "0x49fb", "0x4a0e", "0x4a0c", "0x4a15", "0x4a24", "0x4a22", "0x4aa6", "0x4a9b", "0x4a8e", "0x4a83", "0x4a78", "0x4ab5", "0x4b0a", "0x4afd", "0x4af3", "0x4aea", "0x4b2d", "0x4b62", "0x4b54", "0x4b71", "0x4b85", "0x4b92", "0x4ba2", "0x4bbf", "0x4bf4", "0x4cb9", "0x4cc7", "0x4ccc", "0x4cdb", "0x4ceb", "0x4ce6", "0x4ce9", "0x4cf4", "0x4cfa", "0x4d06", "0x4d09", "0x4d11", "0x4d39", "0x4d2b", "0x4d48", "0x4d4c", "0x4d58", "0x4d63", "0x4d68", "0x4d9e", "0x4d77", "0x4d7c", "0x4d94", "0x4d8e", "0x4dc7", "0x4e15", "0x4de5", "0x4dea", "0x4e0a", "0x4e03", "0x4e2c", "0x5fa", "0x695", "0x77e", "0x84d", "0x8d9", "0x965", "0x9f1", "0xa7d", "0xaf1", "0xb65", "0xbd9", "0xc55", "0xcd1", "0xd4d", "0xdc9", "0xe38", "0xea7", "0xf23", "0xf9f", "0x101b", "0x10a2", "0x1111", "0x1180", "0x1207", "0x12d0", "0x1374", "0x13a7", "0x1420", "0x1426", "0x142a", "0x150a", "0x152a", "0x1547", "0x157a", "0x15a2", "0x1616", "0x190a", "0x198a", "0x19ad", "0x19c2", "0x19da", "0x1ab1", "0x1ad1", "0x1db6", "0x1e39", "0x1ebf", "0x20c2", "0x2286", "0x243d", "0x2603", "0x2758", "0x28eb", "0x2a2a", "0x2bbe", "0x2bd9", "0x2bf4", "0x2c0f", "0x2c2d", "0x2c46", "0x2c4d", "0x2c66", "0x2c84", "0x2c90", "0x2cae", "0x2ce2", "0x2ced", "0x2d44", "0x2d53", "0x2d97", "0x2e47", "0x2e9c", "0x2eb4", "0x2ecc", "0x3709", "0x3727", "0x376c", "0x37c7", "0x380f", "0x38a7", "0x38bf", "0x38e9", "0x392a", "0x3940", "0x3960", "0x3978", "0x39e6", "0x3a1c", "0x3a59", "0x3a65", "0x3aaa", "0x3b0b", "0x3b56", "0x3b79", "0x3b9c", "0x3bbf", "0x3be5", "0x3c00", "0x3c27", "0x3c6c", "0x3cd7", "0x3d99", "0x3e4b", "0x3e71", "0x3ecb", "0x3f55", "0x3f7f", "0x3f86", "0x3fcb", "0x3ff2", "0x4019", "0x403f", "0x4084", "0x40c9", "0x40ef", "0x4134", "0x415a", "0x419f", "0x41ba", "0x41ff", "0x4244", "0x4289", "0x42ce", "0x42da", "0x42e6", "0x430c", "0x4332", "0x436e", "0x43b3", "0x43f9", "0x4416", "0x4428", "0x448e", "0x44a9", "0x4570", "0x45fb", "0x4683", "0x4686", "0x474f", "0x476f", "0x4819", "0x4827", "0x483f", "0x4849", "0x4875", "0x4881", "0x48e0", "0x48ec", "0x4925", "0x4928", "0x4934", "0x495d", "0x4969", "0x496c", "0x4987", "0x4993", "0x4a4b", "0x4aaf", "0x4abb", "0x4ac3", "0x4b17", "0x4b1a", "0x4b1d", "0x4b20", "0x4b23", "0x4b26", "0x4b36", "0x4b39", "0x4b3c", "0x4b3f", "0x4b42", "0x4b6b", "0x4b77", "0x4b7c", "0x4b7f", "0x4b8b", "0x4b9b", "0x4bad", "0x4bc5", "0x4bd7", "0x4bfb", "0x4c0d", "0x4c1f", "0x4c29", "0x4c33", "0x4c39", "0x4c43", "0x4c4d", "0x4c57", "0x4c61", "0x4c6b", "0x4c75", "0x4cc1", "0x4ccf", "0x4cd4", "0x4cee", "0x4d0b", "0x4d19", "0x4d42", "0x4d5d", "0x4d6b", "0x4dad", "0x4dcd", "0x4dd9", "0x4e25", "0x286ab", "0x600b00200700a009006006008007006006005002004002003002001000", "0x200600a01000600600500900600700600f00600e00200c00a00200d00c", "0x200600a01700601600601100200900a015006014006013002009012011", "0x1200201d01c00601b00601a00200901200900601900601100200900a018", "0x200600a02100200600a02000200600a00201f01500601500601e002009", "0x200600a02600200600a02500200600a02400200600a02300200600a022", "0x602f00602e00602d00602c00602b00602a00602900602800201500a027", "0x603500603400200901200700603300601100200900a002032002031030", "0x503900600603801c00603700603600200901201600601100200700a01c", "0x801c00603c00603b00200901203a00603300601100200900a016006006", "0x3801c00603e00603d00200901201500600900601100200900a03a006006", "0xa01500600900604000200901201500600700603f002009012007006006", "0x601100200700a01c006043006042002009012041006016006011002009", "0x4904800600603804700600603800204601c006045006044002009012007", "0x600700600f00604c00200f00a04b00604a00200700a014006006008002", "0x200900a01500604f00605000200901204f00600603804e00604d00604d", "0x1205400601100200700a01c006053006052002009012051006016006011", "0x605800605900200901205800600603800205701c006056006055002009", "0x200900a01c00605b00605a00200901200900603300601100200900a015", "0x604d00605e00200c00a01c00605d00605c002009012015006033006011", "0xa00206201c00606100606000200901205f00601100200700a007006007", "0x606600200901206500601100200700a06400606400606400606300200c", "0x601100200900a01500601500601500601500606800201601201c006067", "0x600606d01c00606c00606b00200901206a00601100200700a06900605f", "0x607000200901200f00601100200700a01500606f00606e002009012007", "0x607500600f00600700607400201400a00207300700600607201c006071", "0x200901207700601100200700a07600600606d007006007006007006016", "0x607a00200901203a00601100200700a03a00600603801c006079006078", "0x600603807f00600700607e00200900a07d00607c00200700a01c00607b", "0x604d00608100200901201500600f00608000200901200f00600603804d", "0x200901208300601600601100200900a01500604e006082002009012015", "0x600603802b00600603802c00600603802900600603801c006085006084", "0x200700a02d00600603802e00600603802f00600603803000600603802a", "0x600700600700608800200c00a01c00608700608600200901204d006011", "0x600603801c00608a00608900200901201500602e00601100200900a007", "0x601100200700a00900601500608c00200901205800608b00200700a033", "0x609000200700a05800608f00200700a01c00608e00608d002009012015", "0xa01400600603801c00609200609100200901200900601100200700a058", "0x602900601100200900a01c006094006093002009012058006011002007", "0x601100200900a00700609700200700a01c006096006095002009012015", "0x200901206900601100200700a01c00609900609800200901201500604e", "0x609d00609c00200901201500602d00601100200900a01c00609b00609a", "0x60a000609f00200901201500603000601100200900a09e00200600a01c", "0x200900a01c0060a20060a100200901201500602f00601100200900a01c", "0xa0070060a500200700a01c0060a40060a300200901201500602a006011", "0x60a80060a700200901201500602b00601100200900a0070060a6002007", "0x60aa00200901201500602c00601100200900a0070060a900200700a01c", "0x200900a00700604d0060ad00200900a0070060ac00200700a01c0060ab", "0x200900a0070060b000200700a0070060af00200700a00700604d0060ae", "0x601600601100200900a0150060100060b20020090120070060070060b1", "0x6d00f00604d00604d0060b600200c00a01c0060b50060b40020090120b3", "0x600606d00700600f00600f0060770060b90060b800200f00a0b7006006", "0x6d01000600600801c0060bd0060bc0020090120bb00601100200700a0ba", "0x201600a01c0060c10060c00020090120bf00601100200700a0be006006", "0x20c401201c0060c30060c200200901201500600700603a00604e006011", "0x60ce0060cd0060cc0060cb0060ca0060c90060c80060c70060c60060c5", "0x200901201500600900600900601100200c00a0d20060d10060d00060cf", "0x60d60060d500200901201600600606d07f00600603801c0060d40060d3", "0x60d80020090120d700601100200700a01600601600601100200900a015", "0x120020dc01c0060db0060da0020090120b900601100200700a01c0060d9", "0x200901201500600700604e00601100200c00a0090060540060dd002009", "0x60e20020090120090060160060e10020090120020e001c0060df0060de", "0xa0090060580060e40020090120090060070060e3002009012015006054", "0x60bf0060e800200901201c0060e70060e60020090120e5006011002007", "0x605f0060e900200901200700600f00600700600700601100201600a015", "0x601100200700a01c0060ec0060eb0020090120ea00601100200700a009", "0x200901204d00604d0060f000200901201c0060ef0060ee0020090120ed", "0x1201c0060f40060f30020090120f200601100200700a0090060650060f1", "0x601100200700a0650060650060f60020090120090060bb0060f5002009", "0x120fa0060060720020f904e00600603801c0060f80060f700200901206f", "0x60fe0060fd0020090120fc00601100200700a00900604d0060fb002009", "0x610100200901201c0061000060ff00200901206400601100200700a01c", "0x200901201500600700601600601100200c00a009006006038015006065", "0x210800210710606400606400610500200901200210401c006103006102", "0x10d00900610c01600600610b00600600610b00200600610b00210a002109", "0x700600611001600600610f01700600610e01b00600610f0c400600610e", "0x6500600610b065006006114002007006113065006006112065006006111", "0x711700211805400600610b002007054006007117015006006116002115", "0x11b00600610b00211a01500600611205400600610e002119006007054006", "0x2c00600611602b00600611602a00600611602900600611600211d00211c", "0x3300600611603000600611602f00600611602e00600611602d006006116", "0x3a00900610c01400600610b03300600610b03900600610b04800600610b", "0x700600611100700600611f03300600611203500600610f11e00600610e", "0x900600611103c00900610c00900600610b00700600610b007006006112", "0x610b002007120006007117037006006116016006006116009006006112", "0x7006006123122007006121014006006112006007120006007117120006", "0x1600600611212500700612112400900610c01c006006116019006006116", "0x610e03900600612907d00900610c002128039006006127126007006121", "0x610c07d00600610b03a00600611203a00600611103c00600610f124006", "0x610c00700600612710d00600611203e00600610f12a00600610e03e009", "0x610f12d00600610e12c00900610c00700600612912b00600610e12a009", "0x610f12e00600610e12b00900610c03300600611104100600610e043006", "0x610c04f00600612704800600612704700600612712c006006112045006", "0x610b04f00600612905100600610e05300600610f12f00600610e041009", "0x611204700600612904800600612904300900610c04f00600610b047006", "0x610c12d00900610c13200600611204f006006112131006006112130006", "0x610c05400600611205400600611105600600610f13300600610e045009", "0x610b05800600612913400600610e04700900610c05800600612712e009", "0x610c00c00600610b05b00600610f13500600610e13100900610c058006", "0x610c04b00900610c04d00900610c136006006112058006006112130009", "0x610c13200900610c05d00600611213700600610e04f00900610c04e009", "0x610c13300900610c05600900610c12f00900610c05300900610c051009", "0x610e13500900610c05b00900610c13400900610c13600900610c058009", "0x610c05f00600610b05f00600611205f00600611106100600610f138006", "0x610c13900600610b13900600611213900600611113700900610c05d009", "0x610c06700600610f13b00600610e06100900610c13a00700612105f009", "0x611106c00600610f13c00600610e13900900610c06400900610c138009", "0x612113b00900610c06700900610c06a00600610b06a00600611206a006", "0x711700700600613e06c00900610c06a00900610c06900900610c13d007", "0x614013f00600610e00600713f00600711713f00600610b00200713f006", "0x711701b00600611613c00900610c01000600611f007006006114007006", "0x60070170060071170060070c40060071170c400600610b0020070c4006", "0x214300200700612100214207100600610f14100600610e06f00900610c", "0x614007900600610f14600600610e13f00900610c145006006112002144", "0x611200f00600611207600600610f04e006006116014006006111076006", "0x611614700700612105d00600610f07100900610c04e00600610b075006", "0x612100600711e00600711711e00600610b00200711e006007117035006", "0x610c14900700612100600700612103a00600612701500600610b148007", "0x611607f00600611603a00600612907b00600610f14a00600610e141009", "0x200712400600711703c00600611614500900610c0c700600610b0c7006", "0x614d14c00700612114b00600611200600712400600711712400600610b", "0x711703e00600611607500900610c07f00600610b01600600611007d006", "0x200712b00600711700600712a00600711712a00600610b00200712a006", "0x711704300600611607600900610c00600712b00600711712b00600610b", "0x600704100600711700600712d00600711712d00600610b00200712d006", "0x711712e00600610b00200712e00600711704500600611607700900610c", "0x14e00600610e07900900610c00f00600612704d00600612700600712e006", "0x14b00900610c04d00600612914f00600610e14600900610c00f006006129", "0x5100600711704f00600611608300600610e08500600610f15000600610e", "0x4d00600611212f00600610b00200712f006007117053006006116002007", "0x15200600611215100600611200600712f006007117006007051006007117", "0x3000600612702a00600612702b00600612702c006006127029006006127", "0xf00600614d04f00600610f02d00600612702e00600612702f006006127", "0xf00600611104e00600614d04d00600614d00700600614d153007006121", "0x611400215508700600610f15400600610e07b00900610c00f006006114", "0x610c02e00600610b02e00600611103300600610f054006006114002006", "0x215915800700612115700600611615600700612104f00600611114a009", "0x15700600614d15700600610b15a007006121157006006112157006006111", "0x15100900610c0c700900610c07f00900610c00c00700612115700600610f", "0x2d00600612902c00600612902b00600612902a006006129029006006129", "0x2e00600612908a00600610f15b00600610e03000600612902f006006129", "0x2d00600611202e00600611202f006006112030006006112029006006112", "0x15c00600611204e00600611202a00600611202b00600611202c006006112", "0x16100600611216000600611215f00600611215e00600611215d006006112", "0x166007006121165007006121164007006121163006006112162006006112", "0x600713300600711713300600610b002007133006007117056006006116", "0x612700600713400600711713400600610b002007134006007117002167", "0x610c16800600610b16900700612116800600611605800600614d033006", "0x60070ed0060071170ed00600610b0020070ed00600711700216a152009", "0xd000600611608e00600611216b00600610e14e00900610c0ed006006114", "0x3300600612916c00600610b16c00600611614f00900610c0d000600610b", "0x13500600711705b00600611609200600610f16d00600610e08300900610c", "0x16f00700612116e00600611200600713500600711713500600610b002007", "0x2a00600611101400600612708500900610c00c00600614d170007006121", "0x15e00900610c02b00600610b02b00600611115000900610c02a00600610b", "0x2d00600614d02c00600614d02b00600614d02a00600614d02900600614d", "0x2c00600610b02c00600611103000600614d02f00600614d02e00600614d", "0x2900600610b02900600611117200700612117100600611216100900610c", "0x200700617405800600611109400600610f17300600610e16000900610c", "0xd100600611609600600610f17500600610e15d00900610c15f00900610c", "0x15c00900610c00f00600610b01400600612916300900610c0d100600610b", "0x700700612117800700612117700700612109900600611217600600610e", "0x2d00600610b02d00600611108700900610c16200900610c179007006121", "0x17a00600610e15700900610c04d00600610b05f00600610f15400900610c", "0x610b06900600611200200706900600711706900600611109b00600610f", "0x610e15b00900610c05f00600611600200700617b08a00900610c069006", "0xcc00600611616e00900610c00900706900600711709d00600610f17c006", "0x3300600611403900600611400600600611416800900610c0cc00600610b", "0x610e0ed00900610c03000600610b13700600610b006007137006007117", "0x610f17e00600610e08e00900610c02f00600610b0a000600610f17d006", "0x610b0cd0060061160a400600610f17f00600610e16b00900610c0a2006", "0x611616c00900610c0d200600610b0d20060061160d000900610c0cd006", "0xa800600610f18000600610e09200900610c00200713700600711705d006", "0x18100600610e17100900610c16d00900610c0ce00600610b0ce006006116", "0x18200700612109400900610c0cf00600610b0cf0060061160ab00600610f", "0xc800600610b0c800600611617300900610c18400700617b183007006121", "0x6900600711717500900610c0c900600610b0c900600611609600900610c", "0x61161850070061210d100900610c0ca00600610b0ca006006116007007", "0x200713800600711706100600611609900900610c0cb00600610b0cb006", "0x611417600900610c05f00600614d00600713800600711713800600610b", "0x614d139006006116009007006186002007006186015006006114009006", "0x610c09b00900610c06400600610b06400600611213900600610f139006", "0x13b00600711713b00600610b00200713b00600711706700600611617a009", "0x13c00600711706c00600611606a00600611609d00900610c002187006007", "0x17c00900610c06a00600610f00600713c00600711713c00600610b002007", "0x18c00700612118b00700612118a007006121189007006121188007006121", "0x170060071170cc00900610c0c600600610b0c600600611618d007006121", "0x61230b300600610e0b500600610f18e00600610e0a000900610c002007", "0x610f0ba0060061400bd00600610f18f00600610e17d00900610c010006", "0x20071410060071170710060061160770060061120b90060061120ba006", "0x200714600600711707900600611600600714100600711714100600610b", "0x611004e00600610f07700600610b00600714600600711714600600610b", "0x610f19000600610e0a200900610c04b00600610b006007006113010006", "0x61120100060061910be00600614d0be00600610b0be0060061400c1006", "0x610c17e00900610c06500600614d02f00600611119200700612100c006", "0x61210be00600611219400700612119300700612117f00900610c0a4009", "0x61211970070061210cd00900610c030006006111196007006121195007", "0x610c03a00600610b01600600611f19a007006121199007006121198007", "0x200714a00600711707b0060061160c300600610f19b00600610e0d2009", "0x611219c0060061110a800900610c00600714a00600711714a00600610b", "0x219e0d400600610f19d00600610e18000900610c19c00600610b19c006", "0x19f00600711701600600613e07f00600610f07f00600612708e00600610f", "0x19f00600610e07f00600612900600719f00600711719f00600610b002007", "0x410060071171a000600611207f0060061120ce00900610c016006006140", "0x614d0d700600610f0d900600610f1a100600610e0ab00900610c002007", "0x600714e00600711714e00600610b00200714e0060071170021a2033006", "0x600714f00600711714f00600610b00200714f00600711718100900610c", "0x15000600610b002007150006007117085006006116002007083006007117", "0x1a300600610e0cf00900610c006007150006007117006007083006007117", "0x1540060071170870060061160b700600610f0b70060061400db00600610f", "0x1a400600610b0c800900610c00600715400600711715400600610b002007", "0x4e00600611404f00600614d0ca00900610c1a50060061140c900900610c", "0x4d0060061141a70070061210df00600610f1a600600610e0cb00900610c", "0x200715b00600711708a0060061160021aa0021a90100070061210021a8", "0x21ac1ab00700612116800600610f00600715b00600711715b00600610b", "0x1ad0060061140060071ad0060071171ad00600610b0020071ad006007117", "0x1ae00600610e0b300900610c03700600610f12000600610e0c600900610c", "0x610b00200716b00600711708e0060061160ed00600610e1af007006121", "0x9200600611616c00600610f0b500900610c00600716b00600711716b006", "0x16c00600611200600716d00600711716d00600610b00200716d006007117", "0x1b400600610b0020071b40060071170021b31b200600610b1b10070061b0", "0x61b01b50070061b018e00900610c1b40060061140060071b4006007117", "0x610b0e700600610f1b800600610e0b700900610c1b70070061b01b6007", "0x17300600610b0020071730060071170940060061160b900900610c0e5006", "0x1750060071170960060061160021b9058006006114006007173006007117", "0x1000600613e0ba00900610c00600717500600711717500600610b002007", "0x1ba00600610e0060071ba0060071171ba00600610b0020071ba006007117", "0x610b00200717600600711709900600611609900600610f0bb00900610c", "0x1bc0070061210480060061141bb007006121006007176006007117176006", "0x1be0070061b018f00900610c0bd00900610c1bd00600610b1bd006006116", "0xbf00900610c0ea00600610b0ec00600610f1bf00600610e0be00900610c", "0x17a00600610b00200717a00600711709b0060061160021c004d006006111", "0x1500600611106900600610e00600706900600711700600717a006007117", "0x9d0060061160ef00600610f1c100600610e19000900610c0c100900610c", "0x6900600611400600717c00600711717c00600610b00200717c006007117", "0x610b00200717d0060071170a00060061161c20070061b00c300900610c", "0x17e0060071170a20060061161c30070061b000600717d00600711717d006", "0x17f0060071170a400600611600600717e00600711717e00600610b002007", "0x19c00900610c19b00900610c00600717f00600711717f00600610b002007", "0x600718000600711718000600610b0020071800060071170a8006006116", "0x711718100600610b0020071810060071170ab0060061160d400900610c", "0x1c500600610b0020071c50060071170021c419d00900610c006007181006", "0x610c1a000900610c1c50060061141c60070061210060071c5006007117", "0x21c70640060061140d900900610c0d700900610c19f00900610c0d6009", "0xdb00900610c0f200600610b0f400600610f1c800600610e1a100900610c", "0xb30060071170100060061161a400900610c0090070061211a300900610c", "0xb300600711718e00600610b00200718e0060071170b5006006116002007", "0x1ca00600610b0020071ca0060071170021c900600718e006007117006007", "0x71170bd0060061161a500900610c1ca0060061140060071ca006007117", "0x61160100060061cb00600718f00600711718f00600610b00200718f006", "0x1900060071171cc00700612119000600610b0020071900060071170c1006", "0x61210021d00160070061130021cf07500600610b1ce0070061cd006007", "0x71171d400600610b0020071d40060071170021d31d20070061211d1007", "0x1600600614d0df00900610c1d40060061141d50070061210060071d4006", "0x1d600600610e1a600900610c00c006006114016006006111007007006113", "0x19b0060071170c30060061160021d80160060061230021d70f800600610f", "0x1b200900610c1d900700612100600719b00600711719b00600610b002007", "0x61211ad00900610c1da00700612119c00600610e00600719c006007117", "0x1dc00700612119d00600610b00600719d0060071171ae00900610c1db007", "0xe700900610c1de0070061210e500900610c1dd0070061211b400900610c", "0x1e10070061211ba00900610c1e00070061211b800900610c1df007006121", "0xec00900610c1e30070061210ea00900610c1e20070061211bd00900610c", "0x1e60070061210ef00900610c1e50070061211bf00900610c1e4007006121", "0x611301600600611400200719d0060071170d40060061161c100900610c", "0x20071a10060071170d90060061160d700600611600900700611300c007", "0x14f0060061140021e81e70070061210060071a10060071171a100600610b", "0x60071a30060071171a300600610b0020071a30060071170db006006116", "0x1a50060071171a500600610b0020071a50060071170021ea1e9007006121", "0x61161c500900610c04e00600612904e0060061271a500600610e006007", "0x61120060071a60060071171a600600610b0020071a60060071170df006", "0x1ae0060071171ae00600610b0020071ae0060071171ad00600610e1eb006", "0xe50060071170f200900610c1b400600610e01700719c006007117006007", "0x1ec0070061211b800600610b0020071b80060071170e7006006116002007", "0x19c0060071170e500600610e0060070e50060071170060071b8006007117", "0x1ef00600610b0021ee1ed0070061210f400900610c1bd00600610f01b007", "0x610c0fa00600610b0021f31f20070061211f10070061210fa0060061f0", "0x610c1ca00900610c0fa00600614d0021f50fa0060061120021f41c8009", "0x610e0fe00600610f1f600600610e0f800900610c1a400600614d1d4009", "0x1f800600610e1d600900610c0021f706400600614d0060070061860fc006", "0x20071bf0060071170ec0060061160020070ea00600711710000600610f", "0x60071bf0060071171a40060061120060070ea0060071171bf00600610b", "0x71171c100600610b0020071c10060071170ef0060061160ea00600610e", "0x19c00600711701000719c00600711700f00719c0060071170060071c1006", "0x71171c500600610e01500719c00600711701400719c006007117019007", "0x19c00600711700c00719c00600711700900719c00600711700700719c006", "0xf40060061160020070f20060071171f900600610e1eb00900610c016007", "0x60071c80060071171fa0070061211c800600610b0020071c8006007117", "0x1ca00600610e00200719c0060071170f200600610e0060070f2006007117", "0x610b0020071d60060071170f80060061160070060061cb1d400600610e", "0xc600600610f0c600600614d0fa00900610c0060071d60060071171d6006", "0x1ef00900610c0090060061290c700600610f0c700600614d009006006127", "0xca00600610f0c900600610f0c900600614d0c800600610f0c800600614d", "0xcf00600610f0ce00600610f0cd00600610f0cc0060061120cb00600610f", "0xfe00900610c0d200600610f0d100600610f0fc00900610c0d000600610f", "0x1340060061140160070061211fc00700612110300600610f1fb00600610e", "0x1ef0060061120fa0060061140022010022001ff00600610b0021fe0021fd", "0x20071f60060071170fe0060061160020070fc006007117002203002202", "0x60070fc0060071170060071f60060071172040070061211f600600610b", "0x612100600720600600711720600600610b002007206006007117002205", "0x20071f80060071171000060061161f600900610c206006006114207007", "0x610b0020071f90060071170022080060071f80060071171f800600610b", "0x7f00600614d0070060062091f90060061140060071f90060071171f9006", "0x71171fb00600610b0020071fb00600711710300600611607f006006114", "0x20b00600200600200220b00600200200220a20600600610e0060071fb006", "0x20b0060020090020140100070cb00f01600720b007007002007007002002", "0x600f00201c00620b00600f00601600201900620b00601600600c002002", "0x200600201b01701500920b0060c401c0190090100020c400620b00600c", "0x220b0060020090020540060a806500620b00701b00601400200220b006", "0x2b00617502a00620b00702900601700202911b00720b006065006015002", "0x20b00602c00601900202c00620b00611b00601b00200220b006002009002", "0x6500200220b00602e0060c400202f02e00720b00602d00601c00202d006", "0x20b0060330060c400204803300720b00603000601c00203000620b006002", "0x611b00203500620b00604800605400203900620b00602f006054002002", "0x20b00600200900200211e00220b00703503900702900203900620b006039", "0x3700602c00203700620b00611e00602b00211e00620b00600202a002002", "0x600202a00200220b00600200900200203a00600202d00212000620b006", "0x212000620b00603a00602c00203a00620b00610d00602e00210d00620b", "0x703c00603000203c00620b00603c00602c00203c00620b00612000602f", "0x200220b00612400603300200220b00600200900207d00615c12400620b", "0x3e01701500903500203e00620b00603e00603900203e00620b006002048", "0x20b00600211e00200220b00600200900204112b00714a12c12a00720b007", "0x20b00600210d00212d00620b00600212000204300620b006002037002002", "0x600212400204700620b00600203c00212e00620b00600203a002045006", "0x1412a00204d00620b00600203e00213000620b00600207d00213100620b", "0x12f00620b00612a00600c00204b00620b00604d13013104712e04512d043", "0x900612b00213300620b00612c00601600205600620b00600600612c002", "0x13400620b00602a00604300213600620b00604b00604100205800620b006", "0x604500205305113204f04e01620b00613413605813305612f00f12d002", "0x20b00605b00612e00200220b00600200900213500614505b00620b007053", "0x613000205f00620b00600213100200220b00605d00604700213705d007", "0x620b00613800604b00200220b00606100604d00213806100720b006137", "0x213906400720b00613b06700704f00213b00620b00605f00604e002067", "0x606900605100206a06900720b00606400613200200220b006139006033", "0x5600213c00620b00606c00612f00206c00620b00606a00605300200220b", "0x20b00604f00612c00213f00620b00604e00600c00206f00620b00613c006", "0x13300214500620b00605100612b00214100620b006132006016002071006", "0x200220b00600200900207514514107113f01600607500620b00606f006", "0x604f00612c00207700620b00604e00600c00207600620b006135006058", "0x214b00620b00605100612b00214600620b00613200601600207900620b", "0x220b00600200900207b14b14607907701600607b00620b006076006133", "0x14a00620b00600213100200220b00602a00613600200220b00600211e002", "0x7f14a00705b00207f00620b00607f00604b00207f00620b006002134002", "0x15200620b0060c715100705d00215100620b0060021350020c700620b006", "0x600612c00214f00620b00612b00600c00214e00620b006152006058002", "0x15000620b00600900612b00208500620b00604100601600208300620b006", "0x20b00600200900215e15008508314f01600615e00620b00614e006133002", "0x20b00602a00613600200220b00607d00603300200220b00600211e002002", "0x3300216016100720b00615f00613700215f00620b00600900612b002002", "0x216300620b00600205f00215d00620b00600213100200220b006160006", "0x600213500215c00620b00616315d00705b00216300620b00616300604b", "0x15400620b00608700605800208700620b00615c16200705d00216200620b", "0x1700601600208a00620b00600600612c00215700620b00601500600c002", "0x16800620b00615400613300216e00620b00616100612b00215b00620b006", "0x200220b00600211e00200220b00600200900216816e15b08a157016006", "0xed00620b00600213100200220b00611b00606100200220b00602b006033", "0x8e0ed00705b00208e00620b00608e00604b00208e00620b006002138002", "0x16c00620b00616b0d000705d0020d000620b00600213500216b00620b006", "0x600612c00216d00620b00601500600c00209200620b00616c006058002", "0x17300620b00600900612b00209400620b00601700601600217100620b006", "0x20b00600200900209617309417116d01600609600620b006092006133002", "0x601500600c00217500620b00605400605800200220b00600211e002002", "0x217600620b00601700601600209900620b00600600612c0020d100620b", "0x1760990d101600617a00620b00617500613300209b00620b00600900612b", "0x20b00600c00606100200220b00600211e00200220b00600200900217a09b", "0x617c00604b00217c00620b00600213400209d00620b006002131002002", "0x20a000620b0060021350020cc00620b00617c09d00705b00217c00620b", "0x1000600c0020a200620b00617d00605800217d00620b0060cc0a000705d", "0x17f00620b0060140060160020a400620b00600600612c00217e00620b006", "0xa417e0160060d200620b0060a20061330020cd00620b00600900612b002", "0x600200200200220b00600213900201600620b0060020640020d20cd17f", "0x720c01000f00720b00700600200700700200220b00600200600200220b", "0x1000601600201c00620b00600f00600c00200220b006002009002015014", "0x20b0060650c401c00901000206500620b00600900600f0020c400620b006", "0x620d05400620b00701900601400200220b00600200600201901b017009", "0x2a00601700202a02900720b00605400601500200220b00600200900211b", "0x620b00602900601b00200220b00600200900202c00620e02b00620b007", "0xc400203002f00720b00602e00601c00202e00620b00602d00601900202d", "0x4800720b00603300601c00203300620b00600206500200220b00602f006", "0x3900605400203500620b00603000605400200220b0060480060c4002039", "0x220b00711e03500702900203500620b00603500611b00211e00620b006", "0x603700602b00203700620b00600202a00200220b0060020090020020f4", "0x20090020020f800600202d00210d00620b00612000602c00212000620b", "0x2c00203c00620b00603a00602e00203a00620b00600202a00200220b006", "0x20b00612400602c00212400620b00610d00602f00210d00620b00603c006", "0x200220b00600200900203e00620f07d00620b007124006030002124006", "0x620b00612a00603900212a00620b00600204800200220b00607d006033", "0x600200900204304100721012b12c00720b00712a01b01700903500212a", "0x20b00600212000212d00620b00600203700200220b00600211e00200220b", "0x600203c00204700620b00600203a00212e00620b00600210d002045006", "0x203e00204d00620b00600207d00213000620b00600212400213100620b", "0x204e00620b00604b04d13013104712e04512d01412a00204b00620b006", "0x600700612b00212f00620b00612b00601600205300620b00612c00600c", "0x205800620b00602b00604300213300620b00604e00604100205600620b", "0x600c01600713b00205100c13204f00c20b00605813305612f053016067", "0x220b00600200900213400621113600620b00705100606900200c00620b", "0x600213100200220b00605b00604700213505b00720b00613600606a002", "0x200220b00613700613c00205f13700720b00613500606c00205d00620b", "0x605f00606f00206700620b00613200601600213900620b00604f00600c", "0x20b00606913b06713900c13f00206900620b00605d00604e00213b00620b", "0x20b00600200900206c00621206a00620b007064006071002064138061009", "0x613200200220b00606f00603300206f13c00720b00606a006141002002", "0x620b00607100605300200220b00613f00605100207113f00720b00613c", "0x600c00207500620b00614500605600214500620b00614100612f002141", "0x620b00600c00612b00207700620b00613800601600207600620b006061", "0x20b00600200900214607907707600c00614600620b006075006133002079", "0x601600207b00620b00606100600c00214b00620b00606c006058002002", "0x620b00614b00613300207f00620b00600c00612b00214a00620b006138", "0x620b00613400605800200220b0060020090020c707f14a07b00c0060c7", "0x612b00214e00620b00613200601600215200620b00604f00600c002151", "0x208314f14e15200c00608300620b00615100613300214f00620b00600c", "0x13600200220b00601600614500200220b00600211e00200220b006002009", "0x215000620b00600213400208500620b00600213100200220b00602b006", "0x600213500215e00620b00615008500705b00215000620b00615000604b", "0x15f00620b00616000605800216000620b00615e16100705d00216100620b", "0x700612b00216300620b00604300601600215d00620b00604100600c002", "0x900216215c16315d00c00616200620b00615f00613300215c00620b006", "0x614500200220b00603e00603300200220b00600211e00200220b006002", "0x215700620b00600700612b00200220b00602b00613600200220b006016", "0x20b00600213100200220b00615400603300215408700720b006157006137", "0x705b00215b00620b00615b00604b00215b00620b00600205f00208a006", "0x20b00616e16800705d00216800620b00600213500216e00620b00615b08a", "0x1600216b00620b00601700600c00208e00620b0060ed0060580020ed006", "0x20b00608e00613300216c00620b00608700612b0020d000620b00601b006", "0x220b00600211e00200220b00600200900209216c0d016b00c006092006", "0x20b00602900606100200220b00601600614500200220b00602c006033002", "0x617100604b00217100620b00600213800216d00620b006002131002002", "0x217300620b00600213500209400620b00617116d00705b00217100620b", "0x1700600c00217500620b00609600605800209600620b00609417300705d", "0x17600620b00600700612b00209900620b00601b0060160020d100620b006", "0x220b00600200900209b1760990d100c00609b00620b006175006133002", "0x620b00611b00605800200220b00601600614500200220b00600211e002", "0x612b00217c00620b00601b00601600209d00620b00601700600c00217a", "0x20a00cc17c09d00c0060a000620b00617a0061330020cc00620b006007", "0x6100200220b00601600614500200220b00600211e00200220b006002009", "0x20a200620b00600213400217d00620b00600213100200220b006009006", "0x600213500217e00620b0060a217d00705b0020a200620b0060a200604b", "0xcd00620b00617f00605800217f00620b00617e0a400705d0020a400620b", "0x700612b0020a800620b0060150060160020d200620b00601400600c002", "0x750020ce1800a80d200c0060ce00620b0060cd00613300218000620b006", "0x200600200220b00600200200200220b00600213900200f00620b006002", "0x200900201701500721301401000720b00700700200700700200220b006", "0x1901b00720b00601c00607600201c00620b00600c00600f00200220b006", "0x20c400621401600620b00701900607700201000620b00601000600c002", "0x620b00601400601600202900620b00601000600c00200220b006002009", "0x14600201600620b00601600f00707900202b00620b00601b00600f00202a", "0x11b00614b00200220b00600200600211b05406500920b00602b02a029009", "0x720b00602c00607b00200220b00600200900202d00621502c00620b007", "0x200220b00600200900203300621603000620b00702f00614a00202f02e", "0x603900601c00203900620b00604800601900204800620b00602e00601b", "0x1c00203700620b00600206500200220b0060350060c400211e03500720b", "0x20b00611e00605400200220b0061200060c400210d12000720b006037006", "0x2900203a00620b00603a00611b00203c00620b00610d00605400203a006", "0x620b00600202a00200220b00600200900200221700220b00703c03a007", "0x202d00203e00620b00607d00602c00207d00620b00612400602b002124", "0x12a00602e00212a00620b00600202a00200220b006002009002002218006", "0x12b00620b00603e00602f00203e00620b00612c00602c00212c00620b006", "0x204300621904100620b00712b00603000212b00620b00612b00602c002", "0x212d00620b00600204800200220b00604100603300200220b006002009", "0x721a12e04500720b00712d05406500903500212d00620b00612d006039", "0x620b00600203700200220b00600211e00200220b006002009002131047", "0x20b00600203a00204b00620b00600210d00204d00620b006002120002130", "0x600207d00213200620b00600212400204f00620b00600203c00204e006", "0x5113204f04e04b04d13001412a00205300620b00600203e00205100620b", "0x20b00605600604700213305600720b00612f00607f00212f00620b006053", "0x601600213700620b00600600612c00205d00620b00604500600c002002", "0x620b00613300604100206100620b00600900612b00205f00620b00612e", "0x100c700213900620b00603000604e00206400620b00601600604b002138", "0x713500615100213505b13413605801620b00613906413806105f13705d", "0x6900620b00606700615200200220b00600200900213b00621b06700620b", "0x6c00604d00213c06c00720b00606900613000206a00620b006002131002", "0x214100620b00606a00604e00207100620b00613c00604b00200220b006", "0x6f00613200200220b00613f00603300213f06f00720b00614107100704f", "0x7600620b00607500605300200220b00614500605100207514500720b006", "0x5800600c00207900620b00607700605600207700620b00607600612f002", "0x7b00620b00613400601600214b00620b00613600612c00214600620b006", "0x14b14601600607f00620b00607900613300214a00620b00605b00612b002", "0x600c0020c700620b00613b00605800200220b00600200900207f14a07b", "0x620b00613400601600215200620b00613600612c00215100620b006058", "0x15101600608300620b0060c700613300214f00620b00605b00612b00214e", "0x3000605100200220b00600211e00200220b00600200900208314f14e152", "0x213400208500620b00600213100200220b00601600604d00200220b006", "0x620b00615008500705b00215000620b00615000604b00215000620b006", "0x605800216000620b00615e16100705d00216100620b00600213500215e", "0x620b00600600612c00215d00620b00604700600c00215f00620b006160", "0x613300216200620b00600900612b00215c00620b006131006016002163", "0x11e00200220b00600200900208716215c16315d01600608700620b00615f", "0x4d00200220b00603000605100200220b00604300603300200220b006002", "0x720b00608a00613700208a00620b00600900612b00200220b006016006", "0x600205f00215b00620b00600213100200220b006157006033002157154", "0x16800620b00616e15b00705b00216e00620b00616e00604b00216e00620b", "0x8e00605800208e00620b0061680ed00705d0020ed00620b006002135002", "0x16c00620b00600600612c0020d000620b00606500600c00216b00620b006", "0x16b00613300216d00620b00615400612b00209200620b006054006016002", "0x211e00200220b00600200900217116d09216c0d001600617100620b006", "0x604d00200220b00602e00606100200220b00603300603300200220b006", "0x4b00217300620b00600213800209400620b00600213100200220b006016", "0x20b00600213500209600620b00617309400705b00217300620b006173006", "0x209900620b0060d10060580020d100620b00609617500705d002175006", "0x605400601600209b00620b00600600612c00217600620b00606500600c", "0x617c00620b00609900613300209d00620b00600900612b00217a00620b", "0x4d00200220b00600211e00200220b00600200900217c09d17a09b176016", "0x620b00606500600c0020cc00620b00602d00605800200220b006016006", "0x612b0020a200620b00605400601600217d00620b00600600612c0020a0", "0xa417e0a217d0a00160060a400620b0060cc00613300217e00620b006009", "0x200220b0060c400603300200220b00600211e00200220b006002009002", "0x17f00620b00600213100200220b00600f00614e00200220b00601b006061", "0xcd17f00705b0020cd00620b0060cd00604b0020cd00620b006002138002", "0x18000620b0060d20a800705d0020a800620b0060021350020d200620b006", "0x600612c0020ab00620b00601000600c0020ce00620b006180006058002", "0xc800620b00600900612b0020cf00620b00601400601600218100620b006", "0x20b0060020090020c90c80cf1810ab0160060c900620b0060ce006133002", "0x20b00600f00614e00200220b00600c00606100200220b00600211e002002", "0x60cb00604b0020cb00620b0060021340020ca00620b006002131002002", "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", "0x1500600c00218e00620b0060b50060580020b500620b0060c60b300705d", "0xba00620b0060170060160020b900620b00600600612c0020b700620b006", "0xb90b70160060bd00620b00618e0061330020bb00620b00600900612b002", "0x208300201500620b00600206400201000620b00600214f0020bd0bb0ba", "0x200200200220b00600213900201c00620b00600208500201b00620b006", "0x21c0650c400720b00700900600700700200220b00600200600200220b006", "0x601600202c00620b0060c400600c00200220b00600200900211b054007", "0x602e02d02c00915000202e00620b00601600600f00202d00620b006065", "0x21d02f00620b00702b00615e00200220b00600200600202b02a02900920b", "0x616000204803300720b00602f00616100200220b006002009002030006", "0x20b00602900600c00200220b00600200900203900621e01900620b007048", "0x15f00203a00620b00603300600f00210d00620b00602a006016002120006", "0x203711e03500920b00603a10d12000914600201900620b00601901c007", "0x600200900212400621f03c00620b00703700614b00200220b006002006", "0x22012a00620b00703e00614a00203e07d00720b00603c00607b00200220b", "0x12b00601900212b00620b00607d00601b00200220b00600200900212c006", "0x220b0060430060c400212d04300720b00604100601c00204100620b006", "0x12e0060c400204712e00720b00604500601c00204500620b006002065002", "0x213000620b00604700605400213100620b00612d00605400200220b006", "0x200900200222100220b00713013100702900213100620b00613100611b", "0x2c00204b00620b00604d00602b00204d00620b00600202a00200220b006", "0x2a00200220b00600200900200222200600202d00204e00620b00604b006", "0x620b00613200602c00213200620b00604f00602e00204f00620b006002", "0x603000205100620b00605100602c00205100620b00604e00602f00204e", "0x20b00605300603300200220b00600200900212f00622305300620b007051", "0x3500903500205600620b00605600603900205600620b006002048002002", "0x211e00200220b00600200900213413600722405813300720b00705611e", "0x210d00213500620b00600212000205b00620b00600203700200220b006", "0x12400205f00620b00600203c00213700620b00600203a00205d00620b006", "0x206400620b00600203e00213800620b00600207d00206100620b006002", "0x20b00613300600c00213900620b00606413806105f13705d13505b01412a", "0x15d00213c00620b00605800601600206c00620b00600700612c00206a006", "0x20b00613900604100213f00620b00600c00612b00206f00620b006002006", "0x15c00214500620b00612a00604e00214100620b006019006163002071006", "0x16200206901400f13b01706700f20b00614514107113f06f13c06c06a014", "0x1500713b00200f00620b00600f01000708700201700620b00601701b007", "0x600200900207600622507500620b00706900606900201400620b006014", "0x13100200220b00607700604700207907700720b00607500606a00200220b", "0x20b00614b00613c00207b14b00720b00607900606c00214600620b006002", "0x606f00215200620b00613b00601600215100620b00606700600c002002", "0x14f14e15215100c13f00214f00620b00614600604e00214e00620b00607b", "0x200900208500622608300620b0070c70060710020c707f14a00920b006", "0x200220b00615e00603300215e15000720b00608300614100200220b006", "0x616000605300200220b00616100605100216016100720b006150006132", "0x216300620b00615d00605600215d00620b00615f00612f00215f00620b", "0x601700612c00216200620b00614a00600c00215c00620b00600f00615d", "0x215700620b00601400612b00215400620b00607f00601600208700620b", "0x20b00600200900208a15715408716215c00f00608a00620b006163006133", "0x600c00216e00620b00600f00615d00215b00620b006085006058002002", "0x620b00607f0060160020ed00620b00601700612c00216800620b00614a", "0x16e00f0060d000620b00615b00613300216b00620b00601400612b00208e", "0x216c00620b00607600605800200220b0060020090020d016b08e0ed168", "0x601700612c00216d00620b00606700600c00209200620b00600f00615d", "0x217300620b00601400612b00209400620b00613b00601600217100620b", "0x20b00600200900209617309417116d09200f00609600620b00616c006133", "0x20b00601000615700200220b00601b00615400200220b00600211e002002", "0x601900608a00200220b00612a00605100200220b006015006145002002", "0xd100604b0020d100620b00600213400217500620b00600213100200220b", "0x17600620b00600213500209900620b0060d117500705b0020d100620b006", "0x615d00217a00620b00609b00605800209b00620b00609917600705d002", "0x620b00600700612c00217c00620b00613600600c00209d00620b006002", "0x613300217d00620b00600c00612b0020a000620b0061340060160020cc", "0x200220b0060020090020a217d0a00cc17c09d00f0060a200620b00617a", "0x200220b00601b00615400200220b00612f00603300200220b00600211e", "0x220b00612a00605100200220b00601500614500200220b006010006157", "0x617f00613700217f00620b00600c00612b00200220b00601900608a002", "0x5f0020cd00620b00600213100200220b0060a40060330020a417e00720b", "0x20b0060d20cd00705b0020d200620b0060d200604b0020d200620b006002", "0x580020ce00620b0060a818000705d00218000620b0060021350020a8006", "0x20b00603500600c00218100620b00600200615d0020ab00620b0060ce006", "0x12b0020c900620b00611e0060160020c800620b00600700612c0020cf006", "0xc90c80cf18100f0060cb00620b0060ab0061330020ca00620b00617e006", "0x20b00612c00603300200220b00600211e00200220b0060020090020cb0ca", "0x601500614500200220b00601000615700200220b00601b006154002002", "0x600213100200220b00601900608a00200220b00607d00606100200220b", "0x5b0020b300620b0060b300604b0020b300620b0060021380020c600620b", "0x60b518e00705d00218e00620b0060021350020b500620b0060b30c6007", "0x20ba00620b00600200615d0020b900620b0060b70060580020b700620b", "0x611e0060160020bd00620b00600700612c0020bb00620b00603500600c", "0x60bf00620b0060b90061330020be00620b00600c00612b00218f00620b", "0x200220b00600211e00200220b0060020090020bf0be18f0bd0bb0ba00f", "0x220b00601500614500200220b00601000615700200220b00601b006154", "0x600200615d0020c100620b00612400605800200220b00601900608a002", "0x219b00620b00600700612c0020c300620b00603500600c00219000620b", "0x60c10061330020d400620b00600c00612b00219c00620b00611e006016", "0x211e00200220b00600200900219d0d419c19b0c319000f00619d00620b", "0x615700200220b00601b00615400200220b00603900603300200220b006", "0x15b00200220b00603300606100200220b00601500614500200220b006010", "0x20d600620b0060021380021a000620b00600213100200220b00601c006", "0x600213500219f00620b0060d61a000705b0020d600620b0060d600604b", "0x1a100620b0060d90060580020d900620b00619f0d700705d0020d700620b", "0x700612c0021a300620b00602900600c0020db00620b00600200615d002", "0xdf00620b00600c00612b0021a500620b00602a0060160021a400620b006", "0x60020090021a60df1a51a41a30db00f0061a600620b0061a1006133002", "0x601000615700200220b00601b00615400200220b00600211e00200220b", "0x3000605800200220b00601c00615b00200220b00601500614500200220b", "0x1ae00620b00602900600c0021ad00620b00600200615d0021b200620b006", "0xc00612b0020e500620b00602a0060160021b400620b00600700612c002", "0x1b80e70e51b41ae1ad00f0061b800620b0061b20061330020e700620b006", "0x200220b00601b00615400200220b00600211e00200220b006002009002", "0x220b00601c00615b00200220b00601500614500200220b006010006157", "0x620b0060021340021ba00620b00600213100200220b006016006061002", "0x1350020ea00620b0061bd1ba00705b0021bd00620b0061bd00604b0021bd", "0x20b0061bf0060580021bf00620b0060ea0ec00705d0020ec00620b006002", "0x12c0021c500620b00605400600c0021c100620b00600200615d0020ef006", "0x20b00600c00612b0020f400620b00611b0060160020f200620b006007006", "0x20021ca1c80f40f21c51c100f0061ca00620b0060ef0061330021c8006", "0xf01600720b00700700600700700200220b00600200600200220b006002", "0x1600201900620b00601600600c00200220b006002009002014010007227", "0xc401c0190091500020c400620b00600c00600f00201c00620b00600f006", "0x6500620b00701b00615e00200220b00600200600201b01701500920b006", "0x16000202911b00720b00606500616100200220b006002009002054006228", "0x611b00601b00200220b00600200900202b00622902a00620b007029006", "0x2f02e00720b00602d00601c00202d00620b00602c00601900202c00620b", "0x20b00603000601c00203000620b00600206500200220b00602e0060c4002", "0x5400203900620b00602f00605400200220b0060330060c4002048033007", "0x703503900702900203900620b00603900611b00203500620b006048006", "0x602b00211e00620b00600202a00200220b00600200900200222a00220b", "0x200222b00600202d00212000620b00603700602c00203700620b00611e", "0x3a00620b00610d00602e00210d00620b00600202a00200220b006002009", "0x3c00602c00203c00620b00612000602f00212000620b00603a00602c002", "0x20b00600200900207d00622c12400620b00703c00603000203c00620b006", "0x603e00603900203e00620b00600204800200220b006124006033002002", "0x900204112b00722d12c12a00720b00703e01701500903500203e00620b", "0x212000204300620b00600203700200220b00600211e00200220b006002", "0x3c00212e00620b00600203a00204500620b00600210d00212d00620b006", "0x213000620b00600207d00213100620b00600212400204700620b006002", "0x620b00604d13013104712e04512d04301412a00204d00620b00600203e", "0x600c00200220b00604e00604700204f04e00720b00604b00607f00204b", "0x620b00600200615d00205800620b00612c00601600213300620b00612a", "0x616300205b00620b00604f00604100213400620b00600900612b002136", "0x5305113201620b00613505b13413605813300f16e00213500620b00602a", "0x200220b00600200900213700622e05d00620b00705600615100205612f", "0x20b00605f00613000206100620b00600213100205f00620b00605d006152", "0x4e00213b00620b00606400604b00200220b00613800604d002064138007", "0x6700603300206713900720b00606913b00704f00206900620b006061006", "0x200220b00606a00605100206c06a00720b00613900613200200220b006", "0x606f00605600206f00620b00613c00612f00213c00620b00606c006053", "0x214100620b00613200600c00207100620b00605300615d00213f00620b", "0x613f00613300207500620b00612f00612b00214500620b006051006016", "0x13700605800200220b00600200900207607514514107101600607600620b", "0x14600620b00613200600c00207900620b00605300615d00207700620b006", "0x7700613300207b00620b00612f00612b00214b00620b006051006016002", "0x211e00200220b00600200900214a07b14b14607901600614a00620b006", "0x213400207f00620b00600213100200220b00602a00608a00200220b006", "0x620b0060c707f00705b0020c700620b0060c700604b0020c700620b006", "0x605800214e00620b00615115200705d00215200620b006002135002151", "0x620b00612b00600c00208300620b00600200615d00214f00620b00614e", "0x613300215e00620b00600900612b00215000620b006041006016002085", "0x11e00200220b00600200900216115e15008508301600616100620b00614f", "0x12b00200220b00602a00608a00200220b00607d00603300200220b006002", "0x615f00603300215f16000720b00615d00613700215d00620b006009006", "0x15c00604b00215c00620b00600205f00216300620b00600213100200220b", "0x8700620b00600213500216200620b00615c16300705b00215c00620b006", "0x615d00215700620b00615400605800215400620b00616208700705d002", "0x620b00601700601600215b00620b00601500600c00208a00620b006002", "0x8a0160060ed00620b00615700613300216800620b00616000612b00216e", "0x2b00603300200220b00600211e00200220b0060020090020ed16816e15b", "0x213800208e00620b00600213100200220b00611b00606100200220b006", "0x620b00616b08e00705b00216b00620b00616b00604b00216b00620b006", "0x605800209200620b0060d016c00705d00216c00620b0060021350020d0", "0x620b00601500600c00217100620b00600200615d00216d00620b006092", "0x613300209600620b00600900612b00217300620b006017006016002094", "0x11e00200220b00600200900217509617309417101600617500620b00616d", "0x9900620b00600200615d0020d100620b00605400605800200220b006002", "0x900612b00209b00620b00601700601600217600620b00601500600c002", "0x209d17a09b17609901600609d00620b0060d100613300217a00620b006", "0x13100200220b00600c00606100200220b00600211e00200220b006002009", "0xcc00620b0060cc00604b0020cc00620b00600213400217c00620b006002", "0x17d00705d00217d00620b0060021350020a000620b0060cc17c00705b002", "0x620b00600200615d00217e00620b0060a20060580020a200620b0060a0", "0x612b0020cd00620b00601400601600217f00620b00601000600c0020a4", "0xa80d20cd17f0a40160060a800620b00617e0061330020d200620b006009", "0x720b00700700600700700200220b00600200600200220b006002002002", "0x1b00620b00600c00600f00200220b00600200900201401000722f00f016", "0x607700201600620b00601600600c00201701500720b00601b006076002", "0x20b00601500601b00200220b00600200900201c00623001900620b007017", "0x211b05400720b00606500601c00206500620b0060c40060190020c4006", "0x720b00602900601c00202900620b00600206500200220b0060540060c4", "0x605400202c00620b00611b00605400200220b00602a0060c400202b02a", "0x20b00702d02c00702900202c00620b00602c00611b00202d00620b00602b", "0x2e00602b00202e00620b00600202a00200220b006002009002002231002", "0x900200223200600202d00203000620b00602f00602c00202f00620b006", "0x204800620b00603300602e00203300620b00600202a00200220b006002", "0x603900602c00203900620b00603000602f00203000620b00604800602c", "0x220b00600200900211e00623303500620b00703900603000203900620b", "0x20b00603700603900203700620b00600204800200220b006035006033002", "0x200900203c03a00723410d12000720b00703700f016009035002037006", "0x600212000212400620b00600203700200220b00600211e00200220b006", "0x203c00212a00620b00600203a00203e00620b00600210d00207d00620b", "0x3e00204100620b00600207d00212b00620b00600212400212c00620b006", "0x12d00620b00604304112b12c12a03e07d12401412a00204300620b006002", "0x12000600c00200220b00604500604700212e04500720b00612d00607f002", "0x13200620b00600200615d00204f00620b00610d00601600204e00620b006", "0x1900604b00205300620b00612e00604100205100620b00600900612b002", "0x4d13013104701620b00612f05305113204f04e00f16800212f00620b006", "0x8e00200220b00600200900213300623505600620b00704b0060ed00204b", "0x720b00605800616b00213600620b00600213100205800620b006056006", "0x604e00213700620b00605b00602c00200220b0061340060d000205b134", "0x605d00603300205d13500720b00605f13700716c00205f00620b006136", "0x5300200220b00606100605100213806100720b00613500613200200220b", "0x20b00613900605600213900620b00606400612f00206400620b006138006", "0x1600206900620b00604700600c00213b00620b00613000615d002067006", "0x20b00606700613300206c00620b00604d00612b00206a00620b006131006", "0x613300605800200220b00600200900213c06c06a06913b01600613c006", "0x207100620b00604700600c00213f00620b00613000615d00206f00620b", "0x606f00613300214500620b00604d00612b00214100620b006131006016", "0x600211e00200220b00600200900207514514107113f01600607500620b", "0x600213400207600620b00600213100200220b00601900604d00200220b", "0x7900620b00607707600705b00207700620b00607700604b00207700620b", "0x14b00605800214b00620b00607914600705d00214600620b006002135002", "0x7f00620b00603a00600c00214a00620b00600200615d00207b00620b006", "0x7b00613300215100620b00600900612b0020c700620b00603c006016002", "0x211e00200220b0060020090021521510c707f14a01600615200620b006", "0x612b00200220b00601900604d00200220b00611e00603300200220b006", "0x20b00614f00603300214f14e00720b00608300613700208300620b006009", "0x615000604b00215000620b00600205f00208500620b006002131002002", "0x216100620b00600213500215e00620b00615008500705b00215000620b", "0x200615d00215f00620b00616000605800216000620b00615e16100705d", "0x15c00620b00600f00601600216300620b00601600600c00215d00620b006", "0x16315d01600608700620b00615f00613300216200620b00614e00612b002", "0x601c00603300200220b00600211e00200220b00600200900208716215c", "0x600213800215400620b00600213100200220b00601500606100200220b", "0x8a00620b00615715400705b00215700620b00615700604b00215700620b", "0x16e00605800216e00620b00608a15b00705d00215b00620b006002135002", "0x8e00620b00601600600c0020ed00620b00600200615d00216800620b006", "0x1680061330020d000620b00600900612b00216b00620b00600f006016002", "0x211e00200220b00600200900216c0d016b08e0ed01600616c00620b006", "0x213400209200620b00600213100200220b00600c00606100200220b006", "0x620b00616d09200705b00216d00620b00616d00604b00216d00620b006", "0x605800217300620b00617109400705d00209400620b006002135002171", "0x620b00601000600c00217500620b00600200615d00209600620b006173", "0x613300217600620b00600900612b00209900620b0060140060160020d1", "0x201600620b00600206400209b1760990d117501600609b00620b006096", "0x600200220b00600200200200220b00600213900201000620b006002092", "0x900201b01700723601501400720b00700600200700700200220b006002", "0x5400620b00600900600f00206500620b00601400600c00200220b006002", "0x23700f00620b0070c40061710020c401c01900920b00605406500716d002", "0x1500601600202c00620b00601900600c00200220b00600200900211b006", "0x620b00600f01000709400202e00620b00601c00600f00202d00620b006", "0x200220b00600200600202b02a02900920b00602e02d02c00914600200f", "0x2f00607b00200220b00600200900203000623802f00620b00702b00614b", "0x600200900203500623903900620b00704800614a00204803300720b006", "0x1c00203700620b00611e00601900211e00620b00603300601b00200220b", "0x620b00600206500200220b0061200060c400210d12000720b006037006", "0x605400200220b00603c0060c400212403c00720b00603a00601c00203a", "0x620b00607d00611b00203e00620b00612400605400207d00620b00610d", "0x202a00200220b00600200900200223a00220b00703e07d00702900207d", "0x12b00620b00612c00602c00212c00620b00612a00602b00212a00620b006", "0x204100620b00600202a00200220b00600200900200223b00600202d002", "0x612b00602f00212b00620b00604300602c00204300620b00604100602e", "0x23c04500620b00712d00603000212d00620b00612d00602c00212d00620b", "0x20b00600204800200220b00604500603300200220b00600200900212e006", "0x13100720b00704702a02900903500204700620b006047006039002047006", "0x203700200220b00600211e00200220b00600200900204b04d00723d130", "0x3a00213200620b00600210d00204f00620b00600212000204e00620b006", "0x212f00620b00600212400205300620b00600203c00205100620b006002", "0x5113204f04e01412a00213300620b00600203e00205600620b00600207d", "0x13000601600213500620b00613100600c00205800620b00613305612f053", "0x5f00620b00605800604100213700620b00600700612b00205d00620b006", "0x13500f09600213800620b00603900604e00206100620b00600f006173002", "0x620b00600c01600713b00205b00c13413600c20b00613806105f13705d", "0xd100200220b00600200900213900623e06400620b00705b00617500200c", "0x620b00600213100200220b00606700604700213b06700720b006064006", "0x600c00200220b00606a00605100206c06a00720b00613b006132002069", "0x620b00606c00609900214100620b00613400601600207100620b006136", "0x13c00920b00607514514107100c17600207500620b00606900604e002145", "0x200220b00600200900207700623f07600620b00713f00607100213f06f", "0x607900613200200220b00614600603300214607900720b006076006141", "0x214a00620b00607b00605300200220b00614b00605100207b14b00720b", "0x613c00600c0020c700620b00607f00605600207f00620b00614a00612f", "0x214e00620b00600c00612b00215200620b00606f00601600215100620b", "0x200220b00600200900214f14e15215100c00614f00620b0060c7006133", "0x606f00601600208500620b00613c00600c00208300620b006077006058", "0x616100620b00608300613300215e00620b00600c00612b00215000620b", "0x216000620b00613900605800200220b00600200900216115e15008500c", "0x600c00612b00215d00620b00613400601600215f00620b00613600600c", "0x200900215c16315d15f00c00615c00620b00616000613300216300620b", "0x3900605100200220b00601600614500200220b00600211e00200220b006", "0x213400216200620b00600213100200220b00600f00609b00200220b006", "0x620b00608716200705b00208700620b00608700604b00208700620b006", "0x605800208a00620b00615415700705d00215700620b006002135002154", "0x620b00604b00601600216e00620b00604d00600c00215b00620b00608a", "0x16e00c00608e00620b00615b0061330020ed00620b00600700612b002168", "0x612e00603300200220b00600211e00200220b00600200900208e0ed168", "0xf00609b00200220b00603900605100200220b00601600614500200220b", "0xd016b00720b00616c00613700216c00620b00600700612b00200220b006", "0x620b00600205f00209200620b00600213100200220b0060d0006033002", "0x13500217100620b00616d09200705b00216d00620b00616d00604b00216d", "0x20b00617300605800217300620b00617109400705d00209400620b006002", "0x12b0020d100620b00602a00601600217500620b00602900600c002096006", "0x1760990d117500c00617600620b00609600613300209900620b00616b006", "0x200220b00603500603300200220b00600211e00200220b006002009002", "0x220b00600f00609b00200220b00603300606100200220b006016006145", "0x20b00617a00604b00217a00620b00600213800209b00620b006002131002", "0x5d00217c00620b00600213500209d00620b00617a09b00705b00217a006", "0x602900600c0020a000620b0060cc0060580020cc00620b00609d17c007", "0x217e00620b00600700612b0020a200620b00602a00601600217d00620b", "0x200220b0060020090020a417e0a217d00c0060a400620b0060a0006133", "0x200220b00600f00609b00200220b00601600614500200220b00600211e", "0x602a0060160020cd00620b00602900600c00217f00620b006030006058", "0x618000620b00617f0061330020a800620b00600700612b0020d200620b", "0x603300200220b00600211e00200220b0060020090021800a80d20cd00c", "0x17a00200220b00601c00606100200220b00601600614500200220b00611b", "0x20ab00620b0060021380020ce00620b00600213100200220b006010006", "0x600213500218100620b0060ab0ce00705b0020ab00620b0060ab00604b", "0xc900620b0060c80060580020c800620b0061810cf00705d0020cf00620b", "0x700612b0020cb00620b0060150060160020ca00620b00601900600c002", "0x90020b30c60cb0ca00c0060b300620b0060c90061330020c600620b006", "0x606100200220b00601600614500200220b00600211e00200220b006002", "0x1340020b500620b00600213100200220b00601000617a00200220b006009", "0x20b00618e0b500705b00218e00620b00618e00604b00218e00620b006002", "0x580020ba00620b0060b70b900705d0020b900620b0060021350020b7006", "0x20b00601b0060160020bd00620b00601700600c0020bb00620b0060ba006", "0xc0060bf00620b0060bb0061330020be00620b00600700612b00218f006", "0x200200200220b00600213900201600620b0060020640020bf0be18f0bd", "0x24001000f00720b00700600200700700200220b00600200600200220b006", "0x601600201c00620b00600f00600c00200220b006002009002015014007", "0x60650c401c00914600206500620b00600900600f0020c400620b006010", "0x24105400620b00701900614b00200220b00600200600201901b01700920b", "0x614a00202a02900720b00605400607b00200220b00600200900211b006", "0x20b00602900601b00200220b00600200900202c00624202b00620b00702a", "0x203002f00720b00602e00601c00202e00620b00602d00601900202d006", "0x720b00603300601c00203300620b00600206500200220b00602f0060c4", "0x605400203500620b00603000605400200220b0060480060c4002039048", "0x20b00711e03500702900203500620b00603500611b00211e00620b006039", "0x3700602b00203700620b00600202a00200220b006002009002002243002", "0x900200224400600202d00210d00620b00612000602c00212000620b006", "0x203c00620b00603a00602e00203a00620b00600202a00200220b006002", "0x612400602c00212400620b00610d00602f00210d00620b00603c00602c", "0x220b00600200900203e00624507d00620b00712400603000212400620b", "0x20b00612a00603900212a00620b00600204800200220b00607d006033002", "0x200900204304100724612b12c00720b00712a01b01700903500212a006", "0x600212000212d00620b00600203700200220b00600211e00200220b006", "0x203c00204700620b00600203a00212e00620b00600210d00204500620b", "0x3e00204d00620b00600207d00213000620b00600212400213100620b006", "0x4e00620b00604b04d13013104712e04512d01412a00204b00620b006002", "0x700612b00212f00620b00612b00601600205300620b00612c00600c002", "0x5800620b00602b00604e00213300620b00604e00604100205600620b006", "0xc01600713b00205100c13204f00c20b00605813305612f05301609d002", "0x20b00600200900213400624713600620b00705100617500200c00620b006", "0x213100200220b00605b00604700213505b00720b0061360060d1002002", "0x220b00613700605100205f13700720b00613500613200205d00620b006", "0x5f00609900206700620b00613200601600213900620b00604f00600c002", "0x606913b06713900c17600206900620b00605d00604e00213b00620b006", "0x600200900206c00624806a00620b00706400607100206413806100920b", "0x13200200220b00606f00603300206f13c00720b00606a00614100200220b", "0x20b00607100605300200220b00613f00605100207113f00720b00613c006", "0xc00207500620b00614500605600214500620b00614100612f002141006", "0x20b00600c00612b00207700620b00613800601600207600620b006061006", "0x600200900214607907707600c00614600620b006075006133002079006", "0x1600207b00620b00606100600c00214b00620b00606c00605800200220b", "0x20b00614b00613300207f00620b00600c00612b00214a00620b006138006", "0x20b00613400605800200220b0060020090020c707f14a07b00c0060c7006", "0x12b00214e00620b00613200601600215200620b00604f00600c002151006", "0x8314f14e15200c00608300620b00615100613300214f00620b00600c006", "0x200220b00601600614500200220b00600211e00200220b006002009002", "0x15000620b00600213400208500620b00600213100200220b00602b006051", "0x213500215e00620b00615008500705b00215000620b00615000604b002", "0x620b00616000605800216000620b00615e16100705d00216100620b006", "0x612b00216300620b00604300601600215d00620b00604100600c00215f", "0x216215c16315d00c00616200620b00615f00613300215c00620b006007", "0x14500200220b00603e00603300200220b00600211e00200220b006002009", "0x15700620b00600700612b00200220b00602b00605100200220b006016006", "0x600213100200220b00615400603300215408700720b006157006137002", "0x5b00215b00620b00615b00604b00215b00620b00600205f00208a00620b", "0x616e16800705d00216800620b00600213500216e00620b00615b08a007", "0x216b00620b00601700600c00208e00620b0060ed0060580020ed00620b", "0x608e00613300216c00620b00608700612b0020d000620b00601b006016", "0x20b00600211e00200220b00600200900209216c0d016b00c00609200620b", "0x602900606100200220b00601600614500200220b00602c006033002002", "0x17100604b00217100620b00600213800216d00620b00600213100200220b", "0x17300620b00600213500209400620b00617116d00705b00217100620b006", "0x600c00217500620b00609600605800209600620b00609417300705d002", "0x620b00600700612b00209900620b00601b0060160020d100620b006017", "0x20b00600200900209b1760990d100c00609b00620b006175006133002176", "0x20b00611b00605800200220b00601600614500200220b00600211e002002", "0x12b00217c00620b00601b00601600209d00620b00601700600c00217a006", "0xa00cc17c09d00c0060a000620b00617a0061330020cc00620b006007006", "0x200220b00601600614500200220b00600211e00200220b006002009002", "0xa200620b00600213400217d00620b00600213100200220b006009006061", "0x213500217e00620b0060a217d00705b0020a200620b0060a200604b002", "0x620b00617f00605800217f00620b00617e0a400705d0020a400620b006", "0x612b0020a800620b0060150060160020d200620b00601400600c0020cd", "0x20ce1800a80d200c0060ce00620b0060cd00613300218000620b006007", "0x1600720b00700700200700700200220b00600200600200220b006002002", "0x201b00620b00600c00600f00200220b00600200900201401000724900f", "0x1700607700201600620b00601600600c00201701500720b00601b006076", "0x620b00601500601b00200220b00600200900201c00624a01900620b007", "0xc400211b05400720b00606500601c00206500620b0060c40060190020c4", "0x2a00720b00602900601c00202900620b00600206500200220b006054006", "0x2b00605400202c00620b00611b00605400200220b00602a0060c400202b", "0x220b00702d02c00702900202c00620b00602c00611b00202d00620b006", "0x602e00602b00202e00620b00600202a00200220b00600200900200224b", "0x200900200224c00600202d00203000620b00602f00602c00202f00620b", "0x2c00204800620b00603300602e00203300620b00600202a00200220b006", "0x20b00603900602c00203900620b00603000602f00203000620b006048006", "0x200220b00600200900211e00624d03500620b007039006030002039006", "0x620b00603700603900203700620b00600204800200220b006035006033", "0x600200900203c03a00724e10d12000720b00703700f016009035002037", "0x20b00600212000212400620b00600203700200220b00600211e00200220b", "0x600203c00212a00620b00600203a00203e00620b00600210d00207d006", "0x203e00204100620b00600207d00212b00620b00600212400212c00620b", "0x212d00620b00604304112b12c12a03e07d12401412a00204300620b006", "0x612000600c00200220b00604500604700212e04500720b00612d00607f", "0x213200620b00610d00601600204f00620b00600600612c00204e00620b", "0x601900604b00205300620b00612e00604100205100620b00600900612b", "0x4b04d13013104701620b00612f05305113204f04e00f17c00212f00620b", "0x615200200220b00600200900213300624f05600620b00704b006151002", "0x13400720b00605800613000213600620b00600213100205800620b006056", "0x13600604e00213700620b00605b00604b00200220b00613400604d00205b", "0x20b00605d00603300205d13500720b00605f13700704f00205f00620b006", "0x605300200220b00606100605100213806100720b006135006132002002", "0x620b00613900605600213900620b00606400612f00206400620b006138", "0x601600206900620b00613100612c00213b00620b00604700600c002067", "0x620b00606700613300206c00620b00604d00612b00206a00620b006130", "0x20b00613300605800200220b00600200900213c06c06a06913b01600613c", "0x1600207100620b00613100612c00213f00620b00604700600c00206f006", "0x20b00606f00613300214500620b00604d00612b00214100620b006130006", "0x20b00600211e00200220b00600200900207514514107113f016006075006", "0x20b00600213400207600620b00600213100200220b00601900604d002002", "0x207900620b00607707600705b00207700620b00607700604b002077006", "0x614b00605800214b00620b00607914600705d00214600620b006002135", "0x207f00620b00600600612c00214a00620b00603a00600c00207b00620b", "0x607b00613300215100620b00600900612b0020c700620b00603c006016", "0x600211e00200220b0060020090021521510c707f14a01600615200620b", "0x900612b00200220b00601900604d00200220b00611e00603300200220b", "0x220b00614f00603300214f14e00720b00608300613700208300620b006", "0x20b00615000604b00215000620b00600205f00208500620b006002131002", "0x5d00216100620b00600213500215e00620b00615008500705b002150006", "0x601600600c00215f00620b00616000605800216000620b00615e161007", "0x215c00620b00600f00601600216300620b00600600612c00215d00620b", "0x15c16315d01600608700620b00615f00613300216200620b00614e00612b", "0x20b00601c00603300200220b00600211e00200220b006002009002087162", "0x20b00600213800215400620b00600213100200220b006015006061002002", "0x208a00620b00615715400705b00215700620b00615700604b002157006", "0x616e00605800216e00620b00608a15b00705d00215b00620b006002135", "0x208e00620b00600600612c0020ed00620b00601600600c00216800620b", "0x61680061330020d000620b00600900612b00216b00620b00600f006016", "0x600211e00200220b00600200900216c0d016b08e0ed01600616c00620b", "0x600213400209200620b00600213100200220b00600c00606100200220b", "0x17100620b00616d09200705b00216d00620b00616d00604b00216d00620b", "0x17300605800217300620b00617109400705d00209400620b006002135002", "0xd100620b00600600612c00217500620b00601000600c00209600620b006", "0x9600613300217600620b00600900612b00209900620b006014006016002", "0x200600200220b00600200200209b1760990d117501600609b00620b006", "0x200900201401000725000f01600720b00700700200700700200220b006", "0x1701500720b00601b00607600201b00620b00600c00600f00200220b006", "0x201c00625101900620b00701700607700201600620b00601600600c002", "0x720b00605400607600205400620b00601500600f00200220b006002009", "0x200220b00600200900202900625211b00620b0070650060770020650c4", "0x2b00607700202b02a00720b00602c00607600202c00620b0060c400600f", "0x620b00602a00600f00200220b00600200900202e00625302d00620b007", "0x625404800620b00703000607700203002f00720b006033006076002033", "0x603500601900203500620b00602f00601b00200220b006002009002039", "0x200220b0060370060c400212003700720b00611e00601c00211e00620b", "0x603a0060c400203c03a00720b00610d00601c00210d00620b006002065", "0x11b00207d00620b00603c00605400212400620b00612000605400200220b", "0x600200900200225500220b00707d12400702900212400620b006124006", "0x602c00212a00620b00603e00602b00203e00620b00600202a00200220b", "0x202a00200220b00600200900200225600600202d00212c00620b00612a", "0x12c00620b00604100602c00204100620b00612b00602e00212b00620b006", "0x4300603000204300620b00604300602c00204300620b00612c00602f002", "0x220b00612d00603300200220b00600200900204500625712d00620b007", "0xf01600903500212e00620b00612e00603900212e00620b006002048002", "0x600211e00200220b00600200900204d13000725813104700720b00712e", "0x600210d00204e00620b00600212000204b00620b00600203700200220b", "0x212400205100620b00600203c00213200620b00600203a00204f00620b", "0x12a00205600620b00600203e00212f00620b00600207d00205300620b006", "0x720b00613300607f00213300620b00605612f05305113204f04e04b014", "0x612c00205f00620b00604700600c00200220b006058006047002136058", "0x620b00600900612b00213800620b00613100601600206100620b006006", "0x604b00206700620b00601900604b00213900620b006136006041002064", "0x620b00604800604b00206900620b00602d00604b00213b00620b00611b", "0x5d13505b13401620b00606a06913b06713906413806105f0150cc00206a", "0x15200200220b00600200900213c00625906c00620b007137006151002137", "0x720b00606f00613000213f00620b00600213100206f00620b00606c006", "0x604e00207600620b00614100604b00200220b00607100604d002141071", "0x607500603300207514500720b00607707600704f00207700620b00613f", "0x5300200220b00607900605100214607900720b00614500613200200220b", "0x20b00607b00605600207b00620b00614b00612f00214b00620b006146006", "0x160020c700620b00605b00612c00207f00620b00613400600c00214a006", "0x20b00614a00613300215200620b00605d00612b00215100620b006135006", "0x613c00605800200220b00600200900214e1521510c707f01600614e006", "0x208500620b00605b00612c00208300620b00613400600c00214f00620b", "0x614f00613300215e00620b00605d00612b00215000620b006135006016", "0x600211e00200220b00600200900216115e15008508301600616100620b", "0x11b00604d00200220b00602d00604d00200220b00604800604d00200220b", "0x213400216000620b00600213100200220b00601900604d00200220b006", "0x620b00615f16000705b00215f00620b00615f00604b00215f00620b006", "0x605800215c00620b00615d16300705d00216300620b00600213500215d", "0x620b00600600612c00208700620b00613000600c00216200620b00615c", "0x613300208a00620b00600900612b00215700620b00604d006016002154", "0x11e00200220b00600200900215b08a15715408701600615b00620b006162", "0x4d00200220b00604800604d00200220b00604500603300200220b006002", "0x200220b00601900604d00200220b00611b00604d00200220b00602d006", "0x16800603300216816e00720b0060ed0061370020ed00620b00600900612b", "0x604b00216b00620b00600205f00208e00620b00600213100200220b006", "0x620b0060021350020d000620b00616b08e00705b00216b00620b00616b", "0xc00216d00620b00609200605800209200620b0060d016c00705d00216c", "0x20b00600f00601600209400620b00600600612c00217100620b006016006", "0x1600617500620b00616d00613300209600620b00616e00612b002173006", "0x603300200220b00600211e00200220b006002009002175096173094171", "0x4d00200220b00602d00604d00200220b00602f00606100200220b006039", "0x20d100620b00600213100200220b00601900604d00200220b00611b006", "0x60990d100705b00209900620b00609900604b00209900620b006002138", "0x217a00620b00617609b00705d00209b00620b00600213500217600620b", "0x600600612c00217c00620b00601600600c00209d00620b00617a006058", "0x217d00620b00600900612b0020a000620b00600f0060160020cc00620b", "0x220b0060020090020a217d0a00cc17c0160060a200620b00609d006133", "0x220b00602a00606100200220b00602e00603300200220b00600211e002", "0x620b00600213100200220b00601900604d00200220b00611b00604d002", "0x17e00705b0020a400620b0060a400604b0020a400620b00600213800217e", "0x620b00617f0cd00705d0020cd00620b00600213500217f00620b0060a4", "0x612c00218000620b00601600600c0020a800620b0060d20060580020d2", "0x620b00600900612b0020ab00620b00600f0060160020ce00620b006006", "0x60020090020cf1810ab0ce1800160060cf00620b0060a8006133002181", "0x60c400606100200220b00602900603300200220b00600211e00200220b", "0x60021380020c800620b00600213100200220b00601900604d00200220b", "0xca00620b0060c90c800705b0020c900620b0060c900604b0020c900620b", "0xc60060580020c600620b0060ca0cb00705d0020cb00620b006002135002", "0x18e00620b00600600612c0020b500620b00601600600c0020b300620b006", "0xb30061330020b900620b00600900612b0020b700620b00600f006016002", "0x211e00200220b0060020090020ba0b90b718e0b50160060ba00620b006", "0x213100200220b00601500606100200220b00601c00603300200220b006", "0x20bd00620b0060bd00604b0020bd00620b0060021380020bb00620b006", "0x18f0be00705d0020be00620b00600213500218f00620b0060bd0bb00705b", "0x19000620b00601600600c0020c100620b0060bf0060580020bf00620b006", "0x900612b00219b00620b00600f0060160020c300620b00600600612c002", "0x20d419c19b0c31900160060d400620b0060c100613300219c00620b006", "0x13100200220b00600c00606100200220b00600211e00200220b006002009", "0x1a000620b0061a000604b0021a000620b00600213400219d00620b006002", "0x19f00705d00219f00620b0060021350020d600620b0061a019d00705b002", "0x620b00601000600c0020d900620b0060d70060580020d700620b0060d6", "0x612b0021a300620b0060140060160020db00620b00600600612c0021a1", "0x1a51a41a30db1a10160061a500620b0060d90061330021a400620b006009", "0x720b00700900600700700200220b00600200600200220b006002002002", "0x1900620b00601600600f00200220b00600200900201501400725a01000f", "0x607700200f00620b00600f00600c00201b01700720b006019006076002", "0x20b00601700600f00200220b0060020090020c400625b01c00620b00701b", "0x25c02900620b00705400607700205406500720b00611b00607600211b006", "0x2d00607600202d00620b00606500600f00200220b00600200900202a006", "0x600200900202f00625d02e00620b00702c00607700202c02b00720b006", "0x1c00203300620b00603000601900203000620b00602b00601b00200220b", "0x620b00600206500200220b0060480060c400203904800720b006033006", "0x605400200220b00611e0060c400203711e00720b00603500601c002035", "0x620b00612000611b00210d00620b00603700605400212000620b006039", "0x202a00200220b00600200900200225e00220b00710d120007029002120", "0x12400620b00603c00602c00203c00620b00603a00602b00203a00620b006", "0x207d00620b00600202a00200220b00600200900200225f00600202d002", "0x612400602f00212400620b00603e00602c00203e00620b00607d00602e", "0x26012c00620b00712a00603000212a00620b00612a00602c00212a00620b", "0x20b00600204800200220b00612c00603300200220b00600200900212b006", "0x4300720b00704101000f00903500204100620b006041006039002041006", "0x203700200220b00600211e00200220b00600200900212e04500726112d", "0x3a00213000620b00600210d00213100620b00600212000204700620b006", "0x204e00620b00600212400204b00620b00600203c00204d00620b006002", "0x4d13013104701412a00213200620b00600203e00204f00620b00600207d", "0x700612c00213400620b00604300600c00205100620b00613204f04e04b", "0x5d00620b00600200615d00213500620b00612d00601600205b00620b006", "0x1c00604b00205f00620b00605100604100213700620b00600c00612b002", "0x6400620b00602e00604b00213800620b00602900604b00206100620b006", "0x5813305612f05300f20b00606413806105f13705d13505b1340150a0002", "0xa200200220b00600200900206700626213900620b00713600617d002136", "0x6900720b00613b00613200213b00620b00600213100200220b006139006", "0x6c00612f00206c00620b00606a00605300200220b00606900605100206a", "0x13f00620b00613300615d00206f00620b00613c00605600213c00620b006", "0x5600601600214100620b00612f00612c00207100620b00605300600c002", "0x7600620b00606f00613300207500620b00605800612b00214500620b006", "0x20b00606700605800200220b00600200900207607514514107113f00f006", "0x12c00214600620b00605300600c00207900620b00613300615d002077006", "0x20b00605800612b00207b00620b00605600601600214b00620b00612f006", "0x900207f14a07b14b14607900f00607f00620b00607700613300214a006", "0x604d00200220b00602e00604d00200220b00600211e00200220b006002", "0x1340020c700620b00600213100200220b00601c00604d00200220b006029", "0x20b0061510c700705b00215100620b00615100604b00215100620b006002", "0x5800214f00620b00615214e00705d00214e00620b006002135002152006", "0x20b00604500600c00208500620b00600200615d00208300620b00614f006", "0x12b00216100620b00612e00601600215e00620b00600700612c002150006", "0x16115e15008500f00615f00620b00608300613300216000620b00600c006", "0x20b00612b00603300200220b00600211e00200220b00600200900215f160", "0x601c00604d00200220b00602900604d00200220b00602e00604d002002", "0x216315d00720b00615c00613700215c00620b00600c00612b00200220b", "0x8700620b00600205f00216200620b00600213100200220b006163006033", "0x213500215400620b00608716200705b00208700620b00608700604b002", "0x620b00608a00605800208a00620b00615415700705d00215700620b006", "0x612c00216800620b00600f00600c00216e00620b00600200615d00215b", "0x620b00615d00612b00208e00620b0060100060160020ed00620b006007", "0x20090020d016b08e0ed16816e00f0060d000620b00615b00613300216b", "0x2b00606100200220b00602f00603300200220b00600211e00200220b006", "0x213100200220b00601c00604d00200220b00602900604d00200220b006", "0x209200620b00609200604b00209200620b00600213800216c00620b006", "0x16d17100705d00217100620b00600213500216d00620b00609216c00705b", "0x9600620b00600200615d00217300620b00609400605800209400620b006", "0x100060160020d100620b00600700612c00217500620b00600f00600c002", "0x9b00620b00617300613300217600620b00600c00612b00209900620b006", "0x220b00600211e00200220b00600200900209b1760990d117509600f006", "0x20b00601c00604d00200220b00606500606100200220b00602a006033002", "0x609d00604b00209d00620b00600213800217a00620b006002131002002", "0x20cc00620b00600213500217c00620b00609d17a00705b00209d00620b", "0x200615d00217d00620b0060a00060580020a000620b00617c0cc00705d", "0xa400620b00600700612c00217e00620b00600f00600c0020a200620b006", "0x17d0061330020cd00620b00600c00612b00217f00620b006010006016002", "0x11e00200220b0060020090020d20cd17f0a417e0a200f0060d200620b006", "0x13100200220b00601700606100200220b0060c400603300200220b006002", "0x18000620b00618000604b00218000620b0060021380020a800620b006002", "0xab00705d0020ab00620b0060021350020ce00620b0061800a800705b002", "0x620b00600200615d0020cf00620b00618100605800218100620b0060ce", "0x60160020ca00620b00600700612c0020c900620b00600f00600c0020c8", "0x620b0060cf0061330020c600620b00600c00612b0020cb00620b006010", "0x20b00600211e00200220b0060020090020b30c60cb0ca0c90c800f0060b3", "0x20b0060021340020b500620b00600213100200220b006016006061002002", "0x20b700620b00618e0b500705b00218e00620b00618e00604b00218e006", "0x60ba0060580020ba00620b0060b70b900705d0020b900620b006002135", "0x218f00620b00601400600c0020bd00620b00600200615d0020bb00620b", "0x600c00612b0020bf00620b0060150060160020be00620b00600700612c", "0x21900c10bf0be18f0bd00f00619000620b0060bb0061330020c100620b", "0xc00720b00700600200700700200220b00600200600200220b006002002", "0x201700620b00600900600f00200220b00600200900201000f007263016", "0x1500607700200c00620b00600c00600c00201501400720b006017006076", "0x620b00601400601b00200220b00600200900201900626401b00620b007", "0xc400205406500720b0060c400601c0020c400620b00601c00601900201c", "0x2900720b00611b00601c00211b00620b00600206500200220b006065006", "0x2a00605400202b00620b00605400605400200220b0060290060c400202a", "0x220b00702c02b00702900202b00620b00602b00611b00202c00620b006", "0x602d00602b00202d00620b00600202a00200220b006002009002002265", "0x200900200226600600202d00202f00620b00602e00602c00202e00620b", "0x2c00203300620b00603000602e00203000620b00600202a00200220b006", "0x20b00604800602c00204800620b00602f00602f00202f00620b006033006", "0x200220b00600200900203500626703900620b007048006030002048006", "0x620b00611e00603900211e00620b00600204800200220b006039006033", "0x600200900203a10d00726812003700720b00711e01600c00903500211e", "0x20b00600212000203c00620b00600203700200220b00600211e00200220b", "0x600203c00203e00620b00600203a00207d00620b00600210d002124006", "0x203e00212b00620b00600207d00212c00620b00600212400212a00620b", "0x204300620b00604112b12c12a03e07d12403c01412a00204100620b006", "0x600700612b00213000620b00612000601600213100620b00603700600c", "0x204e00620b00601b00604b00204b00620b00604300604100204d00620b", "0x20b00704700617d00204712e04512d00c20b00604e04b04d13013101617e", "0x13100200220b00604f0060a200200220b00600200900213200626904f006", "0x20b00605300605100212f05300720b00605100613200205100620b006002", "0x605600213300620b00605600612f00205600620b00612f006053002002", "0x620b00604500601600213600620b00612d00600c00205800620b006133", "0x13600c00613500620b00605800613300205b00620b00612e00612b002134", "0x600c00205d00620b00613200605800200220b00600200900213505b134", "0x620b00612e00612b00205f00620b00604500601600213700620b00612d", "0x20b00600200900213806105f13700c00613800620b00605d006133002061", "0x620b00600213100200220b00601b00604d00200220b00600211e002002", "0x6400705b00213900620b00613900604b00213900620b006002134002064", "0x620b00606713b00705d00213b00620b00600213500206700620b006139", "0x601600206c00620b00610d00600c00206a00620b006069006058002069", "0x620b00606a00613300206f00620b00600700612b00213c00620b00603a", "0x200220b00600211e00200220b00600200900213f06f13c06c00c00613f", "0x620b00600700612b00200220b00601b00604d00200220b006035006033", "0x213100200220b00614100603300214107100720b006145006137002145", "0x207600620b00607600604b00207600620b00600205f00207500620b006", "0x7707900705d00207900620b00600213500207700620b00607607500705b", "0x7b00620b00600c00600c00214b00620b00614600605800214600620b006", "0x14b00613300207f00620b00607100612b00214a00620b006016006016002", "0x600211e00200220b0060020090020c707f14a07b00c0060c700620b006", "0x600213100200220b00601400606100200220b00601900603300200220b", "0x5b00215200620b00615200604b00215200620b00600213800215100620b", "0x614e14f00705d00214f00620b00600213500214e00620b006152151007", "0x215000620b00600c00600c00208500620b00608300605800208300620b", "0x608500613300216100620b00600700612b00215e00620b006016006016", "0x20b00600211e00200220b00600200900216016115e15000c00616000620b", "0x20b00600213400215f00620b00600213100200220b006009006061002002", "0x216300620b00615d15f00705b00215d00620b00615d00604b00215d006", "0x616200605800216200620b00616315c00705d00215c00620b006002135", "0x215700620b00601000601600215400620b00600f00600c00208700620b", "0x8a15715400c00615b00620b00608700613300208a00620b00600700612b", "0x20b00700600200700700200220b00600200600200220b00600200200215b", "0x620b00600900600f00200220b00600200900201000f00726a01600c007", "0x7700200c00620b00600c00600c00201501400720b006017006076002017", "0x601400601b00200220b00600200900201900626b01b00620b007015006", "0x5406500720b0060c400601c0020c400620b00601c00601900201c00620b", "0x20b00611b00601c00211b00620b00600206500200220b0060650060c4002", "0x5400202b00620b00605400605400200220b0060290060c400202a029007", "0x702c02b00702900202b00620b00602b00611b00202c00620b00602a006", "0x602b00202d00620b00600202a00200220b00600200900200226c00220b", "0x200226d00600202d00202f00620b00602e00602c00202e00620b00602d", "0x3300620b00603000602e00203000620b00600202a00200220b006002009", "0x4800602c00204800620b00602f00602f00202f00620b00603300602c002", "0x20b00600200900203500626e03900620b00704800603000204800620b006", "0x611e00603900211e00620b00600204800200220b006039006033002002", "0x900203a10d00726f12003700720b00711e01600c00903500211e00620b", "0x212000203c00620b00600203700200220b00600211e00200220b006002", "0x3c00203e00620b00600203a00207d00620b00600210d00212400620b006", "0x212b00620b00600207d00212c00620b00600212400212a00620b006002", "0x620b00604112b12c12a03e07d12403c01412a00204100620b00600203e", "0x612b00213000620b00612000601600213100620b00603700600c002043", "0x620b00601b00604b00204b00620b00604300604100204d00620b006007", "0x4700617d00204712e04512d00c20b00604e04b04d1301310160a400204e", "0x220b00604f0060a200200220b00600200900213200627004f00620b007", "0x5300605100212f05300720b00605100613200205100620b006002131002", "0x213300620b00605600612f00205600620b00612f00605300200220b006", "0x604500601600213600620b00612d00600c00205800620b006133006056", "0x613500620b00605800613300205b00620b00612e00612b00213400620b", "0x205d00620b00613200605800200220b00600200900213505b13413600c", "0x612e00612b00205f00620b00604500601600213700620b00612d00600c", "0x200900213806105f13700c00613800620b00605d00613300206100620b", "0x600213100200220b00601b00604d00200220b00600211e00200220b006", "0x5b00213900620b00613900604b00213900620b00600213400206400620b", "0x606713b00705d00213b00620b00600213500206700620b006139064007", "0x206c00620b00610d00600c00206a00620b00606900605800206900620b", "0x606a00613300206f00620b00600700612b00213c00620b00603a006016", "0x20b00600211e00200220b00600200900213f06f13c06c00c00613f00620b", "0x600700612b00200220b00601b00604d00200220b006035006033002002", "0x200220b00614100603300214107100720b00614500613700214500620b", "0x620b00607600604b00207600620b00600205f00207500620b006002131", "0x705d00207900620b00600213500207700620b00607607500705b002076", "0x20b00600c00600c00214b00620b00614600605800214600620b006077079", "0x13300207f00620b00607100612b00214a00620b00601600601600207b006", "0x11e00200220b0060020090020c707f14a07b00c0060c700620b00614b006", "0x13100200220b00601400606100200220b00601900603300200220b006002", "0x15200620b00615200604b00215200620b00600213800215100620b006002", "0x14f00705d00214f00620b00600213500214e00620b00615215100705b002", "0x620b00600c00600c00208500620b00608300605800208300620b00614e", "0x613300216100620b00600700612b00215e00620b006016006016002150", "0x211e00200220b00600200900216016115e15000c00616000620b006085", "0x213400215f00620b00600213100200220b00600900606100200220b006", "0x620b00615d15f00705b00215d00620b00615d00604b00215d00620b006", "0x605800216200620b00616315c00705d00215c00620b006002135002163", "0x620b00601000601600215400620b00600f00600c00208700620b006162", "0x15400c00615b00620b00608700613300208a00620b00600700612b002157", "0x600200700700200220b00600200600200220b00600200200215b08a157", "0x600900600f00200220b00600200900201000f00727101600c00720b007", "0xc00620b00600c00600c00201501400720b00601700607600201700620b", "0x601b00200220b00600200900201900627201b00620b007015006077002", "0x720b0060c400601c0020c400620b00601c00601900201c00620b006014", "0x11b00601c00211b00620b00600206500200220b0060650060c4002054065", "0x2b00620b00605400605400200220b0060290060c400202a02900720b006", "0x2b00702900202b00620b00602b00611b00202c00620b00602a006054002", "0x202d00620b00600202a00200220b00600200900200227300220b00702c", "0x27400600202d00202f00620b00602e00602c00202e00620b00602d00602b", "0x20b00603000602e00203000620b00600202a00200220b006002009002002", "0x2c00204800620b00602f00602f00202f00620b00603300602c002033006", "0x200900203500627503900620b00704800603000204800620b006048006", "0x603900211e00620b00600204800200220b00603900603300200220b006", "0x3a10d00727612003700720b00711e01600c00903500211e00620b00611e", "0x203c00620b00600203700200220b00600211e00200220b006002009002", "0x3e00620b00600203a00207d00620b00600210d00212400620b006002120", "0x620b00600207d00212c00620b00600212400212a00620b00600203c002", "0x604112b12c12a03e07d12403c01412a00204100620b00600203e00212b", "0x213000620b00612000601600213100620b00603700600c00204300620b", "0x601b00604b00204b00620b00604300604100204d00620b00600700612b", "0x17d00204712e04512d00c20b00604e04b04d13013101617f00204e00620b", "0x604f0060a200200220b00600200900213200627704f00620b007047006", "0x5100212f05300720b00605100613200205100620b00600213100200220b", "0x620b00605600612f00205600620b00612f00605300200220b006053006", "0x601600213600620b00612d00600c00205800620b006133006056002133", "0x620b00605800613300205b00620b00612e00612b00213400620b006045", "0x620b00613200605800200220b00600200900213505b13413600c006135", "0x612b00205f00620b00604500601600213700620b00612d00600c00205d", "0x213806105f13700c00613800620b00605d00613300206100620b00612e", "0x13100200220b00601b00604d00200220b00600211e00200220b006002009", "0x13900620b00613900604b00213900620b00600213400206400620b006002", "0x13b00705d00213b00620b00600213500206700620b00613906400705b002", "0x620b00610d00600c00206a00620b00606900605800206900620b006067", "0x613300206f00620b00600700612b00213c00620b00603a00601600206c", "0x211e00200220b00600200900213f06f13c06c00c00613f00620b00606a", "0x612b00200220b00601b00604d00200220b00603500603300200220b006", "0x20b00614100603300214107100720b00614500613700214500620b006007", "0x607600604b00207600620b00600205f00207500620b006002131002002", "0x207900620b00600213500207700620b00607607500705b00207600620b", "0xc00600c00214b00620b00614600605800214600620b00607707900705d", "0x7f00620b00607100612b00214a00620b00601600601600207b00620b006", "0x220b0060020090020c707f14a07b00c0060c700620b00614b006133002", "0x220b00601400606100200220b00601900603300200220b00600211e002", "0x20b00615200604b00215200620b00600213800215100620b006002131002", "0x5d00214f00620b00600213500214e00620b00615215100705b002152006", "0x600c00600c00208500620b00608300605800208300620b00614e14f007", "0x216100620b00600700612b00215e00620b00601600601600215000620b", "0x200220b00600200900216016115e15000c00616000620b006085006133", "0x215f00620b00600213100200220b00600900606100200220b00600211e", "0x615d15f00705b00215d00620b00615d00604b00215d00620b006002134", "0x216200620b00616315c00705d00215c00620b00600213500216300620b", "0x601000601600215400620b00600f00600c00208700620b006162006058", "0x615b00620b00608700613300208a00620b00600700612b00215700620b", "0x700700200220b00600200600200220b00600200200215b08a15715400c", "0x600f00200220b00600200900201000f00727801600c00720b007006002", "0x20b00600c00600c00201501400720b00601700607600201700620b006009", "0x200220b00600200900201900627901b00620b00701500607700200c006", "0x60c400601c0020c400620b00601c00601900201c00620b00601400601b", "0x1c00211b00620b00600206500200220b0060650060c400205406500720b", "0x20b00605400605400200220b0060290060c400202a02900720b00611b006", "0x2900202b00620b00602b00611b00202c00620b00602a00605400202b006", "0x620b00600202a00200220b00600200900200227a00220b00702c02b007", "0x202d00202f00620b00602e00602c00202e00620b00602d00602b00202d", "0x3000602e00203000620b00600202a00200220b00600200900200227b006", "0x4800620b00602f00602f00202f00620b00603300602c00203300620b006", "0x203500627c03900620b00704800603000204800620b00604800602c002", "0x211e00620b00600204800200220b00603900603300200220b006002009", "0x727d12003700720b00711e01600c00903500211e00620b00611e006039", "0x620b00600203700200220b00600211e00200220b00600200900203a10d", "0x20b00600203a00207d00620b00600210d00212400620b00600212000203c", "0x600207d00212c00620b00600212400212a00620b00600203c00203e006", "0x12b12c12a03e07d12403c01412a00204100620b00600203e00212b00620b", "0x620b00612000601600213100620b00603700600c00204300620b006041", "0x604b00204b00620b00604300604100204d00620b00600700612b002130", "0x4712e04512d00c20b00604e04b04d1301310160cd00204e00620b00601b", "0x60a200200220b00600200900213200627e04f00620b00704700617d002", "0x12f05300720b00605100613200205100620b00600213100200220b00604f", "0x605600612f00205600620b00612f00605300200220b006053006051002", "0x213600620b00612d00600c00205800620b00613300605600213300620b", "0x605800613300205b00620b00612e00612b00213400620b006045006016", "0x613200605800200220b00600200900213505b13413600c00613500620b", "0x205f00620b00604500601600213700620b00612d00600c00205d00620b", "0x6105f13700c00613800620b00605d00613300206100620b00612e00612b", "0x220b00601b00604d00200220b00600211e00200220b006002009002138", "0x20b00613900604b00213900620b00600213400206400620b006002131002", "0x5d00213b00620b00600213500206700620b00613906400705b002139006", "0x610d00600c00206a00620b00606900605800206900620b00606713b007", "0x206f00620b00600700612b00213c00620b00603a00601600206c00620b", "0x200220b00600200900213f06f13c06c00c00613f00620b00606a006133", "0x200220b00601b00604d00200220b00603500603300200220b00600211e", "0x14100603300214107100720b00614500613700214500620b00600700612b", "0x604b00207600620b00600205f00207500620b00600213100200220b006", "0x620b00600213500207700620b00607607500705b00207600620b006076", "0xc00214b00620b00614600605800214600620b00607707900705d002079", "0x20b00607100612b00214a00620b00601600601600207b00620b00600c006", "0x60020090020c707f14a07b00c0060c700620b00614b00613300207f006", "0x601400606100200220b00601900603300200220b00600211e00200220b", "0x15200604b00215200620b00600213800215100620b00600213100200220b", "0x14f00620b00600213500214e00620b00615215100705b00215200620b006", "0x600c00208500620b00608300605800208300620b00614e14f00705d002", "0x620b00600700612b00215e00620b00601600601600215000620b00600c", "0x20b00600200900216016115e15000c00616000620b006085006133002161", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x15f00705b00215d00620b00615d00604b00215d00620b00600213400215f", "0x620b00616315c00705d00215c00620b00600213500216300620b00615d", "0x601600215400620b00600f00600c00208700620b006162006058002162", "0x620b00608700613300208a00620b00600700612b00215700620b006010", "0x200220b00600200600200220b00600200200215b08a15715400c00615b", "0x200220b00600200900201000f00727f01600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200228000220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200228100600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00628202e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900728304803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", "0x604100204500620b00600700612b00212d00620b006048006016002043", "0x204112b12c12a00c20b00612e04512d04300c0d200212e00620b00603e", "0x470060a200200220b00600200900213100628404700620b00704100617d", "0x204b04d00720b00613000613200213000620b00600213100200220b006", "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", "0x20b00613100605800200220b00600200900205612f05305100c006056006", "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", "0x5d00620b00600213400213500620b00600213100200220b006002009002", "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", "0x620b00606100605800206100620b00613705f00705d00205f00620b006", "0x612b00213900620b00603500601600206400620b00603900600c002138", "0x213b06713906400c00613b00620b00613800613300206700620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x606a00603300206a06900720b00606c00613700206c00620b006007006", "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", "0x600c00214500620b00614100605800214100620b00613f07100705d002", "0x620b00606900612b00207600620b00601600601600207500620b00600c", "0x20b00600200900207907707607500c00607900620b006145006133002077", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", "0x620b0060c700613300214e00620b00600700612b00215200620b006010", "0x200220b00600200600200220b00600200200214f14e15215100c00614f", "0x200220b00600200900201000f00728501600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200228600220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200228700600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00628802e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900728904803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", "0x604100204500620b00600700612b00212d00620b006048006016002043", "0x204112b12c12a00c20b00612e04512d04300c0a800212e00620b00603e", "0x470060a200200220b00600200900213100628a04700620b00704100617d", "0x204b04d00720b00613000613200213000620b00600213100200220b006", "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", "0x20b00613100605800200220b00600200900205612f05305100c006056006", "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", "0x5d00620b00600213400213500620b00600213100200220b006002009002", "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", "0x620b00606100605800206100620b00613705f00705d00205f00620b006", "0x612b00213900620b00603500601600206400620b00603900600c002138", "0x213b06713906400c00613b00620b00613800613300206700620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x606a00603300206a06900720b00606c00613700206c00620b006007006", "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", "0x600c00214500620b00614100605800214100620b00613f07100705d002", "0x620b00606900612b00207600620b00601600601600207500620b00600c", "0x20b00600200900207907707607500c00607900620b006145006133002077", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", "0x620b0060c700613300214e00620b00600700612b00215200620b006010", "0x200220b00600200600200220b00600200200214f14e15215100c00614f", "0x200220b00600200900201000f00728b01600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200228c00220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200228d00600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00628e02e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900728f04803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", "0x604100204500620b00600700612b00212d00620b006048006016002043", "0x204112b12c12a00c20b00612e04512d04300c18000212e00620b00603e", "0x470060a200200220b00600200900213100629004700620b00704100617d", "0x204b04d00720b00613000613200213000620b00600213100200220b006", "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", "0x20b00613100605800200220b00600200900205612f05305100c006056006", "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", "0x5d00620b00600213400213500620b00600213100200220b006002009002", "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", "0x620b00606100605800206100620b00613705f00705d00205f00620b006", "0x612b00213900620b00603500601600206400620b00603900600c002138", "0x213b06713906400c00613b00620b00613800613300206700620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x606a00603300206a06900720b00606c00613700206c00620b006007006", "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", "0x600c00214500620b00614100605800214100620b00613f07100705d002", "0x620b00606900612b00207600620b00601600601600207500620b00600c", "0x20b00600200900207907707607500c00607900620b006145006133002077", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", "0x620b0060c700613300214e00620b00600700612b00215200620b006010", "0x200220b00600200600200220b00600200200214f14e15215100c00614f", "0x200220b00600200900201000f00729101600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x600200900200229200220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b00600200900200229300600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f00629402e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x600200900203503900729504803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x720b00603e00607f00203e00620b00607d12403c03a10d12003711e014", "0x612b00212d00620b00604800601600200220b00612a00604700212c12a", "0x612e04512d0090ce00212e00620b00612c00604100204500620b006007", "0x620b00704300615100203300620b00603300600c00204304112b00920b", "0x13100213000620b00604700615200200220b006002009002131006296047", "0x20b00604b00604d00204e04b00720b00613000613000204d00620b006002", "0x704f00205300620b00604d00604e00205100620b00604e00604b002002", "0x20b00604f00613200200220b00613200603300213204f00720b006053051", "0x12f00213300620b00605600605300200220b00612f00605100205612f007", "0x20b00603300600c00213600620b00605800605600205800620b006133006", "0x13300213500620b00604100612b00205b00620b00612b006016002134006", "0x5800200220b00600200900205d13505b13400c00605d00620b006136006", "0x20b00612b00601600205f00620b00603300600c00213700620b006131006", "0xc00606400620b00613700613300213800620b00604100612b002061006", "0x213400213900620b00600213100200220b00600200900206413806105f", "0x620b00606713900705b00206700620b00606700604b00206700620b006", "0x605800206a00620b00613b06900705d00206900620b00600213500213b", "0x620b00603500601600213c00620b00603900600c00206c00620b00606a", "0x13c00c00607100620b00606c00613300213f00620b00600700612b00206f", "0x602f00603300200220b00600211e00200220b00600200900207113f06f", "0x214514100720b00607500613700207500620b00600700612b00200220b", "0x7700620b00600205f00207600620b00600213100200220b006145006033", "0x213500207900620b00607707600705b00207700620b00607700604b002", "0x620b00614b00605800214b00620b00607914600705d00214600620b006", "0x612b00207f00620b00601600601600214a00620b00600c00600c00207b", "0x21510c707f14a00c00615100620b00607b0061330020c700620b006141", "0x13100200220b00600900606100200220b00600211e00200220b006002009", "0x14e00620b00614e00604b00214e00620b00600213400215200620b006002", "0x8300705d00208300620b00600213500214f00620b00614e15200705b002", "0x620b00600f00600c00215000620b00608500605800208500620b00614f", "0x613300216000620b00600700612b00216100620b00601000601600215e", "0x200600200220b00600200200215f16016115e00c00615f00620b006150", "0x200900201000f00729701600c00720b00700600200700700200220b006", "0x201500620b00601400601900201400620b00600900601b00200220b006", "0x20b00600206500200220b0060170060c400201b01700720b00601500601c", "0x5400200220b00601c0060c40020c401c00720b00601900601c002019006", "0x20b00606500611b00205400620b0060c400605400206500620b00601b006", "0x229800220b00705406500702900200c00620b00600c00600c002065006", "0x620b00611b00602b00211b00620b00600202a00200220b006002009002", "0x20b00600200900200229900600202d00202a00620b00602900602c002029", "0x2c00602c00202c00620b00602b00602e00202b00620b00600202a002002", "0x2d00620b00602d00602c00202d00620b00602a00602f00202a00620b006", "0x211e00200220b00600200900202f00629a02e00620b00702d006030002", "0x603900203000620b00600204800200220b00602e00603300200220b006", "0x3503900729b04803300720b00703001600c00903500203000620b006030", "0x3700620b00600212000211e00620b00600203700200220b006002009002", "0x620b00600203c00210d00620b00600203a00212000620b00600210d002", "0x20b00600203e00212400620b00600207d00203c00620b00600212400203a", "0x607f00203e00620b00607d12403c03a10d12003711e01412a00207d006", "0x620b00604800601600200220b00612a00604700212c12a00720b00603e", "0x90ab00212e00620b00612c00604100204500620b00600700612b00212d", "0x615100203300620b00603300600c00204304112b00920b00612e04512d", "0x20b00604700615200200220b00600200900213100629c04700620b007043", "0x4d00204e04b00720b00613000613000204d00620b006002131002130006", "0x620b00604d00604e00205100620b00604e00604b00200220b00604b006", "0x13200200220b00613200603300213204f00720b00605305100704f002053", "0x20b00605600605300200220b00612f00605100205612f00720b00604f006", "0xc00213600620b00605800605600205800620b00613300612f002133006", "0x20b00604100612b00205b00620b00612b00601600213400620b006033006", "0x600200900205d13505b13400c00605d00620b006136006133002135006", "0x1600205f00620b00603300600c00213700620b00613100605800200220b", "0x20b00613700613300213800620b00604100612b00206100620b00612b006", "0x620b00600213100200220b00600200900206413806105f00c006064006", "0x13900705b00206700620b00606700604b00206700620b006002134002139", "0x620b00613b06900705d00206900620b00600213500213b00620b006067", "0x601600213c00620b00603900600c00206c00620b00606a00605800206a", "0x620b00606c00613300213f00620b00600700612b00206f00620b006035", "0x200220b00600211e00200220b00600200900207113f06f13c00c006071", "0x20b00607500613700207500620b00600700612b00200220b00602f006033", "0x205f00207600620b00600213100200220b006145006033002145141007", "0x620b00607707600705b00207700620b00607700604b00207700620b006", "0x605800214b00620b00607914600705d00214600620b006002135002079", "0x620b00601600601600214a00620b00600c00600c00207b00620b00614b", "0x14a00c00615100620b00607b0061330020c700620b00614100612b00207f", "0x600900606100200220b00600211e00200220b0060020090021510c707f", "0x14e00604b00214e00620b00600213400215200620b00600213100200220b", "0x8300620b00600213500214f00620b00614e15200705b00214e00620b006", "0x600c00215000620b00608500605800208500620b00614f08300705d002", "0x620b00600700612b00216100620b00601000601600215e00620b00600f", "0x20b00600200200215f16016115e00c00615f00620b006150006133002160", "0xf00729d01600c00720b00700600200700700200220b006002006002002", "0x601400601900201400620b00600900601b00200220b006002009002010", "0x200220b0060170060c400201b01700720b00601500601c00201500620b", "0x601c0060c40020c401c00720b00601900601c00201900620b006002065", "0x11b00205400620b0060c400605400206500620b00601b00605400200220b", "0x705406500702900200c00620b00600c00600c00206500620b006065006", "0x602b00211b00620b00600202a00200220b00600200900200229e00220b", "0x200229f00600202d00202a00620b00602900602c00202900620b00611b", "0x2c00620b00602b00602e00202b00620b00600202a00200220b006002009", "0x2d00602c00202d00620b00602a00602f00202a00620b00602c00602c002", "0x20b00600200900202f0062a002e00620b00702d00603000202d00620b006", "0x620b00600204800200220b00602e00603300200220b00600211e002002", "0x4803300720b00703001600c00903500203000620b006030006039002030", "0x212000211e00620b00600203700200220b0060020090020350390072a1", "0x3c00210d00620b00600203a00212000620b00600210d00203700620b006", "0x212400620b00600207d00203c00620b00600212400203a00620b006002", "0x620b00607d12403c03a10d12003711e01412a00207d00620b00600203e", "0x601600200220b00612a00604700212c12a00720b00603e00607f00203e", "0x620b00612c00604100204500620b00600700612b00212d00620b006048", "0x620b00603300600c00204304112b00920b00612e04512d00918100212e", "0x15200200220b0060020090021310062a204700620b007043006151002033", "0x720b00613000613000204d00620b00600213100213000620b006047006", "0x604e00205100620b00604e00604b00200220b00604b00604d00204e04b", "0x613200603300213204f00720b00605305100704f00205300620b00604d", "0x5300200220b00612f00605100205612f00720b00604f00613200200220b", "0x20b00605800605600205800620b00613300612f00213300620b006056006", "0x12b00205b00620b00612b00601600213400620b00603300600c002136006", "0x5d13505b13400c00605d00620b00613600613300213500620b006041006", "0x20b00603300600c00213700620b00613100605800200220b006002009002", "0x13300213800620b00604100612b00206100620b00612b00601600205f006", "0x13100200220b00600200900206413806105f00c00606400620b006137006", "0x6700620b00606700604b00206700620b00600213400213900620b006002", "0x6900705d00206900620b00600213500213b00620b00606713900705b002", "0x620b00603900600c00206c00620b00606a00605800206a00620b00613b", "0x613300213f00620b00600700612b00206f00620b00603500601600213c", "0x211e00200220b00600200900207113f06f13c00c00607100620b00606c", "0x13700207500620b00600700612b00200220b00602f00603300200220b006", "0x620b00600213100200220b00614500603300214514100720b006075006", "0x7600705b00207700620b00607700604b00207700620b00600205f002076", "0x620b00607914600705d00214600620b00600213500207900620b006077", "0x601600214a00620b00600c00600c00207b00620b00614b00605800214b", "0x620b00607b0061330020c700620b00614100612b00207f00620b006016", "0x200220b00600211e00200220b0060020090021510c707f14a00c006151", "0x14e00620b00600213400215200620b00600213100200220b006009006061", "0x213500214f00620b00614e15200705b00214e00620b00614e00604b002", "0x620b00608500605800208500620b00614f08300705d00208300620b006", "0x612b00216100620b00601000601600215e00620b00600f00600c002150", "0x215f16016115e00c00615f00620b00615000613300216000620b006007", "0xc00720b00700600200700700200220b00600200600200220b006002002", "0x201400620b00600900601b00200220b00600200900201000f0072a3016", "0x170060c400201b01700720b00601500601c00201500620b006014006019", "0x20c401c00720b00601900601c00201900620b00600206500200220b006", "0x20b0060c400605400206500620b00601b00605400200220b00601c0060c4", "0x2900200c00620b00600c00600c00206500620b00606500611b002054006", "0x620b00600202a00200220b0060020090020022a400220b007054065007", "0x202d00202a00620b00602900602c00202900620b00611b00602b00211b", "0x2b00602e00202b00620b00600202a00200220b0060020090020022a5006", "0x2d00620b00602a00602f00202a00620b00602c00602c00202c00620b006", "0x202f0062a602e00620b00702d00603000202d00620b00602d00602c002", "0x4800200220b00602e00603300200220b00600211e00200220b006002009", "0x703001600c00903500203000620b00603000603900203000620b006002", "0x620b00600203700200220b0060020090020350390072a704803300720b", "0x20b00600203a00212000620b00600210d00203700620b00600212000211e", "0x600207d00203c00620b00600212400203a00620b00600203c00210d006", "0x12403c03a10d12003711e01412a00207d00620b00600203e00212400620b", "0x20b00612a00604700212c12a00720b00603e00607f00203e00620b00607d", "0x612b00212e00620b00604800601600204500620b00603300600c002002", "0x13104712e04500c0cf00213100620b00612c00604100204700620b006007", "0x900204d0062a813000620b00712d0060c800212d04304112b00c20b006", "0x204e00620b00600213100204b00620b0061300060c900200220b006002", "0x61320060c600200220b00604f0060cb00213204f00720b00604b0060ca", "0x5100720b00605612f0070b300205600620b00604e00604e00212f00620b", "0x605100205813300720b00605100613200200220b006053006033002053", "0x13400620b00613600612f00213600620b00605800605300200220b006133", "0x4100601600213500620b00612b00600c00205b00620b006134006056002", "0x5f00620b00605b00613300213700620b00604300612b00205d00620b006", "0x6100620b00604d00605800200220b00600200900205f13705d13500c006", "0x4300612b00206400620b00604100601600213800620b00612b00600c002", "0x900206713906413800c00606700620b00606100613300213900620b006", "0x4b00206900620b00600213400213b00620b00600213100200220b006002", "0x20b00600213500206a00620b00606913b00705b00206900620b006069006", "0x206f00620b00613c00605800213c00620b00606a06c00705d00206c006", "0x600700612b00207100620b00603500601600213f00620b00603900600c", "0x200900214514107113f00c00614500620b00606f00613300214100620b", "0x700612b00200220b00602f00603300200220b00600211e00200220b006", "0x220b00607600603300207607500720b00607700613700207700620b006", "0x20b00614600604b00214600620b00600205f00207900620b006002131002", "0x5d00207b00620b00600213500214b00620b00614607900705b002146006", "0x600c00600c00207f00620b00614a00605800214a00620b00614b07b007", "0x215200620b00607500612b00215100620b0060160060160020c700620b", "0x200220b00600200900214e1521510c700c00614e00620b00607f006133", "0x214f00620b00600213100200220b00600900606100200220b00600211e", "0x608314f00705b00208300620b00608300604b00208300620b006002134", "0x215e00620b00608515000705d00215000620b00600213500208500620b", "0x601000601600216000620b00600f00600c00216100620b00615e006058", "0x616300620b00616100613300215d00620b00600700612b00215f00620b", "0x700700200220b00600200600200220b00600200200216315d15f16000c", "0x601b00200220b00600200900201000f0072a901600c00720b007006002", "0x720b00601500601c00201500620b00601400601900201400620b006009", "0x1900601c00201900620b00600206500200220b0060170060c400201b017", "0x6500620b00601b00605400200220b00601c0060c40020c401c00720b006", "0xc00600c00206500620b00606500611b00205400620b0060c4006054002", "0x220b0060020090020022aa00220b00705406500702900200c00620b006", "0x602900602c00202900620b00611b00602b00211b00620b00600202a002", "0x20b00600202a00200220b0060020090020022ab00600202d00202a00620b", "0x2f00202a00620b00602c00602c00202c00620b00602b00602e00202b006", "0x20b00702d00603000202d00620b00602d00602c00202d00620b00602a006", "0x603300200220b00600211e00200220b00600200900202f0062ac02e006", "0x203000620b00603000603900203000620b00600204800200220b00602e", "0x220b0060020090020350390072ad04803300720b00703001600c009035", "0x620b00600210d00203700620b00600212000211e00620b006002037002", "0x20b00600212400203a00620b00600203c00210d00620b00600203a002120", "0x11e01412a00207d00620b00600203e00212400620b00600207d00203c006", "0x12c12a00720b00603e00607f00203e00620b00607d12403c03a10d120037", "0x60410060b500204100620b00612c00604100200220b00612a006047002", "0x204512d00720b00612b00618e00204300620b00600213100212b00620b", "0x20b00604300604e00213100620b0060450060b900200220b00612d0060b7", "0x200220b00604700603300204712e00720b0061301310070ba002130006", "0x604b00605300200220b00604d00605100204b04d00720b00612e006132", "0x213200620b00604f00605600204f00620b00604e00612f00204e00620b", "0x600700612b00205300620b00604800601600205100620b00603300600c", "0x200900205612f05305100c00605600620b00613200613300212f00620b", "0x604b00205800620b00600213400213300620b00600213100200220b006", "0x620b00600213500213600620b00605813300705b00205800620b006058", "0xc00213500620b00605b00605800205b00620b00613613400705d002134", "0x20b00600700612b00213700620b00603500601600205d00620b006039006", "0x600200900206105f13705d00c00606100620b00613500613300205f006", "0x600700612b00200220b00602f00603300200220b00600211e00200220b", "0x200220b00606400603300206413800720b00613900613700213900620b", "0x620b00613b00604b00213b00620b00600205f00206700620b006002131", "0x705d00206a00620b00600213500206900620b00613b06700705b00213b", "0x20b00600c00600c00213c00620b00606c00605800206c00620b00606906a", "0x13300207100620b00613800612b00213f00620b00601600601600206f006", "0x11e00200220b00600200900214107113f06f00c00614100620b00613c006", "0x13400214500620b00600213100200220b00600900606100200220b006002", "0x20b00607514500705b00207500620b00607500604b00207500620b006002", "0x5800207900620b00607607700705d00207700620b006002135002076006", "0x20b00601000601600214b00620b00600f00600c00214600620b006079006", "0xc00607f00620b00614600613300214a00620b00600700612b00207b006", "0x200700700200220b00600200600200220b00600200200207f14a07b14b", "0x900601b00200220b00600200900201000f0072ae01600c00720b007006", "0x1700720b00601500601c00201500620b00601400601900201400620b006", "0x601900601c00201900620b00600206500200220b0060170060c400201b", "0x206500620b00601b00605400200220b00601c0060c40020c401c00720b", "0x600c00600c00206500620b00606500611b00205400620b0060c4006054", "0x200220b0060020090020022af00220b00705406500702900200c00620b", "0x20b00602900602c00202900620b00611b00602b00211b00620b00600202a", "0x620b00600202a00200220b0060020090020022b000600202d00202a006", "0x602f00202a00620b00602c00602c00202c00620b00602b00602e00202b", "0x620b00702d00603000202d00620b00602d00602c00202d00620b00602a", "0x2e00603300200220b00600211e00200220b00600200900202f0062b102e", "0x3500203000620b00603000603900203000620b00600204800200220b006", "0x200220b0060020090020350390072b204803300720b00703001600c009", "0x12000620b00600210d00203700620b00600212000211e00620b006002037", "0x620b00600212400203a00620b00600203c00210d00620b00600203a002", "0x3711e01412a00207d00620b00600203e00212400620b00600207d00203c", "0x212c12a00720b00603e00607f00203e00620b00607d12403c03a10d120", "0x12b00620b00600213100200220b00612c00604700200220b00612a006047", "0x4300604d00212d04300720b00604100613000204100620b0060020bb002", "0x213100620b00612b00604e00204700620b00612d00604b00200220b006", "0x4500613200200220b00612e00603300212e04500720b00613104700704f", "0x4b00620b00604d00605300200220b00613000605100204d13000720b006", "0x3300600c00204f00620b00604e00605600204e00620b00604b00612f002", "0x5300620b00600700612b00205100620b00604800601600213200620b006", "0x220b00600200900212f05305113200c00612f00620b00604f006133002", "0x20b00613300604b00213300620b00600213400205600620b006002131002", "0x5d00213600620b00600213500205800620b00613305600705b002133006", "0x603900600c00205b00620b00613400605800213400620b006058136007", "0x213700620b00600700612b00205d00620b00603500601600213500620b", "0x200220b00600200900205f13705d13500c00605f00620b00605b006133", "0x6400620b00600700612b00200220b00602f00603300200220b00600211e", "0x600213100200220b00613800603300213806100720b006064006137002", "0x5b00206700620b00606700604b00206700620b00600205f00213900620b", "0x613b06900705d00206900620b00600213500213b00620b006067139007", "0x213c00620b00600c00600c00206c00620b00606a00605800206a00620b", "0x606c00613300213f00620b00606100612b00206f00620b006016006016", "0x20b00600211e00200220b00600200900207113f06f13c00c00607100620b", "0x20b00600213400214100620b00600213100200220b006009006061002002", "0x207500620b00614514100705b00214500620b00614500604b002145006", "0x607700605800207700620b00607507600705d00207600620b006002135", "0x214b00620b00601000601600214600620b00600f00600c00207900620b", "0x7b14b14600c00614a00620b00607900613300207b00620b00600700612b", "0x20b00700600200700700200220b00600200600200220b00600200200214a", "0x620b00600900601b00200220b00600200900201000f0072b301600c007", "0xc400201b01700720b00601500601c00201500620b006014006019002014", "0x1c00720b00601900601c00201900620b00600206500200220b006017006", "0xc400605400206500620b00601b00605400200220b00601c0060c40020c4", "0xc00620b00600c00600c00206500620b00606500611b00205400620b006", "0x600202a00200220b0060020090020022b400220b007054065007029002", "0x202a00620b00602900602c00202900620b00611b00602b00211b00620b", "0x2e00202b00620b00600202a00200220b0060020090020022b500600202d", "0x20b00602a00602f00202a00620b00602c00602c00202c00620b00602b006", "0x62b602e00620b00702d00603000202d00620b00602d00602c00202d006", "0x220b00602e00603300200220b00600211e00200220b00600200900202f", "0x1600c00903500203000620b00603000603900203000620b006002048002", "0x600203700200220b0060020090020350390072b704803300720b007030", "0x203a00212000620b00600210d00203700620b00600212000211e00620b", "0x7d00203c00620b00600212400203a00620b00600203c00210d00620b006", "0x3a10d12003711e01412a00207d00620b00600203e00212400620b006002", "0x12a00604700212c12a00720b00603e00607f00203e00620b00607d12403c", "0x212e00620b00604800601600204500620b00603300600c00200220b006", "0x12e04500c0bd00213100620b00612c00604100204700620b00600700612b", "0x4d0062b813000620b00712d00618f00212d04304112b00c20b006131047", "0x620b00600213100204b00620b0061300060be00200220b006002009002", "0x611b00200220b00604f0060c400213204f00720b00604b00601c00204e", "0x20b00605612f0070bf00205600620b00604e00604e00212f00620b006132", "0x205813300720b00605100613200200220b006053006033002053051007", "0x20b00613600612f00213600620b00605800605300200220b006133006051", "0x1600213500620b00612b00600c00205b00620b006134006056002134006", "0x20b00605b00613300213700620b00604300612b00205d00620b006041006", "0x20b00604d00605800200220b00600200900205f13705d13500c00605f006", "0x12b00206400620b00604100601600213800620b00612b00600c002061006", "0x6713906413800c00606700620b00606100613300213900620b006043006", "0x6900620b00600213400213b00620b00600213100200220b006002009002", "0x213500206a00620b00606913b00705b00206900620b00606900604b002", "0x620b00613c00605800213c00620b00606a06c00705d00206c00620b006", "0x612b00207100620b00603500601600213f00620b00603900600c00206f", "0x214514107113f00c00614500620b00606f00613300214100620b006007", "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", "0x607600603300207607500720b00607700613700207700620b006007006", "0x14600604b00214600620b00600205f00207900620b00600213100200220b", "0x7b00620b00600213500214b00620b00614607900705b00214600620b006", "0x600c00207f00620b00614a00605800214a00620b00614b07b00705d002", "0x620b00607500612b00215100620b0060160060160020c700620b00600c", "0x20b00600200900214e1521510c700c00614e00620b00607f006133002152", "0x620b00600213100200220b00600900606100200220b00600211e002002", "0x14f00705b00208300620b00608300604b00208300620b00600213400214f", "0x620b00608515000705d00215000620b00600213500208500620b006083", "0x601600216000620b00600f00600c00216100620b00615e00605800215e", "0x620b00616100613300215d00620b00600700612b00215f00620b006010", "0x200220b00600200600200220b00600200200216315d15f16000c006163", "0x200220b00600200900201000f0072b901600c00720b007006002007007", "0x601500601c00201500620b00601400601900201400620b00600900601b", "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", "0xc00206500620b00606500611b00205400620b0060c4006054002065006", "0x60020090020022ba00220b00705406500702900200c00620b00600c006", "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", "0x202a00200220b0060020090020022bb00600202d00202a00620b006029", "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", "0x200220b00600211e00200220b00600200900202f0062bc02e00620b007", "0x620b00603000603900203000620b00600204800200220b00602e006033", "0x60020090020350390072bd04803300720b00703001600c009035002030", "0x600210d00203700620b00600212000211e00620b00600203700200220b", "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", "0x720b00603e00607f00203e00620b00607d12403c03a10d12003711e014", "0x601600204500620b00603300600c00200220b00612a00604700212c12a", "0x620b00612c00604100204700620b00600700612b00212e00620b006048", "0x712d00618f00212d04304112b00c20b00613104712e04500c0c1002131", "0x4b00620b0061300060be00200220b00600200900204d0062be13000620b", "0x4f0060c400213204f00720b00604b00601c00204e00620b006002131002", "0x205600620b00604e00604e00212f00620b00613200611b00200220b006", "0x5100613200200220b00605300603300205305100720b00605612f0070bf", "0x13600620b00605800605300200220b00613300605100205813300720b006", "0x12b00600c00205b00620b00613400605600213400620b00613600612f002", "0x13700620b00604300612b00205d00620b00604100601600213500620b006", "0x220b00600200900205f13705d13500c00605f00620b00605b006133002", "0x4100601600213800620b00612b00600c00206100620b00604d006058002", "0x6700620b00606100613300213900620b00604300612b00206400620b006", "0x213b00620b00600213100200220b00600200900206713906413800c006", "0x606913b00705b00206900620b00606900604b00206900620b006002134", "0x213c00620b00606a06c00705d00206c00620b00600213500206a00620b", "0x603500601600213f00620b00603900600c00206f00620b00613c006058", "0x614500620b00606f00613300214100620b00600700612b00207100620b", "0x603300200220b00600211e00200220b00600200900214514107113f00c", "0x7500720b00607700613700207700620b00600700612b00200220b00602f", "0x20b00600205f00207900620b00600213100200220b006076006033002076", "0x214b00620b00614607900705b00214600620b00614600604b002146006", "0x614a00605800214a00620b00614b07b00705d00207b00620b006002135", "0x215100620b0060160060160020c700620b00600c00600c00207f00620b", "0x1521510c700c00614e00620b00607f00613300215200620b00607500612b", "0x220b00600900606100200220b00600211e00200220b00600200900214e", "0x20b00608300604b00208300620b00600213400214f00620b006002131002", "0x5d00215000620b00600213500208500620b00608314f00705b002083006", "0x600f00600c00216100620b00615e00605800215e00620b006085150007", "0x215d00620b00600700612b00215f00620b00601000601600216000620b", "0x200220b00600200200216315d15f16000c00616300620b006161006133", "0x201000f0072bf01600c00720b00700600200700700200220b006002006", "0x620b00601400601900201400620b00600900601b00200220b006002009", "0x206500200220b0060170060c400201b01700720b00601500601c002015", "0x220b00601c0060c40020c401c00720b00601900601c00201900620b006", "0x6500611b00205400620b0060c400605400206500620b00601b006054002", "0x220b00705406500702900200c00620b00600c00600c00206500620b006", "0x611b00602b00211b00620b00600202a00200220b0060020090020022c0", "0x20090020022c100600202d00202a00620b00602900602c00202900620b", "0x2c00202c00620b00602b00602e00202b00620b00600202a00200220b006", "0x20b00602d00602c00202d00620b00602a00602f00202a00620b00602c006", "0x200220b00600200900202f0062c202e00620b00702d00603000202d006", "0x203000620b00600204800200220b00602e00603300200220b00600211e", "0x72c304803300720b00703001600c00903500203000620b006030006039", "0x20b00600212000211e00620b00600203700200220b006002009002035039", "0x600203c00210d00620b00600203a00212000620b00600210d002037006", "0x203e00212400620b00600207d00203c00620b00600212400203a00620b", "0x203e00620b00607d12403c03a10d12003711e01412a00207d00620b006", "0x603300600c00200220b00612a00604700212c12a00720b00603e00607f", "0x204700620b00600700612b00212e00620b00604800601600204500620b", "0x4304112b00c20b00613104712e04500c19000213100620b00612c006041", "0x19b00200220b00600200900204d0062c413000620b00712d0060c300212d", "0x720b00604b00619c00204e00620b00600213100204b00620b006130006", "0x604e00212f00620b00613200619d00200220b00604f0060d400213204f", "0x605300603300205305100720b00605612f0071a000205600620b00604e", "0x5300200220b00613300605100205813300720b00605100613200200220b", "0x20b00613400605600213400620b00613600612f00213600620b006058006", "0x12b00205d00620b00604100601600213500620b00612b00600c00205b006", "0x5f13705d13500c00605f00620b00605b00613300213700620b006043006", "0x20b00612b00600c00206100620b00604d00605800200220b006002009002", "0x13300213900620b00604300612b00206400620b006041006016002138006", "0x13100200220b00600200900206713906413800c00606700620b006061006", "0x6900620b00606900604b00206900620b00600213400213b00620b006002", "0x6c00705d00206c00620b00600213500206a00620b00606913b00705b002", "0x620b00603900600c00206f00620b00613c00605800213c00620b00606a", "0x613300214100620b00600700612b00207100620b00603500601600213f", "0x211e00200220b00600200900214514107113f00c00614500620b00606f", "0x13700207700620b00600700612b00200220b00602f00603300200220b006", "0x620b00600213100200220b00607600603300207607500720b006077006", "0x7900705b00214600620b00614600604b00214600620b00600205f002079", "0x620b00614b07b00705d00207b00620b00600213500214b00620b006146", "0x60160020c700620b00600c00600c00207f00620b00614a00605800214a", "0x620b00607f00613300215200620b00607500612b00215100620b006016", "0x200220b00600211e00200220b00600200900214e1521510c700c00614e", "0x8300620b00600213400214f00620b00600213100200220b006009006061", "0x213500208500620b00608314f00705b00208300620b00608300604b002", "0x620b00615e00605800215e00620b00608515000705d00215000620b006", "0x612b00215f00620b00601000601600216000620b00600f00600c002161", "0x216315d15f16000c00616300620b00616100613300215d00620b006007", "0xc00720b00700600200700700200220b00600200600200220b006002002", "0x201700620b00600900600f00200220b00600200900201000f0072c5016", "0x1500607700200c00620b00600c00600c00201501400720b006017006076", "0x620b00601400601b00200220b0060020090020190062c601b00620b007", "0xc400205406500720b0060c400601c0020c400620b00601c00601900201c", "0x2900720b00611b00601c00211b00620b00600206500200220b006065006", "0x2a00605400202b00620b00605400605400200220b0060290060c400202a", "0x220b00702c02b00702900202b00620b00602b00611b00202c00620b006", "0x602d00602b00202d00620b00600202a00200220b0060020090020022c7", "0x20090020022c800600202d00202f00620b00602e00602c00202e00620b", "0x2c00203300620b00603000602e00203000620b00600202a00200220b006", "0x20b00604800602c00204800620b00602f00602f00202f00620b006033006", "0x200220b0060020090020350062c903900620b007048006030002048006", "0x620b00611e00603900211e00620b00600204800200220b006039006033", "0x600200900203a10d0072ca12003700720b00711e01600c00903500211e", "0x20b00600212000203c00620b00600203700200220b00600211e00200220b", "0x600203c00203e00620b00600203a00207d00620b00600210d002124006", "0x203e00212b00620b00600207d00212c00620b00600212400212a00620b", "0x204300620b00604112b12c12a03e07d12403c01412a00204100620b006", "0x604500604100200220b00612d00604700204512d00720b00604300607f", "0x12e00620b0061310470070d600213100620b00601b00604b00204700620b", "0x4d0060d000204b04d00720b00612e00616b00213000620b006002131002", "0x205100620b00613000604e00213200620b00604b00602c00200220b006", "0x4e00613200200220b00604f00603300204f04e00720b00605113200716c", "0x5600620b00612f00605300200220b00605300605100212f05300720b006", "0x3700600c00205800620b00613300605600213300620b00605600612f002", "0x5b00620b00600700612b00213400620b00612000601600213600620b006", "0x220b00600200900213505b13413600c00613500620b006058006133002", "0x5d00620b00600213100200220b00601b00604d00200220b00600211e002", "0x13705d00705b00213700620b00613700604b00213700620b006002134002", "0x13800620b00605f06100705d00206100620b00600213500205f00620b006", "0x3a00601600213900620b00610d00600c00206400620b006138006058002", "0x6900620b00606400613300213b00620b00600700612b00206700620b006", "0x3300200220b00600211e00200220b00600200900206913b06713900c006", "0x13c00620b00600700612b00200220b00601b00604d00200220b006035006", "0x600213100200220b00606c00603300206c06a00720b00613c006137002", "0x5b00213f00620b00613f00604b00213f00620b00600205f00206f00620b", "0x607114100705d00214100620b00600213500207100620b00613f06f007", "0x207600620b00600c00600c00207500620b00614500605800214500620b", "0x607500613300207900620b00606a00612b00207700620b006016006016", "0x20b00600211e00200220b00600200900214607907707600c00614600620b", "0x20b00600213100200220b00601400606100200220b006019006033002002", "0x705b00207b00620b00607b00604b00207b00620b00600213800214b006", "0x20b00614a07f00705d00207f00620b00600213500214a00620b00607b14b", "0x1600215200620b00600c00600c00215100620b0060c70060580020c7006", "0x20b00615100613300214f00620b00600700612b00214e00620b006016006", "0x220b00600211e00200220b00600200900208314f14e15200c006083006", "0x620b00600213400208500620b00600213100200220b006009006061002", "0x13500215e00620b00615008500705b00215000620b00615000604b002150", "0x20b00616000605800216000620b00615e16100705d00216100620b006002", "0x12b00216300620b00601000601600215d00620b00600f00600c00215f006", "0x16215c16315d00c00616200620b00615f00613300215c00620b006007006", "0x720b00700600200700700200220b00600200600200220b006002002002", "0x1400620b00600900601b00200220b00600200900201000f0072cb01600c", "0x60c400201b01700720b00601500601c00201500620b006014006019002", "0xc401c00720b00601900601c00201900620b00600206500200220b006017", "0x60c400605400206500620b00601b00605400200220b00601c0060c4002", "0x200c00620b00600c00600c00206500620b00606500611b00205400620b", "0x20b00600202a00200220b0060020090020022cc00220b007054065007029", "0x2d00202a00620b00602900602c00202900620b00611b00602b00211b006", "0x602e00202b00620b00600202a00200220b0060020090020022cd006002", "0x620b00602a00602f00202a00620b00602c00602c00202c00620b00602b", "0x2f0062ce02e00620b00702d00603000202d00620b00602d00602c00202d", "0x200220b00602e00603300200220b00600211e00200220b006002009002", "0x3001600c00903500203000620b00603000603900203000620b006002048", "0x20b00600203700200220b0060020090020350390072cf04803300720b007", "0x600203a00212000620b00600210d00203700620b00600212000211e006", "0x207d00203c00620b00600212400203a00620b00600203c00210d00620b", "0x3c03a10d12003711e01412a00207d00620b00600203e00212400620b006", "0x612a00604700212c12a00720b00603e00607f00203e00620b00607d124", "0x600219f00212b00620b00600213100200220b00612c00604700200220b", "0x200220b00604300604d00212d04300720b00604100613000204100620b", "0x13104700704f00213100620b00612b00604e00204700620b00612d00604b", "0x13000720b00604500613200200220b00612e00603300212e04500720b006", "0x4b00612f00204b00620b00604d00605300200220b00613000605100204d", "0x13200620b00603300600c00204f00620b00604e00605600204e00620b006", "0x4f00613300205300620b00600700612b00205100620b006048006016002", "0x600213100200220b00600200900212f05305113200c00612f00620b006", "0x5b00213300620b00613300604b00213300620b00600213400205600620b", "0x605813600705d00213600620b00600213500205800620b006133056007", "0x213500620b00603900600c00205b00620b00613400605800213400620b", "0x605b00613300213700620b00600700612b00205d00620b006035006016", "0x20b00600211e00200220b00600200900205f13705d13500c00605f00620b", "0x6400613700206400620b00600700612b00200220b00602f006033002002", "0x213900620b00600213100200220b00613800603300213806100720b006", "0x606713900705b00206700620b00606700604b00206700620b00600205f", "0x206a00620b00613b06900705d00206900620b00600213500213b00620b", "0x601600601600213c00620b00600c00600c00206c00620b00606a006058", "0x607100620b00606c00613300213f00620b00606100612b00206f00620b", "0x606100200220b00600211e00200220b00600200900207113f06f13c00c", "0x4b00214500620b00600213400214100620b00600213100200220b006009", "0x20b00600213500207500620b00614514100705b00214500620b006145006", "0x207900620b00607700605800207700620b00607507600705d002076006", "0x600700612b00214b00620b00601000601600214600620b00600f00600c", "0x200200214a07b14b14600c00614a00620b00607900613300207b00620b", "0x2d001600c00720b00700600200700700200220b00600200600200220b006", "0x601900201400620b00600900601b00200220b00600200900201000f007", "0x20b0060170060c400201b01700720b00601500601c00201500620b006014", "0x60c40020c401c00720b00601900601c00201900620b006002065002002", "0x5400620b0060c400605400206500620b00601b00605400200220b00601c", "0x6500702900200c00620b00600c00600c00206500620b00606500611b002", "0x211b00620b00600202a00200220b0060020090020022d100220b007054", "0x2d200600202d00202a00620b00602900602c00202900620b00611b00602b", "0x20b00602b00602e00202b00620b00600202a00200220b006002009002002", "0x2c00202d00620b00602a00602f00202a00620b00602c00602c00202c006", "0x200900202f0062d302e00620b00702d00603000202d00620b00602d006", "0x600204800200220b00602e00603300200220b00600211e00200220b006", "0x720b00703001600c00903500203000620b00603000603900203000620b", "0x211e00620b00600203700200220b0060020090020350390072d4048033", "0x10d00620b00600203a00212000620b00600210d00203700620b006002120", "0x620b00600207d00203c00620b00600212400203a00620b00600203c002", "0x607d12403c03a10d12003711e01412a00207d00620b00600203e002124", "0x200220b00612a00604700212c12a00720b00603e00607f00203e00620b", "0x4100620b0060020bb00212b00620b00600213100200220b00612c006047", "0x12d00604b00200220b00604300604d00212d04300720b006041006130002", "0x720b00613104700704f00213100620b00612b00604e00204700620b006", "0x5100204d13000720b00604500613200200220b00612e00603300212e045", "0x620b00604b00612f00204b00620b00604d00605300200220b006130006", "0x601600213200620b00603300600c00204f00620b00604e00605600204e", "0x620b00604f00613300205300620b00600700612b00205100620b006048", "0x5600620b00600213100200220b00600200900212f05305113200c00612f", "0x13305600705b00213300620b00613300604b00213300620b006002134002", "0x13400620b00605813600705d00213600620b00600213500205800620b006", "0x3500601600213500620b00603900600c00205b00620b006134006058002", "0x5f00620b00605b00613300213700620b00600700612b00205d00620b006", "0x3300200220b00600211e00200220b00600200900205f13705d13500c006", "0x720b00606400613700206400620b00600700612b00200220b00602f006", "0x600205f00213900620b00600213100200220b006138006033002138061", "0x13b00620b00606713900705b00206700620b00606700604b00206700620b", "0x6a00605800206a00620b00613b06900705d00206900620b006002135002", "0x6f00620b00601600601600213c00620b00600c00600c00206c00620b006", "0x6f13c00c00607100620b00606c00613300213f00620b00606100612b002", "0x20b00600900606100200220b00600211e00200220b00600200900207113f", "0x614500604b00214500620b00600213400214100620b006002131002002", "0x207600620b00600213500207500620b00614514100705b00214500620b", "0xf00600c00207900620b00607700605800207700620b00607507600705d", "0x7b00620b00600700612b00214b00620b00601000601600214600620b006", "0x220b00600200200214a07b14b14600c00614a00620b006079006133002", "0x1000f0072d501600c00720b00700600200700700200220b006002006002", "0x20b00601700607600201700620b00600900600f00200220b006002009002", "0x2d601b00620b00701500607700200c00620b00600c00600c002015014007", "0x1c00601900201c00620b00601400601b00200220b006002009002019006", "0x220b0060650060c400205406500720b0060c400601c0020c400620b006", "0x290060c400202a02900720b00611b00601c00211b00620b006002065002", "0x202c00620b00602a00605400202b00620b00605400605400200220b006", "0x20090020022d700220b00702c02b00702900202b00620b00602b00611b", "0x2c00202e00620b00602d00602b00202d00620b00600202a00200220b006", "0x2a00200220b0060020090020022d800600202d00202f00620b00602e006", "0x620b00603300602c00203300620b00603000602e00203000620b006002", "0x603000204800620b00604800602c00204800620b00602f00602f00202f", "0x20b00603900603300200220b0060020090020350062d903900620b007048", "0xc00903500211e00620b00611e00603900211e00620b006002048002002", "0x211e00200220b00600200900203a10d0072da12003700720b00711e016", "0x210d00212400620b00600212000203c00620b00600203700200220b006", "0x12400212a00620b00600203c00203e00620b00600203a00207d00620b006", "0x204100620b00600203e00212b00620b00600207d00212c00620b006002", "0x20b00604300607f00204300620b00604112b12c12a03e07d12403c01412a", "0x4b00204700620b00604500604100200220b00612d00604700204512d007", "0x20b00600213100212e00620b0061310470070d700213100620b00601b006", "0x4b00200220b00604d00604d00204b04d00720b00612e006130002130006", "0x605113200704f00205100620b00613000604e00213200620b00604b006", "0x12f05300720b00604e00613200200220b00604f00603300204f04e00720b", "0x605600612f00205600620b00612f00605300200220b006053006051002", "0x213600620b00603700600c00205800620b00613300605600213300620b", "0x605800613300205b00620b00600700612b00213400620b006120006016", "0x20b00600211e00200220b00600200900213505b13413600c00613500620b", "0x20b00600213400205d00620b00600213100200220b00601b00604d002002", "0x205f00620b00613705d00705b00213700620b00613700604b002137006", "0x613800605800213800620b00605f06100705d00206100620b006002135", "0x206700620b00603a00601600213900620b00610d00600c00206400620b", "0x13b06713900c00606900620b00606400613300213b00620b00600700612b", "0x220b00603500603300200220b00600211e00200220b006002009002069", "0x613c00613700213c00620b00600700612b00200220b00601b00604d002", "0x5f00206f00620b00600213100200220b00606c00603300206c06a00720b", "0x20b00613f06f00705b00213f00620b00613f00604b00213f00620b006002", "0x5800214500620b00607114100705d00214100620b006002135002071006", "0x20b00601600601600207600620b00600c00600c00207500620b006145006", "0xc00614600620b00607500613300207900620b00606a00612b002077006", "0x1900603300200220b00600211e00200220b006002009002146079077076", "0x213800214b00620b00600213100200220b00601400606100200220b006", "0x620b00607b14b00705b00207b00620b00607b00604b00207b00620b006", "0x60580020c700620b00614a07f00705d00207f00620b00600213500214a", "0x620b00601600601600215200620b00600c00600c00215100620b0060c7", "0x15200c00608300620b00615100613300214f00620b00600700612b00214e", "0x600900606100200220b00600211e00200220b00600200900208314f14e", "0x15000604b00215000620b00600213400208500620b00600213100200220b", "0x16100620b00600213500215e00620b00615008500705b00215000620b006", "0x600c00215f00620b00616000605800216000620b00615e16100705d002", "0x620b00600700612b00216300620b00601000601600215d00620b00600f", "0x20b00600207500216215c16315d00c00616200620b00615f00613300215c", "0x220b00600200600200220b00600200200200220b00600213900200f006", "0x220b0060020090020170150072db01401000720b007007002007007002", "0x600c00201901b00720b00601c00607600201c00620b00600c00600f002", "0x60020090020c40062dc01600620b00701900607700201000620b006010", "0xf00202a00620b00601400601600202900620b00601000600c00200220b", "0x2a02900914600201600620b00601600f00707900202b00620b00601b006", "0x620b00711b00614b00200220b00600200600211b05406500920b00602b", "0x202f02e00720b00602c00607b00200220b00600200900202d0062dd02c", "0x2e00601b00200220b0060020090020330062de03000620b00702f00614a", "0x3500720b00603900601c00203900620b00604800601900204800620b006", "0x603700601c00203700620b00600206500200220b0060350060c400211e", "0x203a00620b00611e00605400200220b0061200060c400210d12000720b", "0x3c03a00702900203a00620b00603a00611b00203c00620b00610d006054", "0x2b00212400620b00600202a00200220b0060020090020022df00220b007", "0x22e000600202d00203e00620b00607d00602c00207d00620b006124006", "0x620b00612a00602e00212a00620b00600202a00200220b006002009002", "0x602c00212b00620b00603e00602f00203e00620b00612c00602c00212c", "0x60020090020430062e104100620b00712b00603000212b00620b00612b", "0x12d00603900212d00620b00600204800200220b00604100603300200220b", "0x21310470072e212e04500720b00712d05406500903500212d00620b006", "0x12000213000620b00600203700200220b00600211e00200220b006002009", "0x204e00620b00600203a00204b00620b00600210d00204d00620b006002", "0x5100620b00600207d00213200620b00600212400204f00620b00600203c", "0x20b00605305113204f04e04b04d13001412a00205300620b00600203e002", "0xc00200220b00605600604700213305600720b00612f00607f00212f006", "0x20b00612e00601600213700620b00600600612c00205d00620b006045006", "0x4b00213800620b00613300604100206100620b00600900612b00205f006", "0x5f13705d0100d900213900620b00603000604e00206400620b006016006", "0x6700620b00713500615100213505b13413605801620b006139064138061", "0x213100206900620b00606700615200200220b00600200900213b0062e3", "0x220b00606c00604d00213c06c00720b00606900613000206a00620b006", "0x7100704f00214100620b00606a00604e00207100620b00613c00604b002", "0x720b00606f00613200200220b00613f00603300213f06f00720b006141", "0x612f00207600620b00607500605300200220b006145006051002075145", "0x620b00605800600c00207900620b00607700605600207700620b006076", "0x612b00207b00620b00613400601600214b00620b00613600612c002146", "0x7f14a07b14b14601600607f00620b00607900613300214a00620b00605b", "0x20b00605800600c0020c700620b00613b00605800200220b006002009002", "0x12b00214e00620b00613400601600215200620b00613600612c002151006", "0x14f14e15215101600608300620b0060c700613300214f00620b00605b006", "0x220b00603000605100200220b00600211e00200220b006002009002083", "0x620b00600213400208500620b00600213100200220b00601600604d002", "0x13500215e00620b00615008500705b00215000620b00615000604b002150", "0x20b00616000605800216000620b00615e16100705d00216100620b006002", "0x1600216300620b00600600612c00215d00620b00604700600c00215f006", "0x20b00615f00613300216200620b00600900612b00215c00620b006131006", "0x20b00600211e00200220b00600200900208716215c16315d016006087006", "0x601600604d00200220b00603000605100200220b006043006033002002", "0x215715400720b00608a00613700208a00620b00600900612b00200220b", "0x16e00620b00600205f00215b00620b00600213100200220b006157006033", "0x213500216800620b00616e15b00705b00216e00620b00616e00604b002", "0x620b00608e00605800208e00620b0061680ed00705d0020ed00620b006", "0x601600216c00620b00600600612c0020d000620b00606500600c00216b", "0x620b00616b00613300216d00620b00615400612b00209200620b006054", "0x220b00600211e00200220b00600200900217116d09216c0d0016006171", "0x20b00601600604d00200220b00602e00606100200220b006033006033002", "0x617300604b00217300620b00600213800209400620b006002131002002", "0x217500620b00600213500209600620b00617309400705b00217300620b", "0x6500600c00209900620b0060d10060580020d100620b00609617500705d", "0x17a00620b00605400601600209b00620b00600600612c00217600620b006", "0x9b17601600617c00620b00609900613300209d00620b00600900612b002", "0x601600604d00200220b00600211e00200220b00600200900217c09d17a", "0x12c0020a000620b00606500600c0020cc00620b00602d00605800200220b", "0x20b00600900612b0020a200620b00605400601600217d00620b006006006", "0x20090020a417e0a217d0a00160060a400620b0060cc00613300217e006", "0x1b00606100200220b0060c400603300200220b00600211e00200220b006", "0x213800217f00620b00600213100200220b00600f00614e00200220b006", "0x620b0060cd17f00705b0020cd00620b0060cd00604b0020cd00620b006", "0x605800218000620b0060d20a800705d0020a800620b0060021350020d2", "0x620b00600600612c0020ab00620b00601000600c0020ce00620b006180", "0x61330020c800620b00600900612b0020cf00620b006014006016002181", "0x11e00200220b0060020090020c90c80cf1810ab0160060c900620b0060ce", "0x13100200220b00600f00614e00200220b00600c00606100200220b006002", "0xcb00620b0060cb00604b0020cb00620b0060021340020ca00620b006002", "0xb300705d0020b300620b0060021350020c600620b0060cb0ca00705b002", "0x620b00601500600c00218e00620b0060b50060580020b500620b0060c6", "0x612b0020ba00620b0060170060160020b900620b00600600612c0020b7", "0xbd0bb0ba0b90b70160060bd00620b00618e0061330020bb00620b006009", "0x720b00700600200700700200220b00600200600200220b006002002002", "0x1700620b00600900600f00200220b00600200900201000f0072e401600c", "0x607700200c00620b00600c00600c00201501400720b006017006076002", "0x20b00601400600f00200220b0060020090020190062e501b00620b007015", "0x2e605400620b0070c40060770020c401c00720b006065006076002065006", "0x2900601900202900620b00601c00601b00200220b00600200900211b006", "0x220b00602b0060c400202c02b00720b00602a00601c00202a00620b006", "0x2e0060c400202f02e00720b00602d00601c00202d00620b006002065002", "0x203300620b00602f00605400203000620b00602c00605400200220b006", "0x20090020022e700220b00703303000702900203000620b00603000611b", "0x2c00203900620b00604800602b00204800620b00600202a00200220b006", "0x2a00200220b0060020090020022e800600202d00203500620b006039006", "0x620b00603700602c00203700620b00611e00602e00211e00620b006002", "0x603000212000620b00612000602c00212000620b00603500602f002035", "0x20b00610d00603300200220b00600200900203a0062e910d00620b007120", "0xc00903500203c00620b00603c00603900203c00620b006002048002002", "0x211e00200220b00600200900212a03e0072ea07d12400720b00703c016", "0x210d00212b00620b00600212000212c00620b00600203700200220b006", "0x12400212d00620b00600203c00204300620b00600203a00204100620b006", "0x204700620b00600203e00212e00620b00600207d00204500620b006002", "0x20b00612400600c00213100620b00604712e04512d04304112b12c01412a", "0x4100205100620b00600700612b00213200620b00607d00601600204f006", "0x20b00605400604b00212f00620b00601b00604b00205300620b006131006", "0x17d00204e04b04d13000c20b00605612f05305113204f00f1a1002056006", "0x61330060a200200220b0060020090020580062eb13300620b00704e006", "0x5100205b13400720b00613600613200213600620b00600213100200220b", "0x620b00613500612f00213500620b00605b00605300200220b006134006", "0x601600205f00620b00613000600c00213700620b00605d00605600205d", "0x620b00613700613300213800620b00604b00612b00206100620b00604d", "0x620b00605800605800200220b00600200900206413806105f00c006064", "0x612b00213b00620b00604d00601600206700620b00613000600c002139", "0x206a06913b06700c00606a00620b00613900613300206900620b00604b", "0x4d00200220b00605400604d00200220b00600211e00200220b006002009", "0x213c00620b00600213400206c00620b00600213100200220b00601b006", "0x600213500206f00620b00613c06c00705b00213c00620b00613c00604b", "0x14100620b00607100605800207100620b00606f13f00705d00213f00620b", "0x700612b00207500620b00612a00601600214500620b00603e00600c002", "0x900207707607514500c00607700620b00614100613300207600620b006", "0x604d00200220b00603a00603300200220b00600211e00200220b006002", "0x214b00620b00600700612b00200220b00601b00604d00200220b006054", "0x20b00600213100200220b00614600603300214607900720b00614b006137", "0x705b00214a00620b00614a00604b00214a00620b00600205f00207b006", "0x20b00607f0c700705d0020c700620b00600213500207f00620b00614a07b", "0x1600214e00620b00600c00600c00215200620b006151006058002151006", "0x20b00615200613300208300620b00607900612b00214f00620b006016006", "0x220b00600211e00200220b00600200900208508314f14e00c006085006", "0x20b00601b00604d00200220b00601c00606100200220b00611b006033002", "0x615e00604b00215e00620b00600213800215000620b006002131002002", "0x216000620b00600213500216100620b00615e15000705b00215e00620b", "0xc00600c00215d00620b00615f00605800215f00620b00616116000705d", "0x16200620b00600700612b00215c00620b00601600601600216300620b006", "0x220b00600200900208716215c16300c00608700620b00615d006133002", "0x220b00601400606100200220b00601900603300200220b00600211e002", "0x20b00615700604b00215700620b00600213800215400620b006002131002", "0x5d00215b00620b00600213500208a00620b00615715400705b002157006", "0x600c00600c00216800620b00616e00605800216e00620b00608a15b007", "0x216b00620b00600700612b00208e00620b0060160060160020ed00620b", "0x200220b0060020090020d016b08e0ed00c0060d000620b006168006133", "0x216c00620b00600213100200220b00600900606100200220b00600211e", "0x609216c00705b00209200620b00609200604b00209200620b006002134", "0x209400620b00616d17100705d00217100620b00600213500216d00620b", "0x601000601600209600620b00600f00600c00217300620b006094006058", "0x609900620b0061730061330020d100620b00600700612b00217500620b", "0x200900620b00600700601b00200220b00600211e0020990d117509600c", "0x61a300200220b00600200900200f0062ec01600c00720b0070090060db", "0x620b0060100061a400201400620b00600c00609900201000620b006016", "0x1700620b00600202a00200220b0060020090020022ed00600202d002015", "0x1b0061a400201400620b00600f00609900201b00620b0060170061a5002", "0x1900620b00601900600f00201900620b00601400605300201500620b006", "0x61a600200220b0060020090020c40062ee01c00620b0070150060df002", "0x11b00620b0060021ad00205400620b0060650061b200206500620b00601c", "0x1900600f00202d00620b00600600601600202c00620b00600200600c002", "0x3000620b00605400604b00202f00620b00611b00604300202e00620b006", "0x20b00702b00601400202b02a02900920b00603002f02e02d02c0161ae002", "0x3503900720b00603300601500200220b0060020090020480062ef033006", "0x600c00203700620b00611e0060e500211e00620b0060350390071b4002", "0x620b0060370060e700210d00620b00602a00601600212000620b006029", "0x3c00620b0060480061b800200220b00600200900203a10d12000900603a", "0x3c0060e700207d00620b00602a00601600212400620b00602900600c002", "0x60c400603300200220b00600200900203e07d12400900603e00620b006", "0x71b400212c00620b00612a0061ba00212a00620b00600202a00200220b", "0x20b00600200600c00204100620b00612b0060e500212b00620b00612c019", "0x900604500620b0060410060e700212d00620b006006006016002043006", "0x201700620b00600900612b00201500620b00600700601600204512d043", "0x62f001b00620b0070140060ea00201401000f00920b0060170150071bd", "0x601c0061bf00201c00620b00601b0060ec00200220b006002009002019", "0x200220b00606500604d00205406500720b0060c40061300020c400620b", "0x602900604d00202a02900720b00611b00613000211b00620b0060020ef", "0x1c100202c00620b00602a0061b200202b00620b0060540061b200200220b", "0x702d0061c500202d00620b00602d00604b00202d00620b00602c02b007", "0x2e00202f00620b00600202a00200220b00600200900202e0062f100220b", "0x22f200600202d00203300620b00603000602c00203000620b00602f006", "0x4800620b00600202a00200220b00602e0060f200200220b006002009002", "0x3300602f00203300620b00603900602c00203900620b00604800602b002", "0x11e00620b00703500603000203500620b00603500602c00203500620b006", "0x611e00603300200220b00600211e00200220b0060020090020370062f3", "0xf400212400620b00601000612b00203c00620b00600f00601600200220b", "0x3e0062f407d00620b00703a0061c800203a10d12000920b00612403c007", "0x20b00612a0061d400212a00620b00607d0061ca00200220b006002009002", "0x1d600200220b00612b00613600204112b00720b0060160060f800212c006", "0x4d13013104712e04512d01020b00612c0061eb00204300620b006041006", "0x20b00612e0061ef00200220b0060450060fa00200220b00612d00604d002", "0x20b00600202a00200220b00604d00604d00200220b00613000604d002002", "0x12c00205600620b00600200600c00204e00620b00604b00602b00204b006", "0x20b00610d00612b00205800620b00612000601600213300620b006006006", "0x4b00205b00620b0060430060fc00213400620b00600c006041002136006", "0x20b00604e00602c00205d00620b00604700600f00213500620b006131006", "0x5113204f01620b00613705d13505b1341360581330560150fe002137006", "0x200220b0060020090020610062f505f00620b00712f00617d00212f053", "0x20b00600210000200220b00606400603300206413800720b00605f0061f6", "0x213b00620b0060670061f900206700620b0061391380071f8002139006", "0x605100601600206a00620b00613200612c00206900620b00604f00600c", "0x606f00620b00613b0062f600213c00620b00605300612b00206c00620b", "0x13f00620b00606100610300200220b00600200900206f13c06c06a069016", "0x5100601600214100620b00613200612c00207100620b00604f00600c002", "0x7600620b00613f0062f600207500620b00605300612b00214500620b006", "0x220b00601600613600200220b006002009002076075145141071016006", "0x600200600c00207700620b00603e00610300200220b00600c006047002", "0x214b00620b00612000601600214600620b00600600612c00207900620b", "0x14b14607901600614a00620b0060770062f600207b00620b00610d00612b", "0x20b00603700603300200220b00600211e00200220b00600200900214a07b", "0x20b00600213100200220b00601600613600200220b00600c006047002002", "0x705b0020c700620b0060c700604b0020c700620b0060021fb00207f006", "0x20b00615115200705d00215200620b00600213500215100620b0060c707f", "0x12c00208300620b00600200600c00214f00620b00614e00610300214e006", "0x20b00601000612b00215000620b00600f00601600208500620b006006006", "0x200900216115e15008508301600616100620b00614f0062f600215e006", "0x1600613600200220b00600c00604700200220b00600211e00200220b006", "0x215f00620b00600200600c00216000620b00601900610300200220b006", "0x601000612b00216300620b00600f00601600215d00620b00600600612c", "0x1b200216215c16315d15f01600616200620b0061600062f600215c00620b", "0x20b00600202a00200900620b00600700600705b00200700620b006002006", "0x700600f00620b00600c0061ff00201600620b00600900604e00200c006", "0x61ff00200700620b00600200612b00200600620b00600202a00200f016", "0x600207500200f00620b00600220600200900700700600900620b006006", "0x612b00201900620b00600600601600200220b00600213900201400620b", "0x1b0060ea00201b01701500920b00601c0190071bd00201c00620b006007", "0x620b0060c40060ec00200220b0060020090020650062f70c400620b007", "0x4d00202a02900720b00611b00613000211b00620b0060540061bf002054", "0x2c00720b00602b00613000202b00620b0060020ef00200220b006029006", "0x2d0061b200202e00620b00602a0061b200200220b00602c00604d00202d", "0x620b00603000604b00203000620b00602f02e0071c100202f00620b006", "0x202a00200220b0060020090020330062f800220b0070300061c5002030", "0x3500620b00603900602c00203900620b00604800602e00204800620b006", "0x200220b0060330060f200200220b0060020090020022f900600202d002", "0x20b00603700602c00203700620b00611e00602b00211e00620b00600202a", "0x3000212000620b00612000602c00212000620b00603500602f002035006", "0x610d00603300200220b00600200900203a0062fa10d00620b007120006", "0xf400212a00620b00601700612b00203e00620b00601500601600200220b", "0x12b0062fb12c00620b00707d0061c800207d12403c00920b00612a03e007", "0x20b0060410061d400204100620b00612c0061ca00200220b006002009002", "0x450060fa00213013101004712e04512d01020b0060430061eb002043006", "0x604d00200220b00604700606100200220b00612e0061ef00200220b006", "0x4b04d00720b00612d00613000200220b00613000604d00200220b006131", "0x4f00604d00213204f00720b00604e00613000204e00620b006002000002", "0x12f05300720b00605100613000205100620b00604b0061b200200220b006", "0x605600613000205600620b0061320061b200200220b00605300604d002", "0x213600620b00612f0061b200200220b00613300604d00205813300720b", "0x1341360071c100213600620b00613600604b00213400620b0060580061b2", "0x1000620b00601000604b00205b00620b00605b00604b00205b00620b006", "0x61c500201000620b00601001400707900204d00620b00604d00604b002", "0x5d00620b00600202a00200220b0060020090021350062fc00220b00705b", "0x600202d00205f00620b00613700602c00213700620b00605d00602e002", "0x20b00600202a00200220b0061350060f200200220b0060020090020022fd", "0x2f00205f00620b00613800602c00213800620b00606100602b002061006", "0x20b00706400603000206400620b00606400602c00206400620b00605f006", "0x4d00200220b00613900603300200220b0060020090020670062fe139006", "0x603300200220b0060020090020022ff00600202d00200220b00604d006", "0x220b00613b00604d00206913b00720b00604d00613000200220b006067", "0x6c00604d00213c06c00720b00606a00613000206a00620b006002300002", "0x213f00620b00613c0061b200206f00620b0060690061b200200220b006", "0x710061c500207100620b00607100604b00207100620b00613f06f0071c1", "0x214500620b00600202a00200220b00600200900214100630100220b007", "0x30200600202d00207600620b00607500602c00207500620b00614500602e", "0x620b00600202a00200220b0061410060f200200220b006002009002002", "0x602f00207600620b00607900602c00207900620b00607700602b002077", "0x620b00714600603000214600620b00614600602c00214600620b006076", "0x211e00200220b00614b00603300200220b00600200900207b00630314b", "0x200220b00614a00613600207f14a00720b00600c0060f800200220b006", "0x603c00601600208300620b00600200600c0020c700620b00607f0061d6", "0x215e00620b0060c70060fc00215000620b00612400612b00208500620b", "0x620b00714f00630500214f14e15215100c20b00615e15008508300c304", "0x30800201600620b00616100630700200220b006002009002160006306161", "0x15d00630900215d15f00720b00601600606c00201600620b00601600f007", "0x620b00615100600c00215c00620b00616301000730a00216300620b006", "0x604100216e00620b00614e00612b00215b00620b00615200601600208a", "0x16816e15b08a01630c0020ed00620b00615c00630b00216800620b006009", "0x216b00630d08e00620b00715700617d00215715408716200c20b0060ed", "0x20b00616c00603300216c0d000720b00608e0061f600200220b006002009", "0xc00216d00620b00609200630f00209200620b00615f0d000730e002002", "0x20b00615400612b00209400620b00608700601600217100620b006162006", "0x600200900209617309417100c00609600620b00616d006310002173006", "0x600c00217500620b00616b00631100200220b00615f00613c00200220b", "0x620b00615400612b00209900620b0060870060160020d100620b006162", "0x20b00600200900209b1760990d100c00609b00620b006175006310002176", "0x600f00631200200220b00600900604700200220b00601000604d002002", "0x1600209d00620b00615100600c00217a00620b00616000631100200220b", "0x20b00617a0063100020cc00620b00614e00612b00217c00620b006152006", "0x220b00600211e00200220b0060020090020a00cc17c09d00c0060a0006", "0x20b00600f00631200200220b00601000604d00200220b00607b006033002", "0x20b00600213100200220b00600c00613600200220b006009006047002002", "0x705b0020a200620b0060a200604b0020a200620b00600231300217d006", "0x20b00617e0a400705d0020a400620b00600213500217e00620b0060a217d", "0x160020d200620b00600200600c0020cd00620b00617f00631100217f006", "0x20b0060cd00631000218000620b00612400612b0020a800620b00603c006", "0x220b00600211e00200220b0060020090020ce1800a80d200c0060ce006", "0x20b00600900604700200220b00600f00631200200220b00600c006136002", "0x200600c0020ab00620b00612b00631100200220b00601400614e002002", "0xc800620b00612400612b0020cf00620b00603c00601600218100620b006", "0x220b0060020090020c90c80cf18100c0060c900620b0060ab006310002", "0x220b00600c00613600200220b00603a00603300200220b00600211e002", "0x20b00601400614e00200220b00600900604700200220b00600f006312002", "0x60cb00604b0020cb00620b0060021fb0020ca00620b006002131002002", "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", "0x200600c00218e00620b0060b50063110020b500620b0060c60b300705d", "0xba00620b00601700612b0020b900620b0060150060160020b700620b006", "0x220b0060020090020bb0ba0b90b700c0060bb00620b00618e006310002", "0x220b00600f00631200200220b00600c00613600200220b00600211e002", "0x20b00606500631100200220b00601400614e00200220b006009006047002", "0x12b0020be00620b00601500601600218f00620b00600200600c0020bd006", "0xc10bf0be18f00c0060c100620b0060bd0063100020bf00620b006017006", "0x601600631500201600700720b00600700631400200220b00600211e002", "0x200220b00600f0060c400201000f00720b00600c00601c00200c00620b", "0x1b0170070bf00201b00620b00600900604e00201700620b00601000611b", "0x1900620b00600700630900200220b00601500603300201501400720b006", "0x1900631600211b00620b00600600601600205400620b00600200600c002", "0x602a02911b05400c31700202a00620b00601400604e00202900620b006", "0x600200900202c00631802b00620b0070650060710020650c401c00920b", "0x2a00200220b00602e00603300202e02d00720b00602b00614100200220b", "0x20b00603000631a00203000620b00602f02d00731900202f00620b006002", "0x31b00203900620b0060c400601600204800620b00601c00600c002033006", "0x631c00200220b00600200900203503904800900603500620b006033006", "0x620b0060c400601600203700620b00601c00600c00211e00620b00602c", "0x20b00600200601b00210d12003700900610d00620b00611e00631b002120", "0x220b00600200900200c00631d00900700720b0070060060db002006006", "0x160061a400200f00620b00600700609900201600620b0060090061a3002", "0x600202a00200220b00600200900200231e00600202d00201000620b006", "0x200f00620b00600c00609900201500620b0060140061a500201400620b", "0x601700600f00201700620b00600f00605300201000620b0060150061a4", "0x220b00600200900201900631f01b00620b0070100060df00201700620b", "0xc40063200020c400620b00601c0061b200201c00620b00601b0061a6002", "0x11b00620b00606500632100205400620b00601700600f00206500620b006", "0x202a00200220b00601900603300200220b00600200900211b054007006", "0x2b00620b00601700600f00202a00620b00602900632200202900620b006", "0x1b00200220b00600211e00202c02b00700602c00620b00602a006321002", "0x900200f00632301600c00720b0070090060db00200900620b006007006", "0x1400620b00600c00609900201000620b0060160061a300200220b006002", "0x220b00600200900200232400600202d00201500620b0060100061a4002", "0x600f00609900201b00620b0060170061a500201700620b00600202a002", "0x201900620b00601400605300201500620b00601b0061a400201400620b", "0x90020c400632501c00620b0070150060df00201900620b00601900600f", "0x5400620b0060650061b200206500620b00601c0061a600200220b006002", "0x600600601600202c00620b00600200600c00211b00620b006002131002", "0x202f00620b00611b00604e00202e00620b00601900600f00202d00620b", "0x2a02900920b00603002f02e02d02c01632600203000620b00605400604b", "0x7b00200220b00600200900204800632703300620b00702b00614b00202b", "0x11e00632900211e00620b00603503900732800203503900720b006033006", "0x10d00620b00602a00601600212000620b00602900600c00203700620b006", "0x200220b00600200900203a10d12000900603a00620b00603700632a002", "0x602a00601600212400620b00602900600c00203c00620b00604800632b", "0x600200900203e07d12400900603e00620b00603c00632a00207d00620b", "0x12a00632c00212a00620b00600202a00200220b0060c400603300200220b", "0x620b00612b00632900212b00620b00612c01900732800212c00620b006", "0x632a00212d00620b00600600601600204300620b00600200600c002041", "0x201401000720b00600f00613200204512d04300900604500620b006041", "0x20b00600200600c00201500620b00601400605300200220b006010006051", "0x12b00211b00620b00600700601600205400620b00600600612c002065006", "0x20b00601600604b00202a00620b00600c00604100202900620b006009006", "0x2c02b02a02911b05406501032d00202c00620b00601500600f00202b006", "0x202e00632e02d00620b0070c40060ed0020c401c01901b01701620b006", "0x620b00702f00603000202f00620b00602d00608e00200220b006002009", "0x20ef00200220b00603000603300200220b00600200900203300632f030", "0x900200233000600202d00203900620b00604800604b00204800620b006", "0x4b00203500620b00600210000200220b00603300603300200220b006002", "0x20b00611e00633200211e00620b00603900633100203900620b006035006", "0x1600210d00620b00601b00612c00212000620b00601700600c002037006", "0x20b00603700621200203c00620b00601c00612b00203a00620b006019006", "0x602e00633300200220b00600200900212403c03a10d120016006124006", "0x212a00620b00601b00612c00203e00620b00601700600c00207d00620b", "0x607d00621200212b00620b00601c00612b00212c00620b006019006016", "0x233400200c00620b00600233400204112b12c12a03e01600604100620b", "0x13900201700620b00600233500201400620b00600207500200f00620b006", "0xf0020c400620b00600200600c00200220b00600211e00200220b006002", "0x633700201c01901b00920b0060650c400733600206500620b006007006", "0x20b00601900600f00200220b00600200900205400633801500620b00701c", "0x1500620b00601501700733900202911b00720b00602a00607600202a006", "0x600c00200220b00600200900202b00633a01000620b007029006077002", "0x20b00603002f00721100203000620b00611b00600f00202f00620b00601b", "0x620b00702e00633b00201000620b00601001400707900202e02d02c009", "0xf00211e00620b00602c00600c00200220b00600200900203300633c016", "0x733d00203503904800920b00603711e00721100203700620b00602d006", "0x200900212000633e00900620b00703500633b00201600620b00601600f", "0x207d00620b00600600601600212400620b00604800600c00200220b006", "0x12400933f00200900620b00600900c00733d00203e00620b00603900600f", "0x212c00634112a00620b00703c00634000203c03a10d00920b00603e07d", "0x20b00704100634300204112b00720b00612a00634200200220b006002009", "0x604300901601001501621000200220b00600200900212d006344043006", "0x4700620b00612e12b00734600212e00620b00604500634500204500620b", "0x3a00601600213000620b00610d00600c00213100620b006047006347002", "0x200900204b04d13000900604b00620b00613100634800204d00620b006", "0x634900200220b00600900634900200220b0060150060fa00200220b006", "0x204e00620b00612d00634a00200220b00601000604d00200220b006016", "0x10d00600c00213200620b00604f00634700204f00620b00604e12b007346", "0x12f00620b00613200634800205300620b00603a00601600205100620b006", "0xfa00200220b00601000604d00200220b00600200900212f053051009006", "0x200220b00601600634900200220b00600900634900200220b006015006", "0x603a00601600213300620b00610d00600c00205600620b00612c00634b", "0x600200900213605813300900613600620b00605600634800205800620b", "0x150060fa00200220b00601000604d00200220b00601600634900200220b", "0x34600213400620b00612000634a00200220b00600c00634c00200220b006", "0x604800600c00213500620b00605b00634700205b00620b006134039007", "0x605f00620b00613500634800213700620b00600600601600205d00620b", "0x60fa00200220b00601000604d00200220b00600200900205f13705d009", "0x34a00200220b00600f00634c00200220b00600c00634c00200220b006015", "0x613800634700213800620b00606102d00734600206100620b006033006", "0x206700620b00600600601600213900620b00602c00600c00206400620b", "0x34c00200220b00600200900213b06713900900613b00620b006064006348", "0x200220b00600c00634c00200220b0060150060fa00200220b00600f006", "0x606911b00734600206900620b00602b00634a00200220b00601400614e", "0x213c00620b00601b00600c00206c00620b00606a00634700206a00620b", "0x13f06f13c00900613f00620b00606c00634800206f00620b006006006016", "0x220b00600c00634c00200220b00600f00634c00200220b006002009002", "0x20b00605400634a00200220b00601700634d00200220b00601400614e002", "0x214500620b00614100634700214100620b006071019007346002071006", "0x614500634800207600620b00600600601600207500620b00601b00600c", "0x20b00600208300201500620b00600220600207707607500900607700620b", "0x600234e00206500620b00600207500201c00620b00600214f00201b006", "0x235100202c00620b00600235000202a00620b00600234f00211b00620b", "0x20f00204800620b00600235300203000620b00600235200202e00620b006", "0x210d00620b00600207500203700620b00600235400203500620b006002", "0x12a00620b00600206400207d00620b00600208500203c00620b00600214f", "0x200220b00600211e00200220b00600213900212b00620b006002075002", "0x13104100720b00604100635600212e04512d04304101620b00600f006355", "0x604d00204d13000720b00604700613000204700620b0061310061bf002", "0x4f04e00720b00604b00613000204b00620b00600235700200220b006130", "0x613200613000213200620b00604d0061b200200220b00604e00604d002", "0x212f00620b00604f0061b200200220b00605100604d00205305100720b", "0x60530061b200200220b00605600604d00213305600720b00612f006130", "0x13400620b0061360580071c100213600620b0061330061b200205800620b", "0x900205b00635800220b0071340061c500213400620b00613400604b002", "0x205d00620b00613500602e00213500620b00600202a00200220b006002", "0x200220b00600200900200235900600202d00213700620b00605d00602c", "0x620b00605f00602b00205f00620b00600202a00200220b00605b0060f2", "0x635600213800620b00613700602f00213700620b00606100602c002061", "0x612d00635b00213904300720b00604300635a00206404100720b006041", "0x720b00612e00635c00213b04500720b00604500635b00206712d00720b", "0x20b00606a00608a00206a00620b00606913b06713906401621000206912e", "0x13c00635d06c00620b00713800603000213800620b00613800602c002002", "0x4512d04304101621000200220b00606c00603300200220b006002009002", "0x620b00600c00612b00213f00620b00600700601600206f00620b00612e", "0x20b00600200900200235e00600202d00214100620b00606f006163002071", "0xc00612b00207700620b00600700601600200220b00613c006033002002", "0x20b00600200600207607514500920b0060790770071bd00207900620b006", "0xec00200220b00600200900214b00635f14600620b0070760060ea002002", "0x614a0060fa00207f14a00720b00607b00636000207b00620b006146006", "0x215200620b00607f0063610021510c700720b00604100636000200220b", "0x14f00604d00208314f00720b00614e00613000214e00620b0061520061bf", "0x215000620b0060850061bf00208500620b00615100636100200220b006", "0x60830061b200200220b00615e00604d00216115e00720b006150006130", "0x15d00620b00615f1600071c100215f00620b0061610061b200216000620b", "0x900216300636200220b00715d0061c500215d00620b00615d00604b002", "0x216200620b00615c00602e00215c00620b00600202a00200220b006002", "0x200220b00600200900200236300600202d00208700620b00616200602c", "0x620b00615400602b00215400620b00600202a00200220b0061630060f2", "0x602c00208a00620b00608700602f00208700620b00615700602c002157", "0x600200900216e00636415b00620b00708a00603000208a00620b00608a", "0x430c701621000200220b00615b00603300200220b00600211e00200220b", "0x607500612b00213f00620b00614500601600216800620b00612e04512d", "0x20d000620b00613f00601600214100620b00616800616300207100620b", "0x600216b08e0ed00920b00616c0d000736500216c00620b00607100612b", "0x20b00600200900216d00636709200620b00716b00636600200220b006002", "0x9617312009401620b00614100635500217100620b006092006368002002", "0x209917100720b00617100635b0020d117300720b00617300635b002175", "0x36a09b17600720b0070990d100200936900212000620b00612010d007079", "0x17100634900200220b00609b00634900200220b00600200900209d17a007", "0xc0020cc00620b00617c00602b00217c00620b00600202a00200220b006", "0x236b00600202d00217d00620b0060cc00602c0020a000620b006176006", "0x720b00609600635b00200220b00609d00634900200220b006002009002", "0x20090020cd17f00736c0a417e00720b0070a217117a0093690020a2096", "0x602b0020d200620b00600202a00200220b0060a400634900200220b006", "0x620b0060a800602c00218000620b00617e00600c0020a800620b0060d2", "0x220b0060cd00634900200220b00600200900200236d00600202d0020ce", "0x617f00600c00218100620b0060ab00602e0020ab00620b00600202a002", "0x20a000620b00618000636e0020ce00620b00618100602c00218000620b", "0x60cf00602c0020cf00620b00617d00602f00217d00620b0060ce00636f", "0x220b0060020090020c90063700c800620b0070cf0060300020cf00620b", "0x18e0b50b30c60cb0ca01420b00601600637100200220b0060c8006033002", "0x219000620b0060a000600c0020bb0ba00720b00618e0063720020b90b7", "0x608e00612b00219b00620b00600900615d0020c300620b0060ed006016", "0x19d12000720b00612000635a0020d400620b0060bb00637300219c00620b", "0x1620b00619d0d419c19b0c319000f37400219d00620b00619d00604b002", "0x60020090020d60063751a000620b0070c10060ed0020c10bf0be18f0bd", "0x2c0020d700620b00619f00602f00219f00620b0061a000608e00200220b", "0x20b0060d900602c0020d900620b0060d700602f0020d700620b0060d7006", "0x200220b0060020090020db0063761a100620b0070d90060300020d9006", "0x12000720b00612000635a00200220b0061a100603300200220b00600211e", "0x20b00612407d00715f00212400620b0061750961731a30940162100021a3", "0x21ad00620b00618f0060160021a51a400720b00612400620e002124006", "0x1c80021b21a60df00920b0061ae1ad0070f40021ae00620b0060bf00612b", "0x61b40061ca00200220b0060020090020e50063771b400620b0071b2006", "0x1bd1ba01020b0061b80061eb0021b800620b0060e70061d40020e700620b", "0x200220b0061bd0060fa00200220b0061ba00604d0021c10ef1bf0ec0ea", "0x220b0061bf00604d00200220b0060ec00606100200220b0060ea0061ef", "0x620b0060020000021c500620b00600237800200220b0061c100604d002", "0x37a0021c800620b0060020ef0020f400620b0060ef0f21c50093790020f2", "0x620b0061ca00604b0021c800620b0061c800604b0021ca00620b006002", "0x1d600720b0060f400637c0020f81d400720b0061ca1c80be00937b0021ca", "0x20b00600237e0020fa00620b0060020ef00200220b0061d600637d0021eb", "0x37b0021ef00620b0061ef00604b0020fa00620b0060fa00604b0021ef006", "0x63800021eb00620b0061eb00637f0020fe0fc00720b0061ef0fa1d4009", "0x1f800604d0021f91f810000920b0061f60063810021f61eb00720b0061eb", "0x4b0022f600620b0061000061b200200220b0061f900604d00200220b006", "0x63800021fb10300720b0062f60fe0fc00937b0020fe00620b0060fe006", "0x20600604d00230000020600920b0061ff0063810021ff1eb00720b0061eb", "0x4b00230400620b0060000061b200200220b00630000604d00200220b006", "0x638100230730500720b0063041fb10300937b0021fb00620b0061fb006", "0x20b00630900604d00200220b00630800604d00230a30930800920b0061eb", "0x937b00230700620b00630700604b00230b00620b00630a0061b2002002", "0x630e00604b00230f00620b00600238200230e30c00720b00630b307305", "0x720b00630f30e30c00937b00230f00620b00630f00604b00230e00620b", "0x37b00231100620b00631100604b0020f800620b0060f800604b002311310", "0x612b00231600620b0060df00601600231331200720b0063110f8310009", "0x31200615d00231503e31400920b00631731600738300231700620b0061a6", "0x620b00603e12a00713b00231300620b00631300604b00231200620b006", "0xec00200220b00600200900231a00638431900620b0073150060ea00203e", "0x31c31331200937b00231c00620b00631b0061bf00231b00620b006319006", "0x620b00631400601600232900620b0060bd00600c00212c32000720b006", "0x707900232c00620b0061a500616300232b00620b00632000615d00232a", "0x32832632232100c20b00632c32b32a32900c38500212c00620b00612c12b", "0x615200200220b00600200900233100638632d00620b007328006151002", "0x600238200233321200720b00633212c32600937b00233200620b00632d", "0x233400620b00633400604b00233300620b00633300604b00233400620b", "0x33733633501620b0061a40063550020c403a00720b00633433321200937b", "0x33700634900200220b00633600604d00200220b0063350060fa002211339", "0x233d33b00720b00601000613200200220b00633900634900200220b006", "0x620b00600202a00233f00620b00633d00605300200220b00633b006051", "0xb90b70ba0b50b30c60cb0ca01412a00234200620b00634000602e002340", "0x34900620b00600600612c00234800620b00632100600c00234300620b006", "0x34300604100234b00620b00603e00612b00234a00620b006322006016002", "0x620b00634d0060fc00234d21100720b00621100635c00234c00620b006", "0x234e0c400720b0060c400635a0020c400620b0060c406500707900234d", "0x634200602c00234f00620b00633f00600f00234e00620b00634e00604b", "0x34c34b34a3493480150fe00203a00620b00603a03c00708700235000620b", "0x620b00601701b00716200234734634501721001620b00635034f34e34d", "0x1f600200220b00600200900235200638735100620b00734700617d002017", "0x620b00600202a00200220b00620f00603300220f35300720b006351006", "0x2902b02d05401420b00635300637100235500620b00635400602e002354", "0x36100620b00634500601600236000620b00621000600c00202f03335611e", "0x35600637300236600620b00634600612b00236500620b00603a00615d002", "0x36e00620b00635500602c00236900620b00612000604b00236800620b006", "0x38900235c35b01935a35701620b00636e369368366365361360010388002", "0x2c00720d00202d00620b00602d02e00738a00205400620b00605411b007", "0x611e03700738c00202900620b00602902a00738b00202b00620b00602b", "0x620b00602f03000738e00203300620b00603304800738d00211e00620b", "0x639036f00620b00735c00638f00201900620b00601901c00708700202f", "0x37200603300237203900720b00636f00639100200220b006002009002371", "0x237a00620b00635a00601600237900620b00635700600c00200220b006", "0x3903500739200237c00620b0062110060fc00237b00620b00635b00612b", "0x30500237820e37437300c20b00637c37b37a37900c30400203900620b006", "0x637d00630700200220b00600200900237e00639337d00620b007378006", "0x37f00720b00601400606c00201400620b00601401500730800201400620b", "0x12a00238200620b0063810c400730a00238100620b006380006309002380", "0x620b00637300600c00238300620b00602f03303911e02902b02d054014", "0x604100238c00620b00620e00612b00238b00620b00637400601600220d", "0x38d38c38b20d01630c00238e00620b00638200630b00238d00620b006383", "0x239100639438f00620b00738a00617d00238a38938838500c20b00638e", "0x20b00639500603300239539200720b00638f0061f600200220b006002009", "0xc00239600620b00620c00630f00220c00620b00637f39200730e002002", "0x20b00638800601600239800620b00601700612c00239700620b006385006", "0x31000239b00620b00638900612b00239a00620b00601900615d002399006", "0x220b00600200900239c39b39a39939839700f00639c00620b006396006", "0x638500600c00239d00620b00639100631100200220b00637f00613c002", "0x23a000620b00638800601600239f00620b00601700612c00239e00620b", "0x639d0063100023a200620b00638900612b0023a100620b00601900615d", "0x604d00200220b0060020090023a33a23a13a039f39e00f0063a300620b", "0x39600200220b00602f00620c00200220b00605400639500200220b0060c4", "0x200220b00611e00639800200220b00603900639700200220b006033006", "0x220b00602d00639b00200220b00602b00639a00200220b006029006399", "0x637300600c0023a400620b00637e00631100200220b006015006312002", "0x23a700620b0063740060160023a600620b00601700612c0023a500620b", "0x63a40063100023a900620b00620e00612b0023a800620b00601900615d", "0x604d00200220b0060020090023aa3a93a83a73a63a500f0063aa00620b", "0x39b00200220b00602b00639a00200220b00605400639500200220b0060c4", "0x200220b00602f00620c00200220b00601500631200200220b00602d006", "0x220b00602900639900200220b00611e00639800200220b006033006396", "0x20b00637100631100200220b00603500639d00200220b00621100639c002", "0x160023ad00620b00601700612c0023ac00620b00635700600c0023ab006", "0x20b00635b00612b0023af00620b00601900615d0023ae00620b00635a006", "0x90023b13b03af3ae3ad3ac00f0063b100620b0063ab0063100023b0006", "0x31200200220b00603500639d00200220b0060c400604d00200220b006002", "0x200220b00603000639e00200220b00601c00615700200220b006015006", "0x220b00611b00639f00200220b00612000604d00200220b00621100639c", "0x20b00602a0063a200200220b00602c0063a100200220b00602e0063a0002", "0x635200631100200220b0060480063a400200220b0060370063a3002002", "0x23b400620b00601700612c0023b300620b00621000600c0023b200620b", "0x634600612b0023b600620b00603a00615d0023b500620b006345006016", "0x23b83b73b63b53b43b300f0063b800620b0063b20063100023b700620b", "0x200220b0060480063a400200220b0060c600639a00200220b006002009", "0x220b0061a400608a00200220b00602c0063a100200220b00603500639d", "0x20b00601c00615700200220b00601500631200200220b0060370063a3002", "0x612000604d00200220b00601000605100200220b00603000639e002002", "0x2e0063a000200220b00611b00639f00200220b00602a0063a200200220b", "0x639b00200220b0060ca00639500200220b00601b00615400200220b006", "0x39700200220b0060b700639600200220b0060b900620c00200220b0060cb", "0x200220b0060b300639900200220b0060b500639800200220b0060ba006", "0x220b00612c00604d00200220b00606500614e00200220b00603c006157", "0x600612c0023ba00620b00632100600c0023b900620b006331006311002", "0x3bd00620b00632600615d0023bc00620b0063220060160023bb00620b006", "0x3bb3ba00f0063bf00620b0063b90063100023be00620b00603e00612b002", "0x63a400200220b0060c600639a00200220b0060020090023bf3be3bd3bc", "0x8a00200220b00602c0063a100200220b00603500639d00200220b006048", "0x200220b00601500631200200220b0060370063a300200220b0061a4006", "0x220b00601000605100200220b00603000639e00200220b00601c006157", "0x20b00611b00639f00200220b00602a0063a200200220b00612000604d002", "0x60ca00639500200220b00601b00615400200220b00602e0063a0002002", "0xb900620c00200220b00606500614e00200220b0060cb00639b00200220b", "0x639800200220b0060ba00639700200220b0060b700639600200220b006", "0x8a00200220b00603c00615700200220b0060b300639900200220b0060b5", "0x200220b00631300604d00200220b00612b00614e00200220b0061a5006", "0x600600612c0023c100620b0060bd00600c0023c000620b00631a006311", "0x23c400620b00631200615d0023c300620b0063140060160023c200620b", "0x3c33c23c100f0063c600620b0063c00063100023c500620b00603e00612b", "0x480063a400200220b0060c600639a00200220b0060020090023c63c53c4", "0x608a00200220b00602c0063a100200220b00603500639d00200220b006", "0x15700200220b00601500631200200220b0060370063a300200220b0061a4", "0x200220b00601000605100200220b00603000639e00200220b00601c006", "0x220b00611b00639f00200220b00602a0063a200200220b00612000604d", "0x20b0060ca00639500200220b00601b00615400200220b00602e0063a0002", "0x60b900620c00200220b00606500614e00200220b0060cb00639b002002", "0xb500639800200220b0060ba00639700200220b0060b700639600200220b", "0x608a00200220b00603c00615700200220b0060b300639900200220b006", "0x31100200220b00612a00614500200220b00612b00614e00200220b0061a5", "0x20b00600600612c0023c800620b0060bd00600c0023c700620b0060e5006", "0x12b00221700620b0060be00615d0023ca00620b0060df0060160023c9006", "0x2173ca3c93c800f0063cc00620b0063c70063100023cb00620b0061a6006", "0x20b0060db00603300200220b00600211e00200220b0060020090023cc3cb", "0x603500639d00200220b0060480063a400200220b0060c600639a002002", "0x1500631200200220b0060370063a300200220b00602c0063a100200220b", "0x605100200220b00603000639e00200220b00601c00615700200220b006", "0x39f00200220b00602a0063a200200220b00612000604d00200220b006010", "0x200220b00601b00615400200220b00602e0063a000200220b00611b006", "0x220b00606500614e00200220b0060cb00639b00200220b0060ca006395", "0x20b0060b700639600200220b0060b900620c00200220b00612a006145002", "0x60b300639900200220b0060b500639800200220b0060ba006397002002", "0x7d00615b00200220b00612b00614e00200220b00603c00615700200220b", "0x634900200220b00609600634900200220b00617500639c00200220b006", "0x3a50023cd00620b00600213100200220b0060940060fa00200220b006173", "0x20b0062183cd00705b00221800620b00621800604b00221800620b006002", "0x3110023d000620b0063ce3cf00705d0023cf00620b0060021350023ce006", "0x20b00600600612c0023d200620b0060bd00600c0023d100620b0063d0006", "0x12b0023d500620b0060be00615d0023d400620b00618f0060160023d3006", "0x3d53d43d33d200f0063d700620b0063d10063100023d600620b0060bf006", "0x20b0060c600639a00200220b00600211e00200220b0060020090023d73d6", "0x602c0063a100200220b00603500639d00200220b0060480063a4002002", "0x1c00615700200220b00601500631200200220b0060370063a300200220b", "0x604d00200220b00601000605100200220b00603000639e00200220b006", "0x3a000200220b00611b00639f00200220b00602a0063a200200220b006120", "0x200220b0060ca00639500200220b00601b00615400200220b00602e006", "0x220b00612a00614500200220b00606500614e00200220b0060cb00639b", "0x20b0060ba00639700200220b0060b700639600200220b0060b900620c002", "0x603c00615700200220b0060b300639900200220b0060b5006398002002", "0x17500639c00200220b00607d00615b00200220b00612b00614e00200220b", "0x60fa00200220b00617300634900200220b00609600634900200220b006", "0x3d900620b0060bd00600c0023d800620b0060d600631100200220b006094", "0xbe00615d0023db00620b00618f0060160023da00620b00600600612c002", "0x3de00620b0063d80063100023dd00620b0060bf00612b0023dc00620b006", "0x220b00600211e00200220b0060020090023de3dd3dc3db3da3d900f006", "0x20b00603500639d00200220b0060480063a400200220b0060c9006033002", "0x60370063a300200220b0060940060fa00200220b00602c0063a1002002", "0x3000639e00200220b00601c00615700200220b00601500631200200220b", "0x63a200200220b00612000604d00200220b00601000605100200220b006", "0x15400200220b00602e0063a000200220b00611b00639f00200220b00602a", "0x200220b00606500614e00200220b00612b00614e00200220b00601b006", "0x220b00609600634900200220b00612a00614500200220b006173006349", "0x20b00603c00615700200220b00607d00615b00200220b00617500639c002", "0x20b0060023a60023df00620b00600213100200220b006016006047002002", "0x23e100620b0063e03df00705b0023e000620b0063e000604b0023e0006", "0x63e30063110023e300620b0063e13e200705d0023e200620b006002135", "0x23e600620b00600600612c0023e500620b0060a000600c0023e400620b", "0x608e00612b0023e800620b00600900615d0023e700620b0060ed006016", "0x23ea3e93e83e73e63e500f0063ea00620b0063e40063100023e900620b", "0x39d00200220b0060480063a400200220b00600211e00200220b006002009", "0x200220b0060370063a300200220b00602c0063a100200220b006035006", "0x220b00603000639e00200220b00601c00615700200220b006015006312", "0x20b00602a0063a200200220b00614100608a00200220b006010006051002", "0x601b00615400200220b00602e0063a000200220b00611b00639f002002", "0x3c00615700200220b00606500614e00200220b00612b00614e00200220b", "0x604700200220b00607d00615b00200220b00612a00614500200220b006", "0x23eb00620b00616d00631100200220b00610d00614e00200220b006016", "0x60ed0060160023ed00620b00600600612c0023ec00620b00600200600c", "0x23f000620b00608e00612b0023ef00620b00600900615d0023ee00620b", "0x20b0060020090023f13f03ef3ee3ed3ec00f0063f100620b0063eb006310", "0x20b00610d00614e00200220b00616e00603300200220b00600211e002002", "0x602c0063a100200220b00603500639d00200220b0060480063a4002002", "0x1c00615700200220b00601500631200200220b0060370063a300200220b", "0x63a200200220b00601000605100200220b00603000639e00200220b006", "0x15400200220b00602e0063a000200220b00611b00639f00200220b00602a", "0x200220b00606500614e00200220b00612b00614e00200220b00601b006", "0x220b00601600604700200220b00612a00614500200220b00603c006157", "0x20b00604500634900200220b00612e00639c00200220b00607d00615b002", "0x60c70060fa00200220b00604300604d00200220b00612d006349002002", "0x3f300604b0023f300620b0060023a70023f200620b00600213100200220b", "0x3f500620b0060021350023f400620b0063f33f200705b0023f300620b006", "0x600c0023f700620b0063f60063110023f600620b0063f43f500705d002", "0x620b0061450060160023f900620b00600600612c0023f800620b006002", "0x63100023fc00620b00607500612b0023fb00620b00600900615d0023fa", "0x200220b0060020090023fd3fc3fb3fa3f93f800f0063fd00620b0063f7", "0x200220b0060480063a400200220b00610d00614e00200220b00600211e", "0x220b0060370063a300200220b00602c0063a100200220b00603500639d", "0x20b00603000639e00200220b00601c00615700200220b006015006312002", "0x611b00639f00200220b00602a0063a200200220b006010006051002002", "0x12b00614e00200220b00601b00615400200220b00602e0063a000200220b", "0x614500200220b00603c00615700200220b00606500614e00200220b006", "0x39c00200220b00607d00615b00200220b00601600604700200220b00612a", "0x200220b00612d00634900200220b00604500634900200220b00612e006", "0x620b00614b00631100200220b0060410060fa00200220b00604300604d", "0x60160023ff00620b00600600612c00221b00620b00600200600c0023fe", "0x620b00607500612b00240100620b00600900615d00240000620b006145", "0x20750024034024014003ff21b00f00640300620b0063fe006310002402", "0x211e00200220b00600213900201500620b00600206400201000620b006", "0x201b01700720b00601600620e00200220b00600c00604700200220b006", "0x20b00600900612b00206500620b00600600601600200220b00601700608a", "0x620b0070c40061c80020c401c01900920b0060540650070f4002054006", "0x1d400202a00620b00611b0061ca00200220b00600200900202900640411b", "0x4803303002f02e02d02c01020b00602b0061eb00202b00620b00602a006", "0x20b00602e0061ef00200220b00602d0060fa00200220b00602c00604d002", "0x604800604d00200220b00603000604d00200220b00602f006061002002", "0x3900937900203500620b00600200000203900620b00600237800200220b", "0x12000620b00600237a00203700620b0060020ef00211e00620b006033035", "0x700937b00212000620b00612000604b00203700620b00603700604b002", "0x3c00637d00212403c00720b00611e00637c00203a10d00720b006120037", "0x604b00203e00620b00600237e00207d00620b0060020ef00200220b006", "0x603e07d10d00937b00203e00620b00603e00604b00207d00620b00607d", "0x12400720b00612400638000212400620b00612400637f00212c12a00720b", "0x4d00200220b00604300604d00212d04304100920b00612b00638100212b", "0x620b00612c00604b00204500620b0060410061b200200220b00612d006", "0x12400720b00612400638000204712e00720b00604512c12a00937b00212c", "0x4d00200220b00613000604d00204b04d13000920b006131006381002131", "0x620b00604700604b00204e00620b00604d0061b200200220b00604b006", "0x5100920b00612400638100213204f00720b00604e04712e00937b002047", "0x12f0061b200200220b00605300604d00200220b00605100604d00212f053", "0x20b00605613204f00937b00213200620b00613200604b00205600620b006", "0x4b00205800620b00605800604b00213600620b006002382002058133007", "0x604b00205b13400720b00613605813300937b00213600620b006136006", "0x605b03a13400937b00205b00620b00605b00604b00203a00620b00603a", "0x13800620b00601c00612b00206100620b00601900601600205d13500720b", "0x213500620b00613500615d00205f01413700920b006138061007383002", "0x5f0060ea00201400620b00601401500713b00205d00620b00605d00604b", "0x620b0060640060ec00200220b00600200900213900640506400620b007", "0xf06900720b00613b05d13500937b00213b00620b0060670061bf002067", "0x6900615d00207100620b00613700601600213f00620b00600200600c002", "0x620b00600f01000707900214500620b00601b00616300214100620b006", "0x706f00615100206f13c06c06a00c20b00614514107113f00c38500200f", "0x7700620b00607500615200200220b00600200900207600640607500620b", "0x4b00214b00620b00600238200214607900720b00607700f13c00937b002", "0x14b14607900937b00214b00620b00614b00604b00214600620b006146006", "0x620b00607f00633200207f00620b00614a00633100214a07b00720b006", "0x615d00215200620b00606c00601600215100620b00606a00600c0020c7", "0x620b0060c700621200214f00620b00601400612b00214e00620b00607b", "0x20b00600f00604d00200220b00600200900208314f14e152151016006083", "0x601600215000620b00606a00600c00208500620b006076006333002002", "0x620b00601400612b00216100620b00613c00615d00215e00620b00606c", "0x600200900215f16016115e15001600615f00620b006085006212002160", "0x5d00604d00200220b00601000614e00200220b00601b00608a00200220b", "0x216300620b00600200600c00215d00620b00613900633300200220b006", "0x601400612b00216200620b00613500615d00215c00620b006137006016", "0x900215408716215c16301600615400620b00615d00621200208700620b", "0x14500200220b00601000614e00200220b00601b00608a00200220b006002", "0x620b00600200600c00215700620b00602900633300200220b006015006", "0x612b00216e00620b00600700615d00215b00620b00601900601600208a", "0xed16816e15b08a0160060ed00620b00615700621200216800620b00601c", "0x600f00639500201c01901b01701501401000f01420b00600c006371002", "0x1500639900200220b00601400639a00200220b00601000639b00200220b", "0x620c00200220b00601900639600200220b00601700639800200220b006", "0x2b00620b00600600601600202a00620b00600200600c00200220b00601c", "0x1b00637300202d00620b00600900612b00202c00620b00600700615d002", "0x2e02d02c02b02a00f37400202f00620b00601600604b00202e00620b006", "0x3300640703000620b0070290060ed00202911b0540650c401620b00602f", "0x20b00604800602f00204800620b00603000608e00200220b006002009002", "0xc00211e00620b0060350063a900203500620b0060390063a8002039006", "0x20b00605400615d00212000620b00606500601600203700620b0060c4006", "0x1600603c00620b00611e0063aa00203a00620b00611b00612b00210d006", "0x212400620b0060330063ab00200220b00600200900203c03a10d120037", "0x605400615d00203e00620b00606500601600207d00620b0060c400600c", "0x612b00620b0061240063aa00212c00620b00611b00612b00212a00620b", "0x20b00700700603000200700620b00600200636f00212b12c12a03e07d016", "0xef00200220b00600900603300200220b00600200900200c006408009006", "0x200240900600202d00200f00620b00601600604b00201600620b006002", "0x201000620b00600200000200220b00600c00603300200220b006002009", "0x1400604d00201501400720b00600f00613000200f00620b00601000604b", "0x201c00620b00600600604e00201900620b0060150061b200200220b006", "0x600202a00200220b00601b00603300201b01700720b00601c01900704f", "0x605400620b0060c40061ff00206500620b00601700604e0020c400620b", "0x900700720b00600c00607600200c00620b00600600600f002054065007", "0x73ac00200220b00600200900200f00640a01600620b007009006077002", "0x140063ad00200220b00600200900201500640b01401000720b007016002", "0x1900620b00600700600f00201b00620b00601000600c00201700620b006", "0x200220b00600200900201c01901b00900601c00620b0060170063ae002", "0x20b00601500600c00206500620b0060c40063af0020c400620b00600202a", "0x900602900620b0060650063ae00211b00620b00600700600f002054006", "0x600c00202a00620b00600f0063af00200220b00600200900202911b054", "0x620b00602a0063ae00202c00620b00600700600f00202b00620b006002", "0x200220b00600213900201000620b0060023b000202d02c02b00900602d", "0x620b00600700612b00201b00620b00600600601600200220b00600211e", "0x1c00620b0070170060ea00201701501400920b00601901b007383002019", "0x636000206500620b00601c0060ec00200220b0060020090020c400640c", "0x620b00601400601600200220b0060540060fa00211b05400720b006065", "0x2b02a02900920b00602d02c0071bd00202d00620b00601500612b00202c", "0x200900202f00640d02e00620b00702b0060ea00200220b006002006002", "0x4803300720b00603000636000203000620b00602e0060ec00200220b006", "0x60390061bf00203900620b00611b00636100200220b0060330060fa002", "0x200220b00611e00604d00203711e00720b00603500613000203500620b", "0x610d00613000210d00620b0061200061bf00212000620b006048006361", "0x212400620b0060370061b200200220b00603a00604d00203c03a00720b", "0x3e00604b00203e00620b00607d1240071c100207d00620b00603c0061b2", "0x220b00600200900212a00640e00220b00703e0061c500203e00620b006", "0x612b00602c00212b00620b00612c00602e00212c00620b00600202a002", "0x612a0060f200200220b00600200900200240f00600202d00204100620b", "0x602c00212d00620b00604300602b00204300620b00600202a00200220b", "0x620b00604500602c00204500620b00604100602f00204100620b00612d", "0x11e00200220b00600200900204700641012e00620b007045006030002045", "0x13100c00720b00600c0063b100200220b00612e00603300200220b006002", "0x602900601600204d00620b0060023b300213000620b0061310063b2002", "0x205300620b0061300063b400205100620b00602a00612b00213200620b", "0x4f04e04b00920b00612f05305113200c3b500212f00620b00604d00604b", "0x608e00200220b00600200900213300641105600620b00704f0060ed002", "0x620b00613600602c00213600620b00605800602f00205800620b006056", "0x3300200220b00600200900205b00641213400620b007136006030002136", "0x13504e04b0093b600213500c00720b00600c0063b100200220b006134006", "0x600202a00200220b00600200900213806105f00941313705d00720b007", "0x206700620b00605d00601600213900620b0060640063b700206400620b", "0x41400600202d00206900620b0061390063b800213b00620b00613700612b", "0x605f00601600206a00620b0061380063b900200220b006002009002002", "0x206900620b00606a0063b800213b00620b00606100612b00206700620b", "0x706c0063bc00206c00620b00613c0063bb00213c00620b0060690063ba", "0x200220b00606f0063bd00200220b00600200900213f00641506f00620b", "0x200600c00214100620b0060710063be00207100c00720b00600c0063b1", "0x14b00620b00613b00612b00214600620b00606700601600207900620b006", "0x790163c000214a00620b0061410063bf00207b00620b006009006041002", "0x41607f00620b00707700617d00207707607514500c20b00614a07b14b146", "0x603300215100f00720b00607f0061f600200220b0060020090020c7006", "0x15000620b00614500600c00215200620b00600c0063c100200220b006151", "0x1520063c200216100620b00607600612b00215e00620b006075006016002", "0x620b00600f0100073c300215f00620b00601600604e00216000620b006", "0x850063c500208508314f14e00c20b00615f16016115e1500163c400200f", "0x620b00615d0063c600200220b00600200900216300641715d00620b007", "0xc00208700620b0061620063c800216200620b00615c00f0073c700215c", "0x20b00608300612b00215700620b00614f00601600215400620b00614e006", "0x600200900215b08a15715400c00615b00620b0060870063c900208a006", "0x600c00216e00620b0061630063ca00200220b00600f00604700200220b", "0x620b00608300612b0020ed00620b00614f00601600216800620b00614e", "0x20b00600200900216b08e0ed16800c00616b00620b00616e0063c900208e", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x1600216c00620b00614500600c0020d000620b0060c70063ca00200220b", "0x20b0060d00063c900216d00620b00607600612b00209200620b006075006", "0x20b00600c00609b00200220b00600200900217116d09216c00c006171006", "0x600900604700200220b00601000621700200220b006016006051002002", "0x1600217300620b00600200600c00209400620b00613f0063ca00200220b", "0x20b0060940063c900217500620b00613b00612b00209600620b006067006", "0x20b00605b00603300200220b0060020090020d117509617300c0060d1006", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x60023cb00209900620b00600213100200220b00600900604700200220b", "0x9b00620b00617609900705b00217600620b00617600604b00217600620b", "0x9d0063ca00209d00620b00609b17a00705d00217a00620b006002135002", "0xa000620b00604b0060160020cc00620b00600200600c00217c00620b006", "0xa00cc00c0060a200620b00617c0063c900217d00620b00604e00612b002", "0x601600605100200220b00600c00609b00200220b0060020090020a217d", "0x1330063ca00200220b00600900604700200220b00601000621700200220b", "0x17f00620b00604b0060160020a400620b00600200600c00217e00620b006", "0x17f0a400c0060d200620b00617e0063c90020cd00620b00604e00612b002", "0x20b00604700603300200220b00600211e00200220b0060020090020d20cd", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x60023cc0020a800620b00600213100200220b00600900604700200220b", "0xce00620b0061800a800705b00218000620b00618000604b00218000620b", "0x1810063ca00218100620b0060ce0ab00705d0020ab00620b006002135002", "0xc900620b0060290060160020c800620b00600200600c0020cf00620b006", "0xc90c800c0060cb00620b0060cf0063c90020ca00620b00602a00612b002", "0x20b00600c00609b00200220b00600211e00200220b0060020090020cb0ca", "0x600900604700200220b00601000621700200220b006016006051002002", "0x600c0020c600620b00602f0063ca00200220b00611b0060fa00200220b", "0x620b00602a00612b0020b500620b0060290060160020b300620b006002", "0x20b0060020090020b718e0b50b300c0060b700620b0060c60063c900218e", "0x601000621700200220b00601600605100200220b00600c00609b002002", "0x600c0020b900620b0060c40063ca00200220b00600900604700200220b", "0x620b00601500612b0020bb00620b0060140060160020ba00620b006002", "0x20b00600211e00218f0bd0bb0ba00c00618f00620b0060b90063c90020bd", "0x1c00200c00620b00601600601900201600700720b0060070063cd002002", "0x20b00601000611b00200220b00600f0060c400201000f00720b00600c006", "0x1501400720b00601b0170070bf00201b00620b00600900604e002017006", "0x600200600c00201900620b00600700605300200220b006015006033002", "0x202900620b00601900600f00211b00620b00600600601600205400620b", "0x650c401c00920b00602a02911b05400c21800202a00620b00601400604e", "0x614100200220b00600200900202c00641802b00620b007065006071002", "0x2f00620b00600202a00200220b00602e00603300202e02d00720b00602b", "0x600c00203300620b00603000631a00203000620b00602f02d007319002", "0x620b00603300631b00203900620b0060c400601600204800620b00601c", "0x11e00620b00602c00631c00200220b006002009002035039048009006035", "0x11e00631b00212000620b0060c400601600203700620b00601c00600c002", "0x600206400200f00620b0060023b000210d12003700900610d00620b006", "0x206400201900620b00600206400201700620b0060023ce00201400620b", "0x600601600200220b00600211e00200220b0060021390020c400620b006", "0x920b00602a02900738300202a00620b00600700612b00202900620b006", "0x220b00600200900202c00641902b00620b00711b0060ea00211b054065", "0x60fa00202f02e00720b00602d00636000202d00620b00602b0060ec002", "0x3500620b00605400612b00203900620b00606500601600200220b00602e", "0x60ea00200220b00600200600204803303000920b0060350390071bd002", "0x20b00611e0060ec00200220b00600200900203700641a11e00620b007048", "0x36100200220b00610d0060fa00203a10d00720b006120006360002120006", "0x20b00612400613000212400620b00603c0061bf00203c00620b00602f006", "0x1bf00212a00620b00603a00636100200220b00607d00604d00203e07d007", "0x612b00604d00204112b00720b00612c00613000212c00620b00612a006", "0x1c100212d00620b0060410061b200204300620b00603e0061b200200220b", "0x70450061c500204500620b00604500604b00204500620b00612d043007", "0x2e00204700620b00600202a00200220b00600200900212e00641b00220b", "0x241c00600202d00213000620b00613100602c00213100620b006047006", "0x4d00620b00600202a00200220b00612e0060f200200220b006002009002", "0x13000602f00213000620b00604b00602c00204b00620b00604d00602b002", "0x4f00620b00704e00603000204e00620b00604e00602c00204e00620b006", "0x900637100200220b00604f00603300200220b00600200900213200641d", "0x13505b00720b0060530063cf00213413605813305612f05305101420b006", "0x1350063d000213800620b00603300612b00206100620b006030006016002", "0x5f00615100205f13705d00920b0060641380610093d100206400620b006", "0x620b00613900615200200220b00600200900206700641e13900620b007", "0x20ef00200220b00606900604d00206a06900720b00613b00613000213b", "0x220b00613c00604d00206f13c00720b00606c00613000206c00620b006", "0x604d00214107100720b00613f00613000213f00620b00606a0061b2002", "0x7500720b00614500613000214500620b00606f0061b200200220b006071", "0x760061b200207700620b0061410061b200200220b00607500604d002076", "0x620b00614600604b00214600620b0060790770071c100207900620b006", "0x202a00200220b00600200900214b00641f00220b0071460061c5002146", "0x7f00620b00614a00602c00214a00620b00607b00602e00207b00620b006", "0x200220b00614b0060f200200220b00600200900200242000600202d002", "0x20b00615100602c00215100620b0060c700602b0020c700620b00600202a", "0x2f00215200620b00615200602c00215200620b00607f00602f00207f006", "0x20b00714e00603000214e00620b00614e00602c00214e00620b006152006", "0x603300200220b00600211e00200220b00600200900208300642114f006", "0x620b00605d00601600215008500720b00612f0063d200200220b00614f", "0x93d400216300620b0061500063d300215d00620b00613700612b00215f", "0x16200642215c00620b00716000615100216016115e00920b00616315d15f", "0x20b0060510063d500208700620b00615c00615200200220b006002009002", "0x8500720b0060850063d700215705b00720b00605b0063d6002154051007", "0x216e13300720b0061330063d900215b05600720b0060560063d800208a", "0x63dc0020ed13600720b0061360063db00216805800720b0060580063da", "0x620b00608e0ed16816e15b08a15715401412a00208e13400720b006134", "0x90020d000642300220b0070870061c500200220b00616b00604700216b", "0x620b00615e00601600209216c00720b0060560063dd00200220b006002", "0x93df00217500620b0060920063de00209600620b00616100612b002173", "0x709400615100200220b00600200600209417116d00920b006175096173", "0x17600620b0060d100615200200220b0060020090020990064240d100620b", "0x60020ef00200220b00609b00604d00217a09b00720b006176006130002", "0x200220b00617c00604d0020cc17c00720b00609d00613000209d00620b", "0x17d0a00071c100217d00620b0060cc0061b20020a000620b00617a0061b2", "0x42500220b0070a20061c50020a200620b0060a200604b0020a200620b006", "0x60a400602e0020a400620b00600202a00200220b00600200900217e006", "0x200900200242600600202d0020cd00620b00617f00602c00217f00620b", "0x602b0020d200620b00600202a00200220b00617e0060f200200220b006", "0x620b0060cd00602f0020cd00620b0060a800602c0020a800620b0060d2", "0xab0064270ce00620b00718000603000218000620b00618000602c002180", "0x200220b0060ce00603300200220b00600211e00200220b006002009002", "0x20b00616d00601600218100620b00613413605813316c08505b05101412a", "0x2d0020c900620b0061810060410020c800620b00617100612b0020cf006", "0xab00603300200220b00600211e00200220b006002009002002428006002", "0x614500200220b0060170063e000200220b00601400614500200220b006", "0x14500200220b00600f00621700200220b00600c00605100200220b006019", "0x200220b00613600639600200220b00613400620c00200220b0060c4006", "0x220b00616c00639900200220b00613300639800200220b006058006397", "0x20b00605100639500200220b00605b00639b00200220b00608500639a002", "0x60cb00604b0020cb00620b0060023e10020ca00620b006002131002002", "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", "0x200600c00218e00620b0060b50063ca0020b500620b0060c60b300705d", "0xba00620b00617100612b0020b900620b00616d0060160020b700620b006", "0x220b0060020090020bb0ba0b90b700c0060bb00620b00618e0063c9002", "0x220b0060170063e000200220b00601400614500200220b00600211e002", "0x20b00600f00621700200220b00600c00605100200220b006019006145002", "0x613600639600200220b00613400620c00200220b0060c4006145002002", "0x16c00639900200220b00613300639800200220b00605800639700200220b", "0x639500200220b00605b00639b00200220b00608500639a00200220b006", "0x18f00620b00600200600c0020bd00620b0060990063ca00200220b006051", "0xbd0063c90020bf00620b00617100612b0020be00620b00616d006016002", "0xd00060f200200220b0060020090020c10bf0be18f00c0060c100620b006", "0x1600219000620b00613413605813305608505b05101412a00200220b006", "0x20b0061900060410020c800620b00616100612b0020cf00620b00615e006", "0x63e200219f0d61a019d0d419c19b0c301420b0060c90063710020c9006", "0x20b0060cf0060160021a500620b00600200600c0020d90d700720b0060c3", "0x3e40021b200620b0060d90063e30021a600620b0060c800612b0020df006", "0x3e500200220b0060020060021a41a30db1a100c20b0061b21a60df1a500c", "0x61ad0063e600200220b0060020090021ae0064291ad00620b0071a4006", "0x21b800620b0060023e80020e70e500720b0061b40063e70021b400620b", "0x60e70063e700200220b0061ba00609b0021bd1ba00720b0061b80063e7", "0xef1bf00720b0061bd0063e700200220b0060ea00609b0020ec0ea00720b", "0x60ef0061730021c500620b0060ec00617300200220b0061bf00609b002", "0xf400620b0061c100602f0021c100620b0060f21c50073e90020f200620b", "0x3d70021ca19b00720b00619b0063d60021c80d700720b0060d70063d5002", "0x19d0063d90020f80d400720b0060d40063d80021d419c00720b00619c006", "0x20b0060d60063db0021eb1a000720b0061a00063da0021d619d00720b006", "0x1d60f81d41ca1c801412a0021ef19f00720b00619f0063dc0020fa0d6007", "0x20b0060f400602c00200220b0060fc0060470020fc00620b0061ef0fa1eb", "0x200220b0060020090021f600642a0fe00620b0070f40060300020f4006", "0x200220b0060e500609b00200220b0060fe00603300200220b00600211e", "0x20b0061a100600c00210000620b00619f0d61a019d0d419c19b0d701412a", "0x4100201c00620b0061a300612b0021f900620b0060db0060160021f8006", "0x3300200220b00600200900200242b00600202d00201600620b006100006", "0x1ff1fb00942c1032f600720b0070e51a30db0093b600200220b0061f6006", "0x20b0060000063b700200000620b00600202a00200220b006002009002206", "0x3b800230500620b00610300612b00230400620b0062f6006016002300006", "0x3b900200220b00600200900200242d00600202d00230700620b006300006", "0x20b0061ff00612b00230400620b0061fb00601600230800620b006206006", "0x3bb00230a00620b0063070063ba00230700620b0063080063b8002305006", "0x200900230c00642e30b00620b0073090063bc00230900620b00630a006", "0x601600230e00620b0060023e800200220b00630b0063bd00200220b006", "0x620b0060d70063e300231300620b00630500612b00231200620b006304", "0x30f00920b00631531431331200c3ea00231500620b00630e006173002314", "0x200220b00600200900231700642f31600620b0073110063eb002311310", "0x619b0063cf00200220b00631a00603300231a31900720b0063160063ec", "0x32800620b00631000612b00232600620b00630f00601600231c31b00720b", "0x32232132000920b0063293283260093d100232900620b00631c0063d0002", "0x211e00200220b00600200900232b00643032a00620b007322006151002", "0x232d00620b00632c0063ed00232c00620b00632a00615200200220b006", "0x20b0061a100600c00233100620b00619f0d61a019d0d419c31b31901412a", "0x4100233700620b00632100612b00233600620b006320006016002335006", "0x3373363350163ef00221100620b00632d0063ee00233900620b006331006", "0x33d00643133b00620b00733400617d00233433321233200c20b006211339", "0x634000603300234033f00720b00633b0061f600200220b006002009002", "0x12b0021f900620b0062120060160021f800620b00633200600c00200220b", "0x20b00600c00613200201600620b00633f00604100201c00620b006333006", "0x34634500720b00621000601c00221000620b006343006019002343342007", "0x20b00634700601c00234700620b00600206500200220b0063450060c4002", "0x5400234a00620b00634600605400200220b0063480060c4002349348007", "0x601c0c400713b00234a00620b00634a00611b00234b00620b006349006", "0x220b00734b34a00702900201600620b00601600f0073c300201c00620b", "0x605100234d34c00720b00634200613200200220b006002009002002432", "0x35200620b0061f800600c00234e00620b00634d00605300200220b00634c", "0x35200901000220f00620b00634e00600f00235300620b0061f9006016002", "0x20b00735100601400200220b00600200600235135034f00920b00620f353", "0x35735600720b00635400601500200220b006002009002355006433354006", "0x601b00200220b00600200900235a00643401500620b007357006017002", "0x720b00635c00601c00235c00620b00635b00601900235b00620b006356", "0x36500601c00236500620b00600206500200220b0063600060c4002361360", "0x36900620b00636100605400200220b0063660060c400236836600720b006", "0x170073f000236900620b00636900611b00236e00620b006368006054002", "0x20b00600200900200243500220b00736e36900702900201500620b006015", "0x37100602c00237100620b00636f00602b00236f00620b00600202a002002", "0x600202a00200220b00600200900200243600600202d00237200620b006", "0x237200620b00637400602c00237400620b00637300602e00237300620b", "0x720e00603000220e00620b00620e00602c00220e00620b00637200602f", "0x200220b00637800603300200220b00600200900237900643737800620b", "0x35000601600237c00620b00637b0061d600237b37a00720b0060150060f8", "0x920b00638037f00738300238000620b00601c00612b00237f00620b006", "0x1b00620b00601b01900713b00237c00620b00637c0060fc00237e01b37d", "0x211e00200220b00600200900238200643838100620b00737e0060ea002", "0x238a00620b00634f00600c00238300620b0063810060ec00200220b006", "0x63830063f100238b00620b00637c0060fc00220d00620b00637d006016", "0x3890063f300238938838500920b00638c38b20d38a00c3f200238c00620b", "0x220b00638d0063f400200220b00600200900238e00643938d00620b007", "0x3910061d600200220b00638f00613600239138f00720b00637a0060f8002", "0x39800620b00638800601600239700620b00638500600c00239200620b006", "0x39700c30400239a00620b0063920060fc00239900620b00601b00612b002", "0x201000620b00601001400713b00239601020c39500c20b00639a399398", "0x39b00630700200220b00600200900239c00643a39b00620b007396006305", "0x3a039f00720b00639d00606c00239e00620b00600213100239d00620b006", "0x620c0060160023a400620b00639500600c00200220b00639f00613c002", "0x23a700620b00639e00604e0023a600620b0063a000606f0023a500620b", "0x3a800620b0073a30060710023a33a23a100920b0063a73a63a53a400c13f", "0x330023ab3aa00720b0063a800614100200220b0060020090023a900643b", "0x20b0063ac0063c80023ac00620b0063aa0160073c700200220b0063ab006", "0x12b0023af00620b0063a20060160023ae00620b0063a100600c0023ad006", "0x3b13b03af3ae00c0063b100620b0063ad0063c90023b000620b006010006", "0x620b0063a90063ca00200220b00601600604700200220b006002009002", "0x612b0023b400620b0063a20060160023b300620b0063a100600c0023b2", "0x23b63b53b43b300c0063b600620b0063b20063c90023b500620b006010", "0x3b700620b00639c0063ca00200220b00601600604700200220b006002009", "0x1000612b0023b900620b00620c0060160023b800620b00639500600c002", "0x90023bb3ba3b93b800c0063bb00620b0063b70063c90023ba00620b006", "0x13600200220b00601400614500200220b00601600604700200220b006002", "0x620b00638500600c0023bc00620b00638e0063ca00200220b00637a006", "0x63c90023bf00620b00601b00612b0023be00620b0063880060160023bd", "0x211e00200220b0060020090023c03bf3be3bd00c0063c000620b0063bc", "0x613600200220b00601400614500200220b00601600604700200220b006", "0x23c100620b0063820063ca00200220b00637c00639c00200220b00637a", "0x601b00612b0023c300620b00637d0060160023c200620b00634f00600c", "0x20090023c53c43c33c200c0063c500620b0063c10063c90023c400620b", "0x1600604700200220b00637900603300200220b00600211e00200220b006", "0x613600200220b00601900614500200220b00601400614500200220b006", "0x4b0023c700620b0060023f50023c600620b00600213100200220b006015", "0x20b0060021350023c800620b0063c73c600705b0023c700620b0063c7006", "0x221700620b0063ca0063ca0023ca00620b0063c83c900705d0023c9006", "0x601c00612b0023cc00620b0063500060160023cb00620b00634f00600c", "0x20090022183cd3cc3cb00c00621800620b0062170063c90023cd00620b", "0x1600604700200220b00635a00603300200220b00600211e00200220b006", "0x606100200220b00601900614500200220b00601400614500200220b006", "0x3f50023ce00620b00600213100200220b0060170063e000200220b006356", "0x20b0063cf3ce00705b0023cf00620b0063cf00604b0023cf00620b006002", "0x3ca0023d200620b0063d03d100705d0023d100620b0060021350023d0006", "0x20b0063500060160023d400620b00634f00600c0023d300620b0063d2006", "0xc0063d700620b0063d30063c90023d600620b00601c00612b0023d5006", "0x1600604700200220b00600211e00200220b0060020090023d73d63d53d4", "0x63e000200220b00601900614500200220b00601400614500200220b006", "0x3d900620b00634f00600c0023d800620b0063550063ca00200220b006017", "0x3d80063c90023db00620b00601c00612b0023da00620b006350006016002", "0x1400614500200220b0060020090023dc3db3da3d900c0063dc00620b006", "0x605100200220b00601900614500200220b0060170063e000200220b006", "0x3de00620b0063dd0160073c70023dd00620b00600213100200220b006342", "0x1f90060160023e000620b0061f800600c0023df00620b0063de0063c8002", "0x3e300620b0063df0063c90023e200620b00601c00612b0023e100620b006", "0x200220b00601400614500200220b0060020090023e33e23e13e000c006", "0x220b00600c00605100200220b00601900614500200220b0060170063e0", "0x20b00633d0063ca00200220b0060c400614500200220b00600f006217002", "0x12b0023e600620b0062120060160023e500620b00633200600c0023e4006", "0x3e83e73e63e500c0063e800620b0063e40063c90023e700620b006333006", "0x200220b00600f00621700200220b00600211e00200220b006002009002", "0x220b0060170063e000200220b0060c400614500200220b006014006145", "0x20b00631900639500200220b00600c00605100200220b006019006145002", "0x61a000639700200220b0060d600639600200220b00619f00620c002002", "0x19c00639a00200220b0060d400639900200220b00619d00639800200220b", "0xc0023e900620b00632b0063ca00200220b00631b00639b00200220b006", "0x20b00632100612b0023eb00620b0063200060160023ea00620b0061a1006", "0x60020090023ed3ec3eb3ea00c0063ed00620b0063e90063c90023ec006", "0x601400614500200220b00600f00621700200220b00600211e00200220b", "0x1900614500200220b0060170063e000200220b0060c400614500200220b", "0x639a00200220b00619b00639b00200220b00600c00605100200220b006", "0x39700200220b0060d600639600200220b00619f00620c00200220b00619c", "0x200220b0060d400639900200220b00619d00639800200220b0061a0006", "0x630f0060160023ef00620b0061a100600c0023ee00620b0063170063ca", "0x63f200620b0063ee0063c90023f100620b00631000612b0023f000620b", "0x621700200220b00600211e00200220b0060020090023f23f13f03ef00c", "0x3e000200220b0060c400614500200220b00601400614500200220b00600f", "0x200220b00600c00605100200220b00601900614500200220b006017006", "0x220b00619c00639a00200220b0060d400639900200220b00619b00639b", "0x20b0061a000639700200220b0060d600639600200220b00619f00620c002", "0x630c0063ca00200220b0060d700639500200220b00619d006398002002", "0x23f500620b0063040060160023f400620b0061a100600c0023f300620b", "0x3f63f53f400c0063f700620b0063f30063c90023f600620b00630500612b", "0x220b00601400614500200220b00600211e00200220b0060020090023f7", "0x20b00600c00605100200220b00601900614500200220b0060170063e0002", "0x619f00620c00200220b0060c400614500200220b00600f006217002002", "0x19d00639800200220b0061a000639700200220b0060d600639600200220b", "0x639b00200220b00619c00639a00200220b0060d400639900200220b006", "0x23f800620b0061ae0063ca00200220b0060d700639500200220b00619b", "0x61a300612b0023fa00620b0060db0060160023f900620b0061a100600c", "0x20090023fc3fb3fa3f900c0063fc00620b0063f80063c90023fb00620b", "0x63e000200220b00601400614500200220b00605b00639b00200220b006", "0x39500200220b00600c00605100200220b00601900614500200220b006017", "0x200220b0060c400614500200220b00600f00621700200220b006051006", "0x220b00605800639700200220b00613600639600200220b00613400620c", "0x20b00605600639900200220b00608500639a00200220b006133006398002", "0x60160023fe00620b00600200600c0023fd00620b0061620063ca002002", "0x620b0063fd0063c90023ff00620b00616100612b00221b00620b00615e", "0x200220b00600211e00200220b0060020090024003ff21b3fe00c006400", "0x220b00601400614500200220b00605b00639b00200220b006083006033", "0x20b00600c00605100200220b00601900614500200220b0060170063e0002", "0x60c400614500200220b00600f00621700200220b006051006395002002", "0x5800639700200220b00613600639600200220b00613400620c00200220b", "0x639a00200220b00605600639900200220b00613300639800200220b006", "0x4b00240200620b0060023f600240100620b00600213100200220b00612f", "0x20b00600213500240300620b00640240100705b00240200620b006402006", "0x221a00620b00643d0063ca00243d00620b00640343c00705d00243c006", "0x613700612b00243f00620b00605d00601600243e00620b00600200600c", "0x200900244144043f43e00c00644100620b00621a0063c900244000620b", "0x1400614500200220b00605b00639b00200220b00600211e00200220b006", "0x605100200220b00601900614500200220b0060170063e000200220b006", "0x14500200220b00600f00621700200220b00605100639500200220b00600c", "0x200220b00613600639600200220b00613400620c00200220b0060c4006", "0x220b00605600639900200220b00613300639800200220b006058006397", "0x600200600c00244200620b0060670063ca00200220b00612f00639a002", "0x244500620b00613700612b00244400620b00605d00601600244300620b", "0x200220b00600200900244644544444300c00644600620b0064420063c9", "0x200220b00601400614500200220b00613200603300200220b00600211e", "0x220b00600c00605100200220b00601900614500200220b0060170063e0", "0x20b00600900604700200220b0060c400614500200220b00600f006217002", "0x644800604b00244800620b0060023cc00244700620b006002131002002", "0x244a00620b00600213500244900620b00644844700705b00244800620b", "0x200600c00244c00620b00644b0063ca00244b00620b00644944a00705d", "0x44e00620b00603300612b00221900620b00603000601600244d00620b006", "0x220b00600200900244f44e21944d00c00644f00620b00644c0063c9002", "0x220b0060170063e000200220b00601400614500200220b00600211e002", "0x20b00600f00621700200220b00600c00605100200220b006019006145002", "0x602f0060fa00200220b00600900604700200220b0060c4006145002002", "0x1600245100620b00600200600c00245000620b0060370063ca00200220b", "0x20b0064500063c900245300620b00603300612b00245200620b006030006", "0x20b00600900604700200220b00600200900245445345245100c006454006", "0x601900614500200220b0060170063e000200220b006014006145002002", "0xc400614500200220b00600f00621700200220b00600c00605100200220b", "0x245600620b00600200600c00245500620b00602c0063ca00200220b006", "0x64550063c900245800620b00605400612b00245700620b006065006016", "0x700601600200220b00601600604d00245945845745600c00645900620b", "0x920b0060170150070f400201700620b00600900612b00201500620b006", "0x220b00600200900201900645a01b00620b0070140061c800201401000f", "0xc40061eb0020c400620b00601c0061d400201c00620b00601b0061ca002", "0x61ef00200220b0060540060fa00202c02b02a02911b05406501020b006", "0x13000200220b00602c00604d00200220b00602b00604d00200220b00611b", "0x20b00602f00613000202f00620b0060023f700202e02d00720b006065006", "0x13000204800620b00602e0061b200200220b00603000604d002033030007", "0x20b0060330061b200200220b00603900604d00203503900720b006048006", "0x1b200200220b00603700604d00212003700720b00611e00613000211e006", "0x20b00610d00604b00203a00620b0061200061b200210d00620b006035006", "0x203c00620b00603c00604b00203c00620b00603a10d0071c100210d006", "0x602d00604b00202900620b00602900600f00202a00620b00602a00604b", "0x200220b00600200900212400645b00220b00703c0061c500202d00620b", "0x20b00603e00602c00203e00620b00607d00602e00207d00620b00600202a", "0x20b0061240060f200200220b00600200900200245c00600202d00212a006", "0x12b00602c00212b00620b00612c00602b00212c00620b00600202a002002", "0x4100620b00604100602c00204100620b00612a00602f00212a00620b006", "0x603300200220b00600200900212d00645d04300620b007041006030002", "0x200900200245e00600202d00200220b00602d00604d00200220b006043", "0x212e04500720b00602d00613000200220b00612d00603300200220b006", "0x720b00604700613000204700620b0060023f800200220b00604500604d", "0x61b200204d00620b00612e0061b200200220b00613100604d002130131", "0x20b00604e00604b00204e00620b00604b04d0071c100204b00620b006130", "0x2a00200220b00600200900204f00645f00220b00704e0061c500204e006", "0x620b00605100602c00205100620b00613200602e00213200620b006002", "0x220b00604f0060f200200220b00600200900200246000600202d002053", "0x605600602c00205600620b00612f00602b00212f00620b00600202a002", "0x213300620b00613300602c00213300620b00605300602f00205300620b", "0x5800603300200220b00600200900213600646105800620b007133006030", "0x206100620b00600600612c00205f00620b00600200600c00200220b006", "0x600c00604100206400620b00601000612b00213800620b00600f006016", "0x213b00620b00602900600f00206700620b00602a00604b00213900620b", "0x63bc00213705d13505b13401620b00613b06713906413806105f0103f9", "0x20b0060690063bd00200220b00600200900206a00646206900620b007137", "0x13c00633200213c00620b00606c00633100206c00620b006002100002002", "0x7100620b00605b00612c00213f00620b00613400600c00206f00620b006", "0x6f00621200214500620b00605d00612b00214100620b006135006016002", "0x633300200220b00600200900207514514107113f01600607500620b006", "0x620b00605b00612c00207700620b00613400600c00207600620b00606a", "0x621200214b00620b00605d00612b00214600620b006135006016002079", "0x3300200220b00600200900207b14b14607907701600607b00620b006076", "0x200220b00602a00604d00200220b00602900606100200220b006136006", "0x7f00620b00600231300214a00620b00600213100200220b00600c006047", "0x21350020c700620b00607f14a00705b00207f00620b00607f00604b002", "0x620b00615200633300215200620b0060c715100705d00215100620b006", "0x601600208300620b00600600612c00214f00620b00600200600c00214e", "0x620b00614e00621200215000620b00601000612b00208500620b00600f", "0x20b00600c00604700200220b00600200900215e15008508314f01600615e", "0x612c00216000620b00600200600c00216100620b006019006333002002", "0x620b00601000612b00215d00620b00600f00601600215f00620b006006", "0x1600604d00215c16315d15f16001600615c00620b006161006212002163", "0x604d00200220b00601000604d00200220b00600f00604d00200220b006", "0x1c00620b00600900612b00201900620b00600700601600200220b006014", "0x4630c400620b00701b0061c800201b01701500920b00601c0190070f4002", "0x540061d400205400620b0060c40061ca00200220b006002009002065006", "0xfa00202f02e02d02c02b02a02901020b00611b0061eb00211b00620b006", "0x200220b00602e00604d00200220b00602b0061ef00200220b00602a006", "0x20b00600200000203303000720b00602900613000200220b00602f00604d", "0x1b200200220b00603900604d00203503900720b006048006130002048006", "0x603700604d00212003700720b00611e00613000211e00620b006033006", "0x203c03a00720b00610d00613000210d00620b0060350061b200200220b", "0x20b00603c0061b200212400620b0061200061b200200220b00603a00604d", "0x203e00620b00607d1240071c100212400620b00612400604b00207d006", "0x602c00600f00202d00620b00602d00604b00203e00620b00603e00604b", "0x646400220b00703e0061c500203000620b00603000604b00202c00620b", "0x20b00612c00602e00212c00620b00600202a00200220b00600200900212a", "0x600200900200246500600202d00204100620b00612b00602c00212b006", "0x4300602b00204300620b00600202a00200220b00612a0060f200200220b", "0x4500620b00604100602f00204100620b00612d00602c00212d00620b006", "0x204700646612e00620b00704500603000204500620b00604500602c002", "0x200220b00603000604d00200220b00612e00603300200220b006002009", "0x13000200220b00604700603300200220b00600200900200246700600202d", "0x620b00600230000200220b00613100604d00213013100720b006030006", "0x61b200200220b00604b00604d00204e04b00720b00604d00613000204d", "0x20b00613204f0071c100213200620b00604e0061b200204f00620b006130", "0x5300646800220b0070510061c500205100620b00605100604b002051006", "0x620b00612f00602e00212f00620b00600202a00200220b006002009002", "0x20b00600200900200246900600202d00213300620b00605600602c002056", "0x605800602b00205800620b00600202a00200220b0060530060f2002002", "0x213400620b00613300602f00213300620b00613600602c00213600620b", "0x900213500646a05b00620b00713400603000213400620b00613400602c", "0x206400620b00600200600c00200220b00605b00603300200220b006002", "0x601700612b00206700620b00601500601600213900620b00600600612c", "0x206a00620b00602d00604b00206900620b00600c00604100213b00620b", "0x1620b00606c06a06913b0671390640103f900206c00620b00602c00600f", "0x600200900206f00646b13c00620b0071380063bc00213806105f13705d", "0x13f00633100213f00620b00600210000200220b00613c0063bd00200220b", "0x14500620b00605d00600c00214100620b00607100633200207100620b006", "0x6100612b00207600620b00605f00601600207500620b00613700612c002", "0x207907707607514501600607900620b00614100621200207700620b006", "0x620b00605d00600c00214600620b00606f00633300200220b006002009", "0x612b00214a00620b00605f00601600207b00620b00613700612c00214b", "0xc707f14a07b14b0160060c700620b00614600621200207f00620b006061", "0x220b00602c00606100200220b00613500603300200220b006002009002", "0x620b00600213100200220b00600c00604700200220b00602d00604d002", "0x15100705b00215200620b00615200604b00215200620b006002313002151", "0x620b00614e14f00705d00214f00620b00600213500214e00620b006152", "0x612c00215000620b00600200600c00208500620b006083006333002083", "0x620b00601700612b00216100620b00601500601600215e00620b006006", "0x600200900215f16016115e15001600615f00620b006085006212002160", "0x600c00215d00620b00606500633300200220b00600c00604700200220b", "0x620b00601500601600215c00620b00600600612c00216300620b006002", "0x16301600615400620b00615d00621200208700620b00601700612b002162", "0x7500201900620b00600208300201700620b00600214f00215408716215c", "0x601600200220b00600211e00200220b0060021390020c400620b006002", "0x20b00602a02900738300202a00620b00600c00612b00202900620b006007", "0x20b00600200900202c00646c02b00620b00711b0060ea00211b054065009", "0xfa00202f02e00720b00602d00636000202d00620b00602b0060ec002002", "0x620b00605400612b00203900620b00606500601600200220b00602e006", "0xea00200220b00600200600204803303000920b0060350390071bd002035", "0x611e0060ec00200220b00600200900203700646d11e00620b007048006", "0x200220b00610d0060fa00203a10d00720b00612000636000212000620b", "0x612400613000212400620b00603c0061bf00203c00620b00602f006361", "0x212a00620b00603a00636100200220b00607d00604d00203e07d00720b", "0x12b00604d00204112b00720b00612c00613000212c00620b00612a0061bf", "0x212d00620b0060410061b200204300620b00603e0061b200200220b006", "0x450061c500204500620b00604500604b00204500620b00612d0430071c1", "0x204700620b00600202a00200220b00600200900212e00646e00220b007", "0x46f00600202d00213000620b00613100602c00213100620b00604700602e", "0x620b00600202a00200220b00612e0060f200200220b006002009002002", "0x602f00213000620b00604b00602c00204b00620b00604d00602b00204d", "0x620b00704e00603000204e00620b00604e00602c00204e00620b006130", "0x4f00603300200220b00600211e00200220b00600200900213200647004f", "0x13600620b00600200600c00205305100720b00601600607f00200220b006", "0x900615d00205b00620b00603000601600213400620b00600600612c002", "0x13700620b00605300604100205d00620b00603300612b00213500620b006", "0x604b00205f00620b00605f00604b00205f00f00720b00600f00635a002", "0x13505b1341360153fa00213800620b00601400604b00206100620b006010", "0x601b01900716200205813301505601b12f00f20b00613806105f13705d", "0x6400620b0070580063bc00201500620b00601501700708700201b00620b", "0x5100637100200220b0060640063bd00200220b006002009002139006471", "0x14107100720b00606c0063fb00213f06f13c06c06a06913b06701420b006", "0x13300612b00214600620b00605600601600207900620b00612f00600c002", "0x607b14b14607900c3fd00207b00620b0061410063fc00214b00620b006", "0x200900207f00647214a00620b0070770060c800207707607514500c20b", "0x15215100920b0060c70063fe0020c700620b00614a0060c900200220b006", "0x614500600c00200220b00614e00604d00200220b00615200604d00214e", "0x216000620b00607600612b00216100620b00607500601600215e00620b", "0x8508314f00c20b00615f16016115e00c3ff00215f00620b00615100621b", "0x40100200220b00600200900216300647315d00620b007150006400002150", "0x20b00600202a00208716200720b00615c00640200215c00620b00615d006", "0x215b08a00720b00615700640200215700620b006154006403002154006", "0x20b00615b00643d00216800620b00608700643d00200220b00608a00643c", "0x47408e00620b00716e00603000216e00620b0060ed16800721a0020ed006", "0x20b00600243e00200220b00608e00603300200220b00600200900216b006", "0xd000943f00209200620b0060020ef00216c00620b0060020ef0020d0006", "0x20b00608300601600217500620b00614f00600c00216d00620b00609216c", "0xc600217600620b0060710063fc00209900620b00608500612b0020d1006", "0x17309417100c20b00609b1760990d117501644000209b00620b00616d006", "0x44200200220b00600200900209d00647517a00620b007096006441002096", "0x20b00616200640200200220b0060cc0060330020cc17c00720b00617a006", "0x64430020a200620b00600202a00200220b0060a000643c00217d0a0007", "0x20b0060a400643c00217f0a400720b00617e00640200217e00620b0060a2", "0x640200200220b0060cd00643c0020d20cd00720b00617d006402002002", "0x620b0060d200643d00200220b0060a800643c0021800a800720b00617f", "0x2f0020ce00620b0061810ab00744400218100620b00618000643d0020ab", "0x613b0063d60020c806700720b0060670063d50020cf00620b0060ce006", "0x720b00606a0063d80020ca06900720b0060690063d70020c913b00720b", "0xb313c00720b00613c0063da0020c617c00720b00617c0063d90020cb06a", "0x12a00218e13f00720b00613f0063dc0020b506f00720b00606f0063db002", "0x220b0060b70060470020b700620b00618e0b50b30c60cb0ca0c90c8014", "0x20ba0064760b900620b0070cf0060300020cf00620b0060cf00602c002", "0x17c06a06913b06701412a00200220b0060b900603300200220b006002009", "0x60940060160020bd00620b00617100600c0020bb00620b00613f06f13c", "0x20bf00620b0060bb0060410020be00620b00617300612b00218f00620b", "0x12a00200220b0060ba00603300200220b00600200900200247700600202d", "0x19000620b0060024450020c100620b00613f06f13c17c06a06913b067014", "0x17300612b0021a000620b00609400601600219d00620b00617100600c002", "0xd700620b00619000644600219f00620b0060c10060410020d600620b006", "0x70d400617d0020d419c19b0c300c20b0060d719f0d61a019d016447002", "0xdb00720b0060d90061f600200220b0060020090021a10064780d900620b", "0x19b0060160020bd00620b0060c300600c00200220b0061a30060330021a3", "0xbf00620b0060db0060410020be00620b00619c00612b00218f00620b006", "0xbe0064490021a500620b00618f0064480021a400620b0060bd00636e002", "0x900200247900600202d0021a600620b0060bf00644a0020df00620b006", "0x44b00200220b0060c400614e00200220b00600f00604d00200220b006002", "0x20b00601b00612c0021ad00620b0060c300600c0021b200620b0061a1006", "0x12b0020e500620b00601500615d0021b400620b00619b0060160021ae006", "0xe51b41ae1ad00f0061b800620b0061b200644c0020e700620b00619c006", "0x60c400614e00200220b00600f00604d00200220b0060020090021b80e7", "0x13c00639700200220b00606f00639600200220b00613f00620c00200220b", "0x639a00200220b00606a00639900200220b00616200643c00200220b006", "0x44b00200220b00606700639500200220b00613b00639b00200220b006069", "0x20b00601b00612c0021bd00620b00617100600c0021ba00620b00609d006", "0x12b0021bf00620b00601500615d0020ec00620b0060940060160020ea006", "0x1bf0ec0ea1bd00f0061c100620b0061ba00644c0020ef00620b006173006", "0x616200643c00200220b00616b00603300200220b0060020090021c10ef", "0x600c0021c500620b00613f06f13c07106a06913b06701412a00200220b", "0x620b00608500612b0021a500620b0060830060160021a400620b00614f", "0x1ca1c80f40f201420b0061a60063710021a600620b0061c50060410020df", "0x21f600620b0061a50060160020fa00620b0060020650021eb1d60f81d4", "0x60fa00611b0021f800620b0061eb00644d00210000620b0060df00612b", "0xfe00644e0020fe0fc1ef00920b0061f91f81001f600c2190021f900620b", "0x720b0062f600644f00200220b00600200900210300647a2f600620b007", "0x1ef00601600220600620b00600206500200220b0061ff0060330021ff1fb", "0x30800620b0061d600645000230700620b0060fc00612b00230500620b006", "0x30000000920b00630930830730500c45100230900620b00620600611b002", "0x45300200220b00600200900230b00647b30a00620b007304006452002304", "0x1c80f40f201412a00200220b00630e00603300230e30c00720b00630a006", "0x31331231131001420b00630f00637100230f00620b0061fb30c0f81d41ca", "0x620b00600000601600231a31900720b0063110063cf002317316315314", "0x93d100232600620b00631a0063d000232200620b00630000612b002321", "0x644d00231000620b0063100063e300232031c31b00920b006326322321", "0x620b0063130063de00231200620b0063120063d300231700620b006317", "0x645000231500620b00631500637300231400620b0063140063fc002313", "0x620b00732000615100231900620b0063190063d000231600620b006316", "0x1600201c00620b00632800615200200220b00600200900232900647c328", "0x20b0063190063d000233100620b00631c00612b00232d00620b00631b006", "0x221200620b00621200604b00221200f00720b00600f00635a002332006", "0x620b00601c0c400707900232c32b32a00920b00621233233132d00c454", "0x45600200220b00600200900233400647d33300620b00732c00645500201c", "0x20b00600f00635a00200220b00633600603300233633500720b006333006", "0x31531431331233531001412a00233900620b00633700645700233700f007", "0x20b00632a00601600234200620b0061a400600c00221100620b006317316", "0x45800234500620b00621100604100221000620b00632b00612b002343006", "0x33f33d33b00c20b00634634521034334201645900234600620b006339006", "0x1f600200220b00600200900234800647e34700620b00734000617d002340", "0x20b00601c00647f00200220b00634a00603300234a34900720b006347006", "0x12b00235100620b00633d00601600235000620b00633b00600c00234b006", "0x20b00634b00648000235300620b00634900604100235200620b00633f006", "0x617d00234f34e34d34c00c20b00620f35335235135001648100220f006", "0x20b0063540061f600200220b00600200900235500648235400620b00734f", "0xc00235a00620b00600f0063ed00200220b006357006033002357356007", "0x20b00634e00612b00236600620b00634d00601600236500620b00634c006", "0x3ef00236e00620b00635a0063ee00236900620b006356006041002368006", "0x620b00736100617d00236136035c35b00c20b00636e369368366365016", "0x237337200720b00636f0061f600200220b00600200900237100648336f", "0x20b00637437200748400237400620b00600202a00200220b006373006033", "0x12c00237900620b00635b00600c00237800620b00620e00648500220e006", "0x20b00601500615d00237b00620b00635c00601600237a00620b00601b006", "0xf00637e00620b00637800644c00237d00620b00636000612b00237c006", "0x37f00620b00637100644b00200220b00600200900237e37d37c37b37a379", "0x35c00601600238100620b00601b00612c00238000620b00635b00600c002", "0x38500620b00636000612b00238300620b00601500615d00238200620b006", "0x600200900238838538338238138000f00638800620b00637f00644c002", "0x600c00238900620b00635500644b00200220b00600f00604d00200220b", "0x620b00634d00601600220d00620b00601b00612c00238a00620b00634c", "0x644c00238d00620b00634e00612b00238c00620b00601500615d00238b", "0x200220b00600200900238e38d38c38b20d38a00f00638e00620b006389", "0x620b00634800644b00200220b00601c00604d00200220b00600f00604d", "0x601600239200620b00601b00612c00239100620b00633b00600c00238f", "0x620b00633f00612b00220c00620b00601500615d00239500620b00633d", "0x200900239739620c39539239100f00639700620b00638f00644c002396", "0x639500200220b00601c00604d00200220b00600f00604d00200220b006", "0x39700200220b00631600639600200220b00631700620c00200220b006310", "0x200220b00631300639900200220b00631400639800200220b006315006", "0x20b0061a400600c00239800620b00633400644b00200220b00631200639a", "0x15d00239b00620b00632a00601600239a00620b00601b00612c002399006", "0x20b00639800644c00239d00620b00632b00612b00239c00620b006015006", "0xf00604d00200220b00600200900239e39d39c39b39a39900f00639e006", "0x639900200220b00631200639a00200220b00631000639500200220b006", "0x39700200220b00631600639600200220b00631700620c00200220b006313", "0x200220b00631900639b00200220b00631400639800200220b006315006", "0x20b0061a400600c00239f00620b00632900644b00200220b0060c400614e", "0x15d0023a200620b00631b0060160023a100620b00601b00612c0023a0006", "0x20b00639f00644c0023a400620b00631c00612b0023a300620b006015006", "0xf00604d00200220b0060020090023a53a43a33a23a13a000f0063a5006", "0x639500200220b0061fb00620c00200220b0060c400614e00200220b006", "0x39900200220b0061d400639800200220b0060f800639700200220b0060f2", "0x200220b0060f400639b00200220b0061c800639a00200220b0061ca006", "0x601b00612c0023a700620b0061a400600c0023a600620b00630b00644b", "0x23aa00620b00601500615d0023a900620b0060000060160023a800620b", "0x3a93a83a700f0063ac00620b0063a600644c0023ab00620b00630000612b", "0xc400614e00200220b00600f00604d00200220b0060020090023ac3ab3aa", "0x639500200220b0061c800639a00200220b0060f400639b00200220b006", "0x39900200220b0061d400639800200220b0060f800639700200220b0060f2", "0x3ad00620b00610300644b00200220b0061d600639600200220b0061ca006", "0x1ef0060160023af00620b00601b00612c0023ae00620b0061a400600c002", "0x3b200620b0060fc00612b0023b100620b00601500615d0023b000620b006", "0x60020090023b33b23b13b03af3ae00f0063b300620b0063ad00644c002", "0x6900639a00200220b0060c400614e00200220b00600f00604d00200220b", "0x620c00200220b00613b00639b00200220b00606700639500200220b006", "0x39900200220b00613c00639700200220b00606f00639600200220b00613f", "0x3b400620b00616300644b00200220b00607100639800200220b00606a006", "0x830060160023b600620b00601b00612c0023b500620b00614f00600c002", "0x3b900620b00608500612b0023b800620b00601500615d0023b700620b006", "0x60020090023ba3b93b83b73b63b500f0063ba00620b0063b400644c002", "0x6900639a00200220b0060c400614e00200220b00600f00604d00200220b", "0x620c00200220b00613b00639b00200220b00606700639500200220b006", "0x39800200220b00613c00639700200220b00606f00639600200220b00613f", "0x3bb00620b00607f00644b00200220b00606a00639900200220b006071006", "0x750060160023bd00620b00601b00612c0023bc00620b00614500600c002", "0x3c000620b00607600612b0023bf00620b00601500615d0023be00620b006", "0x60020090023c13c03bf3be3bd3bc00f0063c100620b0063bb00644c002", "0x5100604700200220b0060c400614e00200220b00600f00604d00200220b", "0x23c300620b00612f00600c0023c200620b00613900644b00200220b006", "0x601500615d0023c500620b0060560060160023c400620b00601b00612c", "0x63c800620b0063c200644c0023c700620b00613300612b0023c600620b", "0x200220b00600211e00200220b0060020090023c83c73c63c53c43c300f", "0x220b00600f00604d00200220b0060c400614e00200220b006132006033", "0x20b00601400604d00200220b00601700615700200220b006019006154002", "0x20b00600213100200220b00601600604700200220b00601000604d002002", "0x705b0023ca00620b0063ca00604b0023ca00620b0060023cc0023c9006", "0x20b0062173cb00705d0023cb00620b00600213500221700620b0063ca3c9", "0x12c00221800620b00600200600c0023cd00620b0063cc00644b0023cc006", "0x20b00600900615d0023cf00620b0060300060160023ce00620b006006006", "0xf0063d200620b0063cd00644c0023d100620b00603300612b0023d0006", "0x14e00200220b00600211e00200220b0060020090023d23d13d03cf3ce218", "0x200220b00601900615400200220b00600f00604d00200220b0060c4006", "0x220b00601000604d00200220b00601400604d00200220b006017006157", "0x20b00603700644b00200220b00602f0060fa00200220b006016006047002", "0x160023d500620b00600600612c0023d400620b00600200600c0023d3006", "0x20b00603300612b0023d700620b00600900615d0023d600620b006030006", "0x90023d93d83d73d63d53d400f0063d900620b0063d300644c0023d8006", "0x15400200220b00600f00604d00200220b0060c400614e00200220b006002", "0x200220b00601400604d00200220b00601700615700200220b006019006", "0x620b00602c00644b00200220b00601600604700200220b00601000604d", "0x60160023dc00620b00600600612c0023db00620b00600200600c0023da", "0x620b00605400612b0023de00620b00600900615d0023dd00620b006065", "0x211e0023e03df3de3dd3dc3db00f0063e000620b0063da00644c0023df", "0x201500620b00600700612b00201400620b00600600601600200220b006", "0x648601700620b0070100060ea00201000f01600920b006015014007383", "0x601900636000201900620b0060170060ec00200220b00600200900201b", "0x202900620b00601600601600200220b00601c0060fa0020c401c00720b", "0x600211b05406500920b00602a0290071bd00202a00620b00600f00612b", "0x20b00600200900202c00648702b00620b00711b0060ea00200220b006002", "0xfa00202f02e00720b00602d00636000202d00620b00602b0060ec002002", "0x620b0060300061bf00203000620b0060c400636100200220b00602e006", "0x636100200220b00604800604d00203904800720b006033006130002033", "0x720b00611e00613000211e00620b0060350061bf00203500620b00602f", "0x61b200210d00620b0060390061b200200220b00603700604d002120037", "0x20b00603c00604b00203c00620b00603a10d0071c100203a00620b006120", "0x2a00200220b00600200900212400648800220b00703c0061c500203c006", "0x620b00603e00602c00203e00620b00607d00602e00207d00620b006002", "0x220b0061240060f200200220b00600200900200248900600202d00212a", "0x612b00602c00212b00620b00612c00602b00212c00620b00600202a002", "0x204100620b00604100602c00204100620b00612a00602f00212a00620b", "0x4300603300200220b00600200900212d00648a04300620b007041006030", "0x48b00220b0070450061c500204500c00720b00600c00635a00200220b006", "0x4b04d13013104701420b00600900637100200220b00600200900212e006", "0x5800620b00606500601600205305100720b00604d0063dd00213204f04e", "0x580093df00213400620b0060530063de00213600620b00605400612b002", "0x213500648c05b00620b00713300615100213305612f00920b006134136", "0x720b00605d00613000205d00620b00605b00615200200220b006002009", "0x6100613000206100620b0060020ef00200220b00613700604d00205f137", "0x13900620b00605f0061b200200220b00613800604d00206413800720b006", "0x604b00213b00620b0060671390071c100206700620b0060640061b2002", "0x20b00600200900206900648d00220b00713b0061c500213b00620b00613b", "0x6c00602c00206c00620b00606a00602e00206a00620b00600202a002002", "0x690060f200200220b00600200900200248e00600202d00213c00620b006", "0x2c00213f00620b00606f00602b00206f00620b00600202a00200220b006", "0x20b00607100602c00207100620b00613c00602f00213c00620b00613f006", "0x200220b00600200900214500648f14100620b007071006030002071006", "0x4b05113013104701412a00200220b00614100603300200220b00600211e", "0x605600612b00207600620b00612f00601600207500620b00613204f04e", "0x200900200249000600202d00207900620b00607500604100207700620b", "0xc00604d00200220b00614500603300200220b00600211e00200220b006", "0x639700200220b00604f00639600200220b00613200620c00200220b006", "0x39a00200220b00605100639900200220b00604b00639800200220b00604e", "0x200220b00604700639500200220b00613100639b00200220b006130006", "0x620b00614b00604b00214b00620b0060023e100214600620b006002131", "0x705d00214a00620b00600213500207b00620b00614b14600705b00214b", "0x20b00600200600c0020c700620b00607f00644b00207f00620b00607b14a", "0x44c00214e00620b00605600612b00215200620b00612f006016002151006", "0x11e00200220b00600200900214f14e15215100c00614f00620b0060c7006", "0x39600200220b00613200620c00200220b00600c00604d00200220b006002", "0x200220b00604b00639800200220b00604e00639700200220b00604f006", "0x220b00613100639b00200220b00613000639a00200220b006051006399", "0x600200600c00208300620b00613500644b00200220b006047006395002", "0x215e00620b00605600612b00215000620b00612f00601600208500620b", "0x200220b00600200900216115e15008500c00616100620b00608300644c", "0x7600620b00606500601600200220b00612e0060f200200220b00600211e", "0x7900637100207900620b00600900604100207700620b00605400612b002", "0x8a15700720b00615c0063fb00215408716215c16315d15f16001420b006", "0x7700612b00216b00620b00607600601600208e00620b00600200600c002", "0x616c0d016b08e00c3fd00216c00620b00608a0063fc0020d000620b006", "0x200900216d00649109200620b0070ed0060c80020ed16816e15b00c20b", "0x17309400920b0061710063fe00217100620b0060920060c900200220b006", "0x615b00600c00200220b00609600604d00200220b00617300604d002096", "0x209d00620b00616800612b00217a00620b00616e00601600209b00620b", "0x990d117500c20b00617c09d17a09b00c3ff00217c00620b00609400621b", "0x40100200220b0060020090020a00064920cc00620b007176006400002176", "0x20b00600202a00217e0a200720b00617d00640200217d00620b0060cc006", "0x20d20cd00720b00617f00640200217f00620b0060a40064030020a4006", "0x20b0060d200643d00218000620b00617e00643d00200220b0060cd00643c", "0x4930ab00620b0070a80060300020a800620b0060ce18000721a0020ce006", "0x20b00600243e00200220b0060ab00603300200220b006002009002181006", "0xcf00943f0020c900620b0060020ef0020c800620b0060020ef0020cf006", "0x20b0060d100601600218e00620b00617500600c0020ca00620b0060c90c8", "0xc60020ba00620b0061570063fc0020b900620b00609900612b0020b7006", "0xb30c60cb00c20b0060bb0ba0b90b718e0164400020bb00620b0060ca006", "0x44200200220b00600200900218f0064940bd00620b0070b50064410020b5", "0x20b0060a200640200200220b0060bf0060330020bf0be00720b0060bd006", "0x64430020c300620b00600202a00200220b0060c100643c0021900c1007", "0x20b00619c00643c0020d419c00720b00619b00640200219b00620b0060c3", "0x640200200220b00619d00643c0021a019d00720b006190006402002002", "0x620b0061a000643d00200220b0060d600643c00219f0d600720b0060d4", "0x2f0020d700620b0061a10d90074440021a100620b00619f00643d0020d9", "0x615f0063d60021a316000720b0061600063d50020db00620b0060d7006", "0x720b0061630063d80021a515d00720b00615d0063d70021a415f00720b", "0x1b216200720b0061620063da0021a60be00720b0060be0063d90020df163", "0x12a0021ae15400720b0061540063dc0021ad08700720b0060870063db002", "0x220b0061b40060470021b400620b0061ae1ad1b21a60df1a51a41a3014", "0x20e70064950e500620b0070db0060300020db00620b0060db00602c002", "0xbe16315d15f16001412a00200220b0060e500603300200220b006002009", "0x60c60060160021ba00620b0060cb00600c0021b800620b006154087162", "0x20ec00620b0061b80060410020ea00620b0060b300612b0021bd00620b", "0x12a00200220b0060e700603300200220b00600200900200249600600202d", "0xef00620b0060024450021bf00620b0061540871620be16315d15f160014", "0xb300612b0021ca00620b0060c60060160021c800620b0060cb00600c002", "0x1d600620b0060ef0064460020f800620b0061bf0060410021d400620b006", "0x70f400617d0020f40f21c51c100c20b0061d60f81d41ca1c8016447002", "0x1ef00720b0061eb0061f600200220b0060020090020fa0064971eb00620b", "0x1c50060160021ba00620b0061c100600c00200220b0060fc0060330020fc", "0xec00620b0061ef0060410020ea00620b0060f200612b0021bd00620b006", "0xea0064490021f600620b0061bd0064480020fe00620b0061ba00636e002", "0x900200249800600202d0021f800620b0060ec00644a00210000620b006", "0x21f900620b0060fa00644b00200220b00600c00604d00200220b006002", "0x60f200612b00210300620b0061c50060160022f600620b0061c100600c", "0x20090021ff1fb1032f600c0061ff00620b0061f900644c0021fb00620b", "0x639600200220b00615400620c00200220b00600c00604d00200220b006", "0x39900200220b0060a200643c00200220b00616200639700200220b006087", "0x200220b00615f00639b00200220b00615d00639a00200220b006163006", "0x20b0060cb00600c00220600620b00618f00644b00200220b006160006395", "0x44c00230400620b0060b300612b00230000620b0060c6006016002000006", "0x3300200220b00600200900230530430000000c00630500620b006206006", "0x15716315d15f16001412a00200220b0060a200643c00200220b006181006", "0x60d10060160020fe00620b00617500600c00230700620b006154087162", "0x21f800620b00630700604100210000620b00609900612b0021f600620b", "0x620b00600206500231030f30e30c30b30a30930801420b0061f8006371", "0x644d00231600620b00610000612b00231500620b0061f6006016002311", "0x31931731631500c21900231900620b00631100611b00231700620b006310", "0x200900231b00649931a00620b00731400644e00231431331200920b006", "0x200220b00632000603300232031c00720b00631a00644f00200220b006", "0x20b00631300612b00232900620b00631200601600232100620b006002065", "0x45100232c00620b00632100611b00232b00620b00630f00645000232a006", "0x49a32d00620b00732800645200232832632200920b00632c32b32a32900c", "0x603300221233200720b00632d00645300200220b006002009002331006", "0x233300620b00631c33230e30c30b30a30930801412a00200220b006212", "0x20b00632200601600233d33b21133933733633533401420b006333006371", "0x35a00234500620b0063360063d300221000620b00632600612b002343006", "0x21034300c49b00234600620b00634600604b00234600c00720b00600c006", "0x3350063d000233400620b0063340063e300234234033f00920b006346345", "0x33700620b0063370063de00233d00620b00633d00644d00233500620b006", "0x33b00645000221100620b00621100637300233900620b0063390063fc002", "0x20b00600200900234800649d34700620b00734200649c00233b00620b006", "0x621600200220b00634a00603300234a34900720b00634700649e002002", "0x34c00620b00633d33b21133933734933533401412a00234b00620b00600c", "0x34000612b00235200620b00633f00601600235100620b0060fe00600c002", "0x35400620b00634b00649f00220f00620b00634c00604100235300620b006", "0x735000617d00235034f34e34d00c20b00635420f3533523510164a0002", "0x35700720b0063550061f600200220b0060020090023560064a135500620b", "0x35b35700748400235b00620b00600202a00200220b00635a00603300235a", "0x36100620b00634d00600c00236000620b00635c00648500235c00620b006", "0x36000644c00236600620b00634f00612b00236500620b00634e006016002", "0x35600644b00200220b00600200900236836636536100c00636800620b006", "0x36f00620b00634e00601600236e00620b00634d00600c00236900620b006", "0x36f36e00c00637200620b00636900644c00237100620b00634f00612b002", "0x633d00620c00200220b00633400639500200220b006002009002372371", "0x33900639800200220b00621100639700200220b00633b00639600200220b", "0x639b00200220b00600c00604d00200220b00633700639900200220b006", "0x37400620b0060fe00600c00237300620b00634800644b00200220b006335", "0x37300644c00237800620b00634000612b00220e00620b00633f006016002", "0xc00604d00200220b00600200900237937820e37400c00637900620b006", "0x639700200220b00630800639500200220b00631c00620c00200220b006", "0x39a00200220b00630b00639900200220b00630c00639800200220b00630e", "0x37a00620b00633100644b00200220b00630900639b00200220b00630a006", "0x32600612b00237c00620b00632200601600237b00620b0060fe00600c002", "0x900237e37d37c37b00c00637e00620b00637a00644c00237d00620b006", "0x4d00200220b00630900639b00200220b00630a00639a00200220b006002", "0x200220b00630e00639700200220b00630800639500200220b00600c006", "0x220b00630f00639600200220b00630b00639900200220b00630c006398", "0x31200601600238000620b0060fe00600c00237f00620b00631b00644b002", "0x38300620b00637f00644c00238200620b00631300612b00238100620b006", "0x200220b00615f00639b00200220b00600200900238338238138000c006", "0x220b00600c00604d00200220b00615d00639a00200220b006160006395", "0x20b00616200639700200220b00608700639600200220b00615400620c002", "0x60a000644b00200220b00615700639800200220b006163006399002002", "0x238900620b0060d100601600238800620b00617500600c00238500620b", "0x38a38938800c00620d00620b00638500644c00238a00620b00609900612b", "0x20b00616000639500200220b00615f00639b00200220b00600200900220d", "0x615400620c00200220b00600c00604d00200220b00615d00639a002002", "0x15700639800200220b00616200639700200220b00608700639600200220b", "0xc00238b00620b00616d00644b00200220b00616300639900200220b006", "0x20b00616800612b00238d00620b00616e00601600238c00620b00615b006", "0x600200900238f38e38d38c00c00638f00620b00638b00644c00238e006", "0x600c00604d00200220b00612d00603300200220b00600211e00200220b", "0x60023cc00239100620b00600213100200220b00600900604700200220b", "0x39500620b00639239100705b00239200620b00639200604b00239200620b", "0x39600644b00239600620b00639520c00705d00220c00620b006002135002", "0x39900620b00606500601600239800620b00600200600c00239700620b006", "0x39939800c00639b00620b00639700644c00239a00620b00605400612b002", "0x20b00600c00604d00200220b00600211e00200220b00600200900239b39a", "0x602c00644b00200220b0060c40060fa00200220b006009006047002002", "0x239e00620b00606500601600239d00620b00600200600c00239c00620b", "0x39f39e39d00c0063a000620b00639c00644c00239f00620b00605400612b", "0x20b00600c00604d00200220b00600900604700200220b0060020090023a0", "0x60160023a200620b00600200600c0023a100620b00601b00644b002002", "0x620b0063a100644c0023a400620b00600f00612b0023a300620b006016", "0x620b00600600601600200220b00600211e0023a53a43a33a200c0063a5", "0x1000f01600920b00601501400738300201500620b00600700612b002014", "0x60ec00200220b00600200900201b0064a201700620b0070100060ea002", "0x20b00601c0060fa0020c401c00720b00601900636000201900620b006017", "0x71bd00202a00620b00600f00612b00202900620b006016006016002002", "0x20b00711b0060ea00200220b00600200600211b05406500920b00602a029", "0x202d00620b00602b0060ec00200220b00600200900202c0064a302b006", "0x60c400636100200220b00602e0060fa00202f02e00720b00602d006360", "0x3904800720b00603300613000203300620b0060300061bf00203000620b", "0x60350061bf00203500620b00602f00636100200220b00604800604d002", "0x200220b00603700604d00212003700720b00611e00613000211e00620b", "0x3a10d0071c100203a00620b0061200061b200210d00620b0060390061b2", "0x4a400220b00703c0061c500203c00620b00603c00604b00203c00620b006", "0x607d00602e00207d00620b00600202a00200220b006002009002124006", "0x20090020024a500600202d00212a00620b00603e00602c00203e00620b", "0x602b00212c00620b00600202a00200220b0061240060f200200220b006", "0x620b00612a00602f00212a00620b00612b00602c00212b00620b00612c", "0x12d0064a604300620b00704100603000204100620b00604100602c002041", "0x720b00600900607f00200220b00604300603300200220b006002009002", "0x639500213204f04e04b04d13013104701420b00612e00637100212e045", "0x39800200220b00604d00639900200220b00613100639b00200220b006047", "0x200220b00604f00639600200220b00604e00639700200220b00604b006", "0x20b00605400612b00205600620b00606500601600200220b00613200620c", "0x5100920b0060581330560093d400205800620b0061300063d3002133006", "0x200220b0060020090021340064a713600620b00712f00615100212f053", "0x13500604d00205d13500720b00605b00613000205b00620b006136006152", "0x206105f00720b00613700613000213700620b0060020ef00200220b006", "0x20b00613800613000213800620b00605d0061b200200220b00605f00604d", "0x13000206700620b0060610061b200200220b00606400604d002139064007", "0x20b0061390061b200200220b00613b00604d00206913b00720b006067006", "0x213c00620b00606c06a0071c100206c00620b0060690061b200206a006", "0x200900206f0064a800220b00713c0061c500213c00620b00613c00604b", "0x2c00207100620b00613f00602e00213f00620b00600202a00200220b006", "0xf200200220b0060020090020024a900600202d00214100620b006071006", "0x7500620b00614500602b00214500620b00600202a00200220b00606f006", "0x7600602c00207600620b00614100602f00214100620b00607500602c002", "0x7700620b00607700602c00207700620b00607600602f00207600620b006", "0x211e00200220b0060020090021460064aa07900620b007077006030002", "0x14a07b14b01420b00604500637100200220b00607900603300200220b006", "0x20b00600200600c00208314f00720b0060c70063fb00214e1521510c707f", "0x3fc00215d00620b00605300612b00215f00620b006051006016002160006", "0x16115e15008500c20b00616315d15f16000c3fd00216300620b006083006", "0x60c900200220b0060020090021620064ab15c00620b0071610060c8002", "0x615700604d00208a15715400920b0060870063fe00208700620b00615c", "0x601600208e00620b00608500600c00200220b00608a00604d00200220b", "0x620b00615400621b0020d000620b00615e00612b00216b00620b006150", "0x70ed0064000020ed16816e15b00c20b00616c0d016b08e00c3ff00216c", "0x17100620b00609200640100200220b00600200900216d0064ac09200620b", "0x9600640300209600620b00600202a00217309400720b006171006402002", "0x220b0060d100643c0020990d100720b00617500640200217500620b006", "0x9b00721a00217a00620b00609900643d00209b00620b00617300643d002", "0x600200900217c0064ad09d00620b00717600603000217600620b00617a", "0x60020ef0020cc00620b00600243e00200220b00609d00603300200220b", "0xa200620b00617d0a00cc00943f00217d00620b0060020ef0020a000620b", "0x16800612b0020a800620b00616e0060160020d200620b00615b00600c002", "0xab00620b0060a20060c60020ce00620b00614f0063fc00218000620b006", "0x70cd0064410020cd17f0a417e00c20b0060ab0ce1800a80d2016440002", "0xc800720b00618100644200200220b0060020090020cf0064ae18100620b", "0x643c0020cb0ca00720b00609400640200200220b0060c90060330020c9", "0x20b300620b0060c60064430020c600620b00600202a00200220b0060ca", "0x60cb00640200200220b0060b500643c00218e0b500720b0060b3006402", "0xbb0ba00720b00618e00640200200220b0060b700643c0020b90b700720b", "0x60bb00643d00218f00620b0060b900643d00200220b0060ba00643c002", "0xbf00620b0060bd00602f0020bd00620b0060be18f0074440020be00620b", "0x3d700219007b00720b00607b0063d60020c114b00720b00614b0063d5002", "0xc80063d900219b07f00720b00607f0063d80020c314a00720b00614a006", "0x20b0061520063db0020d415100720b0061510063da00219c0c800720b006", "0x19c19b0c31900c101412a0021a014e00720b00614e0063dc00219d152007", "0x20b0060bf00602c00200220b0060d60060470020d600620b0061a019d0d4", "0x200220b0060020090020d70064af19f00620b0070bf0060300020bf006", "0x620b00614e1521510c807f14a07b14b01412a00200220b00619f006033", "0x612b0020db00620b0060a40060160021a100620b00617e00600c0020d9", "0x20024b000600202d0021a400620b0060d90060410021a300620b00617f", "0xc807f14a07b14b01412a00200220b0060d700603300200220b006002009", "0x20b00617e00600c0020df00620b0060024450021a500620b00614e152151", "0x410020e700620b00617f00612b0020e500620b0060a40060160021b4006", "0xe70e51b40164470021ba00620b0060df0064460021b800620b0061a5006", "0xea0064b11bd00620b0071ae00617d0021ae1ad1b21a600c20b0061ba1b8", "0x61bf0060330021bf0ec00720b0061bd0061f600200220b006002009002", "0x12b0020db00620b0061b20060160021a100620b0061a600600c00200220b", "0x20b0061a100636e0021a400620b0060ec0060410021a300620b0061ad006", "0x44a0021c500620b0061a30064490021c100620b0060db0064480020ef006", "0x4d00200220b0060020090020024b200600202d0020f200620b0061a4006", "0x620b0061a600600c0020f400620b0060ea00644b00200220b00600c006", "0x644c0021d400620b0061ad00612b0021ca00620b0061b20060160021c8", "0x604d00200220b0060020090020f81d41ca1c800c0060f800620b0060f4", "0x39700200220b00615200639600200220b00614e00620c00200220b00600c", "0x200220b00607f00639900200220b00609400643c00200220b006151006", "0x220b00614b00639500200220b00607b00639b00200220b00614a00639a", "0xa40060160021eb00620b00617e00600c0021d600620b0060cf00644b002", "0xfc00620b0061d600644c0021ef00620b00617f00612b0020fa00620b006", "0x200220b00617c00603300200220b0060020090020fc1ef0fa1eb00c006", "0x620b00614e15215114f07f14a07b14b01412a00200220b00609400643c", "0x612b0021c100620b00616e0060160020ef00620b00615b00600c0020fe", "0x1420b0060f20063710020f200620b0060fe0060410021c500620b006168", "0x61c100601600220600620b0060020650021ff1fb1032f61f91f81001f6", "0x230800620b0061ff00644d00230700620b0061c500612b00230500620b", "0x30430000000920b00630930830730500c21900230900620b00620600611b", "0x644f00200220b00600200900230b0064b330a00620b00730400644e002", "0x30f00620b00600206500200220b00630e00603300230e30c00720b00630a", "0x1fb00645000231400620b00630000612b00231300620b006000006016002", "0x631631531431300c45100231600620b00630f00611b00231500620b006", "0x60020090023190064b431700620b00731200645200231231131000920b", "0x12a00200220b00631b00603300231b31a00720b00631700645300200220b", "0x1420b00631c00637100231c00620b00630c31a1032f61f91f81001f6014", "0x31100612b00233200620b00631000601600232b32a329328326322321320", "0xc00720b00600c00635a00233300620b0063260063de00221200620b006", "0x32c00920b00633433321233200c4b500233400620b00633400604b002334", "0x3d300232100620b0063210063d000232000620b0063200063e300233132d", "0x20b0063280063fc00232b00620b00632b00644d00232200620b006322006", "0x4b600232a00620b00632a00645000232900620b006329006373002328006", "0x63350064b800200220b0060020090023360064b733500620b007331006", "0x221100620b00600c0064b900200220b00633900603300233933700720b", "0x20b0060ef00600c00233b00620b00632b32a32932833732232132001412a", "0x4100234500620b00632d00612b00221000620b00632c006016002343006", "0x3452103430164bb00234700620b0062110064ba00234600620b00633b006", "0x3490064bc34800620b00734200617d00234234033f33d00c20b006347346", "0x634b00603300234b34a00720b0063480061f600200220b006002009002", "0x48500234d00620b00634c34a00748400234c00620b00600202a00200220b", "0x20b00633f00601600234f00620b00633d00600c00234e00620b00634d006", "0xc00635200620b00634e00644c00235100620b00634000612b002350006", "0xc00235300620b00634900644b00200220b00600200900235235135034f", "0x20b00634000612b00235400620b00633f00601600220f00620b00633d006", "0x600200900235635535420f00c00635600620b00635300644c002355006", "0x32a00639600200220b00632b00620c00200220b00632000639500200220b", "0x604d00200220b00632800639800200220b00632900639700200220b006", "0x44b00200220b00632100639b00200220b00632200639a00200220b00600c", "0x20b00632c00601600235a00620b0060ef00600c00235700620b006336006", "0xc00636000620b00635700644c00235c00620b00632d00612b00235b006", "0x620c00200220b00600c00604d00200220b00600200900236035c35b35a", "0x39800200220b00610300639700200220b0061f600639500200220b00630c", "0x200220b0061f800639a00200220b0061f900639900200220b0062f6006", "0x20b0060ef00600c00236100620b00631900644b00200220b00610000639b", "0x44c00236800620b00631100612b00236600620b006310006016002365006", "0x39a00200220b00600200900236936836636500c00636900620b006361006", "0x200220b00600c00604d00200220b00610000639b00200220b0061f8006", "0x220b0062f600639800200220b00610300639700200220b0061f6006395", "0x20b00630b00644b00200220b0061fb00639600200220b0061f9006399002", "0x12b00237100620b00600000601600236f00620b0060ef00600c00236e006", "0x37337237136f00c00637300620b00636e00644c00237200620b006300006", "0x220b00614b00639500200220b00607b00639b00200220b006002009002", "0x20b00614e00620c00200220b00600c00604d00200220b00614a00639a002", "0x607f00639900200220b00615100639700200220b006152006396002002", "0x600c00237400620b00616d00644b00200220b00614f00639800200220b", "0x620b00616800612b00237800620b00616e00601600220e00620b00615b", "0x20b00600200900237a37937820e00c00637a00620b00637400644c002379", "0x614a00639a00200220b00614b00639500200220b00607b00639b002002", "0x15200639600200220b00614e00620c00200220b00600c00604d00200220b", "0x639900200220b00614f00639800200220b00615100639700200220b006", "0x37c00620b00608500600c00237b00620b00616200644b00200220b00607f", "0x37b00644c00237e00620b00615e00612b00237d00620b006150006016002", "0x600211e00200220b00600200900237f37e37d37c00c00637f00620b006", "0x4500604700200220b00600c00604d00200220b00614600603300200220b", "0x604b00238100620b0060024bd00238000620b00600213100200220b006", "0x620b00600213500238200620b00638138000705b00238100620b006381", "0xc00238800620b00638500644b00238500620b00638238300705d002383", "0x20b00605300612b00238a00620b00605100601600238900620b006002006", "0x600200900238b20d38a38900c00638b00620b00638800644c00220d006", "0x604500604700200220b00600c00604d00200220b00600211e00200220b", "0x1600238d00620b00600200600c00238c00620b00613400644b00200220b", "0x20b00638c00644c00238f00620b00605300612b00238e00620b006051006", "0x220b00600211e00200220b00600200900239138f38e38d00c006391006", "0x20b00600900604700200220b00600c00604d00200220b00612d006033002", "0x639500604b00239500620b0060023cc00239200620b006002131002002", "0x239600620b00600213500220c00620b00639539200705b00239500620b", "0x200600c00239800620b00639700644b00239700620b00620c39600705d", "0x39b00620b00605400612b00239a00620b00606500601600239900620b006", "0x220b00600200900239c39b39a39900c00639c00620b00639800644c002", "0x220b00600900604700200220b00600c00604d00200220b00600211e002", "0x600200600c00239d00620b00602c00644b00200220b0060c40060fa002", "0x23a000620b00605400612b00239f00620b00606500601600239e00620b", "0x200220b0060020090023a13a039f39e00c0063a100620b00639d00644c", "0x620b00601b00644b00200220b00600900604700200220b00600c00604d", "0x612b0023a400620b0060160060160023a300620b00600200600c0023a2", "0x23a63a53a43a300c0063a600620b0063a200644c0023a500620b00600f", "0x620b00600700612b00201400620b00600600601600200220b00600211e", "0x1700620b0070100060ea00201000f01600920b006015014007383002015", "0x636000201900620b0060170060ec00200220b00600200900201b0064be", "0x620b00601600601600200220b00601c0060fa0020c401c00720b006019", "0x11b05406500920b00602a0290071bd00202a00620b00600f00612b002029", "0x200900202c0064bf02b00620b00711b0060ea00200220b006002006002", "0x2f02e00720b00602d00636000202d00620b00602b0060ec00200220b006", "0x60300061bf00203000620b0060c400636100200220b00602e0060fa002", "0x200220b00604800604d00203904800720b00603300613000203300620b", "0x611e00613000211e00620b0060350061bf00203500620b00602f006361", "0x210d00620b0060390061b200200220b00603700604d00212003700720b", "0x3c00604b00203c00620b00603a10d0071c100203a00620b0061200061b2", "0x220b0060020090021240064c000220b00703c0061c500203c00620b006", "0x603e00602c00203e00620b00607d00602e00207d00620b00600202a002", "0x61240060f200200220b0060020090020024c100600202d00212a00620b", "0x602c00212b00620b00612c00602b00212c00620b00600202a00200220b", "0x620b00604100602c00204100620b00612a00602f00212a00620b00612b", "0x11e00200220b00600200900212d0064c204300620b007041006030002041", "0x12e04501420b00600900637100200220b00604300603300200220b006002", "0x600200600c00213204f00720b0061300063fb00204e04b04d130131047", "0x213600620b00605400612b00205800620b00606500601600213300620b", "0x12f05305100c20b00613413605813300c3fd00213400620b0061320063fc", "0xc900200220b0060020090021350064c305b00620b0070560060c8002056", "0x6100604d00206105f13700920b00605d0063fe00205d00620b00605b006", "0x206400620b00613805f0071c100213800620b00600200000200220b006", "0x20090021390064c400220b0070640061c500206400620b00606400604b", "0x213c00620b00605300601600206c00620b00605100600c00200220b006", "0x13c06c00c3ff00213f00620b00613700621b00206f00620b00612f00612b", "0x1410064c507100620b00706a00640000206a06913b06700c20b00613f06f", "0x20b00614500640200214500620b00607100640100200220b006002009002", "0x644300207700620b00600202a00200220b00607500643c002076075007", "0x20b00614600643c00214b14600720b00607900640200207900620b006077", "0x721a00207f00620b00614b00643d00214a00620b00607600643d002002", "0x20b0060c700602c0020c700620b00607b00602f00207b00620b00607f14a", "0x200220b0060020090021520064c615100620b0070c70060300020c7006", "0x20b00613b00601600214e00620b00606700600c00200220b006151006033", "0x60020090020024c700600202d00208300620b00606900612b00214f006", "0xc00604d00200220b00604500639500200220b00615200603300200220b", "0x639700200220b00604b00639600200220b00604e00620c00200220b006", "0x39a00200220b00613100639900200220b00604f00639800200220b00604d", "0x208500620b00600213100200220b00612e00639b00200220b006047006", "0x615008500705b00215000620b00615000604b00215000620b0060024c8", "0x216000620b00615e16100705d00216100620b00600213500215e00620b", "0x613b00601600215d00620b00606700600c00215f00620b00616000644b", "0x616200620b00615f00644c00215c00620b00606900612b00216300620b", "0x4d00200220b00604500639500200220b00600200900216215c16315d00c", "0x200220b00604b00639600200220b00604e00620c00200220b00600c006", "0x220b00613100639900200220b00604f00639800200220b00604d006397", "0x20b00614100644b00200220b00612e00639b00200220b00604700639a002", "0x12b00215700620b00613b00601600215400620b00606700600c002087006", "0x15b08a15715400c00615b00620b00608700644c00208a00620b006069006", "0x220b00613700634900200220b0061390060f200200220b006002009002", "0x12f00612b00214f00620b00605300601600214e00620b00605100600c002", "0x216e00620b00604e04b04d04f13104712e04501412a00208300620b006", "0x20b0060d00063fb00216d09216c0d016b08e0ed16801420b00616e006371", "0x217600620b00614f00644800209900620b00614e00636e002094171007", "0x17609900c3fd00217a00620b0060940063fc00209b00620b006083006449", "0x63d000216800620b0061680063e30020d117509617300c20b00617a09b", "0x620b00616b0063de00208e00620b00608e0063d30020ed00620b0060ed", "0x645000216c00620b00616c00637300216d00620b00616d00644d00216b", "0x620b0070d10060c800217100620b0061710063fc00209200620b006092", "0x3fe0020cc00620b00609d0060c900200220b00600200900217c0064c909d", "0x60a200604d00200220b00617d00604d0020a217d0a000920b0060cc006", "0x12b0020a800620b0060960060160020d200620b00617300600c00200220b", "0x1800a80d200c3ff0020ce00620b0060a000621b00218000620b006175006", "0x21810064ca0ab00620b0070cd0064000020cd17f0a417e00c20b0060ce", "0x720b0060cf0064020020cf00620b0060ab00640100200220b006002009", "0x64020020cb00620b0060ca0064030020ca00620b00600202a0020c90c8", "0x620b0060c900643d00200220b0060c600643c0020b30c600720b0060cb", "0x300020b500620b0060b718e00721a0020b700620b0060b300643d00218e", "0x60b900603300200220b0060020090020ba0064cb0b900620b0070b5006", "0x60020ef0020bd00620b0060020ef0020bb00620b00600243e00200220b", "0x620b00617e00600c0020be00620b00618f0bd0bb00943f00218f00620b", "0x63fc0020d400620b00617f00612b00219c00620b0060a400601600219b", "0x19d0d419c19b0164400021a000620b0060be0060c600219d00620b006171", "0x219f0064cc0d600620b0070c30064410020c31900c10bf00c20b0061a0", "0x20b0060d90060330020d90d700720b0060d600644200200220b006002009", "0x202a00200220b0061a100643c0020db1a100720b0060c8006402002002", "0x1a500720b0061a40064020021a400620b0061a30064430021a300620b006", "0x643c0021b21a600720b0060db00640200200220b0061a500643c0020df", "0x220b0061ad00643c0021ae1ad00720b0060df00640200200220b0061a6", "0xe50074440020e700620b0061ae00643d0020e500620b0061b200643d002", "0x720b0061680063d50021b800620b0061b400602f0021b400620b0060e7", "0xea08e00720b00608e0063d70021bd0ed00720b0060ed0063d60021ba168", "0x3da0021bf0d700720b0060d70063d90020ec16b00720b00616b0063d8002", "0x16d0063dc0021c109200720b0060920063db0020ef16c00720b00616c006", "0xf200620b0061c51c10ef1bf0ec0ea1bd1ba01412a0021c516d00720b006", "0x71b80060300021b800620b0061b800602c00200220b0060f2006047002", "0x200220b0060f400603300200220b0060020090021c80064cd0f400620b", "0x20b0060bf00600c0021ca00620b00616d09216c0d716b08e0ed16801412a", "0x410021d600620b00619000612b0020f800620b0060c10060160021d4006", "0x3300200220b0060020090020024ce00600202d0021eb00620b0061ca006", "0xfa00620b00616d09216c0d716b08e0ed16801412a00200220b0061c8006", "0x60c10060160021f800620b0060bf00600c0021ef00620b006002445002", "0x210300620b0060fa0060410022f600620b00619000612b0021f900620b", "0xfe0fc00c20b0061fb1032f61f91f80164470021fb00620b0061ef006446", "0x200220b0060020090022060064cf1ff00620b00710000617d0021001f6", "0x60fc00600c00200220b00630000603300230000000720b0061ff0061f6", "0x21d600620b0061f600612b0020f800620b0060fe0060160021d400620b", "0x60f800644800230400620b0061d400636e0021eb00620b006000006041", "0x230800620b0061eb00644a00230700620b0061d600644900230500620b", "0x44b00200220b00600c00604d00200220b0060020090020024d000600202d", "0x20b0060fe00601600230a00620b0060fc00600c00230900620b006206006", "0xc00630e00620b00630900644c00230c00620b0061f600612b00230b006", "0x620c00200220b00600c00604d00200220b00600200900230e30c30b30a", "0x43c00200220b00616c00639700200220b00609200639600200220b00616d", "0x200220b00608e00639a00200220b00616b00639900200220b0060c8006", "0x620b00619f00644b00200220b00616800639500200220b0060ed00639b", "0x612b00231100620b0060c100601600231000620b0060bf00600c00230f", "0x231331231131000c00631300620b00630f00644c00231200620b006190", "0x200220b0060c800643c00200220b0060ba00603300200220b006002009", "0x20b00617e00600c00231400620b00616d09216c17116b08e0ed16801412a", "0x4100230700620b00617f00612b00230500620b0060a4006016002304006", "0x20b00630700612b00231900620b00630500601600230800620b006314006", "0x620b00731700636600231731631500920b00631a31900736500231a006", "0x4d200232000620b00631b00636800200220b00600200900231c0064d131b", "0x620b00632000621b00232800620b00630400600c00232100620b006002", "0x32632200720b00632a3293280094d300232a00620b00632100621b002329", "0x636800200220b00600200900232c0064d432b00620b007326006366002", "0x32d00720b00632d00635b00233100620b0060023f700232d00620b00632b", "0x33300620b00621233133200943f00221200c00720b00600c00635a002332", "0x632200600c00233d33b21133933733633533401420b006308006371002", "0x234600620b00631600612b00234500620b00631500601600221000620b", "0x34521001644000234800620b0063330060c600234700620b0063390063fc", "0x64d534900620b00734300644100234334234033f00c20b006348347346", "0x34c00603300234c34b00720b00634900644200200220b00600200900234a", "0x34b33733633533401412a00234d00620b00600c32d0074d600200220b006", "0x634000601600235300620b00633f00600c00234e00620b00633d33b211", "0x235500620b00634e00604100235400620b00634200612b00220f00620b", "0x35034f00c20b00635635535420f3530164d800235600620b00634d0064d7", "0x200220b00600200900235a0064d935700620b00735200617d002352351", "0x20b00600202a00200220b00635c00603300235c35b00720b0063570061f6", "0x236500620b00636100648500236100620b00636035b007484002360006", "0x635100612b00236800620b00635000601600236600620b00634f00600c", "0x200900236e36936836600c00636e00620b00636500644c00236900620b", "0x237100620b00634f00600c00236f00620b00635a00644b00200220b006", "0x636f00644c00237300620b00635100612b00237200620b006350006016", "0x633400639500200220b00600200900237437337237100c00637400620b", "0x21100639700200220b00633b00639600200220b00633d00620c00200220b", "0x639a00200220b00633700639900200220b00632d00634900200220b006", "0x44b00200220b00600c00604d00200220b00633500639b00200220b006336", "0x20b00634000601600237800620b00633f00600c00220e00620b00634a006", "0xc00637b00620b00620e00644c00237a00620b00634200612b002379006", "0x604700200220b00600c00604d00200220b00600200900237b37a379378", "0x37d00620b00632200600c00237c00620b00632c00644b00200220b006308", "0x37c00644c00237f00620b00631600612b00237e00620b006315006016002", "0x30800604700200220b00600200900238037f37e37d00c00638000620b006", "0xc00238100620b00631c00644b00200220b00600c00604d00200220b006", "0x20b00631600612b00238300620b00631500601600238200620b006304006", "0x600200900238838538338200c00638800620b00638100644c002385006", "0xc00604d00200220b0060ed00639b00200220b00616800639500200220b", "0x639600200220b00616d00620c00200220b00608e00639a00200220b006", "0x39800200220b00616b00639900200220b00616c00639700200220b006092", "0x620b00617e00600c00238900620b00618100644b00200220b006171006", "0x644c00238b00620b00617f00612b00220d00620b0060a400601600238a", "0x639500200220b00600200900238c38b20d38a00c00638c00620b006389", "0x39a00200220b00600c00604d00200220b0060ed00639b00200220b006168", "0x200220b00609200639600200220b00616d00620c00200220b00608e006", "0x220b00616b00639900200220b00617100639800200220b00616c006397", "0x9600601600238e00620b00617300600c00238d00620b00617c00644b002", "0x39200620b00638d00644c00239100620b00617500612b00238f00620b006", "0x200220b00604500639500200220b00600200900239239138f38e00c006", "0x220b00604700639a00200220b00600c00604d00200220b00612e00639b", "0x20b00604d00639700200220b00604b00639600200220b00604e00620c002", "0x613500644b00200220b00613100639900200220b00604f006398002002", "0x239600620b00605300601600220c00620b00605100600c00239500620b", "0x39739620c00c00639800620b00639500644c00239700620b00612f00612b", "0x220b00612d00603300200220b00600211e00200220b006002009002398", "0x620b00600213100200220b00600900604700200220b00600c00604d002", "0x39900705b00239a00620b00639a00604b00239a00620b0060023cc002399", "0x620b00639b39c00705d00239c00620b00600213500239b00620b00639a", "0x601600239f00620b00600200600c00239e00620b00639d00644b00239d", "0x620b00639e00644c0023a100620b00605400612b0023a000620b006065", "0x200220b00600211e00200220b0060020090023a23a13a039f00c0063a2", "0x220b0060c40060fa00200220b00600900604700200220b00600c00604d", "0x650060160023a400620b00600200600c0023a300620b00602c00644b002", "0x3a700620b0063a300644c0023a600620b00605400612b0023a500620b006", "0x200220b00600c00604d00200220b0060020090023a73a63a53a400c006", "0x20b00600200600c0023a800620b00601b00644b00200220b006009006047", "0x44c0023ab00620b00600f00612b0023aa00620b0060160060160023a9006", "0x1600200220b00600211e0023ac3ab3aa3a900c0063ac00620b0063a8006", "0x601501400738300201500620b00600700612b00201400620b006006006", "0x600200900201b0064da01700620b0070100060ea00201000f01600920b", "0x20c401c00720b00601900636000201900620b0060170060ec00200220b", "0x20b00600f00612b00202900620b00601600601600200220b00601c0060fa", "0x200220b00600200600211b05406500920b00602a0290071bd00202a006", "0x2b0060ec00200220b00600200900202c0064db02b00620b00711b0060ea", "0x220b00602e0060fa00202f02e00720b00602d00636000202d00620b006", "0x3300613000203300620b0060300061bf00203000620b0060c4006361002", "0x3500620b00602f00636100200220b00604800604d00203904800720b006", "0x604d00212003700720b00611e00613000211e00620b0060350061bf002", "0x3a00620b0061200061b200210d00620b0060390061b200200220b006037", "0x61c500203c00620b00603c00604b00203c00620b00603a10d0071c1002", "0x7d00620b00600202a00200220b0060020090021240064dc00220b00703c", "0x600202d00212a00620b00603e00602c00203e00620b00607d00602e002", "0x20b00600202a00200220b0061240060f200200220b0060020090020024dd", "0x2f00212a00620b00612b00602c00212b00620b00612c00602b00212c006", "0x20b00704100603000204100620b00604100602c00204100620b00612a006", "0x603300200220b00600211e00200220b00600200900212d0064de043006", "0x204e04b04d13013104712e04501420b00600900637100200220b006043", "0x6500601600213300620b00600200600c00213204f00720b0061300063fb", "0x13400620b0061320063fc00213600620b00605400612b00205800620b006", "0x20b0070560060c800205612f05305100c20b00613413605813300c3fd002", "0x205d00620b00605b0060c900200220b0060020090021350064df05b006", "0x6100604d00200220b00605f00604d00206105f13700920b00605d0063fe", "0x206900620b00605300601600213b00620b00605100600c00200220b006", "0x6913b00c3ff00206c00620b00613700621b00206a00620b00612f00612b", "0x6f0064e013c00620b00706700640000206713906413800c20b00606c06a", "0x20b00613f00640200213f00620b00613c00640100200220b006002009002", "0x40200207500620b00614500640300214500620b00600202a002141071007", "0x20b00614100643d00200220b00607600643c00207707600720b006075006", "0x207900620b00614b14600721a00214b00620b00607700643d002146006", "0x7b00603300200220b00600200900214a0064e107b00620b007079006030", "0x20ef0020c700620b0060020ef00207f00620b00600243e00200220b006", "0x20b00613800600c00215200620b0061510c707f00943f00215100620b006", "0x3fc00216100620b00613900612b00215e00620b006064006016002150006", "0x16115e15001644000215f00620b0061520060c600216000620b00604f006", "0x1630064e215d00620b00708500644100208508314f14e00c20b00615f160", "0x616200603300216215c00720b00615d00644200200220b006002009002", "0x2a00200220b00608700643c00215408700720b00607100640200200220b", "0x720b00608a00640200208a00620b00615700644300215700620b006002", "0x43c0020ed16800720b00615400640200200220b00615b00643c00216e15b", "0x20b00608e00643c00216b08e00720b00616e00640200200220b006168006", "0x744400209200620b00616b00643d00216c00620b0060ed00643d002002", "0x20b0060450063d500216d00620b0060d000602f0020d000620b00609216c", "0x4700720b0060470063d700209412e00720b00612e0063d6002171045007", "0x217515c00720b00615c0063d900209613100720b0061310063d8002173", "0x63dc00209904b00720b00604b0063db0020d104d00720b00604d0063da", "0x620b0061760990d117509617309417101412a00217604e00720b00604e", "0x16d00603000216d00620b00616d00602c00200220b00609b00604700209b", "0x220b00617a00603300200220b00600200900209d0064e317a00620b007", "0x614e00600c00217c00620b00604e04b04d15c13104712e04501412a002", "0x217d00620b00608300612b0020a000620b00614f0060160020cc00620b", "0x200220b0060020090020024e400600202d0020a200620b00617c006041", "0x620b00604e04b04d15c13104712e04501412a00200220b00609d006033", "0x14f00601600218000620b00614e00600c0020a400620b00600244500217e", "0x18100620b00617e0060410020ab00620b00608300612b0020ce00620b006", "0x17f00c20b0060cf1810ab0ce1800164470020cf00620b0060a4006446002", "0x220b0060020090020c90064e50c800620b0070a800617d0020a80d20cd", "0x17f00600c00200220b0060cb0060330020cb0ca00720b0060c80061f6002", "0x17d00620b0060d200612b0020a000620b0060cd0060160020cc00620b006", "0xa00064480020c600620b0060cc00636e0020a200620b0060ca006041002", "0x18e00620b0060a200644a0020b500620b00617d0064490020b300620b006", "0x200220b00600c00604d00200220b0060020090020024e600600202d002", "0x60cd0060160020b900620b00617f00600c0020b700620b0060c900644b", "0x60bd00620b0060b700644c0020bb00620b0060d200612b0020ba00620b", "0x20c00200220b00600c00604d00200220b0060020090020bd0bb0ba0b900c", "0x200220b00604d00639700200220b00604b00639600200220b00604e006", "0x220b00604700639a00200220b00613100639900200220b00607100643c", "0x20b00616300644b00200220b00604500639500200220b00612e00639b002", "0x12b0020bf00620b00614f0060160020be00620b00614e00600c00218f006", "0x1900c10bf0be00c00619000620b00618f00644c0020c100620b006083006", "0x220b00607100643c00200220b00614a00603300200220b006002009002", "0x613800600c0020c300620b00604e04b04d04f13104712e04501412a002", "0x20b500620b00613900612b0020b300620b0060640060160020c600620b", "0x60b500612b00219d00620b0060b300601600218e00620b0060c3006041", "0x20b0070d40063660020d419c19b00920b0061a019d0073650021a000620b", "0x20d700620b0060d600636800200220b00600200900219f0064e70d6006", "0x20b0060d700621b0021a300620b0060c600600c0020d900620b0060024d2", "0x1a100720b0061a51a41a30094d30021a500620b0060d900621b0021a4006", "0x36800200220b0060020090021a60064e80df00620b0070db0063660020db", "0x720b0061b200635b0021ad00620b0060020000021b200620b0060df006", "0x620b0061b41ad1ae00943f0021b400c00720b00600c00635a0021ae1b2", "0x1a100600c0020ef1bf0ec0ea1bd1ba1b80e701420b00618e0063710020e5", "0x1d400620b00619c00612b0021ca00620b00619b0060160021c800620b006", "0x1c80164400021d600620b0060e50060c60020f800620b0060ea0063fc002", "0x4e91eb00620b0070f40064410020f40f21c51c100c20b0061d60f81d41ca", "0x60330020fc1ef00720b0061eb00644200200220b0060020090020fa006", "0x1bd1ba1b80e701412a0020fe00620b00600c1b20074ea00200220b0060fc", "0x1c500601600210300620b0061c100600c0021f600620b0060ef1bf0ec1ef", "0x20600620b0061f60060410021ff00620b0060f200612b0021fb00620b006", "0x10000c20b0060002061ff1fb10301621500200000620b0060fe0064eb002", "0x220b0060020090023040064ec30000620b0072f600617d0022f61f91f8", "0x600202a00200220b00630700603300230730500720b0063000061f6002", "0x30a00620b00630900648500230900620b00630830500748400230800620b", "0x1f900612b00230c00620b0061f800601600230b00620b00610000600c002", "0x900230f30e30c30b00c00630f00620b00630a00644c00230e00620b006", "0x31100620b00610000600c00231000620b00630400644b00200220b006002", "0x31000644c00231300620b0061f900612b00231200620b0061f8006016002", "0xe700639500200220b00600200900231431331231100c00631400620b006", "0x639700200220b0061bf00639600200220b0060ef00620c00200220b006", "0x39a00200220b0061bd00639900200220b0061b200634900200220b0060ec", "0x200220b00600c00604d00200220b0061b800639b00200220b0061ba006", "0x61c500601600231600620b0061c100600c00231500620b0060fa00644b", "0x631a00620b00631500644c00231900620b0060f200612b00231700620b", "0x4700200220b00600c00604d00200220b00600200900231a31931731600c", "0x620b0061a100600c00231b00620b0061a600644b00200220b00618e006", "0x644c00232100620b00619c00612b00232000620b00619b00601600231c", "0x604700200220b00600200900232232132031c00c00632200620b00631b", "0x232600620b00619f00644b00200220b00600c00604d00200220b00618e", "0x619c00612b00232900620b00619b00601600232800620b0060c600600c", "0x200900232b32a32932800c00632b00620b00632600644c00232a00620b", "0x604d00200220b00612e00639b00200220b00604500639500200220b006", "0x39600200220b00604e00620c00200220b00604700639a00200220b00600c", "0x200220b00613100639900200220b00604d00639700200220b00604b006", "0x20b00613800600c00232c00620b00606f00644b00200220b00604f006398", "0x44c00233200620b00613900612b00233100620b00606400601600232d006", "0x39500200220b00600200900221233233132d00c00621200620b00632c006", "0x200220b00600c00604d00200220b00612e00639b00200220b006045006", "0x220b00604b00639600200220b00604e00620c00200220b00604700639a", "0x20b00613100639900200220b00604f00639800200220b00604d006397002", "0x601600233400620b00605100600c00233300620b00613500644b002002", "0x620b00633300644c00233600620b00612f00612b00233500620b006053", "0x200220b00600211e00200220b00600200900233733633533400c006337", "0x220b00600900604700200220b00600c00604d00200220b00612d006033", "0x20b00621100604b00221100620b0060023cc00233900620b006002131002", "0x5d00233d00620b00600213500233b00620b00621133900705b002211006", "0x600200600c00234000620b00633f00644b00233f00620b00633b33d007", "0x221000620b00605400612b00234300620b00606500601600234200620b", "0x200220b00600200900234521034334200c00634500620b00634000644c", "0x200220b00600900604700200220b00600c00604d00200220b00600211e", "0x20b00600200600c00234600620b00602c00644b00200220b0060c40060fa", "0x44c00234900620b00605400612b00234800620b006065006016002347006", "0x4d00200220b00600200900234a34934834700c00634a00620b006346006", "0x34b00620b00601b00644b00200220b00600900604700200220b00600c006", "0xf00612b00234d00620b00601600601600234c00620b00600200600c002", "0x7500234f34e34d34c00c00634f00620b00634b00644c00234e00620b006", "0x11e00200220b00600213900201000620b00600207500201600620b006002", "0x1900620b00600700612b00201b00620b00600600601600200220b006002", "0x4ed01c00620b0070170060ea00201701501400920b00601901b007383002", "0x6500636000206500620b00601c0060ec00200220b0060020090020c4006", "0x2c00620b00601400601600200220b0060540060fa00211b05400720b006", "0x202b02a02900920b00602d02c0071bd00202d00620b00601500612b002", "0x600200900202f0064ee02e00620b00702b0060ea00200220b006002006", "0x204803300720b00603000636000203000620b00602e0060ec00200220b", "0x20b0060390061bf00203900620b00611b00636100200220b0060330060fa", "0x36100200220b00611e00604d00203711e00720b006035006130002035006", "0x20b00610d00613000210d00620b0061200061bf00212000620b006048006", "0x1b200212400620b0060370061b200200220b00603a00604d00203c03a007", "0x603e00604b00203e00620b00607d1240071c100207d00620b00603c006", "0x200220b00600200900212a0064ef00220b00703e0061c500203e00620b", "0x20b00612b00602c00212b00620b00612c00602e00212c00620b00600202a", "0x20b00612a0060f200200220b0060020090020024f000600202d002041006", "0x12d00602c00212d00620b00604300602b00204300620b00600202a002002", "0x4500620b00604500602c00204500620b00604100602f00204100620b006", "0x211e00200220b0060020090020470064f112e00620b007045006030002", "0x4d13013101420b00600900637100200220b00612e00603300200220b006", "0x20b00600200600c00212f05300720b00604e0063fb00205113204f04e04b", "0x3fc00213500620b00602a00612b00205b00620b006029006016002134006", "0x13605813305600c20b00605d13505b13400c3fd00205d00620b00612f006", "0x60c900200220b00600200900205f0064f213700620b0071360060c8002", "0x606400604d00200c06413800920b0060610063fe00206100620b006137", "0x12b00206c00620b00613300601600206a00620b00605600600c00200220b", "0x13c06c06a00c3ff00206f00620b00613800621b00213c00620b006058006", "0x640000200c00620b00600c01600707900206913b06713900c20b00606f", "0x20b00613f00640100200220b0060020090020710064f313f00620b007069", "0x2a00200220b00614500643c00207514500720b006141006402002141006", "0x720b00607700640200207700620b0060760064f400207600620b006002", "0x643d00207b00620b00607500643d00200220b00607900643c002146079", "0x20b00614b00602f00214b00620b00614a07b00721a00214a00620b006146", "0x64f50c700620b00707f00603000207f00620b00607f00602c00207f006", "0x4d13013101412a00200220b0060c700603300200220b006002009002151", "0x8508314f14e01420b00615200637100215200620b00605113204f05304b", "0x216200620b00606700601600215f00620b00600206500216016115e150", "0x615f00611b00215400620b00616000644d00208700620b00613b00612b", "0x14e0063e300215c16315d00920b00615715408716200c21900215700620b", "0x8300620b0060830063d300214f00620b00614f0063d000214e00620b006", "0x15e00637300215000620b0061500063fc00208500620b0060850063de002", "0x8a00620b00715c00644e00216100620b00616100645000215e00620b006", "0x3300216816e00720b00608a00644f00200220b00600200900215b0064f6", "0x16c00620b00615d0060160020ed00620b00600206500200220b006168006", "0xed00611b00216d00620b00616100645000209200620b00616300612b002", "0x64520020d016b08e00920b00617116d09216c00c45100217100620b006", "0x20b00609400645300200220b0060020090021730064f709400620b0070d0", "0x9615e15008508314f14e01412a00200220b006175006033002175096007", "0xa00cc17c09d17a09b17609901420b0060d10063710020d100620b00616e", "0x612b0020cd00620b00608e0060160020a217d00720b0061760063cf002", "0x60a80d20cd0093d10020a800620b0060a20063d00020d200620b00616b", "0x620b0060a000644d00209900620b0060990063e300217f0a417e00920b", "0x63fc00217a00620b00617a0063de00209b00620b00609b0063d30020a0", "0x620b0060cc00645000217c00620b00617c00637300209d00620b00609d", "0xce0064f818000620b00717f00615100217d00620b00617d0063d00020cc", "0x20b00617e00601600200f00620b00618000615200200220b006002009002", "0x35a0020ca00620b00617d0063d00020c900620b0060a400612b0020c8006", "0xc90c800c4540020cb00620b0060cb00604b0020cb00c00720b00600c006", "0x645500200f00620b00600f0100070790020cf1810ab00920b0060cb0ca", "0x20b0060c600645600200220b0060020090020b30064f90c600620b0070cf", "0x20b700c00720b00600c00635a00200220b00618e00603300218e0b5007", "0x20b0060a00cc17c09d17a09b0b509901412a0020b900620b0060b70064fa", "0x12b0020c100620b0060ab0060160020bf00620b00613900600c0020ba006", "0x20b0060b90064fb0020c300620b0060ba00604100219000620b006181006", "0x617d0020be18f0bd0bb00c20b00619b0c31900c10bf0164fc00219b006", "0x20b00619c0061f600200220b0060020090020d40064fd19c00620b0070be", "0xc0020d600620b00600f00647f00200220b0061a00060330021a019d007", "0x20b00618f00612b0021a300620b0060bd0060160020db00620b0060bb006", "0x4810020df00620b0060d60064800021a500620b00619d0060410021a4006", "0x620b0071a100617d0021a10d90d719f00c20b0060df1a51a41a30db016", "0x21ae1ad00720b0061a60061f600200220b0060020090021b20064fe1a6", "0x20b00619f00600c0021b400620b00600c0063ed00200220b0061ae006033", "0x410020ec00620b0060d900612b0020ea00620b0060d70060160021bd006", "0xec0ea1bd0163ef0020ef00620b0061b40063ee0021bf00620b0061ad006", "0x1c50064ff1c100620b0071ba00617d0021ba1b80e70e500c20b0060ef1bf", "0x60f40060330020f40f200720b0061c10061f600200220b006002009002", "0x60020ef0021ca00620b0060020ef0021c800620b00600243e00200220b", "0x1420b0060f20063710020f800620b0061d41ca1c800943f0021d400620b", "0xe70060160021fb00620b0060e500600c0021001f60fe0fc1ef0fa1eb1d6", "0x620b0060fc0063fc00220600620b0061b800612b0021ff00620b006", "0x1f800c20b0063000002061ff1fb01644000230000620b0060f80060c6002", "0x220b00600200900230500650030400620b0071030064410021032f61f9", "0x1d601412a00200220b00630800603300230830700720b006304006442002", "0x48400230a00620b00600202a00230900620b0061001f60fe3071ef0fa1eb", "0x61f800600c00230c00620b00630b00648500230b00620b00630a309007", "0x231000620b0062f600612b00230f00620b0061f900601600230e00620b", "0x200220b00600200900231131030f30e00c00631100620b00630c00644c", "0x220b0060fe00639700200220b0061f600639600200220b00610000620c", "0x20b0060fa00639a00200220b0061ef00639900200220b0061d6006395002", "0x1f800600c00231200620b00630500644b00200220b0061eb00639b002002", "0x31500620b0062f600612b00231400620b0061f900601600231300620b006", "0x220b00600200900231631531431300c00631600620b00631200644c002", "0xe700601600231900620b0060e500600c00231700620b0061c500644b002", "0x31c00620b00631700644c00231b00620b0061b800612b00231a00620b006", "0x200220b00600c00604d00200220b00600200900231c31b31a31900c006", "0x60d700601600232100620b00619f00600c00232000620b0061b200644b", "0x632800620b00632000644c00232600620b0060d900612b00232200620b", "0x4d00200220b00600c00604d00200220b00600200900232832632232100c", "0x620b0060bb00600c00232900620b0060d400644b00200220b00600f006", "0x644c00232c00620b00618f00612b00232b00620b0060bd00601600232a", "0x604d00200220b00600200900232d32c32b32a00c00632d00620b006329", "0x20c00200220b00609900639500200220b00600f00604d00200220b00600c", "0x200220b00617c00639700200220b0060cc00639600200220b0060a0006", "0x220b00609b00639a00200220b00617a00639900200220b00609d006398", "0xab00601600233200620b00613900600c00233100620b0060b300644b002", "0x33400620b00633100644c00233300620b00618100612b00221200620b006", "0x200220b00600c00604d00200220b00600200900233433321233200c006", "0x220b00617a00639900200220b00609b00639a00200220b006099006395", "0x20b00617c00639700200220b0060cc00639600200220b0060a000620c002", "0x601000614e00200220b00617d00639b00200220b00609d006398002002", "0x1600233600620b00613900600c00233500620b0060ce00644b00200220b", "0x20b00633500644c00233900620b0060a400612b00233700620b00617e006", "0x20b00600c00604d00200220b00600200900221133933733600c006211006", "0x614e00639500200220b00616e00620c00200220b00601000614e002002", "0x8500639900200220b00615000639800200220b00615e00639700200220b", "0x644b00200220b00614f00639b00200220b00608300639a00200220b006", "0x620b00608e00601600233d00620b00613900600c00233b00620b006173", "0x33d00c00634200620b00633b00644c00234000620b00616b00612b00233f", "0x1000614e00200220b00600c00604d00200220b00600200900234234033f", "0x639500200220b00608300639a00200220b00614f00639b00200220b006", "0x39900200220b00615000639800200220b00615e00639700200220b00614e", "0x34300620b00615b00644b00200220b00616100639600200220b006085006", "0x16300612b00234500620b00615d00601600221000620b00613900600c002", "0x900234734634521000c00634700620b00634300644c00234600620b006", "0x14e00200220b00600c00604d00200220b00615100603300200220b006002", "0x200220b00613200639600200220b00605100620c00200220b006010006", "0x220b00604b00639900200220b00605300639800200220b00604f006397", "0x20b00613100639500200220b00613000639b00200220b00604d00639a002", "0x634900604b00234900620b00600250100234800620b006002131002002", "0x234b00620b00600213500234a00620b00634934800705b00234900620b", "0x13900600c00234d00620b00634c00644b00234c00620b00634a34b00705d", "0x35000620b00613b00612b00234f00620b00606700601600234e00620b006", "0x220b00600200900235135034f34e00c00635100620b00634d00644c002", "0x20b00605100620c00200220b00601000614e00200220b00600c00604d002", "0x605300639800200220b00604f00639700200220b006132006396002002", "0x13000639b00200220b00604d00639a00200220b00604b00639900200220b", "0xc00235200620b00607100644b00200220b00613100639500200220b006", "0x20b00613b00612b00220f00620b00606700601600235300620b006139006", "0x600200900235535420f35300c00635500620b00635200644c002354006", "0x4d00639a00200220b00613000639b00200220b00601000614e00200220b", "0x639600200220b00605100620c00200220b00613100639500200220b006", "0x39900200220b00605300639800200220b00604f00639700200220b006132", "0x35600620b00605f00644b00200220b00601600614e00200220b00604b006", "0x5800612b00235a00620b00613300601600235700620b00605600600c002", "0x900235c35b35a35700c00635c00620b00635600644c00235b00620b006", "0x614e00200220b00604700603300200220b00600211e00200220b006002", "0x13100200220b00600900604700200220b00601000614e00200220b006016", "0x36100620b00636100604b00236100620b0060023cc00236000620b006002", "0x36600705d00236600620b00600213500236500620b00636136000705b002", "0x620b00600200600c00236900620b00636800644b00236800620b006365", "0x644c00237100620b00602a00612b00236f00620b00602900601600236e", "0x211e00200220b00600200900237237136f36e00c00637200620b006369", "0x604700200220b00601000614e00200220b00601600614e00200220b006", "0x237300620b00602f00644b00200220b00611b0060fa00200220b006009", "0x602a00612b00220e00620b00602900601600237400620b00600200600c", "0x200900237937820e37400c00637900620b00637300644c00237800620b", "0x604700200220b00601000614e00200220b00601600614e00200220b006", "0x37b00620b00600200600c00237a00620b0060c400644b00200220b006009", "0x37a00644c00237d00620b00601500612b00237c00620b006014006016002", "0x600601600200220b00600211e00237e37d37c37b00c00637e00620b006", "0x920b00601401000738300201400620b00600700612b00201000620b006", "0x220b00600200900201700650201500620b00700f0060ea00200f01600c", "0x60fa00201c01900720b00601b00636000201b00620b0060150060ec002", "0x2900620b00601600612b00211b00620b00600c00601600200220b006019", "0x60ea00200220b0060020060020540650c400920b00602911b0071bd002", "0x20b00602a0060ec00200220b00600200900202b00650302a00620b007054", "0x36100200220b00602d0060fa00202e02d00720b00602c00636000202c006", "0x20b00603000613000203000620b00602f0061bf00202f00620b00601c006", "0x1bf00203900620b00602e00636100200220b00603300604d002048033007", "0x611e00604d00203711e00720b00603500613000203500620b006039006", "0x1c100210d00620b0060370061b200212000620b0060480061b200200220b", "0x703a0061c500203a00620b00603a00604b00203a00620b00610d120007", "0x2e00212400620b00600202a00200220b00600200900203c00650400220b", "0x250500600202d00203e00620b00607d00602c00207d00620b006124006", "0x12a00620b00600202a00200220b00603c0060f200200220b006002009002", "0x3e00602f00203e00620b00612c00602c00212c00620b00612a00602b002", "0x4100620b00712b00603000212b00620b00612b00602c00212b00620b006", "0x604100603300200220b00600211e00200220b006002009002043006506", "0x63fb00204b04d13013104712e04512d01420b00600900637100200220b", "0x20b0060c400601600205600620b00600200600c00204f04e00720b006131", "0x3fd00213600620b00604f0063fc00205800620b00606500612b002133006", "0x13400620b00712f0060c800212f05305113200c20b00613605813305600c", "0x63fe00213500620b0061340060c900200220b00600200900205b006507", "0x20b00613200600c00200220b00613700604d00205f13705d00920b006135", "0x21b00206900620b00605300612b00213b00620b006051006016002067006", "0x13906413806100c20b00606a06913b06700c3ff00206a00620b00605d006", "0x640100200220b00600200900213c00650806c00620b007139006400002", "0x20b00613f00643c00207113f00720b00606f00640200206f00620b00606c", "0x14500640200214500620b0061410064f400214100620b00600202a002002", "0x7900620b00607100643d00200220b00607500643c00207607500720b006", "0x602f00207700620b00614607900721a00214600620b00607600643d002", "0x620b00714b00603000214b00620b00614b00602c00214b00620b006077", "0x1412a00200220b00607b00603300200220b00600200900214a00650907b", "0xc701420b00607f00637100207f00620b00604b04d13004e04712e04512d", "0x20b00613800601600215e00620b00600206500215008508314f14e152151", "0x11b00215c00620b00615000644d00216300620b00606400612b00215d006", "0x215f16016100920b00616215c16315d00c21900216200620b00615e006", "0x61520063d300215100620b0061510063d00020c700620b0060c70063e3", "0x214f00620b00614f0063fc00214e00620b00614e0063de00215200620b", "0x715f00644e00208500620b00608500645000208300620b006083006373", "0x15700720b00608700644f00200220b00600200900215400650a08700620b", "0x616100601600215b00620b00600206500200220b00608a00603300208a", "0x20d000620b00608500645000216b00620b00616000612b00208e00620b", "0xed16816e00920b00616c0d016b08e00c45100216c00620b00615b00611b", "0x645300200220b00600200900216d00650b09200620b0070ed006452002", "0x14e1521510c701412a00200220b00609400603300209417100720b006092", "0x1760990d117509601420b00617300637100217300620b00615717108314f", "0x20a200620b00616800612b00217d00620b00616e00601600209d17a09b", "0xa400604b0020a405f00720b00605f00635a00217e00620b0060d10063d3", "0x63e30020a00cc17c00920b0060a417e0a217d00c49b0020a400620b006", "0x620b00609d00644d00217500620b0061750063d000209600620b006096", "0x637300217600620b0061760063fc00209900620b0060990063de00209d", "0x620b0070a000649c00217a00620b00617a00645000209b00620b00609b", "0x20a80d200720b00617f00649e00200220b0060020090020cd00650c17f", "0xd217509601412a00218000620b00605f00650d00200220b0060a8006033", "0x60160020c900620b00606100600c0020ce00620b00609d17a09b176099", "0x620b0060ce0060410020cb00620b0060cc00612b0020ca00620b00617c", "0xc20b0060b30c60cb0ca0c901650f0020b300620b00618000650e0020c6", "0x20b00600200900218e0065100b500620b0070c800617d0020c80cf1810ab", "0x243e00200220b0060b90060330020b90b700720b0060b50061f6002002", "0x43f0020bd00620b0060020ef0020bb00620b0060020ef0020ba00620b006", "0xc31900c10bf0be01420b0060b700637100218f00620b0060bd0bb0ba009", "0x20d900620b0061810060160020d700620b0060ab00600c0020d419c19b", "0x618f0060c60020db00620b0060c30063fc0021a100620b0060cf00612b", "0x44100219f0d61a019d00c20b0061a30db1a10d90d70164400021a300620b", "0x61a400644200200220b0060020090021a50065111a400620b00719f006", "0x19b0df1900c10bf0be01412a00200220b0061a60060330021a60df00720b", "0x20b0061ad1b20074840021ad00620b00600202a0021b200620b0060d419c", "0x160020e500620b00619d00600c0021b400620b0061ae0064850021ae006", "0x20b0061b400644c0021b800620b0060d600612b0020e700620b0061a0006", "0x20b0060d400620c00200220b0060020090021ba1b80e70e500c0061ba006", "0x60be00639500200220b00619b00639700200220b00619c006396002002", "0xbf00639b00200220b0060c100639a00200220b00619000639900200220b", "0x20ea00620b00619d00600c0021bd00620b0061a500644b00200220b006", "0x61bd00644c0021bf00620b0060d600612b0020ec00620b0061a0006016", "0x618e00644b00200220b0060020090020ef1bf0ec0ea00c0060ef00620b", "0x20f200620b0061810060160021c500620b0060ab00600c0021c100620b", "0xf40f21c500c0061c800620b0061c100644c0020f400620b0060cf00612b", "0x20b00609d00620c00200220b00609600639500200220b0060020090021c8", "0x617600639800200220b00609b00639700200220b00617a006396002002", "0x17500639b00200220b00605f00604d00200220b00609900639900200220b", "0x21d400620b00606100600c0021ca00620b0060cd00644b00200220b006", "0x61ca00644c0021d600620b0060cc00612b0020f800620b00617c006016", "0x605f00604d00200220b0060020090021eb1d60f81d400c0061eb00620b", "0x8300639700200220b0060c700639500200220b00615700620c00200220b", "0x639a00200220b00614e00639900200220b00614f00639800200220b006", "0x20fa00620b00616d00644b00200220b00615100639b00200220b006152", "0x616800612b0020fc00620b00616e0060160021ef00620b00606100600c", "0x20090021f60fe0fc1ef00c0061f600620b0060fa00644c0020fe00620b", "0x604d00200220b00615100639b00200220b00615200639a00200220b006", "0x39800200220b00608300639700200220b0060c700639500200220b00605f", "0x200220b00608500639600200220b00614e00639900200220b00614f006", "0x61610060160021f800620b00606100600c00210000620b00615400644b", "0x610300620b00610000644c0022f600620b00616000612b0021f900620b", "0x4d00200220b00614a00603300200220b0060020090021032f61f91f800c", "0x200220b00604d00639600200220b00604b00620c00200220b00605f006", "0x220b00604700639900200220b00604e00639800200220b006130006397", "0x20b00612d00639500200220b00604500639b00200220b00612e00639a002", "0x61ff00604b0021ff00620b0060025010021fb00620b006002131002002", "0x200000620b00600213500220600620b0061ff1fb00705b0021ff00620b", "0x6100600c00230400620b00630000644b00230000620b00620600000705d", "0x30800620b00606400612b00230700620b00613800601600230500620b006", "0x220b00600200900230930830730500c00630900620b00630400644c002", "0x20b00604d00639600200220b00604b00620c00200220b00605f00604d002", "0x604700639900200220b00604e00639800200220b006130006397002002", "0x12d00639500200220b00604500639b00200220b00612e00639a00200220b", "0x230b00620b00606100600c00230a00620b00613c00644b00200220b006", "0x630a00644c00230e00620b00606400612b00230c00620b006138006016", "0x612d00639500200220b00600200900230f30e30c30b00c00630f00620b", "0x4b00620c00200220b00604500639b00200220b00612e00639a00200220b", "0x639800200220b00613000639700200220b00604d00639600200220b006", "0x231000620b00605b00644b00200220b00604700639900200220b00604e", "0x605300612b00231200620b00605100601600231100620b00613200600c", "0x200900231431331231100c00631400620b00631000644c00231300620b", "0x900604700200220b00604300603300200220b00600211e00200220b006", "0x604b00231600620b0060023cc00231500620b00600213100200220b006", "0x620b00600213500231700620b00631631500705b00231600620b006316", "0xc00231b00620b00631a00644b00231a00620b00631731900705d002319", "0x20b00606500612b00232000620b0060c400601600231c00620b006002006", "0x600200900232232132031c00c00632200620b00631b00644c002321006", "0x601c0060fa00200220b00600900604700200220b00600211e00200220b", "0x1600232800620b00600200600c00232600620b00602b00644b00200220b", "0x20b00632600644c00232a00620b00606500612b00232900620b0060c4006", "0x20b00600900604700200220b00600200900232b32a32932800c00632b006", "0x601600232d00620b00600200600c00232c00620b00601700644b002002", "0x620b00632c00644c00233200620b00601600612b00233100620b00600c", "0x620b00600600601600200220b00600211e00221233233132d00c006212", "0xf01600c00920b00601401000738300201400620b00600700612b002010", "0x60ec00200220b00600200900201700651201500620b00700f0060ea002", "0x20b0060190060fa00201c01900720b00601b00636000201b00620b006015", "0x71bd00202900620b00601600612b00211b00620b00600c006016002002", "0x20b0070540060ea00200220b0060020060020540650c400920b00602911b", "0x202c00620b00602a0060ec00200220b00600200900202b00651302a006", "0x601c00636100200220b00602d0060fa00202e02d00720b00602c006360", "0x4803300720b00603000613000203000620b00602f0061bf00202f00620b", "0x60390061bf00203900620b00602e00636100200220b00603300604d002", "0x200220b00611e00604d00203711e00720b00603500613000203500620b", "0x10d1200071c100210d00620b0060370061b200212000620b0060480061b2", "0x51400220b00703a0061c500203a00620b00603a00604b00203a00620b006", "0x612400602e00212400620b00600202a00200220b00600200900203c006", "0x200900200251500600202d00203e00620b00607d00602c00207d00620b", "0x602b00212a00620b00600202a00200220b00603c0060f200200220b006", "0x620b00603e00602f00203e00620b00612c00602c00212c00620b00612a", "0x4300651604100620b00712b00603000212b00620b00612b00602c00212b", "0x200220b00604100603300200220b00600211e00200220b006002009002", "0x20b0061310063fb00204b04d13013104712e04512d01420b006009006371", "0x213300620b0060c400601600205600620b00600200600c00204f04e007", "0x13305600c3fd00213600620b00604f0063fc00205800620b00606500612b", "0x5b00651713400620b00712f0060c800212f05305113200c20b006136058", "0x20b0061350063fe00213500620b0061340060c900200220b006002009002", "0xc00200220b00605f00604d00200220b00613700604d00205f13705d009", "0x20b00605300612b00213b00620b00605100601600206700620b006132006", "0xc20b00606a06913b06700c3ff00206a00620b00605d00621b002069006", "0x20b00600200900213c00651806c00620b007139006400002139064138061", "0x43c00207113f00720b00606f00640200206f00620b00606c006401002002", "0x14500620b00614100640300214100620b00600202a00200220b00613f006", "0x7100640200200220b00607500643c00207607500720b006145006402002", "0x14600720b00607600640200200220b00607700643c00207907700720b006", "0x14b00643d00214a00620b00607900643d00200220b00614600643c00214b", "0x620b00607b00602f00207b00620b00607f14a00744400207f00620b006", "0x602c00215100620b0060c700602f0020c700620b0060c700602c0020c7", "0x600200900214e00651915200620b00715100603000215100620b006151", "0x4b04d13004e04712e04512d01412a00200220b00615200603300200220b", "0x215d15f16016115e15008508301420b00614f00637100214f00620b006", "0x13800601600208a00620b00606100600c00215c16300720b0061610063fb", "0x16800620b00615c0063fc00216e00620b00606400612b00215b00620b006", "0x20b0060830063e300215715408716200c20b00616816e15b08a00c3fd002", "0x3de00215000620b0061500063d300208500620b0060850063d0002083006", "0x20b00616000637300215d00620b00615d00644d00215e00620b00615e006", "0xc800216300620b0061630063fc00215f00620b00615f006450002160006", "0x60ed0060c900200220b00600200900208e00651a0ed00620b007157006", "0x220b00616c00604d00209216c0d000920b00616b0063fe00216b00620b", "0x608700601600209600620b00616200600c00200220b00609200604d002", "0x209900620b0060d000621b0020d100620b00615400612b00217500620b", "0x620b00717300640000217309417116d00c20b0060990d117509600c3ff", "0x40200217a00620b00617600640100200220b00600200900209b00651b176", "0x20b0060cc0064030020cc00620b00600202a00217c09d00720b00617a006", "0x43d00200220b00617d00643c0020a217d00720b0060a00064020020a0006", "0x617f0a400721a00217f00620b0060a200643d0020a400620b00617c006", "0x220b0060020090020d200651c0cd00620b00717e00603000217e00620b", "0x620b0060020ef0020a800620b00600243e00200220b0060cd006033002", "0xc0020ab00620b0060ce1800a800943f0020ce00620b0060020ef002180", "0x20b00609400612b0020cb00620b0061710060160020ca00620b00616d006", "0x4400020b500620b0060ab0060c60020b300620b0061630063fc0020c6006", "0x620b0070c90064410020c90c80cf18100c20b0060b50b30c60cb0ca016", "0x20ba0b900720b00618e00644200200220b0060020090020b700651d18e", "0x60bb00643c0020bd0bb00720b00609d00640200200220b0060ba006033", "0x64020020be00620b00618f00644300218f00620b00600202a00200220b", "0x720b0060bd00640200200220b0060bf00643c0020c10bf00720b0060be", "0x43c00219c19b00720b0060c100640200200220b00619000643c0020c3190", "0x620b00619c00643d00219d00620b0060c300643d00200220b00619b006", "0x3d50020d600620b0060d400602f0020d400620b0061a019d0074440021a0", "0x1500063d70020d708500720b0060850063d600219f08300720b006083006", "0x20b0060b90063d90021a115e00720b00615e0063d80020d915000720b006", "0x15f00720b00615f0063db0021a316000720b0061600063da0020db0b9007", "0x1a41a30db1a10d90d719f01412a0021a515d00720b00615d0063dc0021a4", "0xd600620b0060d600602c00200220b0060df0060470020df00620b0061a5", "0x603300200220b0060020090021b200651e1a600620b0070d6006030002", "0x21ad00620b00615d15f1600b915e15008508301412a00200220b0061a6", "0x60c800612b0021b400620b0060cf0060160021ae00620b00618100600c", "0x200900200251f00600202d0020e700620b0061ad0060410020e500620b", "0x15f1600b915e15008508301412a00200220b0061b200603300200220b006", "0xef00620b00618100600c0021ba00620b0060024450021b800620b00615d", "0x1b80060410021c500620b0060c800612b0021c100620b0060cf006016002", "0xf40f21c51c10ef0164470020f400620b0061ba0064460020f200620b006", "0x90021ca0065201c800620b0071bf00617d0021bf0ec0ea1bd00c20b006", "0x220b0060f80060330020f81d400720b0061c80061f600200220b006002", "0xec00612b0021b400620b0060ea0060160021ae00620b0061bd00600c002", "0x1d600620b0061ae00636e0020e700620b0061d40060410020e500620b006", "0xe700644a0020fa00620b0060e50064490021eb00620b0061b4006448002", "0x1ca00644b00200220b00600200900200252100600202d0021ef00620b006", "0x1f600620b0060ea0060160020fe00620b0061bd00600c0020fc00620b006", "0x1f60fe00c0061f800620b0060fc00644c00210000620b0060ec00612b002", "0x615f00639600200220b00615d00620c00200220b0060020090021f8100", "0x15e00639900200220b00609d00643c00200220b00616000639700200220b", "0x639500200220b00608500639b00200220b00615000639a00200220b006", "0x2f600620b00618100600c0021f900620b0060b700644b00200220b006083", "0x1f900644c0021fb00620b0060c800612b00210300620b0060cf006016002", "0xd200603300200220b0060020090021ff1fb1032f600c0061ff00620b006", "0x15f16016315e15008508301412a00200220b00609d00643c00200220b006", "0x620b0061710060160021d600620b00616d00600c00220600620b00615d", "0x63710021ef00620b0062060060410020fa00620b00609400612b0021eb", "0x230b00620b00600206500230a30930830730530430000001420b0061ef", "0x630a00644d00231100620b0060fa00612b00231000620b0061eb006016", "0x20b00631331231131000c21900231300620b00630b00611b00231200620b", "0x20b00600200900231500652231400620b00730f00644e00230f30e30c009", "0x206500200220b00631700603300231731600720b00631400644f002002", "0x32100620b00630e00612b00232000620b00630c00601600231900620b006", "0x32000c45100232600620b00631900611b00232200620b006309006450002", "0x32900652332800620b00731c00645200231c31b31a00920b006326322321", "0x632b00603300232b32a00720b00632800645300200220b006002009002", "0x202a00232c00620b00631632a30830730530430000001412a00200220b", "0x620b00633100648500233100620b00632d32c00748400232d00620b006", "0x612b00233300620b00631a00601600221200620b0061d600600c002332", "0x233533433321200c00633500620b00633200644c00233400620b00631b", "0x200220b00600000639500200220b00631600620c00200220b006002009", "0x220b00630500639900200220b00630700639800200220b006308006397", "0x20b00632900644b00200220b00630000639b00200220b00630400639a002", "0x12b00233900620b00631a00601600233700620b0061d600600c002336006", "0x33b21133933700c00633b00620b00633600644c00221100620b00631b006", "0x220b00630400639a00200220b00630000639b00200220b006002009002", "0x20b00630700639800200220b00630800639700200220b006000006395002", "0x631500644b00200220b00630900639600200220b006305006399002002", "0x234000620b00630c00601600233f00620b0061d600600c00233d00620b", "0x34234033f00c00634300620b00633d00644c00234200620b00630e00612b", "0x20b00615000639a00200220b00608300639500200220b006002009002343", "0x615f00639600200220b00615d00620c00200220b00608500639b002002", "0x16300639800200220b00615e00639900200220b00616000639700200220b", "0x234500620b00616d00600c00221000620b00609b00644b00200220b006", "0x621000644c00234700620b00609400612b00234600620b006171006016", "0x608300639500200220b00600200900234834734634500c00634800620b", "0x15d00620c00200220b00608500639b00200220b00615000639a00200220b", "0x639800200220b00616000639700200220b00615f00639600200220b006", "0x234900620b00608e00644b00200220b00615e00639900200220b006163", "0x615400612b00234b00620b00608700601600234a00620b00616200600c", "0x200900234d34c34b34a00c00634d00620b00634900644c00234c00620b", "0x639600200220b00604b00620c00200220b00614e00603300200220b006", "0x39900200220b00604e00639800200220b00613000639700200220b00604d", "0x200220b00604500639b00200220b00612e00639a00200220b006047006", "0x34f00620b00600250100234e00620b00600213100200220b00612d006395", "0x213500235000620b00634f34e00705b00234f00620b00634f00604b002", "0x620b00635200644b00235200620b00635035100705d00235100620b006", "0x612b00235400620b00613800601600220f00620b00606100600c002353", "0x235635535420f00c00635600620b00635300644c00235500620b006064", "0x200220b00604d00639600200220b00604b00620c00200220b006002009", "0x220b00604700639900200220b00604e00639800200220b006130006397", "0x20b00612d00639500200220b00604500639b00200220b00612e00639a002", "0x601600235a00620b00606100600c00235700620b00613c00644b002002", "0x620b00635700644c00235c00620b00606400612b00235b00620b006138", "0x220b00612e00639a00200220b00600200900236035c35b35a00c006360", "0x20b00604b00620c00200220b00604500639b00200220b00612d006395002", "0x604e00639800200220b00613000639700200220b00604d006396002002", "0x600c00236100620b00605b00644b00200220b00604700639900200220b", "0x620b00605300612b00236600620b00605100601600236500620b006132", "0x20b00600200900236936836636500c00636900620b00636100644c002368", "0x20b00600900604700200220b00604300603300200220b00600211e002002", "0x636f00604b00236f00620b0060023cc00236e00620b006002131002002", "0x237200620b00600213500237100620b00636f36e00705b00236f00620b", "0x200600c00237400620b00637300644b00237300620b00637137200705d", "0x37900620b00606500612b00237800620b0060c400601600220e00620b006", "0x220b00600200900237a37937820e00c00637a00620b00637400644c002", "0x220b00601c0060fa00200220b00600900604700200220b00600211e002", "0xc400601600237c00620b00600200600c00237b00620b00602b00644b002", "0x37f00620b00637b00644c00237e00620b00606500612b00237d00620b006", "0x200220b00600900604700200220b00600200900237f37e37d37c00c006", "0x600c00601600238100620b00600200600c00238000620b00601700644b", "0x638500620b00638000644c00238300620b00601600612b00238200620b", "0x1701501401000f01600c00901420b00600700637100238538338238100c", "0x20b00600f00639900200220b00601600639a00200220b006009006395002", "0x601500639600200220b00601400639700200220b006010006398002002", "0x612b0020c400620b00600200601600200220b00601700620c00200220b", "0x60540650c40093d100205400620b00600c0063d000206500620b006006", "0x600200900202900652411b00620b00701c00615100201c01901b00920b", "0x33200202b00620b00602a00633100202a00620b00611b00615200200220b", "0x20b00601900612b00202d00620b00601b00601600202c00620b00602b006", "0x20b00600200900202f02e02d00900602f00620b00602c00621200202e006", "0x612b00203300620b00601b00601600203000620b006029006333002002", "0x37100203904803300900603900620b00603000621200204800620b006019", "0x220b00600900639500201701501401000f01600c00901420b006007006", "0x20b00601000639800200220b00600f00639900200220b00600c00639b002", "0x601700620c00200220b00601500639600200220b006014006397002002", "0x3d300206500620b00600600612b0020c400620b00600200601600200220b", "0x15100201c01901b00920b0060540650c40093d400205400620b006016006", "0x611b00615200200220b00600200900202900652511b00620b00701c006", "0x202c00620b00602b00633200202b00620b00602a00633100202a00620b", "0x602c00621200202e00620b00601900612b00202d00620b00601b006016", "0x20b00602900633300200220b00600200900202f02e02d00900602f00620b", "0x21200204800620b00601900612b00203300620b00601b006016002030006", "0xc00901420b00600700637100203904803300900603900620b006030006", "0x220b00600c00639b00200220b00600900639500201701501401000f016", "0x20b00601400639700200220b00601000639800200220b00601600639a002", "0x600200601600200220b00601700620c00200220b006015006396002002", "0x205400620b00600f0063de00206500620b00600600612b0020c400620b", "0x52611b00620b00701c00615100201c01901b00920b0060540650c40093df", "0x2a00633100202a00620b00611b00615200200220b006002009002029006", "0x2d00620b00601b00601600202c00620b00602b00633200202b00620b006", "0x2e02d00900602f00620b00602c00621200202e00620b00601900612b002", "0x601b00601600203000620b00602900633300200220b00600200900202f", "0x603900620b00603000621200204800620b00601900612b00203300620b", "0x201b01701501401000f01600c01420b006009006371002039048033009", "0x220b00600f00639a00200220b00601600639b00200220b00600c006395", "0x20b00601700639600200220b00601500639700200220b006010006399002", "0x600601600205400620b00600200600c00200220b00601b00620c002002", "0x2a00620b0060140063fc00202900620b00600700612b00211b00620b006", "0x20b0070650060c80020650c401c01900c20b00602a02911b05400c3fd002", "0x202d00620b00602b0060c900200220b00600200900202c00652702b006", "0x601900600c00202f00620b00602e00621400202e00620b00602d006528", "0x204800620b0060c400612b00203300620b00601c00601600203000620b", "0x200220b00600200900203904803303000c00603900620b00602f006529", "0x601c00601600211e00620b00601900600c00203500620b00602c00652a", "0x610d00620b00603500652900212000620b0060c400612b00203700620b", "0x20b0060070063fe00200700200720b00600200652b00210d12003711e00c", "0x21b00200220b00601600604d00200220b00600c00604d00201600c009009", "0x601501400752c00201500620b00600600604e00201400620b006009006", "0x1700200720b00600200652b00200220b00601000603300201000f00720b", "0x604d00200220b00601b00634900201c01901b00920b0060170063fe002", "0x11b00620b00600f00604e00205400620b00601900604b00200220b00601c", "0x63fe00200220b0060650060330020650c400720b00611b05400704f002", "0x20b00602a00604d00200220b00602900634900202b02a02900920b006002", "0x704f00202f00620b0060c400604e00202e00620b00602b00604b002002", "0x602d00652e00203000620b00602c00652d00202d02c00720b00602f02e", "0x620b00600252f00200220b00600200604700203303000700603300620b", "0x700600953100200900620b00600252f00200700620b006002530002006", "0x200653200201600600601600620b00600c0060b900200c00620b006009", "0x600c00653400201600c00900920b00600700653300200700200720b006", "0x604e00201400620b00600900653500200220b00601600653400200220b", "0x601000603300201000f00720b00601501400753600201500620b006006", "0x1901b00920b00601700653300201700200720b00600200653200200220b", "0x601900653500200220b00601c00653400200220b00601b00653400201c", "0xc400720b00611b05400753600211b00620b00600f00604e00205400620b", "0x53400202b02a02900920b00600200653300200220b006065006033002065", "0x2e00620b00602b00653500200220b00602a00653400200220b006029006", "0x52d00202d02c00720b00602f02e00753600202f00620b0060c400604e002", "0x37100203303000700603300620b00602d00652e00203000620b00602c006", "0x220b00600c00639500201b01701501401000f01600c01420b006009006", "0x20b00601000639900200220b00600f00639a00200220b00601600639b002", "0x601b00620c00200220b00601500639700200220b006014006398002002", "0x12b00211b00620b00600600601600205400620b00600200600c00200220b", "0x2911b05400c53700202a00620b00601700645000202900620b006007006", "0x202c00653802b00620b00706500618f0020650c401c01900c20b00602a", "0x620b00602d00653900202d00620b00602b0060be00200220b006002009", "0x601600203000620b00601900600c00202f00620b00602e00653a00202e", "0x620b00602f00621300204800620b0060c400612b00203300620b00601c", "0x620b00602c00653b00200220b00600200900203904803303000c006039", "0x612b00203700620b00601c00601600211e00620b00601900600c002035", "0x210d12003711e00c00610d00620b00603500621300212000620b0060c4", "0x600900613000200900620b00600700653c00200700620b006002006054", "0x201400620b00601600604b00200220b00600c00604d00201600c00720b", "0x603300201000f00720b00601501400704f00201500620b00600600604e", "0x201b00620b00600f00604e00201700620b00600202a00200220b006010", "0x1600c01420b00600900637100201901b00700601900620b0060170061ff", "0x220b00601600639b00200220b00600c00639500201b01701501401000f", "0x20b00601400639800200220b00601000639900200220b00600f00639a002", "0x600200600c00200220b00601700639600200220b006015006397002002", "0x202900620b00600700612b00211b00620b00600600601600205400620b", "0xc401c01900c20b00602a02911b05400c53d00202a00620b00601b00644d", "0xbe00200220b00600200900202c00653e02b00620b00706500618f002065", "0x20b00602e00653a00202e00620b00602d00653900202d00620b00602b006", "0x12b00203300620b00601c00601600203000620b00601900600c00202f006", "0x3904803303000c00603900620b00602f00621300204800620b0060c4006", "0x20b00601900600c00203500620b00602c00653b00200220b006002009002", "0x21300212000620b0060c400612b00203700620b00601c00601600211e006", "0xc01420b00600900637100210d12003711e00c00610d00620b006035006", "0x20b00601600639b00200220b00600c00639500201b01701501401000f016", "0x601500639700200220b00601000639900200220b00600f00639a002002", "0x200600c00200220b00601b00620c00200220b00601700639600200220b", "0x2900620b00600700612b00211b00620b00600600601600205400620b006", "0x1c01900c20b00602a02911b05400c3fd00202a00620b0060140063fc002", "0x200220b00600200900202c00653f02b00620b0070650060c80020650c4", "0x600c00203002f02e00920b00602d0063fe00202d00620b00602b0060c9", "0x620b0060c400612b00203700620b00601c00601600211e00620b006019", "0x3ff00210d00620b00610d00621b00210d02e00720b00602e00635b002120", "0x3a00620b00703500640000203503904803300c20b00610d12003711e00c", "0x943f00212400620b00603a00640100200220b00600200900203c006540", "0x3e00654200203e00620b00612407d00754100207d00620b00603002f02e", "0x12b00620b00603300600c00212c00620b00612a00654300212a00620b006", "0x12c00654400204300620b00603900612b00204100620b006048006016002", "0x2e00634900200220b00600200900212d04304112b00c00612d00620b006", "0x654500200220b00602f00604d00200220b00603000604d00200220b006", "0x620b00604800601600212e00620b00603300600c00204500620b00603c", "0x12e00c00613000620b00604500654400213100620b00603900612b002047", "0x600c00204d00620b00602c00654500200220b006002009002130131047", "0x620b0060c400612b00204e00620b00601c00601600204b00620b006019", "0x600200654600213204f04e04b00c00613200620b00604d00654400204f", "0x1000620b00600600604e00200f00620b0060070060c600200900700720b", "0x643d00200220b00601600603300201600c00720b00601000f0070b3002", "0x20b00601b01700754700201b00620b00600c00604e00201700620b006009", "0x601c00620b00601500652e00201900620b00601400652d002015014007", "0x635a00200700620b00600254800200220b00600200604700201c019007", "0x600900604b00200900620b00600700c0071c100200c00600720b006006", "0x200220b00600200900201600654900220b0070090061c500200900620b", "0x620b00600f00602e00200f00620b00600202a00200220b00600600604d", "0x20b00600200900200254a00600202d00201400620b00601000602c002010", "0x600600635a00201500620b0060023b300200220b0060160060f2002002", "0x620b00601700604b00201700620b00601501b0071c100201b00600720b", "0x604d00200220b00600200900201900654b00220b0070170061c5002017", "0x20c400620b00601c00602e00201c00620b00600202a00200220b006006", "0x200220b00600200900200254c00600202d00206500620b0060c400602c", "0x720b00600600635a00205400620b00600254d00200220b0060190060f2", "0x211b00620b00611b00604b00211b00620b0060540290071c1002029006", "0x600600604d00200220b00600200900202a00654e00220b00711b0061c5", "0x602c00202c00620b00602b00602e00202b00620b00600202a00200220b", "0x60f200200220b00600200900200254f00600202d00202d00620b00602c", "0x3000600720b00600600635a00202e00620b00600255000200220b00602a", "0x61c500202f00620b00602f00604b00202f00620b00602e0300071c1002", "0x220b00600600604d00200220b00600200900203300655100220b00702f", "0x603900602c00203900620b00604800602e00204800620b00600202a002", "0x60330060f200200220b00600200900200255200600202d00203500620b", "0x1c100212000600720b00600600635a00211e00620b00600255300200220b", "0x70370061c500203700620b00603700604b00203700620b00611e120007", "0x2a00200220b00600600604d00200220b00600200900210d00655400220b", "0x620b00603c00602c00203c00620b00603a00602e00203a00620b006002", "0x220b00610d0060f200200220b00600200900200255500600202d002124", "0x3e00604b00203e00620b00607d0060071c100207d00620b006002556002", "0x220b00600200900212a00655700220b00703e0061c500203e00620b006", "0x612b00602c00212b00620b00612c00602e00212c00620b00600202a002", "0x612a0060f200200220b00600200900200255800600202d00204100620b", "0x602c00212d00620b00604300602b00204300620b00600202a00200220b", "0x620b00612400636f00212400620b00604100636f00204100620b00612d", "0x636f00206500620b00602d00636f00202d00620b00603500636f002035", "0x200604100204500600604500620b00601400636f00201400620b006065", "0x620b00600c0090070d600200c00620b00600600604b00200900620b006", "0x3300200220b00600200900200f00655901600620b007007006030002007", "0x1400620b00601000604b00201000620b0060020ef00200220b006016006", "0x200220b00600f00603300200220b00600200900200255a00600202d002", "0x20b0060140061b200201400620b00601500604b00201500620b006002000", "0x620b00600600612c00201900620b00600200600c002017006006017006", "0x604100206500620b00600900612b0020c400620b00600700601600201c", "0x620b00600f00604e00211b00620b00601600604b00205400620b00600c", "0x201b01701501401001620b00602911b0540650c401c0190100c7002029", "0x2a00615200200220b00600200900202b00655b02a00620b00701b006151", "0x220b00602d00604d00202e02d00720b00602c00613000202c00620b006", "0x3000604d00203303000720b00602f00613000202f00620b006002100002", "0x203900620b0060330061b200204800620b00602e0061b200200220b006", "0x350061c500203500620b00603500604b00203500620b0060390480071c1", "0x203700620b00600202a00200220b00600200900211e00655c00220b007", "0x55d00600202d00210d00620b00612000602c00212000620b00603700602e", "0x620b00600202a00200220b00611e0060f200200220b006002009002002", "0x602f00210d00620b00603c00602c00203c00620b00603a00602b00203a", "0x620b00712400603000212400620b00612400602c00212400620b00610d", "0x200000200220b00607d00603300200220b00600200900203e00655e07d", "0x12b00620b00612c00633200212c00620b00612a00633100212a00620b006", "0x1500601600204300620b00601400612c00204100620b00601000600c002", "0x12e00620b00612b00621200204500620b00601700612b00212d00620b006", "0x220b00603e00603300200220b00600200900212e04512d043041016006", "0x20b00613100604b00213100620b00600255f00204700620b006002131002", "0x5d00204d00620b00600213500213000620b00613104700705b002131006", "0x601000600c00204e00620b00604b00633300204b00620b00613004d007", "0x205100620b00601500601600213200620b00601400612c00204f00620b", "0x5113204f01600612f00620b00604e00621200205300620b00601700612b", "0x1000600c00205600620b00602b00633300200220b00600200900212f053", "0x13600620b00601500601600205800620b00601400612c00213300620b006", "0x5813301600605b00620b00605600621200213400620b00601700612b002", "0xef00201000f00720b00600c00613000200220b00600211e00205b134136", "0x20b00601500604d00201701500720b00601400613000201400620b006002", "0x4d00201c01900720b00601b00613000201b00620b0060100061b2002002", "0x720b0060c40061300020c400620b0060170061b200200220b006019006", "0x61b200211b00620b00601c0061b200200220b00606500604d002054065", "0x20b00602a00604b00202a00620b00602911b0071c100202900620b006054", "0x2a00200220b00600200900202b00656000220b00702a0061c500202a006", "0x620b00602d00602c00202d00620b00602c00602e00202c00620b006002", "0x220b00602b0060f200200220b00600200900200256100600202d00202e", "0x603000602c00203000620b00602f00602b00202f00620b00600202a002", "0x203300620b00603300602c00203300620b00602e00602f00202e00620b", "0x704800603000204800620b00604800602c00204800620b00603300602f", "0x200220b00603900603300200220b00600200900203500656203900620b", "0x20b00600600601600207d12403c03a10d12003711e01420b006009006371", "0x35a00204300620b0060370063d000204100620b00600700612b00212b006", "0x4112b00c45400212d00620b00612d00604b00212d00f00720b00600f006", "0x212e00656304500620b00712c00645500212c12a03e00920b00612d043", "0x20b00613100603300213104700720b00604500645600200220b006002009", "0x63d300204f00620b00612a00612b00204e00620b00603e006016002002", "0x20b00605100604b00205101600720b00601600635a00213200620b006120", "0x704b00649c00204b04d13000920b00605113204f04e00c49b002051006", "0x5600720b00605300649e00200220b00600200900212f00656405300620b", "0x613000601600205800620b0060020ef00200220b006133006033002133", "0x213700620b00610d0063de00205d00620b00604d00612b00213500620b", "0x5b13413600920b00605f13705d13500c4b500205f00620b00605800604b", "0x64b800200220b00600200900213800656506100620b00705b0064b6002", "0x720b00600f00635a00200220b00613900603300213906400720b006061", "0x3c03a06405604711e01412a00213b00620b00601606700756600206700f", "0x20b00613600601600213f00620b00600200600c00206900620b00607d124", "0x56700214500620b00606900604100214100620b00613400612b002071006", "0x13c06c06a00c20b00607514514107113f01656800207500620b00613b006", "0x1f600200220b00600200900207700656907600620b00706f00617d00206f", "0x20b00600f0063ed00200220b00614600603300214607900720b006076006", "0x12b00215200620b00606c00601600215100620b00606a00600c00214b006", "0x20b00614b0063ee00214f00620b00607900604100214e00620b00613c006", "0x617d0020c707f14a07b00c20b00608314f14e1521510163ef002083006", "0x20b0060850061f600200220b00600200900215000656a08500620b0070c7", "0x748400216000620b00600202a00200220b00616100603300216115e007", "0x20b00607b00600c00215d00620b00615f00648500215f00620b00616015e", "0x44c00216200620b00607f00612b00215c00620b00614a006016002163006", "0x44b00200220b00600200900208716215c16300c00608700620b00615d006", "0x20b00614a00601600215700620b00607b00600c00215400620b006150006", "0xc00616e00620b00615400644c00215b00620b00607f00612b00208a006", "0x644b00200220b00600f00604d00200220b00600200900216e15b08a157", "0x620b00606c0060160020ed00620b00606a00600c00216800620b006077", "0xed00c0060d000620b00616800644c00216b00620b00613c00612b00208e", "0x11e00639500200220b00600f00604d00200220b0060020090020d016b08e", "0x639700200220b00612400639600200220b00607d00620c00200220b006", "0x39a00200220b00601600604d00200220b00603a00639800200220b00603c", "0x16c00620b00613800644b00200220b00604700639b00200220b006056006", "0x13400612b00216d00620b00613600601600209200620b00600200600c002", "0x900209417116d09200c00609400620b00616c00644c00217100620b006", "0x39b00200220b00611e00639500200220b00600f00604d00200220b006002", "0x200220b00612400639600200220b00607d00620c00200220b006047006", "0x220b00601600604d00200220b00603a00639800200220b00603c006397", "0x600200600c00217300620b00612f00644b00200220b00610d006399002", "0x20d100620b00604d00612b00217500620b00613000601600209600620b", "0x200220b0060020090020990d117509600c00609900620b00617300644c", "0x220b00610d00639900200220b00611e00639500200220b00600f00604d", "0x20b00603c00639700200220b00612400639600200220b00607d00620c002", "0x612000639a00200220b00601600604d00200220b00603a006398002002", "0x1600209b00620b00600200600c00217600620b00612e00644b00200220b", "0x20b00617600644c00209d00620b00612a00612b00217a00620b00603e006", "0x20b00603500603300200220b00600200900217c09d17a09b00c00617c006", "0x600900604700200220b00601600604d00200220b00600f00604d002002", "0xa000604b0020a000620b0060023f60020cc00620b00600213100200220b", "0xa200620b00600213500217d00620b0060a00cc00705b0020a000620b006", "0x600c0020a400620b00617e00644b00217e00620b00617d0a200705d002", "0x620b00600700612b0020cd00620b00600600601600217f00620b006002", "0x20b00600211e0020a80d20cd17f00c0060a800620b0060a400644c0020d2", "0x200903500201600620b00601600603900201600620b006002048002002", "0x635a00200220b00600200900201501400756b01000f00720b007016006", "0x20b0070170061c500200f00620b00600f00600c00201700c00720b00600c", "0x656d00200220b00600c00604d00200220b00600200900201b00656c002", "0x20b00601c0060e500201c00620b0060190070071b400201900620b006009", "0xe700205400620b00601000601600206500620b00600f00600c0020c4006", "0x60f200200220b00600200900211b05406500900611b00620b0060c4006", "0x2d00620b00601000601600202c00620b00600f00600c00200220b00601b", "0x2b02a02900920b00602e02d02c00956e00202e00620b00600700600f002", "0x657100200220b00600200900203000657002f00620b00702b00656f002", "0x200900203500657303900620b00704800657200204803300720b00602f", "0x203700620b00600200000211e00620b00603900900757400200220b006", "0x2a00601600212400620b00602900600c00212000620b00603700c0071c1", "0x12a00620b00611e00604300203e00620b00603300600f00207d00620b006", "0x10d00920b00612c12a03e07d1240161ae00212c00620b00612000604b002", "0x200220b00600200900204100657512b00620b00703c00601400203c03a", "0x60e500204500620b00612d0430071b400212d04300720b00612b006015", "0x620b00603a00601600204700620b00610d00600c00212e00620b006045", "0x220b00600200900213013104700900613000620b00612e0060e7002131", "0x3a00601600204b00620b00610d00600c00204d00620b0060410061b8002", "0x200900204f04e04b00900604f00620b00604d0060e700204e00620b006", "0x61ba00200220b00600900613600200220b00600c00604d00200220b006", "0x20b0060510060e500205100620b0061320330071b400213200620b006035", "0xe700205600620b00602a00601600212f00620b00602900600c002053006", "0x604d00200220b00600200900213305612f00900613300620b006053006", "0x205800620b0060300061b800200220b00600900613600200220b00600c", "0x60580060e700213400620b00602a00601600213600620b00602900600c", "0x20b00600c00604d00200220b00600200900205b13413600900605b00620b", "0x20b00600213100200220b00600700606100200220b006009006136002002", "0x705b00205d00620b00605d00604b00205d00620b006002134002135006", "0x20b00613705f00705d00205f00620b00600213500213700620b00605d135", "0x1600206400620b00601400600c00213800620b0060610061b8002061006", "0x206713906400900606700620b0061380060e700213900620b006015006", "0xf01600757600200f00620b00600600612b00201600620b006002006016", "0x200900201400657801000620b00700c00657700200c00900700920b006", "0x201700620b00601500657a00201500620b00601000657900200220b006", "0x57d00200220b00601b00657c0020650c401c01901b01620b00601700657b", "0x200220b00606500604d00200220b0060c40060fa00200220b006019006", "0x600700601600211b00620b00605400657f00205400620b00601c00657e", "0x602b00620b00611b00658000202a00620b00600900612b00202900620b", "0x1600202c00620b00601400658100200220b00600200900202b02a029009", "0x20b00602c00658000202e00620b00600900612b00202d00620b006007006", "0x600600612b00201600620b00600200601600202f02e02d00900602f006", "0x20b00700c00657700200c00900700920b00600f01600757600200f00620b", "0x201500620b00601000657900200220b006002009002014006582010006", "0x20650c401c01901b01620b00601700657b00201700620b00601500657a", "0x220b0060c40060fa00200220b00601c0060fa00200220b00601b00657c", "0x605400658400205400620b00601900658300200220b00606500604d002", "0x202a00620b00600900612b00202900620b00600700601600211b00620b", "0x58600200220b00600200900202b02a02900900602b00620b00611b006585", "0x20b00600900612b00202d00620b00600700601600202c00620b006014006", "0x20b00600206400202f02e02d00900602f00620b00602c00658500202e006", "0x900612b00201c00620b00600700601600200220b006002139002017006", "0x1501700713b00201901501b00920b0060c401c0075760020c400620b006", "0x20b00600200900205400658706500620b00701900657700201500620b006", "0x657b00202900620b00611b00657a00211b00620b006065006579002002", "0x2c0060fa00200220b00602a00657c00202e02d02c02b02a01620b006029", "0x1d400202b00620b00602b00658800200220b00602e00604d00200220b006", "0x3711e03503904803303001020b00602f0061eb00202f00620b00602b006", "0x20b00603900606100200220b0060480061ef00200220b0060330060fa002", "0x603700604d00200220b00611e00604d00200220b00603500604d002002", "0x13000203a00620b00600200000210d12000720b00603000613000200220b", "0x20b00610d0061b200200220b00603c00604d00212403c00720b00603a006", "0x1b200200220b00603e00604d00212a03e00720b00607d00613000207d006", "0x612b00604d00204112b00720b00612c00613000212c00620b006124006", "0x4b00212d00620b0060410061b200204300620b00612a0061b200200220b", "0x604500604b00204500620b00612d0430071c100204300620b006043006", "0x212000620b00612000604b00202d00620b00602d0063f100204500620b", "0x20b00600202a00200220b00600200900212e00658900220b0070450061c5", "0x2d00213000620b00613100602c00213100620b00604700602e002047006", "0x202a00200220b00612e0060f200200220b00600200900200258a006002", "0x13000620b00604b00602c00204b00620b00604d00602b00204d00620b006", "0x4e00603000204e00620b00604e00602c00204e00620b00613000602f002", "0x220b00604f00603300200220b00600200900213200658b04f00620b007", "0x200220b00600200900200258c00600202d00200220b00612000604d002", "0x605100604d00205305100720b00612000613000200220b006132006033", "0x4d00213305600720b00612f00613000212f00620b00600230000200220b", "0x620b0061330061b200205800620b0060530061b200200220b006056006", "0x1c500213400620b00613400604b00213400620b0061360580071c1002136", "0x620b00600202a00200220b00600200900205b00658d00220b007134006", "0x202d00213700620b00605d00602c00205d00620b00613500602e002135", "0x600202a00200220b00605b0060f200200220b00600200900200258e006", "0x213700620b00606100602c00206100620b00605f00602b00205f00620b", "0x713800603000213800620b00613800602c00213800620b00613700602f", "0x200220b00606400603300200220b00600200900213900658f06400620b", "0x13b00659100213b00620b00606700659000206701600720b00601600635c", "0x220b00606a0060c400206c06a00720b00606900601c00206900620b006", "0x6f0060c400213f06f00720b00613c00601c00213c00620b006002592002", "0x214100620b00613f00605400207100620b00606c00605400200220b006", "0x200900200259300220b00714107100702900207100620b00607100611b", "0x200600c00200220b0060140060d000200220b00600211e00200220b006", "0x14600620b0060160060fc00207900620b00601b00601600207700620b006", "0x7514500920b00614b14607907700c3f200214b00620b00602d0063f1002", "0x3f400200220b00600200900214a00659407b00620b0070760063f3002076", "0x620b00607500601600207f00620b00614500600c00200220b00607b006", "0x220b00600c00604700200220b00600200900200259500600202d0020c7", "0x20b00614a00644b00200220b00600f00604d00200220b006010006061002", "0x1600214e00620b00600600612c00215200620b00614500600c002151006", "0x20b00615100644c00208300620b00601500612b00214f00620b006075006", "0x601600659000200220b00600200900208508314f14e152016006085006", "0x59600215f00620b00600200600c00215e00620b00600206500215000620b", "0x16315d15f00959700216300620b00615e00611b00215d00620b006150006", "0x600200900216200659915c00620b00716000659800216016100720b006", "0x59c00215400620b00608700659b00208700620b00615c00659a00200220b", "0x615700659e00215715400720b00615400659d00215400620b006154006", "0x200220b00616e00659f00200220b00615b00604d00216e15b08a00920b", "0xed0060fa00208e0ed00720b00616800636000216800620b00608a006361", "0x200220b00616b0060fa0020d016b00720b00602d00636000200220b006", "0x609200613000209200620b00616c0061bf00216c00620b00608e006361", "0x209400620b0060d000636100200220b00616d00604d00217116d00720b", "0x9600604d00217509600720b00617300613000217300620b0060940061bf", "0x209900620b0061750061b20020d100620b0061710061b200200220b006", "0x1760061c500217600620b00617600604b00217600620b0060990d10071c1", "0x15400720b00615400659d00200220b00600200900209b0065a000220b007", "0x59f00200220b00609d0060fa0020cc17c09d00920b00617a00659e00217a", "0x17d00620b0060025a10020a000620b00617c0061b200200220b0060cc006", "0x4b0020a200620b00617d17e0071c100217e0a000720b0060a000635a002", "0x60020090020a40065a200220b0070a20061c50020a200620b0060a2006", "0x602c00217f00620b00601400602f00200220b0060a000604d00200220b", "0x60020090020d20065a30cd00620b00717f00603000217f00620b00617f", "0x60160020a800620b00616100600c00200220b0060cd00603300200220b", "0x620b00600c0060410020ce00620b00601500612b00218000620b00601b", "0x220b0060d200603300200220b0060020090020025a400600202d0020ab", "0x60c60065a50020b30c60cb0ca0c90c80cf18101420b00600c006371002", "0x18f00620b00601b0060160020bd00620b00616100600c00218e0b500720b", "0xbd00c5370020bf00620b00618e0064500020be00620b00601500612b002", "0x65a60c100620b0070bb00618f0020bb0ba0b90b700c20b0060bf0be18f", "0x60b700600c0020c300620b0060c10060be00200220b006002009002190", "0x219f00620b0060ba00612b0020d600620b0060b90060160021a000620b", "0x1a000c5a80020d700620b0060d700611b0020d70c300720b0060c30065a7", "0x65a90d900620b00719d0063bc00219d0d419c19b00c20b0060d719f0d6", "0x620b00600259200200220b0060d90063bd00200220b0060020090021a1", "0x611b0020df00620b0060c300611b0021a500620b00619b00600c0020db", "0x1a400618f0021a41a300720b0061a60df1a50095aa0021a600620b0060db", "0x620b0061b20060be00200220b0060020090021ad0065ab1b200620b007", "0x64500021ba00620b0060d400612b0021b800620b00619c0060160021ae", "0xea1bd1ba1b800c4510020ea00620b0061ae00611b0021bd00620b0060b5", "0x20090021bf0065ac0ec00620b0070e70064520020e70e51b400920b006", "0x200220b0061c10060330021c10ef00720b0060ec00645300200220b006", "0x20b0061a300600c0021c500620b0060b30ef0cb0ca0c90c80cf18101412a", "0x410020ce00620b0060e500612b00218000620b0061b40060160020a8006", "0xf20060fa0021c80f40f200920b00615400659e0020ab00620b0061c5006", "0xf0021ca00620b0061c800605300200220b0060f400604d00200220b006", "0x70f80060770020f81d400720b0061d60060760021d600620b0061ca006", "0x1ef00620b0061d400601b00200220b0060020090020fa0065ad1eb00620b", "0x60c40021f60fe00720b0060fc00601c0020fc00620b0061ef006019002", "0x1f91f800720b00610000601c00210000620b00600206500200220b0060fe", "0x61f90060540022f600620b0061f600605400200220b0061f80060c4002", "0x5ae00220b0071032f60070290022f600620b0062f600611b00210300620b", "0x20b0061fb00602b0021fb00620b00600202a00200220b006002009002002", "0x60020090020025af00600202d00220600620b0061ff00602c0021ff006", "0x602c00230000620b00600000602e00200000620b00600202a00200220b", "0x620b00630400602c00230400620b00620600602f00220600620b006300", "0x3300200220b0060020090023070065b030500620b007304006030002304", "0x20b00630800604d00230930800720b0061eb00613000200220b006305006", "0x604d00230c30b00720b00630a00613000230a00620b0060020ef002002", "0x30f00720b00630e00613000230e00620b0063090061b200200220b00630b", "0x31100613000231100620b00630c0061b200200220b00630f00604d002310", "0x31400620b0063100061b200200220b00631200604d00231331200720b006", "0x604b00231600620b0063153140071c100231500620b0063130061b2002", "0x20b0060020090023170065b100220b0073160061c500231600620b006316", "0x31a00602c00231a00620b00631900602e00231900620b00600202a002002", "0x3170060f200200220b0060020090020025b200600202d00231b00620b006", "0x2c00232000620b00631c00602b00231c00620b00600202a00200220b006", "0x20b00632100602c00232100620b00631b00602f00231b00620b006320006", "0x3000232200620b00632200602c00232200620b00632100602f002321006", "0x632600603300200220b0060020090023280065b332600620b007322006", "0x32c32b01420b00632a00637100232a32900720b0060ab00607f00200220b", "0x220b00632c00639b00200220b00632b00639500233433321233233132d", "0x20b00621200639700200220b00633200639800200220b006331006399002", "0x618000601600200220b00633400620c00200220b006333006396002002", "0x233b00620b00632d0063d300221100620b0060ce00612b00233900620b", "0x5b433d00620b00733700615100233733633500920b00633b2113390093d4", "0x34000613000234000620b00633d00615200200220b00600200900233f006", "0x221000620b0060020ef00200220b00634200604d00234334200720b006", "0x63430061b200200220b00634500604d00234634500720b006210006130", "0x200220b00634800604d00234934800720b00634700613000234700620b", "0x34b00604d00234c34b00720b00634a00613000234a00620b0063460061b2", "0x234e00620b00634c0061b200234d00620b0063490061b200200220b006", "0x34f0061c500234f00620b00634f00604b00234f00620b00634e34d0071c1", "0x235100620b00600202a00200220b0060020090023500065b500220b007", "0x5b600600202d00235300620b00635200602c00235200620b00635100602e", "0x620b00600202a00200220b0063500060f200200220b006002009002002", "0x602f00235300620b00635400602c00235400620b00620f00602b00220f", "0x620b00635500602f00235500620b00635500602c00235500620b006353", "0x35a0065b735700620b00735600603000235600620b00635600602c002356", "0x200220b00635700603300200220b00600211e00200220b006002009002", "0x600612c00236900620b0060a800600c00235c35b00720b00632900607f", "0x37100620b00633600612b00236f00620b00633500601600236e00620b006", "0x1000600f00237300620b00600f00604b00237200620b00635c006041002", "0x36536136001620b00637437337237136f36e3690105b800237400620b006", "0x200220b0060020090023780065b920e00620b0073680060ed002368366", "0x637a00602c00237a00620b00637900602f00237900620b00620e00608e", "0x220b00600200900237c0065ba37b00620b00737a00603000237a00620b", "0x637d35b00748400237d00620b00600202a00200220b00637b006033002", "0x238000620b00636000600c00237f00620b00637e00648500237e00620b", "0x636600612b00238200620b00636500601600238100620b00636100612c", "0x900238538338238138001600638500620b00637f00644c00238300620b", "0x13100200220b00635b00604700200220b00637c00603300200220b006002", "0x38900620b00638900604b00238900620b0060025bb00238800620b006002", "0x20d00705d00220d00620b00600213500238a00620b00638938800705b002", "0x620b00636000600c00238c00620b00638b00644b00238b00620b00638a", "0x612b00238f00620b00636500601600238e00620b00636100612c00238d", "0x39239138f38e38d01600639200620b00638c00644c00239100620b006366", "0x620b00637800644b00200220b00635b00604700200220b006002009002", "0x601600239600620b00636100612c00220c00620b00636000600c002395", "0x620b00639500644c00239800620b00636600612b00239700620b006365", "0x220b00600211e00200220b00600200900239939839739620c016006399", "0x20b00600f00604d00200220b00601000606100200220b00635a006033002", "0x20b0060024bd00239a00620b00600213100200220b006329006047002002", "0x239c00620b00639b39a00705b00239b00620b00639b00604b00239b006", "0x639e00644b00239e00620b00639c39d00705d00239d00620b006002135", "0x23a100620b00600600612c0023a000620b0060a800600c00239f00620b", "0x639f00644c0023a300620b00633600612b0023a200620b006335006016", "0x600211e00200220b0060020090023a43a33a23a13a00160063a400620b", "0x32900604700200220b00600f00604d00200220b00601000606100200220b", "0x23a600620b0060a800600c0023a500620b00633f00644b00200220b006", "0x633600612b0023a800620b0063350060160023a700620b00600600612c", "0x90023aa3a93a83a73a60160063aa00620b0063a500644c0023a900620b", "0x606100200220b00632800603300200220b00600211e00200220b006002", "0x13100200220b0060ab00604700200220b00600f00604d00200220b006010", "0x3ac00620b0063ac00604b0023ac00620b0060023f60023ab00620b006002", "0x3ae00705d0023ae00620b0060021350023ad00620b0063ac3ab00705b002", "0x620b0060a800600c0023b000620b0063af00644b0023af00620b0063ad", "0x612b0023b300620b0061800060160023b200620b00600600612c0023b1", "0x3b53b43b33b23b10160063b500620b0063b000644c0023b400620b0060ce", "0x200220b00630700603300200220b00600211e00200220b006002009002", "0x220b0060ab00604700200220b00600f00604d00200220b006010006061", "0x620b0060025bc0023b600620b00600213100200220b0061eb00604d002", "0x1350023b800620b0063b73b600705b0023b700620b0063b700604b0023b7", "0x20b0063ba00644b0023ba00620b0063b83b900705d0023b900620b006002", "0x160023bd00620b00600600612c0023bc00620b0060a800600c0023bb006", "0x20b0063bb00644c0023bf00620b0060ce00612b0023be00620b006180006", "0x20b00600211e00200220b0060020090023c03bf3be3bd3bc0160063c0006", "0x600f00604d00200220b00601000606100200220b0060fa006033002002", "0x600213100200220b0061d400606100200220b0060ab00604700200220b", "0x5b0023c200620b0063c200604b0023c200620b0060025bc0023c100620b", "0x63c33c400705d0023c400620b0060021350023c300620b0063c23c1007", "0x23c700620b0060a800600c0023c600620b0063c500644b0023c500620b", "0x60ce00612b0023c900620b0061800060160023c800620b00600600612c", "0x90022173ca3c93c83c701600621700620b0063c600644c0023ca00620b", "0x606100200220b0061540065bd00200220b00600211e00200220b006002", "0x39500200220b0060b300620c00200220b00600f00604d00200220b006010", "0x200220b0060ca00639800200220b0060cb00639700200220b006181006", "0x220b0060cf00639b00200220b0060c800639a00200220b0060c9006399", "0x600612c0023cc00620b0061a300600c0023cb00620b0061bf00644b002", "0x3ce00620b0060e500612b00221800620b0061b40060160023cd00620b006", "0x20b0060020090023cf3ce2183cd3cc0160063cf00620b0063cb00644c002", "0x20b00601000606100200220b0061540065bd00200220b00600211e002002", "0x60cf00639b00200220b0060c800639a00200220b00600f00604d002002", "0xcb00639700200220b00618100639500200220b0060b300620c00200220b", "0x639600200220b0060c900639900200220b0060ca00639800200220b006", "0x3d100620b0061a300600c0023d000620b0061ad00644b00200220b0060b5", "0xd400612b0023d300620b00619c0060160023d200620b00600600612c002", "0x23d53d43d33d23d10160063d500620b0063d000644c0023d400620b006", "0x6100200220b0061540065bd00200220b00600211e00200220b006002009", "0x200220b0060c800639a00200220b00600f00604d00200220b006010006", "0x220b00618100639500200220b0060b300620c00200220b0060cf00639b", "0x20b0060c900639900200220b0060ca00639800200220b0060cb006397002", "0x61a100644b00200220b0060c30060c400200220b0060b5006396002002", "0x23d800620b00600600612c0023d700620b00619b00600c0023d600620b", "0x63d600644c0023da00620b0060d400612b0023d900620b00619c006016", "0x600211e00200220b0060020090023db3da3d93d83d70160063db00620b", "0xf00604d00200220b00601000606100200220b0061540065bd00200220b", "0x639b00200220b0060b500639600200220b0060c800639a00200220b006", "0x39700200220b00618100639500200220b0060b300620c00200220b0060cf", "0x200220b0060c900639900200220b0060ca00639800200220b0060cb006", "0x600600612c0023dd00620b0060b700600c0023dc00620b00619000644b", "0x23e000620b0060ba00612b0023df00620b0060b90060160023de00620b", "0x220b0060020090023e13e03df3de3dd0160063e100620b0063dc00644c", "0x20b0060a000635a0023e200620b00600222100200220b0060a40060f2002", "0x3e300620b0063e300604b0023e300620b0063e23e40071c10023e40a0007", "0xa000604d00200220b0060020090023e50065be00220b0073e30061c5002", "0x23e600620b0063e600602c0023e600620b00601400602f00200220b006", "0x3e700603300200220b0060020090023e80065bf3e700620b0073e6006030", "0x23ea00620b00601b0060160023e900620b00616100600c00200220b006", "0x5c000600202d0023ec00620b00600c0060410023eb00620b00601500612b", "0x20b00600c00637100200220b0063e800603300200220b006002009002002", "0xc0023f63f500720b0063f30065a50023f43f33f23f13f03ef3ee3ed014", "0x20b00601500612b0023fc00620b00601b0060160023fb00620b006161006", "0xc20b0063fe3fd3fc3fb00c5370023fe00620b0063f60064500023fd006", "0x20b0060020090023ff0065c121b00620b0073fa00618f0023fa3f93f83f7", "0x601600243d00620b0063f700600c00240000620b00621b0060be002002", "0x720b0064000065a700243e00620b0063f900612b00221a00620b0063f8", "0xc20b00643f43e21a43d00c5a800243f00620b00643f00611b00243f400", "0x20b0060020090024410065c244000620b00743c0063bc00243c403402401", "0x640100600c00244200620b00600259200200220b0064400063bd002002", "0x244700620b00644200611b00244600620b00640000611b00244500620b", "0x65c344800620b00744400618f00244444300720b0064474464450095aa", "0x640200601600244a00620b0064480060be00200220b006002009002449", "0x244f00620b0063f500645000244e00620b00640300612b00221900620b", "0x44d44c44b00920b00645044f44e21900c45100245000620b00644a00611b", "0x645300200220b0060020090024520065c445100620b00744d006452002", "0x3f03ef3ee3ed01412a00200220b00645400603300245445300720b006451", "0x44b0060160023e900620b00644300600c00245500620b0063f44533f23f1", "0x3ec00620b0064550060410023eb00620b00644c00612b0023ea00620b006", "0x604d00200220b0064560060fa00245845745600920b00615400659e002", "0x47f00720b00645900601c00245900620b00645800601900200220b006457", "0x648100601c00248100620b00600206500200220b00647f0060c4002480", "0x249b00620b00648000605400200220b0064840060c400248548400720b", "0x49c49b00702900249b00620b00649b00611b00249c00620b006485006054", "0x2b00249e00620b00600202a00200220b0060020090020025c500220b007", "0x25c600600202d00249f00620b00621600602c00221600620b00649e006", "0x620b0064a000602e0024a000620b00600202a00200220b006002009002", "0x602c0024b600620b00649f00602f00249f00620b0064b500602c0024b5", "0x60020090024b90065c74b800620b0074b60060300024b600620b0064b6", "0x3710024bb4ba00720b0063ec00607f00200220b0064b800603300200220b", "0x220b0064bd0063950024ea4d84d74d64d34d24c84bd01420b0064bb006", "0x20b0064d600639800200220b0064d300639900200220b0064c800639b002", "0x64ea00620c00200220b0064d800639600200220b0064d7006397002002", "0x3d30024fb00620b0063eb00612b0024fa00620b0063ea00601600200220b", "0x1510024f42154eb00920b0064fc4fb4fa0093d40024fc00620b0064d2006", "0x650100615200200220b00600200900250d0065c850100620b0074f4006", "0x200220b00650f00604d00252850f00720b00650e00613000250e00620b", "0x652900604d00252a52900720b00621400613000221400620b0060020ef", "0x252d52c00720b00652b00613000252b00620b0065280061b200200220b", "0x20b00652e00613000252e00620b00652a0061b200200220b00652c00604d", "0x1b200253100620b00652d0061b200200220b00652f00604d00253052f007", "0x653300604b00253300620b0065325310071c100253200620b006530006", "0x200220b0060020090025340065c900220b0075330061c500253300620b", "0x20b00653600602c00253600620b00653500602e00253500620b00600202a", "0x20b0065340060f200200220b0060020090020025ca00600202d002537006", "0x53a00602c00253a00620b00653900602b00253900620b00600202a002002", "0x21300620b00621300602c00221300620b00653700602f00253700620b006", "0x53b00603000253b00620b00653b00602c00253b00620b00621300602f002", "0x220b00653c00603300200220b00600200900253d0065cb53c00620b007", "0x65450063fb00254854754654554454354254101420b0064ba006371002", "0x56800620b0064eb00601600256700620b0063e900600c00255054d00720b", "0x56700c3fd00256e00620b0065500063fc00256d00620b00621500612b002", "0x65cc56f00620b0075660060c800256655f55655300c20b00656e56d568", "0x65720063fe00257200620b00656f0060c900200220b006002009002571", "0x57900720b00657600613000200220b00657400634900257757657400920b", "0x657b00613000257b00620b0060023f700200220b00657900604d00257a", "0x257e00620b00657a0061b200200220b00657c00604d00257d57c00720b", "0x58000604b00258000620b00657f57e0071c100257f00620b00657d0061b2", "0x220b0060020090025810065cd00220b0075800061c500258000620b006", "0x658400602c00258400620b00658300602e00258300620b00600202a002", "0x65810060f200200220b0060020090020025ce00600202d00258500620b", "0x602c00258800620b00658600602b00258600620b00600202a00200220b", "0x620b00659000602c00259000620b00658500602f00258500620b006588", "0x3300200220b0060020090025920065cf59100620b007590006030002590", "0x20b00659600604d00259759600720b00657700613000200220b006591006", "0x604d00259b59a00720b00659800613000259800620b0060020ef002002", "0x59d00720b00659c00613000259c00620b0065970061b200200220b00659a", "0x59f00613000259f00620b00659b0061b200200220b00659d00604d00259e", "0x5a700620b00659e0061b200200220b0065a100604d0025a55a100720b006", "0x604b0025aa00620b0065a85a70071c10025a800620b0065a50061b2002", "0x20b0060020090025b80065d000220b0075aa0061c50025aa00620b0065aa", "0x5bc00602c0025bc00620b0065bb00602e0025bb00620b00600202a002002", "0x5b80060f200200220b0060020090020025d100600202d0025bd00620b006", "0x2c0025d200620b00622100602b00222100620b00600202a00200220b006", "0x20b0065d300602c0025d300620b0065bd00602f0025bd00620b0065d2006", "0x300025d400620b0065d400602c0025d400620b0065d300602f0025d3006", "0x20b00600211e00200220b0060020090025d60065d522200620b0075d4006", "0x654854754654d54454354254101412a00200220b006222006033002002", "0x5da00620b00655300600c0025d95d800720b0065d700607f0025d700620b", "0x55f00612b0025dc00620b0065560060160025db00620b00600600612c002", "0x5df00620b00600f00604b0025de00620b0065d90060410025dd00620b006", "0x20b0065e05df5de5dd5dc5db5da0105b80025e000620b00601000600f002", "0x20b0075e50060ed0025d800620b0065d80060410025e55e45e35e25e1016", "0x25e900620b0065e600608e00200220b0060020090025e80065e75e6006", "0x75ea0060300025ea00620b0065ea00602c0025ea00620b0065e900602f", "0x200220b0065eb00603300200220b0060020090025ed0065ec5eb00620b", "0x65ef0064850025ef00620b0065ee5d80074840025ee00620b00600202a", "0x25f200620b0065e200612c0025f100620b0065e100600c0025f000620b", "0x65f000644c0025f400620b0065e400612b0025f300620b0065e3006016", "0x5ed00603300200220b0060020090025f55f45f35f25f10160065f500620b", "0x25bb0025f600620b00600213100200220b0065d800604700200220b006", "0x620b0065f75f600705b0025f700620b0065f700604b0025f700620b006", "0x644b0025fa00620b0065f85f900705d0025f900620b0060021350025f8", "0x620b0065e200612c0025fc00620b0065e100600c0025fb00620b0065fa", "0x644c0025ff00620b0065e400612b0025fe00620b0065e30060160025fd", "0x4700200220b0060020090026005ff5fe5fd5fc01600660000620b0065fb", "0x620b0065e100600c00260100620b0065e800644b00200220b0065d8006", "0x612b00260400620b0065e300601600260300620b0065e200612c002602", "0x60660560460360201600660600620b00660100644c00260500620b0065e4", "0x200220b0065d600603300200220b00600211e00200220b006002009002", "0x220b00654800620c00200220b00600f00604d00200220b006010006061", "0x20b00654d00639800200220b00654600639700200220b006547006396002", "0x654200639b00200220b00654300639a00200220b006544006399002002", "0x60023f600260700620b00600213100200220b00654100639500200220b", "0x60900620b00660860700705b00260800620b00660800604b00260800620b", "0x60b00644b00260b00620b00660960a00705d00260a00620b006002135002", "0x60e00620b00600600612c00260d00620b00655300600c00260c00620b006", "0x60c00644c00261000620b00655f00612b00260f00620b006556006016002", "0x211e00200220b00600200900261161060f60e60d01600661100620b006", "0x604d00200220b00601000606100200220b00659200603300200220b006", "0x39700200220b00654700639600200220b00654800620c00200220b00600f", "0x200220b00654400639900200220b00654d00639800200220b006546006", "0x220b00654100639500200220b00654200639b00200220b00654300639a", "0x620b00600250100222600620b00600213100200220b00657700604d002", "0x13500261300620b00661222600705b00261200620b00661200604b002612", "0x20b00661500644b00261500620b00661361400705d00261400620b006002", "0x1600261800620b00600600612c00261700620b00655300600c002616006", "0x20b00661600644c00222500620b00655f00612b00261900620b006556006", "0x20b00600211e00200220b00600200900261a22561961861701600661a006", "0x654800620c00200220b00600f00604d00200220b006010006061002002", "0x54d00639800200220b00654600639700200220b00654700639600200220b", "0x639b00200220b00654300639a00200220b00654400639900200220b006", "0x261b00620b00657100644b00200220b00654100639500200220b006542", "0x655600601600261d00620b00600600612c00261c00620b00655300600c", "0x662000620b00661b00644c00261f00620b00655f00612b00261e00620b", "0x3300200220b00600211e00200220b00600200900262061f61e61d61c016", "0x200220b00600f00604d00200220b00601000606100200220b00653d006", "0x22400620b0060024bd00262100620b00600213100200220b0064ba006047", "0x213500262200620b00622462100705b00222400620b00622400604b002", "0x620b00662400644b00262400620b00662262300705d00262300620b006", "0x601600262700620b00600600612c00262600620b0063e900600c002625", "0x620b00662500644c00262900620b00621500612b00262800620b0064eb", "0x220b00600211e00200220b00600200900262a62962862762601600662a", "0x20b0064ba00604700200220b00600f00604d00200220b006010006061002", "0x612c00262c00620b0063e900600c00262b00620b00650d00644b002002", "0x620b00621500612b00262e00620b0064eb00601600262d00620b006006", "0x600200900263062f62e62d62c01600663000620b00662b00644c00262f", "0x601000606100200220b0064b900603300200220b00600211e00200220b", "0x600213100200220b0063ec00604700200220b00600f00604d00200220b", "0x5b00263200620b00663200604b00263200620b0060025bc00263100620b", "0x663363400705d00263400620b00600213500263300620b006632631007", "0x263600620b0063e900600c00222300620b00663500644b00263500620b", "0x63eb00612b00263800620b0063ea00601600263700620b00600600612c", "0x900263a63963863763601600663a00620b00622300644c00263900620b", "0x606100200220b0061540065bd00200220b00600211e00200220b006002", "0x39500200220b0063f400620c00200220b00600f00604d00200220b006010", "0x200220b0063f100639800200220b0063f200639700200220b0063ed006", "0x220b0063ee00639b00200220b0063ef00639a00200220b0063f0006399", "0x600612c00263c00620b00644300600c00263b00620b00645200644b002", "0x63f00620b00644c00612b00263e00620b00644b00601600263d00620b006", "0x20b00600200900264063f63e63d63c01600664000620b00663b00644c002", "0x20b00601000606100200220b0061540065bd00200220b00600211e002002", "0x63ee00639b00200220b0063ef00639a00200220b00600f00604d002002", "0x3f200639700200220b0063ed00639500200220b0063f400620c00200220b", "0x639600200220b0063f000639900200220b0063f100639800200220b006", "0x64200620b00644300600c00264100620b00644900644b00200220b0063f5", "0x40300612b00264400620b00640200601600264300620b00600600612c002", "0x264664564464364201600664600620b00664100644c00264500620b006", "0x6100200220b0061540065bd00200220b00600211e00200220b006002009", "0x200220b0063ef00639a00200220b00600f00604d00200220b006010006", "0x220b0063ed00639500200220b0063f400620c00200220b0063ee00639b", "0x20b0063f000639900200220b0063f100639800200220b0063f2006397002", "0x644100644b00200220b0064000060c400200220b0063f5006396002002", "0x264900620b00600600612c00264800620b00640100600c00264700620b", "0x664700644c00264b00620b00640300612b00264a00620b006402006016", "0x600211e00200220b00600200900264c64b64a64964801600664c00620b", "0xf00604d00200220b00601000606100200220b0061540065bd00200220b", "0x639b00200220b0063f500639600200220b0063ef00639a00200220b006", "0x39700200220b0063ed00639500200220b0063f400620c00200220b0063ee", "0x200220b0063f000639900200220b0063f100639800200220b0063f2006", "0x600600612c00222000620b0063f700600c00264d00620b0063ff00644b", "0x265000620b0063f900612b00264f00620b0063f800601600264e00620b", "0x220b00600200900265165064f64e22001600665100620b00664d00644c", "0x20b0060a000635a00265200620b0060025d200200220b0063e50060f2002", "0x65400620b00665400604b00265400620b0066526530071c10026530a0007", "0xa000604d00200220b00600200900265600665500220b0076540061c5002", "0x265700620b00665700602c00265700620b00601400602f00200220b006", "0x65800603300200220b00600200900265a00665965800620b007657006030", "0x265c00620b00601b00601600265b00620b00616100600c00200220b006", "0x65f00600202d00265e00620b00600c00604100265d00620b00601500612b", "0x20b00600c00637100200220b00665a00603300200220b006002009002002", "0xc00266866700720b0066660065d300266621f665664663662661660014", "0x20b00601500612b00266a00620b00601b00601600266900620b006161006", "0xc20b00666c66b66a66900c53d00266c00620b00666800644d00266b006", "0x20b00600200900267300667267100620b00767000618f00267066f66e66d", "0x601600267400620b00666d00600c00221e00620b0066710060be002002", "0x720b00621e0065a700267600620b00666f00612b00267500620b00666e", "0xc20b00667767667567400c5a800267700620b00667700611b00267721e", "0x20b00600200900267e00667d67c00620b00767b0063bc00267b67a679678", "0x667800600c00267f00620b00600259200200220b00667c0063bd002002", "0x268200620b00667f00611b00268100620b00621e00611b00268000620b", "0x668668500620b00768400618f00268468300720b0066826816800095aa", "0x667900601600268800620b0066850060be00200220b006002009002687", "0x268b00620b00666700644d00268a00620b00667a00612b00268900620b", "0x21d68e68d00920b00668c68b68a68900c21900268c00620b00668800611b", "0x644f00200220b00600200900269100669068f00620b00721d00644e002", "0x66366266166001412a00200220b00669300603300269369200720b00668f", "0x68d00601600265b00620b00668300600c00269400620b00669221f665664", "0x65e00620b00669400604100265d00620b00668e00612b00265c00620b006", "0x604d00200220b0066950060fa00269769669500920b00615400659e002", "0x69900620b00669800600f00269800620b00669700605300200220b006696", "0x69d00669c69b00620b00769a00607700269a21c00720b006699006076002", "0x20b00669e00601900269e00620b00621c00601b00200220b006002009002", "0x6500200220b0066a00060c40026a16a000720b00669f00601c00269f006", "0x20b0066a30060c40026a46a300720b0066a200601c0026a200620b006002", "0x611b0026a600620b0066a40060540026a500620b0066a1006054002002", "0x20b0060020090020026a700220b0076a66a50070290026a500620b0066a5", "0x6a900602c0026a900620b0066a800602b0026a800620b00600202a002002", "0x600202a00200220b0060020090020026ab00600202d0026aa00620b006", "0x26aa00620b0066ad00602c0026ad00620b0066ac00602e0026ac00620b", "0x76ae0060300026ae00620b0066ae00602c0026ae00620b0066aa00602f", "0x200220b0066af00603300200220b0060020090026b10066b06af00620b", "0x665e00637100200220b0060020090026b30066b200220b00769b0061c5", "0x26bd6bc00720b0066b70063dd0026bb6ba6b96b86b76b66b56b401420b", "0x66bd0063de0026bf00620b00665d00612b0026be00620b00665c006016", "0x76c30061510026c36c26c100920b0066c06bf6be0093df0026c000620b", "0x6c700620b0066c400615200200220b0060020090026c60066c56c400620b", "0x60020ef00200220b0066c800604d0026c96c800720b0066c7006130002", "0x200220b0066cb00604d0026cc6cb00720b0066ca0061300026ca00620b", "0x6ce6cd0071c10026ce00620b0066cc0061b20026cd00620b0066c90061b2", "0x6d000220b0076cf0061c50026cf00620b0066cf00604b0026cf00620b006", "0x622a00602e00222a00620b00600202a00200220b0060020090026d1006", "0x20090020026d400600202d0026d300620b0066d200602c0026d200620b", "0x602b0026d500620b00600202a00200220b0066d10060f200200220b006", "0x620b0066d300602f0026d300620b00622b00602c00222b00620b0066d5", "0x6d90066d86d700620b0076d60060300026d600620b0066d600602c0026d6", "0x6bc6b66b56b401412a00200220b0066d700603300200220b006002009002", "0x6c200612b0026db00620b0066c10060160026da00620b0066bb6ba6b96b8", "0x90020026de00600202d0026dd00620b0066da0060410026dc00620b006", "0x606100200220b0066d900603300200220b00600211e00200220b006002", "0x39600200220b0066bb00620c00200220b00600f00604d00200220b006010", "0x200220b0066b800639800200220b0066b900639700200220b0066ba006", "0x220b0066b500639b00200220b0066b600639a00200220b0066bc006399", "0x620b0060023e10026df00620b00600213100200220b0066b4006395002", "0x1350026e100620b0066e06df00705b0026e000620b0066e000604b0026e0", "0x20b0066e300644b0026e300620b0066e16e200705d0026e200620b006002", "0x160026e600620b00600600612c0026e500620b00665b00600c0026e4006", "0x20b0066e400644c0026e800620b0066c200612b0026e700620b0066c1006", "0x20b00600211e00200220b0060020090026e96e86e76e66e50160066e9006", "0x66bb00620c00200220b00600f00604d00200220b006010006061002002", "0x6b800639800200220b0066b900639700200220b0066ba00639600200220b", "0x639b00200220b0066b600639a00200220b0066bc00639900200220b006", "0x26ea00620b0066c600644b00200220b0066b400639500200220b0066b5", "0x66c10060160026ec00620b00600600612c0026eb00620b00665b00600c", "0x66ef00620b0066ea00644c0026ee00620b0066c200612b0026ed00620b", "0x200220b0066b30060f200200220b0060020090026ef6ee6ed6ec6eb016", "0x665e0060410026dc00620b00665d00612b0026db00620b00665c006016", "0x6f201420b0066f10063710026f16f000720b0066dd00607f0026dd00620b", "0x20b0066f300639b00200220b0066f20063950026f96f86f76f66f56f46f3", "0x66f700639700200220b0066f600639800200220b0066f5006399002002", "0x6db00601600200220b0066f900620c00200220b0066f800639600200220b", "0x6fc00620b0066f40063d30026fb00620b0066dc00612b0026fa00620b006", "0x70000620b0076ff0061510026ff6fe6fd00920b0066fc6fb6fa0093d4002", "0x613000270300620b00670000615200200220b006002009002702006701", "0x70600620b0060020ef00200220b00670400604d00270570400720b006703", "0x7050061b200200220b00670700604d00270870700720b006706006130002", "0x220b00670900604d00270a70900720b00622e00613000222e00620b006", "0x604d00270d70c00720b00670b00613000270b00620b0067080061b2002", "0x70f00620b00670d0061b200270e00620b00670a0061b200200220b00670c", "0x61c500222d00620b00622d00604b00222d00620b00670f70e0071c1002", "0x71200620b00600202a00200220b00600200900271100671000220b00722d", "0x600202d00271400620b00671300602c00271300620b00671200602e002", "0x20b00600202a00200220b0067110060f200200220b006002009002002715", "0x2f00271400620b00671700602c00271700620b00671600602b002716006", "0x20b00671800602f00271800620b00671800602c00271800620b006714006", "0x671b71a00620b00771900603000271900620b00671900602c002719006", "0x220b00671a00603300200220b00600211e00200220b00600200900271c", "0x612c00271f00620b00665b00600c00271e71d00720b0066f000607f002", "0x620b0066fe00612b00272100620b0066fd00601600272000620b006006", "0x600f00272400620b00600f00604b00272300620b00671e006041002722", "0x72772601620b00672572472372272172071f0105d400272500620b006010", "0x220b00600200900272c00672b72a00620b0077290060ed00272922c728", "0x72e00602c00272e00620b00672d00602f00272d00620b00672a00608e002", "0x20b00600200900273100673072f00620b00772e00603000272e00620b006", "0x73271d00748400273200620b00600202a00200220b00672f006033002002", "0x73500620b00672600600c00273400620b00673300648500273300620b006", "0x22c00612b00222900620b00672800601600273600620b00672700612c002", "0x273873722973673501600673800620b00673400644c00273700620b006", "0x200220b00671d00604700200220b00673100603300200220b006002009", "0x620b00673a00604b00273a00620b00600222200273900620b006002131", "0x705d00273c00620b00600213500273b00620b00673a73900705b00273a", "0x20b00672600600c00273e00620b00673d00644b00273d00620b00673b73c", "0x12b00274100620b00672800601600274000620b00672700612c00273f006", "0x74274174073f01600674300620b00673e00644c00274200620b00622c006", "0x20b00672c00644b00200220b00671d00604700200220b006002009002743", "0x1600274600620b00672700612c00274500620b00672600600c002744006", "0x20b00674400644c00274700620b00622c00612b00222800620b006728006", "0x20b00600211e00200220b006002009002748747228746745016006748006", "0x600f00604d00200220b00601000606100200220b00671c006033002002", "0x60024bd00274900620b00600213100200220b0066f000604700200220b", "0x74b00620b00674a74900705b00274a00620b00674a00604b00274a00620b", "0x74d00644b00274d00620b00674b74c00705d00274c00620b006002135002", "0x74f00620b00600600612c00222700620b00665b00600c00274e00620b006", "0x74e00644c00275100620b0066fe00612b00275000620b0066fd006016002", "0x211e00200220b00600200900275275175074f22701600675200620b006", "0x604700200220b00600f00604d00200220b00601000606100200220b006", "0x75400620b00665b00600c00275300620b00670200644b00200220b0066f0", "0x6fe00612b00275600620b0066fd00601600275500620b00600600612c002", "0x275875775675575401600675800620b00675300644c00275700620b006", "0x6100200220b0066b100603300200220b00600211e00200220b006002009", "0x200220b00665e00604700200220b00600f00604d00200220b006010006", "0x75a00620b0060025bc00275900620b00600213100200220b00669b00604d", "0x213500275b00620b00675a75900705b00275a00620b00675a00604b002", "0x620b00675d00644b00275d00620b00675b75c00705d00275c00620b006", "0x601600276000620b00600600612c00275f00620b00665b00600c00275e", "0x620b00675e00644c00276200620b00665d00612b00276100620b00665c", "0x220b00600211e00200220b00600200900276376276176075f016006763", "0x20b00600f00604d00200220b00601000606100200220b00669d006033002", "0x20b00600213100200220b00621c00606100200220b00665e006047002002", "0x705b00276500620b00676500604b00276500620b0060025bc002764006", "0x20b00676676700705d00276700620b00600213500276600620b006765764", "0x12c00276a00620b00665b00600c00276900620b00676800644b002768006", "0x20b00665d00612b00276c00620b00665c00601600276b00620b006006006", "0x200900276e76d76c76b76a01600676e00620b00676900644c00276d006", "0x1000606100200220b0061540065bd00200220b00600211e00200220b006", "0x639600200220b00666000639500200220b00600f00604d00200220b006", "0x39900200220b00666400639800200220b00666500639700200220b00621f", "0x200220b00666100639b00200220b00666200639a00200220b006663006", "0x600600612c00277000620b00668300600c00276f00620b00669100644b", "0x277300620b00668e00612b00277200620b00668d00601600277100620b", "0x220b00600200900277477377277177001600677400620b00676f00644c", "0x220b00601000606100200220b0061540065bd00200220b00600211e002", "0x20b00666100639b00200220b00666200639a00200220b00600f00604d002", "0x666500639700200220b00621f00639600200220b006660006395002002", "0x66700620c00200220b00666300639900200220b00666400639800200220b", "0x277600620b00668300600c00277500620b00668700644b00200220b006", "0x667a00612b00277700620b00667900601600223100620b00600600612c", "0x900277977877723177601600677900620b00677500644c00277800620b", "0x606100200220b0061540065bd00200220b00600211e00200220b006002", "0x39b00200220b00666200639a00200220b00600f00604d00200220b006010", "0x200220b00621f00639600200220b00666000639500200220b006661006", "0x220b00666300639900200220b00666400639800200220b006665006397", "0x20b00667e00644b00200220b00621e0060c400200220b00666700620c002", "0x1600277b00620b00600600612c00277a00620b00667800600c002232006", "0x20b00623200644c00277d00620b00667a00612b00277c00620b006679006", "0x20b00600211e00200220b00600200900277e77d77c77b77a01600677e006", "0x600f00604d00200220b00601000606100200220b0061540065bd002002", "0x66100639b00200220b00666700620c00200220b00666200639a00200220b", "0x639700200220b00621f00639600200220b00666000639500200220b006", "0x44b00200220b00666300639900200220b00666400639800200220b006665", "0x20b00600600612c00278000620b00666d00600c00277f00620b006673006", "0x44c00278300620b00666f00612b00278200620b00666e006016002781006", "0x200220b00600200900278478378278178001600678400620b00677f006", "0x720b0060a000635a00278500620b0060025d600200220b0066560060f2", "0x278700620b00678700604b00278700620b0067857860071c10027860a0", "0x60a000604d00200220b00600200900278900678800220b0077870061c5", "0x3000278a00620b00678a00602c00278a00620b00601400602f00200220b", "0x678b00603300200220b00600200900278d00678c78b00620b00778a006", "0x12b00278f00620b00601b00601600278e00620b00616100600c00200220b", "0x279200600202d00279100620b00600c00604100279000620b006015006", "0x1420b00600c00637100200220b00678d00603300200220b006002009002", "0x600c00279c79b00720b00679a0065d300279a799798797796795794793", "0x620b00601500612b00279e00620b00601b00601600279d00620b006161", "0x7a100c20b0067a079f79e79d00c53d0027a000620b00679c00644d00279f", "0x220b0060020090027a70067a67a500620b0077a400618f0027a47a37a2", "0x7a20060160027a900620b0067a100600c0027a800620b0067a50060be002", "0x7a800720b0067a80065a70027aa00620b0067a300612b00223500620b006", "0x7ac00c20b0067ab7aa2357a900c5a80027ab00620b0067ab00611b0027ab", "0x220b0060020090027b20067b17b000620b0077af0063bc0027af7ae7ad", "0x20b0067ac00600c0027b300620b00600259200200220b0067b00063bd002", "0x5aa0027b500620b0067b300611b0027b400620b0067a800611b002234006", "0x7ba0067b97b800620b0077b700618f0027b77b600720b0067b57b4234009", "0x20b0067ad0060160027bb00620b0067b80060be00200220b006002009002", "0x11b0027be00620b00679b00644d0027bd00620b0067ae00612b0027bc006", "0x27c27c17c000920b0067bf7be7bd7bc00c2190027bf00620b0067bb006", "0x7c300644f00200220b0060020090027c50067c47c300620b0077c200644e", "0x79779679579479301412a00200220b0062330060330022337c600720b006", "0x67c000601600278e00620b0067b600600c0027c700620b0067c6799798", "0x279100620b0067c700604100279000620b0067c100612b00278f00620b", "0x7c900604d00200220b0067c80060fa0021067c97c800920b00615400659e", "0x7cc7cb00720b0067ca00601c0027ca00620b00610600601900200220b006", "0x20b0067cd00601c0027cd00620b00600206500200220b0067cb0060c4002", "0x540027d000620b0067cc00605400200220b0067ce0060c40027cf7ce007", "0x77d17d00070290027d000620b0067d000611b0027d100620b0067cf006", "0x602b0027d300620b00600202a00200220b0060020090020027d200220b", "0x20027d600600202d0027d500620b0067d400602c0027d400620b0067d3", "0x7d800620b0067d700602e0027d700620b00600202a00200220b006002009", "0x7d900602c0027d900620b0067d500602f0027d500620b0067d800602c002", "0x20b0060020090022300067db7da00620b0077d90060300027d900620b006", "0x63710027dd7dc00720b00679100607f00200220b0067da006033002002", "0x200220b0067de0063950027e57e47e37e27e17e07df7de01420b0067dd", "0x220b0067e200639800200220b0067e100639900200220b0067df00639b", "0x20b0067e500620c00200220b0067e400639600200220b0067e3006397002", "0x63d30027e700620b00679000612b0027e600620b00678f006016002002", "0x61510027eb7ea7e900920b0067e87e77e60093d40027e800620b0067e0", "0x20b00622f00615200200220b0060020090027ed0067ec22f00620b0077eb", "0xef00200220b0067ef00604d0027f07ef00720b0067ee0061300027ee006", "0x20b0067f200604d0027f37f200720b0067f10061300027f100620b006002", "0x4d0027f67f500720b0067f40061300027f400620b0067f00061b2002002", "0x720b0067f70061300027f700620b0067f30061b200200220b0067f5006", "0x61b20027fa00620b0067f60061b200200220b0067f800604d0027f97f8", "0x20b0067fc00604b0027fc00620b0067fb7fa0071c10027fb00620b0067f9", "0x2a00200220b0060020090027fe0067fd00220b0077fc0061c50027fc006", "0x620b00680000602c00280000620b0067ff00602e0027ff00620b006002", "0x220b0067fe0060f200200220b00600200900200280200600202d002801", "0x680400602c00280400620b00680300602b00280300620b00600202a002", "0x280500620b00680500602c00280500620b00680100602f00280100620b", "0x780600603000280600620b00680600602c00280600620b00680500602f", "0x200220b00680700603300200220b00600200900280900680880700620b", "0x20b00680e0063fb00281181080f80e80d80c80b80a01420b0067dc006371", "0x281500620b0067e900601600281400620b00678e00600c002813812007", "0x81581400c3fd00281700620b0068130063fc00281600620b0067ea00612b", "0x81e00681d81c00620b00781b0060c800281b81a81981800c20b006817816", "0x20b00681f0063fe00281f00620b00681c0060c900200220b006002009002", "0x82482300720b00682100613000200220b006820006349002822821820009", "0x20b00682500613000282500620b00600200000200220b00682300604d002", "0x1b200282700620b0068240061b200200220b00682600604d00223a826007", "0x682900604b00282900620b0068288270071c100282800620b00623a006", "0x200220b00600200900223b00682a00220b0078290061c500282900620b", "0x20b00682c00602c00282c00620b00682b00602e00282b00620b00600202a", "0x20b00623b0060f200200220b00600200900200282e00600202d00282d006", "0x83000602c00283000620b00682f00602b00282f00620b00600202a002002", "0x83100620b00683100602c00283100620b00682d00602f00282d00620b006", "0x603300200220b00600200900283400683383200620b007831006030002", "0x720b00680b0063d600283580a00720b00680a0063d500200220b006832", "0x83880d00720b00680d0063d800283780c00720b00680c0063d700283680b", "0x3db00283a80f00720b00680f0063da00283981200720b0068120063d9002", "0x83501412a00283c81100720b0068110063dc00283b81000720b006810006", "0x1c500200220b00683d00604700283d00620b00683c83b83a839838837836", "0x20b00680d0063dd00200220b00600200900283f00683e00220b007822006", "0x284300620b00681a00612b00284200620b006819006016002841840007", "0x284784684500920b0068448438420093df00284400620b0068410063de", "0x84800615200200220b00600200900284a00684984800620b007847006151", "0x220b00684c00604d00284d84c00720b00684b00613000284b00620b006", "0x84f00604d00285084f00720b00684e00613000284e00620b0060020ef002", "0x285200620b0068500061b200285100620b00684d0061b200200220b006", "0x8530061c500285300620b00685300604b00285300620b0068528510071c1", "0x285600620b00600202a00200220b00600200900285500685400220b007", "0x85900600202d00285800620b00685700602c00285700620b00685600602e", "0x620b00600202a00200220b0068550060f200200220b006002009002002", "0x602f00285800620b00685b00602c00285b00620b00685a00602b00285a", "0x620b00785c00603000285c00620b00685c00602c00285c00620b006858", "0x1412a00200220b00685d00603300200220b00600200900285f00685e85d", "0x86100620b00684500601600286000620b00681181080f81284080c80b80a", "0x600202d00286300620b00686000604100286200620b00684600612b002", "0x20b00685f00603300200220b00600211e00200220b006002009002002864", "0x681100620c00200220b00600f00604d00200220b006010006061002002", "0x81200639800200220b00680f00639700200220b00681000639600200220b", "0x639b00200220b00680c00639a00200220b00684000639900200220b006", "0x3e100286500620b00600213100200220b00680a00639500200220b00680b", "0x20b00686686500705b00286600620b00686600604b00286600620b006002", "0x44b00286800620b00623f86700705d00286700620b00600213500223f006", "0x20b00600600612c00286a00620b00681800600c00286900620b006868006", "0x44c00223e00620b00684600612b00286c00620b00684500601600286b006", "0x200220b00600200900286d23e86c86b86a01600686d00620b006869006", "0x200220b00600f00604d00200220b00601000606100200220b00600211e", "0x220b00680f00639700200220b00681000639600200220b00681100620c", "0x20b00680c00639a00200220b00684000639900200220b006812006398002", "0x684a00644b00200220b00680a00639500200220b00680b00639b002002", "0x287000620b00600600612c00286f00620b00681800600c00286e00620b", "0x686e00644c00287200620b00684600612b00287100620b006845006016", "0x83f0060f200200220b00600200900223d87287187086f01600623d00620b", "0x1600287300620b00681181080f81280d80c80b80a01412a00200220b006", "0x20b00687300604100286200620b00681a00612b00286100620b006819006", "0x600c00287587400720b00686300607f00200220b00600211e002863006", "0x620b00686100601600287700620b00600600612c00287600620b006818", "0x604b00287a00620b00687500604100287900620b00686200612b002878", "0x8798788778760105d400287c00620b00601000600f00287b00620b00600f", "0x88388200620b0078810060ed00288188087f87e87d01620b00687c87b87a", "0x88400602f00288400620b00688200608e00200220b00600200900223c006", "0x88600620b00788500603000288500620b00688500602c00288500620b006", "0x600202a00200220b00688600603300200220b006002009002888006887", "0x88b00620b00688a00648500288a00620b00688987400748400288900620b", "0x87f00601600288d00620b00687e00612c00288c00620b00687d00600c002", "0x89000620b00688b00644c00288f00620b00688000612b00288e00620b006", "0x220b00688800603300200220b00600200900289088f88e88d88c016006", "0x620b00600222200289100620b00600213100200220b006874006047002", "0x13500289300620b00689289100705b00289200620b00689200604b002892", "0x20b00689500644b00289500620b00689389400705d00289400620b006002", "0x1600289800620b00687e00612c00289700620b00687d00600c002896006", "0x20b00689600644c00289900620b00688000612b00223900620b00687f006", "0x687400604700200220b00600200900289a89923989889701600689a006", "0x12c00289c00620b00687d00600c00289b00620b00623c00644b00200220b", "0x20b00688000612b00289e00620b00687f00601600289d00620b00687e006", "0x20090028a089f89e89d89c0160068a000620b00689b00644c00289f006", "0x1000606100200220b00683400603300200220b00600211e00200220b006", "0x639500200220b00680b00639b00200220b00600f00604d00200220b006", "0x39700200220b00681000639600200220b00681100620c00200220b00680a", "0x200220b00680c00639a00200220b00681200639800200220b00680f006", "0x8a100620b00600213100200220b00682200604d00200220b00680d006399", "0x8a28a100705b0028a200620b0068a200604b0028a200620b006002501002", "0x8a500620b0068a38a400705d0028a400620b0060021350028a300620b006", "0x600612c0028a700620b00681800600c0028a600620b0068a500644b002", "0x23800620b00681a00612b0028a900620b0068190060160028a800620b006", "0x20b0060020090028aa2388a98a88a70160068aa00620b0068a600644c002", "0x20b00600f00604d00200220b00601000606100200220b00600211e002002", "0x681100620c00200220b00680a00639500200220b00680b00639b002002", "0x81200639800200220b00680f00639700200220b00681000639600200220b", "0x644b00200220b00680d00639900200220b00680c00639a00200220b006", "0x620b00600600612c0028ac00620b00681800600c0028ab00620b00681e", "0x644c0028af00620b00681a00612b0028ae00620b0068190060160028ad", "0x11e00200220b0060020090028b08af8ae8ad8ac0160068b000620b0068ab", "0x4d00200220b00601000606100200220b00680900603300200220b006002", "0x28b100620b00600213100200220b0067dc00604700200220b00600f006", "0x68b28b100705b0028b200620b0068b200604b0028b200620b0060024bd", "0x28b400620b0062378b300705d0028b300620b00600213500223700620b", "0x600600612c0028b600620b00678e00600c0028b500620b0068b400644b", "0x28b900620b0067ea00612b0028b800620b0067e90060160028b700620b", "0x220b0060020090028ba8b98b88b78b60160068ba00620b0068b500644c", "0x220b00600f00604d00200220b00601000606100200220b00600211e002", "0x678e00600c0028bb00620b0067ed00644b00200220b0067dc006047002", "0x28be00620b0067e90060160028bd00620b00600600612c0028bc00620b", "0x8be8bd8bc0160068c000620b0068bb00644c0028bf00620b0067ea00612b", "0x20b00623000603300200220b00600211e00200220b0060020090028c08bf", "0x679100604700200220b00600f00604d00200220b006010006061002002", "0x8c200604b0028c200620b0060025bc0028c100620b00600213100200220b", "0x23600620b0060021350028c300620b0068c28c100705b0028c200620b006", "0x600c0028c500620b0068c400644b0028c400620b0068c323600705d002", "0x620b00678f0060160028c700620b00600600612c0028c600620b00678e", "0x8c60160068ca00620b0068c500644c0028c900620b00679000612b0028c8", "0x1540065bd00200220b00600211e00200220b0060020090028ca8c98c88c7", "0x639500200220b00600f00604d00200220b00601000606100200220b006", "0x39800200220b00679800639700200220b00679900639600200220b006793", "0x200220b00679500639a00200220b00679600639900200220b006797006", "0x20b0067b600600c0028cb00620b0067c500644b00200220b00679400639b", "0x12b0028ce00620b0067c00060160028cd00620b00600600612c0028cc006", "0x8cf8ce8cd8cc0160068d000620b0068cb00644c0028cf00620b0067c1006", "0x220b0061540065bd00200220b00600211e00200220b0060020090028d0", "0x20b00679500639a00200220b00600f00604d00200220b006010006061002", "0x679900639600200220b00679300639500200220b00679400639b002002", "0x79600639900200220b00679700639800200220b00679800639700200220b", "0xc0028d100620b0067ba00644b00200220b00679b00620c00200220b006", "0x20b0067ad0060160028d300620b00600600612c0028d200620b0067b6006", "0x160068d600620b0068d100644c0028d500620b0067ae00612b0028d4006", "0x65bd00200220b00600211e00200220b0060020090028d68d58d48d38d2", "0x39a00200220b00600f00604d00200220b00601000606100200220b006154", "0x200220b00679300639500200220b00679400639b00200220b006795006", "0x220b00679700639800200220b00679800639700200220b006799006396", "0x20b0067a80060c400200220b00679b00620c00200220b006796006399002", "0x612c0028d800620b0067ac00600c0028d700620b0067b200644b002002", "0x620b0067ae00612b0028da00620b0067ad0060160028d900620b006006", "0x60020090028dc8db8da8d98d80160068dc00620b0068d700644c0028db", "0x601000606100200220b0061540065bd00200220b00600211e00200220b", "0x79b00620c00200220b00679500639a00200220b00600f00604d00200220b", "0x639600200220b00679300639500200220b00679400639b00200220b006", "0x39900200220b00679700639800200220b00679800639700200220b006799", "0x620b0067a100600c0028dd00620b0067a700644b00200220b006796006", "0x612b0028e000620b0067a20060160028df00620b00600600612c0028de", "0x8e28e18e08df8de0160068e200620b0068dd00644c0028e100620b0067a3", "0x220b0061540065bd00200220b0067890060f200200220b006002009002", "0x8e300604d0028e48e300720b0060a000613000200220b0060140060d0002", "0x28e78e600720b0068e50061300028e500620b0060025d700200220b006", "0x20b0068e80061300028e800620b0068e40061b200200220b0068e600604d", "0x1300028eb00620b0068e70061b200200220b0068e900604d0028ea8e9007", "0x20b0068ea0061b200200220b0068ec00604d0028ed8ec00720b0068eb006", "0x28f000620b0068ef8ee0071c10028ef00620b0068ed0061b20028ee006", "0x20090028f20068f100220b0078f00061c50028f000620b0068f000604b", "0x2c0028f400620b0068f300602e0028f300620b00600202a00200220b006", "0xf200200220b0060020090020028f500600202d00224300620b0068f4006", "0x8f700620b0068f600602b0028f600620b00600202a00200220b0068f2006", "0x8f800602c0028f800620b00624300602f00224300620b0068f700602c002", "0x24400620b00624400602c00224400620b0068f800602f0028f800620b006", "0x603300200220b0060020090028fb0068fa8f900620b007244006030002", "0x600211e00200220b0060020090020028fc00600202d00200220b0068f9", "0x1000606100200220b00600c00604700200220b0068fb00603300200220b", "0x25d80028fd00620b00600213100200220b00600f00604d00200220b006", "0x620b0068fe8fd00705b0028fe00620b0068fe00604b0028fe00620b006", "0x644b00290100620b0068ff90000705d00290000620b0060021350028ff", "0x620b00600600612c00290300620b00616100600c00290200620b006901", "0x644c00290600620b00601500612b00290500620b00601b006016002904", "0xf200200220b00600200900290790690590490301600690700620b006902", "0x200220b0060140060d000200220b0061540065bd00200220b00609b006", "0x620b00601b00601600207f00620b00616100600c00200220b00600211e", "0x12c00290a00620b00607f00600c00290990800720b00600c00607f0020c7", "0x20b00601500612b00290c00620b0060c700601600290b00620b006006006", "0xf00290f00620b00600f00604b00290e00620b00690900604100290d006", "0x91101620b00691090f90e90d90c90b90a0103f900291000620b006010006", "0x20b00600200900291800691791600620b0079150063bc002915914913912", "0x91990800748400291900620b00600202a00200220b0069160063bd002002", "0x91c00620b00691100600c00291b00620b00691a00648500291a00620b006", "0x91400612b00291e00620b00691300601600291d00620b00691200612c002", "0x292091f91e91d91c01600692000620b00691b00644c00291f00620b006", "0x92100620b00691800644b00200220b00690800604700200220b006002009", "0x91300601600292300620b00691200612c00292200620b00691100600c002", "0x92600620b00692100644c00292500620b00691400612b00292400620b006", "0x200220b00600211e00200220b006002009002926925924923922016006", "0x220b00600f00604d00200220b00601000606100200220b00602d0060fa", "0x20b00616200644b00200220b0060140060d000200220b00600c006047002", "0x1600292900620b00600600612c00292800620b00616100600c002927006", "0x20b00692700644c00292b00620b00601500612b00292a00620b00601b006", "0x20b00600211e00200220b00600200900292c92b92a92992801600692c006", "0x601000606100200220b00600c00604700200220b006139006033002002", "0x1600639c00200220b00602d0060fa00200220b00600f00604d00200220b", "0x231300292d00620b00600213100200220b0060140060d000200220b006", "0x620b00692e92d00705b00292e00620b00692e00604b00292e00620b006", "0x644b00293000620b00624892f00705d00292f00620b006002135002248", "0x620b00600600612c00293200620b00600200600c00293100620b006930", "0x644c00224700620b00601500612b00293400620b00601b006016002933", "0x11e00200220b00600200900293524793493393201600693500620b006931", "0x4d00200220b00601000606100200220b00600c00604700200220b006002", "0x200220b00601600639c00200220b0060140060d000200220b00600f006", "0x600600612c00293700620b00600200600c00293600620b00605400644b", "0x293a00620b00601500612b00293900620b00601b00601600293800620b", "0x220b00600211e00224693a93993893701600624600620b00693600644c", "0x20b00600200600c00201600620b0060020ef00200c00620b0060025d9002", "0xfc00201900620b00600700612b00201b00620b006006006016002017006", "0x20b00600c0065e10020c400620b00601600604b00201c00620b006009006", "0x5e300201501401000f00c20b0060650c401c01901b01700f5e2002065006", "0x60540065e400200220b00600200900211b00693b05400620b007015006", "0x220b00602b00604d00200220b00602900639c00202c02b02a02900c20b", "0x602d0065da00202d00620b00602a0065e500200220b00602c006033002", "0x203000620b00601000601600202f00620b00600f00600c00202e00620b", "0x3303002f00c00604800620b00602e0065db00203300620b00601400612b", "0x600f00600c00203900620b00611b0065dc00200220b006002009002048", "0x203700620b00601400612b00211e00620b00601000601600203500620b", "0x620b00600c00630b00212003711e03500c00612000620b0060390065db", "0x600213100201000620b00600213100201600620b00600f0065dd00200f", "0x200220b0060150065df00201701500720b0060160065de00201400620b", "0x60170065e000206500620b0060060060160020c400620b00600200600c", "0x202900620b00601400604e00211b00620b00601000604e00205400620b", "0x200220b00600200600201c01901b00920b00602911b0540650c40165e6", "0x2a0065e900200220b00600200900202b00693c02a00620b00701c0065e8", "0x720b00602c00613200200220b00602e00603300202e02d02c00920b006", "0x613200203300620b00603000605300200220b00602f00605100203002f", "0x620b00603900605300200220b00604800605100203904800720b00602d", "0xc5ea00203500620b00603500600f00203300620b00603300600f002035", "0x220b00600200900203a10d12000993d03711e00720b007035033007019", "0x611e00601600212400620b00603c0063b700203c00620b00600202a002", "0x212a00620b0061240063b800203e00620b00603700612b00207d00620b", "0x212c00620b00603a0063b900200220b00600200900200293e00600202d", "0x612c0063b800203e00620b00610d00612b00207d00620b006120006016", "0x212b00620b0060410063bb00204100620b00612a0063ba00212a00620b", "0x600211e00200220b00600200900212d00693f04300620b00712b0063bc", "0x212e00620b00604500900748400204500620b0060430065eb00200220b", "0x607d00601600213100620b00601b00600c00204700620b00612e006485", "0x604b00620b00604700644c00204d00620b00603e00612b00213000620b", "0x604700200220b00600211e00200220b00600200900204b04d13013100c", "0x4f00620b00601b00600c00204e00620b00612d00644b00200220b006009", "0x4e00644c00205100620b00603e00612b00213200620b00607d006016002", "0x600211e00200220b00600200900205305113204f00c00605300620b006", "0x600c00212f00620b00602b00644b00200220b00600900604700200220b", "0x620b00600700612b00213300620b00601900601600205600620b00601b", "0x20b0060025ed00213605813305600c00613600620b00612f00644c002058", "0x600f00603900200f00620b00600204800200220b006002139002016006", "0x900201701500794001401000720b00700f00600200903500200f00620b", "0x1000620b00601000600c00201b00620b0060070065ee00200220b006002", "0x5f000200220b0060020090020c400694101c01900720b00701b0065ef002", "0x20b0060650065f100205400620b00601900606f00206500620b00601c006", "0x620b00600202a00200220b00600200900200294200600202d00211b006", "0x65f100205400620b0060c400606f00202a00620b0060290065f2002029", "0x620b00600c00631600200c00620b00605400630900211b00620b00602a", "0x694302b00620b00711b0065f400200c00620b00600c0160075f300200c", "0x620b00602b0065f500200220b00600211e00200220b00600200900202c", "0x600f00204800620b00601400601600203300620b00601000600c00202d", "0x3503904803300c5f600203500620b00600900604e00203900620b00602d", "0x200900203700694411e00620b00703000607100203002f02e00920b006", "0x200220b00610d00603300210d12000720b00611e00614100200220b006", "0x600c00631600203e00620b00602f00601600207d00620b00602e00600c", "0x20b00612c12a03e07d00c31700212c00620b00612000604e00212a00620b", "0x20b00600200900204100694512b00620b00712400607100212403c03a009", "0x600c00200220b00612d00603300212d04300720b00612b006141002002", "0x620b00604300604e00212e00620b00603c00601600204500620b00603a", "0x620b00604100631c00200220b00600200900200294600600202d002047", "0x631b00204d00620b00603c00601600213000620b00603a00600c002131", "0xc0065f700200220b00600200900204b04d13000900604b00620b006131", "0x204f00620b00602e00600c00204e00620b00603700631c00200220b006", "0x5113204f00900605100620b00604e00631b00213200620b00602f006016", "0x200220b00602c00603300200220b00600211e00200220b006002009002", "0x20b00601400601600204500620b00601000600c00200220b00600c0065f7", "0x731900205300620b00600202a00204700620b00600900604e00212e006", "0x20b00604500600c00205600620b00612f00631a00212f00620b006053047", "0x900613600620b00605600631b00205800620b00612e006016002133006", "0x60160065f800200220b00600211e00200220b006002009002136058133", "0x600213100200220b0060070065f700200220b00600900605100200220b", "0x5b00205b00620b00605b00604b00205b00620b00600213400213400620b", "0x613505d00705d00205d00620b00600213500213500620b00605b134007", "0x206100620b00601500600c00205f00620b00613700631c00213700620b", "0x6413806100900606400620b00605f00631b00213800620b006017006016", "0x620b00601600603900201600620b00600204800200220b00600211e002", "0x600200900201501400794701000f00720b007016006002009035002016", "0x200f00620b00600f00600c00201700c00720b00600c00635a00200220b", "0x600c00604d00200220b00600200900201b00694800220b0070170061c5", "0x201c00620b00601900700732800201900620b0060090065f900200220b", "0x601000601600206500620b00600f00600c0020c400620b00601c006329", "0x600200900211b05406500900611b00620b0060c400632a00205400620b", "0x607600202b00620b00600700600f00200220b00601b0060f200200220b", "0x200900202d00694902c00620b00702a00607700202a02900720b00602b", "0x202f00620b00600200000202e00620b00602c00900705b00200220b006", "0x1000601600203500620b00600f00600c00203000620b00602f00c0071c1", "0x12000620b00602e00604e00203700620b00602900600f00211e00620b006", "0x3300920b00610d12003711e03501632600210d00620b00603000604b002", "0x200220b00600200900203c00694a03a00620b00703900614b002039048", "0x632900203e00620b00607d12400732800207d12400720b00603a00607b", "0x620b00604800601600212c00620b00603300600c00212a00620b00603e", "0x220b00600200900204112b12c00900604100620b00612a00632a00212b", "0x4800601600212d00620b00603300600c00204300620b00603c00632b002", "0x200900212e04512d00900612e00620b00604300632a00204500620b006", "0x632c00200220b00600900605100200220b00600c00604d00200220b006", "0x20b00613100632900213100620b00604702900732800204700620b00602d", "0x32a00204b00620b00601000601600204d00620b00600f00600c002130006", "0x604d00200220b00600200900204e04b04d00900604e00620b006130006", "0x13100200220b00600700606100200220b00600900605100200220b00600c", "0x13200620b00613200604b00213200620b00600213400204f00620b006002", "0x5300705d00205300620b00600213500205100620b00613204f00705b002", "0x620b00601400600c00205600620b00612f00632b00212f00620b006051", "0x13300900613600620b00605600632a00205800620b006015006016002133", "0x5fa00201700620b00600f00600f00201500620b00600200600c002136058", "0x201900694b01b00620b0070140065fb00201401000720b006017015007", "0x720b00601c0065fd00201c00620b00601b0065fc00200220b006002009", "0x1600202d00620b00600600612c00202c00620b00601000600c0020650c4", "0x20b00600c0065fe00202f00620b00600900612b00202e00620b006007006", "0x3301600720b00601600635a00203000620b00603000604100203000c007", "0x2c0105d400204800620b0060c400600f00203300620b00603300604b002", "0x20b00702b0060ed00202b02a02911b05401620b00604803303002f02e02d", "0x211e00620b00603900608e00200220b00600200900203500694c039006", "0x703700603000203700620b00603700602c00203700620b00611e00602f", "0x200220b00612000603300200220b00600200900210d00694d12000620b", "0x12a03e07d12403c01420b00603a00637100203a00c00720b00600c0065fe", "0x639900200220b00612400639b00200220b00603c00639500204112b12c", "0x39600200220b00612c00639700200220b00612a00639800200220b00603e", "0x12e00620b00602900601600200220b00604100620c00200220b00612b006", "0x12e0093d400213100620b00607d0063d300204700620b00602a00612b002", "0x204d00694e13000620b00704500615100204512d04300920b006131047", "0x220b00704b0061c500204b00620b00613000615200200220b006002009", "0xc00604700200220b00601600604d00200220b00600200900204e00694f", "0x213200620b00604f00601900204f00620b00606500601b00200220b006", "0x20b00600206500200220b0060510060c400205305100720b00613200601c", "0x5400200220b0060560060c400213305600720b00612f00601c00212f006", "0x20b00605800611b00213600620b00613300605400205800620b006053006", "0x2a00200220b00600200900200295000220b007136058007029002058006", "0x620b00605b00602c00205b00620b00613400602b00213400620b006002", "0x5d00620b00600202a00200220b00600200900200295100600202d002135", "0x5400600c00213500620b00613700602c00213700620b00605d00602e002", "0x13800620b00604300601600206100620b00611b00612c00205f00620b006", "0x600202d00213900620b00613500602c00206400620b00612d00612b002", "0x605400600c00200220b00604e0060f200200220b006002009002002952", "0x213f00620b00604300601600206f00620b00611b00612c00213c00620b", "0x601600604b00214100620b00600c00604100207100620b00612d00612b", "0x14514107113f06f13c0105b800207500620b00606500600f00214500620b", "0x7700695307600620b00706c0060ed00206c06a06913b06701620b006075", "0x20b00606700600c00207900620b00607600608e00200220b006002009002", "0x12b00213800620b00606900601600206100620b00613b00612c00205f006", "0x20b0061390063a800213900620b00607900602c00206400620b00606a006", "0x12c00207b00620b00605f00600c00214b00620b0061460063a9002146006", "0x20b00606400612b00207f00620b00613800601600214a00620b006061006", "0x20090021510c707f14a07b01600615100620b00614b0063aa0020c7006", "0x214e00620b00606700600c00215200620b0060770063ab00200220b006", "0x606a00612b00208300620b00606900601600214f00620b00613b00612c", "0x900215008508314f14e01600615000620b0061520063aa00208500620b", "0x4700200220b00601600604d00200220b00606500606100200220b006002", "0x620b00605400600c00215e00620b00604d0063ab00200220b00600c006", "0x612b00215f00620b00604300601600216000620b00611b00612c002161", "0x16315d15f16016101600616300620b00615e0063aa00215d00620b00612d", "0x220b00600c00604700200220b00610d00603300200220b006002009002", "0x620b00600202a00200220b00606500606100200220b00601600604d002", "0x63a900208700620b0061620063a800216200620b00615c00602b00215c", "0x620b00611b00612c00215700620b00605400600c00215400620b006087", "0x63aa00216e00620b00602a00612b00215b00620b00602900601600208a", "0x4700200220b00600200900216816e15b08a15701600616800620b006154", "0x200220b00606500606100200220b00601600604d00200220b00600c006", "0x611b00612c00208e00620b00605400600c0020ed00620b0060350063ab", "0x216c00620b00602a00612b0020d000620b00602900601600216b00620b", "0x220b00600200900209216c0d016b08e01600609200620b0060ed0063aa", "0x20b0060190063ab00200220b00601600604d00200220b00600c006047002", "0x1600209400620b00600600612c00217100620b00601000600c00216d006", "0x20b00616d0063aa00209600620b00600900612b00217300620b006007006", "0x607600200c00620b00600600600f002175096173094171016006175006", "0x200900200f00695401600620b00700900607700200900700720b00600c", "0x600200900201500695501401000720b0070160020075ff00200220b006", "0xf00201b00620b00601000600c00201700620b00601400660000200220b", "0x201c01901b00900601c00620b00601700660100201900620b006007006", "0x6500620b0060c40066020020c400620b00600202a00200220b006002009", "0x6500660100211b00620b00600700600f00205400620b00601500600c002", "0x600f00660200200220b00600200900202911b05400900602900620b006", "0x202c00620b00600700600f00202b00620b00600200600c00202a00620b", "0x700620b00600600601b00202d02c02b00900602d00620b00602a006601", "0x1a300200220b00600200900201600695600c00900720b0070070060db002", "0x20b00600f0061a400201000620b00600900609900200f00620b00600c006", "0x620b00600202a00200220b00600200900200295700600202d002014006", "0x61a400201000620b00601600609900201700620b0060150061a5002015", "0x620b00601b00600f00201b00620b00601000605300201400620b006017", "0x1a600200220b00600200900201c00695801900620b0070140060df00201b", "0x20b00600200600c00206500620b0060c40061b20020c400620b006019006", "0x11b05400720b00602a02900760300202a00620b00606500604b002029006", "0x660400200220b00600200900202c00695902b00620b00711b00633b002", "0x620b00601b00600f00202e00620b00605400600c00202d00620b00602b", "0x220b00600200900203002f02e00900603000620b00602d00660500202f", "0x1b00600f00204800620b00605400600c00203300620b00602c006606002", "0x200900203503904800900603500620b00603300660500203900620b006", "0x660600211e00620b00600202a00200220b00601c00603300200220b006", "0x620b00601b00600f00212000620b00600200600c00203700620b00611e", "0x220b00600211e00203a10d12000900603a00620b00603700660500210d", "0xf00695a01600c00720b0070090060db00200900620b00600700601b002", "0x20b00600c00609900201000620b0060160061a300200220b006002009002", "0x600200900200295b00600202d00201500620b0060100061a4002014006", "0x609900201b00620b0060170061a500201700620b00600202a00200220b", "0x620b00601400605300201500620b00601b0061a400201400620b00600f", "0xc400695c01c00620b0070150060df00201900620b00601900600f002019", "0x20b0060650061b200206500620b00601c0061a600200220b006002009002", "0x601600202c00620b00600200600c00211b00620b0060021ad002054006", "0x620b00611b00604300202e00620b00601900600f00202d00620b006006", "0x920b00603002f02e02d02c0161ae00203000620b00605400604b00202f", "0x220b00600200900204800695d03300620b00702b00601400202b02a029", "0x3700695e11e00620b00703500601700203503900720b006033006015002", "0x612000613600210d12000720b00611e0060f800200220b006002009002", "0x60800203c00620b00603a00660700203a00620b00610d0061d600200220b", "0x602900600c00207d00620b00612400660900212400620b00603c039007", "0x612c00620b00607d00660a00212a00620b00602a00601600203e00620b", "0x60800212b00620b00603700660b00200220b00600200900212c12a03e009", "0x602900600c00204300620b00604100660900204100620b00612b039007", "0x612e00620b00604300660a00204500620b00602a00601600212d00620b", "0xc00204700620b00604800660c00200220b00600200900212e04512d009", "0x20b00604700660a00213000620b00602a00601600213100620b006029006", "0x220b0060c400603300200220b00600200900204d13013100900604d006", "0x4e01900760800204e00620b00604b00660b00204b00620b00600202a002", "0x5100620b00600200600c00213200620b00604f00660900204f00620b006", "0x5305100900612f00620b00613200660a00205300620b006006006016002", "0x760d00200f00620b00600600612b00201600620b00600200601600212f", "0x201400695f01000620b00700c00660e00200c00900700920b00600f016", "0x620b00601500661000201500620b00601000660f00200220b006002009", "0xfa00200220b00601b00634900201c01901b00920b006017006611002017", "0x620b0060c40066120020c400620b00601900622600200220b00601c006", "0x661300211b00620b00600900612b00205400620b006007006016002065", "0x1400661400200220b00600200900202911b05400900602900620b006065", "0x2c00620b00600900612b00202b00620b00600700601600202a00620b006", "0x620b00600200600c00202d02c02b00900602d00620b00602a006613002", "0x604b00201b00620b00600c00637300201700620b00600700615d002015", "0x6500201401000f00920b00601901b01701500c61500201900620b006016", "0x620b00600900612b00211b00620b00600600601600201c00620b006002", "0xc61700202b00620b00601400661600202a00620b00601c00611b002029", "0x61900202d00620b0060540066180020540650c400920b00602b02a02911b", "0x200900202f00696002e00620b00702c0060ed00202c00620b00602d006", "0x203300620b0060300063a800203000620b00602e00608e00200220b006", "0x60c400601600203900620b00600f00600c00204800620b0060330063a9", "0x203700620b00606500612b00211e00620b00601000615d00203500620b", "0x220b00600200900212003711e03503901600612000620b0060480063aa", "0xc400601600203a00620b00600f00600c00210d00620b00602f0063ab002", "0x7d00620b00606500612b00212400620b00601000615d00203c00620b006", "0x600200601600203e07d12403c03a01600603e00620b00610d0063aa002", "0x700920b00600f01600757600200f00620b00600600612b00201600620b", "0x200220b00600200900201400696101000620b00700c00657700200c009", "0x601700657b00201700620b00601500657a00201500620b006010006579", "0x20b00601900657d00200220b00601b00657c0020650c401c01901b01620b", "0x60c400657e00200220b00606500604d00200220b00601c0060fa002002", "0x202900620b00600700601600211b00620b00605400657f00205400620b", "0x2b02a02900900602b00620b00611b00658000202a00620b00600900612b", "0x20b00600700601600202c00620b00601400658100200220b006002009002", "0x900602f00620b00602c00658000202e00620b00600900612b00202d006", "0x35500200c00900720b00600900622500200220b00600211e00202f02e02d", "0x604d00200220b0060160060fa00201501401000f01601620b00600c006", "0x61a00200220b00601400634900200220b00601000634900200220b00600f", "0x620b00600200600c00201b00620b0060020ef00201700620b006015006", "0x60fc00202900620b00600700615d00211b00620b006006006016002054", "0x2a02911b05401661b00202b00620b00601b00604b00202a00620b006017", "0x202d00696202c00620b00706500661c0020650c401c01900c20b00602b", "0x602e00639c00203002f02e00920b00602c00661d00200220b006002009", "0x35500203300900720b00600900622500200220b00603000603300200220b", "0x604d00200220b0060480060fa00203711e03503904801620b006033006", "0x61a00200220b00611e00634900200220b00603500634900200220b006039", "0x20b00610d00659100210d00620b00612000659000212000620b006037006", "0x37b00203c00620b00603c00604b00203c00620b00603a00653c00203a006", "0x600261e00203e00620b0060020ef00207d12400720b00603c02f0c4009", "0x212a00620b00612a00604b00203e00620b00603e00604b00212a00620b", "0x204100900720b00600900622500212b12c00720b00612a03e12400937b", "0x34900200220b00612d00604d00204712e04512d04301620b006041006355", "0x200220b00604700639c00200220b00612e00634900200220b006045006", "0x612b00604b00213000620b0061310061bf00213100620b006043006361", "0x20b00600900622500204b04d00720b00613012b12c00937b00212b00620b", "0x604f0060fa00212f05305113204f01620b00604e00635500204e009007", "0x12f00639c00200220b00605300634900200220b00605100634900200220b", "0x204b00620b00604b00604b00205600620b0061320061b200200220b006", "0x213600900720b00600900622500205813300720b00605604b04d00937b", "0x4d00200220b0061340060fa00213705d13505b13401620b006136006355", "0x200220b00613700639c00200220b00605d00634900200220b00605b006", "0x605800604b00206100620b00605f00662000205f00620b00613500661f", "0x20b00600900622500206413800720b00606105813300937b00205800620b", "0x60670060fa00206c06a06913b06701620b006139006355002139009007", "0x6c00639c00200220b00606900634900200220b00613b00604d00200220b", "0x206f00620b00613c00662000213c00620b00606a00661f00200220b006", "0x35500207113f00720b00606f06413800937b00206400620b00606400604b", "0x604d00200220b0061410060fa00207707607514514101620b006009006", "0x61a00200220b00607600634900200220b00607500634900200220b006145", "0x20b00614600659100214600620b00607900659000207900620b006077006", "0x4b00207100620b00607100604b00207b00620b00614b00653c00214b006", "0x604b00207f14a00720b00607b07113f00937b00207b00620b00607b006", "0x607d07f14a00937b00207d00620b00607d00604b00207f00620b00607f", "0x215100620b00615100604b00215200620b0060026210021510c700720b", "0x33100214f14e00720b0061521510c700937b00215200620b00615200604b", "0x20b00601900600c00208500620b00608300633200208300620b00614f006", "0x21200216100620b00614e00615d00215e00620b00601c006016002150006", "0x8a00200220b00600200900216016115e15000c00616000620b006085006", "0x620b00601900600c00215f00620b00602d00633300200220b006009006", "0x621200215c00620b0060c400615d00216300620b00601c00601600215d", "0x1401000720b00600c00637200216215c16315d00c00616200620b00615f", "0x1400637300201c00620b00600700615d00201900620b00600200600c002", "0x60650c401c01900c61500206500620b00601600604b0020c400620b006", "0x11b00620b00700f00603000205400620b00600206500201b01701500920b", "0x60020ef00200220b00611b00603300200220b006002009002029006963", "0x200900200296400600202d00202b00620b00602a00604b00202a00620b", "0x604b00202c00620b00600200000200220b00602900603300200220b006", "0x620b00605400611b00202d00620b00601b00622400202b00620b00602c", "0x204803303000996502f02e00720b00702b02d054009006016622002054", "0x3500620b0060390063b700203900620b00600202a00200220b006002009", "0x350063b800203700620b00602f00612b00211e00620b00602e006016002", "0x480063b900200220b00600200900200296600600202d00212000620b006", "0x3700620b00603300612b00211e00620b00603000601600210d00620b006", "0x3c0063bb00203c00620b0061200063ba00212000620b00610d0063b8002", "0x20b00600200900207d00696712400620b00703a0063bc00203a00620b006", "0x62400212a00620b00603e01000762300203e00620b0061240065eb002002", "0x20b00611e00601600212b00620b00601500600c00212c00620b00612a006", "0x62500212d00620b00603700612b00204300620b00601700615d002041006", "0x200220b00600200900204512d04304112b01600604500620b00612c006", "0x20b00601500600c00212e00620b00607d00662600200220b006010006397", "0x12b00213000620b00601700615d00213100620b00611e006016002047006", "0x4d13013104701600604b00620b00612e00662500204d00620b006037006", "0x604d00200f01600720b00600900613000200c00620b00600213100204b", "0x1700620b00600c00604e00201500620b00600f00604b00200220b006016", "0x662700200220b00601400603300201401000720b00601701500704f002", "0x20b00601900605100201c01900720b00601000613200201b00620b006007", "0x6500604b00206500620b0060026280020c400620b00601c006053002002", "0xc406501b0060020166290020c400620b0060c400600f00206500620b006", "0x662a00200220b00600200900202c02b02a00996802911b05400920b007", "0x620b00611b00612b00202e00620b00605400601600202d00620b006029", "0x20b00600200900200296900600202d00203000620b00602d00662b00202f", "0x612b00202e00620b00602a00601600203300620b00602c00662c002002", "0x620b00603000662d00203000620b00603300662b00202f00620b00602b", "0x11e00696a03500620b00704800662f00204800620b00603900662e002039", "0x20b00603700600f00203700620b00603500663000200220b006002009002", "0x63200200220b00612000606100210d12000720b00603a00663100203a006", "0x603c0063a800200220b00600200900212400696b03c00620b00710d006", "0x212a00620b00602e00601600203e00620b00607d0063a900207d00620b", "0x12b12c12a00900612b00620b00603e0063aa00212c00620b00602f00612b", "0x4100620b00600213100200220b00612400603300200220b006002009002", "0x4304100705b00204300620b00604300604b00204300620b006002633002", "0x12e00620b00612d04500705d00204500620b00600213500212d00620b006", "0x2f00612b00213100620b00602e00601600204700620b00612e0063ab002", "0x200900204d13013100900604d00620b0060470063aa00213000620b006", "0x204e00620b00602e00601600204b00620b00611e0063ab00200220b006", "0x13204f04e00900613200620b00604b0063aa00204f00620b00602f00612b", "0x663500200220b00600200900200700696c00600620b007002006634002", "0x620b00600c00663600200c00620b00600900622300200900620b006006", "0x705d00200f00620b00600213500200220b006002009002016006006016", "0x20b00601400663600201400620b00601000663700201000620b00600700f", "0x620b00600f00663800200f00620b00600c0063bf002015006006015006", "0x60160065de00201400620b00600213100201000620b006002131002016", "0x20c400620b00600200600c00200220b0060150065df00201701500720b", "0x601000604e00205400620b0060170065e000206500620b006006006016", "0x602911b0540650c40165e600202900620b00601400604e00211b00620b", "0x96d02a00620b00701c0065e800200220b00600200600201c01901b00920b", "0x3300202e02d02c00920b00602a0065e900200220b00600200900202b006", "0x20b00602f00605100203002f00720b00602c00613200200220b00602e006", "0x5100203904800720b00602d00613200203300620b006030006053002002", "0x620b00603300600f00203500620b00603900605300200220b006048006", "0x11e00720b00703503300701900c5ea00203500620b00603500600f002033", "0x203c00620b00600202a00200220b00600200900203a10d12000996e037", "0x603700612b00207d00620b00611e00601600212400620b00603c0063b7", "0x200900200296f00600202d00212a00620b0061240063b800203e00620b", "0x207d00620b00612000601600212c00620b00603a0063b900200220b006", "0x612a0063ba00212a00620b00612c0063b800203e00620b00610d00612b", "0x97004300620b00712b0063bc00212b00620b0060410063bb00204100620b", "0x20b0060430065eb00200220b00600211e00200220b00600200900212d006", "0x204700620b00612e00648500212e00620b006045009007484002045006", "0x603e00612b00213000620b00607d00601600213100620b00601b00600c", "0x200900204b04d13013100c00604b00620b00604700644c00204d00620b", "0x12d00644b00200220b00600900604700200220b00600211e00200220b006", "0x13200620b00607d00601600204f00620b00601b00600c00204e00620b006", "0x13204f00c00605300620b00604e00644c00205100620b00603e00612b002", "0x20b00600900604700200220b00600211e00200220b006002009002053051", "0x601600205600620b00601b00600c00212f00620b00602b00644b002002", "0x620b00612f00644c00205800620b00600700612b00213300620b006019", "0x220b00600213900200f00620b00600206400213605813305600c006136", "0x1400605100201501400720b00600c00613200201000620b006002131002", "0x20c400620b00600600601600201c00620b00600200600c00200220b006", "0xc401c00c17600205400620b00601000604e00206500620b006015006099", "0x20b00701900607100200220b00600200600201901b01700920b006054065", "0x2b02a00720b00611b00614100200220b00600200900202900697111b006", "0x602a00613200202c00620b00600900663900200220b00602b006033002", "0x202f00620b00602e00605300200220b00602d00605100202e02d00720b", "0x20b00602f00600f00203000620b00603000604b00203000620b0060025d7", "0x11e03500997203904803300920b00702f03002c00701b01662900202f006", "0x603300601600212000620b00603900662a00200220b006002009002037", "0x203a00620b00612000662b00201600620b00604800612b00210d00620b", "0x203c00620b00603700662c00200220b00600200900200297300600202d", "0x603c00662b00201600620b00611e00612b00210d00620b006035006016", "0x212400620b00607d00662e00207d00620b00603a00662d00203a00620b", "0x212a00697403e00620b00712400662f00201600620b00601600f00713b", "0x212c00620b00603e00663000200220b00600211e00200220b006002009", "0x612c00600f00204500620b00610d00601600212d00620b00601700600c", "0x704300614b00204304112b00920b00612e04512d00914600212e00620b", "0x13000720b00604700607b00200220b00600200900213100697504700620b", "0x204e00697604b00620b00704d00614a00200220b00613000606100204d", "0x620b00604f00663b00204f00620b00604b00663a00200220b006002009", "0x612b00205300620b00604100601600205100620b00612b00600c002132", "0x205612f05305100c00605600620b00613200663c00212f00620b006016", "0x213300620b00600213100200220b00604e00603300200220b006002009", "0x605813300705b00205800620b00605800604b00205800620b006002633", "0x205b00620b00613613400705d00213400620b00600213500213600620b", "0x604100601600205d00620b00612b00600c00213500620b00605b00663d", "0x606100620b00613500663c00205f00620b00601600612b00213700620b", "0x213800620b00613100663d00200220b00600200900206105f13705d00c", "0x601600612b00213900620b00604100601600206400620b00612b00600c", "0x200900213b06713906400c00613b00620b00613800663c00206700620b", "0x600c00206900620b00612a00663d00200220b00600211e00200220b006", "0x620b00601600612b00206c00620b00610d00601600206a00620b006017", "0x20b00600200900206f13c06c06a00c00606f00620b00606900663c00213c", "0x20b00600900663e00200220b00600f00614500200220b00600211e002002", "0x601600207100620b00601700600c00213f00620b00602900663d002002", "0x620b00613f00663c00214500620b00600700612b00214100620b00601b", "0x20b00600c00603900200c00620b00600204800207514514107100c006075", "0x200900201401000797700f01600720b00700c00600200903500200c006", "0x201600620b00601600600c00201500620b00600700601b00200220b006", "0x61a300200220b00600200900201900697801b01700720b0070150060db", "0x620b00601c0061a40020c400620b00601700609900201c00620b00601b", "0x5400620b00600202a00200220b00600200900200297900600202d002065", "0x11b0061a40020c400620b00601900609900211b00620b0060540061a5002", "0x2900620b00602900600f00202900620b0060c400605300206500620b006", "0x211e00200220b00600200900202b00697a02a00620b0070650060df002", "0x202f00620b00602c00604b00202c00620b00602a0061a600200220b006", "0x603300202e02d00720b00603002f00704f00203000620b00600900604e", "0x11e00620b00600f00601600203500620b00601600600c00200220b00602e", "0x3500c21800212000620b00602d00604e00203700620b00602900600f002", "0x3a00697b10d00620b00703900607100203904803300920b00612003711e", "0x612400603300212403c00720b00610d00614100200220b006002009002", "0x4e00203e00620b00604800601600207d00620b00603300600c00200220b", "0x31c00200220b00600200900200297c00600202d00212a00620b00603c006", "0x20b00604800601600212b00620b00603300600c00212c00620b00603a006", "0x20b00600200900204304112b00900604300620b00612c00631b002041006", "0x20b00602900606100200220b00602b00603300200220b00600211e002002", "0x604e00203e00620b00600f00601600207d00620b00601600600c002002", "0x620b00612d12a00731900212d00620b00600202a00212a00620b006009", "0x601600204700620b00607d00600c00212e00620b00604500631a002045", "0x900213013104700900613000620b00612e00631b00213100620b00603e", "0x605100200220b00600700606100200220b00600211e00200220b006002", "0x4b00204b00620b00600213400204d00620b00600213100200220b006009", "0x20b00600213500204e00620b00604b04d00705b00204b00620b00604b006", "0x205100620b00613200631c00213200620b00604e04f00705d00204f006", "0x605100631b00212f00620b00601400601600205300620b00601000600c", "0x20b00600263f00200220b00600700639b00205612f05300900605600620b", "0x611b00201600620b00600206500200c00620b006009006224002009006", "0xc01600600200c64100200c00620b00600c00664000201600620b006016", "0x664200200220b00600200900201b01701500997d01401000f00920b007", "0x620b00601000612b00201c00620b00600f00601600201900620b006014", "0x20b00600200900200297e00600202d00206500620b0060190066430020c4", "0x612b00201c00620b00601500601600205400620b00601b006644002002", "0x620b00606500664500206500620b0060540066430020c400620b006017", "0x2b00697f02a00620b00711b00615100211b00620b006029006646002029", "0x20b00602c00633100202c00620b00602a00615200200220b006002009002", "0x12b00202f00620b00601c00601600202e00620b00602d00633200202d006", "0x203303002f00900603300620b00602e00621200203000620b0060c4006", "0x620b00601c00601600204800620b00602b00633300200220b006002009", "0x3900900611e00620b00604800621200203500620b0060c400612b002039", "0x900622400200900620b00600264700200220b00600700639a00211e035", "0x201600620b00601600611b00201600620b00600206500200c00620b006", "0x1401000f00920b00700c01600600200c64100200c00620b00600c006640", "0x201900620b00601400664200200220b00600200900201b017015009980", "0x60190066430020c400620b00601000612b00201c00620b00600f006016", "0x601b00664400200220b00600200900200298100600202d00206500620b", "0x20c400620b00601700612b00201c00620b00601500601600205400620b", "0x602900664600202900620b00606500664500206500620b006054006643", "0x220b00600200900202b00698202a00620b00711b00615100211b00620b", "0x2d00633200202d00620b00602c00633100202c00620b00602a006152002", "0x3000620b0060c400612b00202f00620b00601c00601600202e00620b006", "0x200220b00600200900203303002f00900603300620b00602e006212002", "0x60c400612b00203900620b00601c00601600204800620b00602b006333", "0x700639900211e03503900900611e00620b00604800621200203500620b", "0x6500200c00620b00600900622400200900620b00600264800200220b006", "0x620b00600c00664000201600620b00601600611b00201600620b006002", "0x201b01701500998301401000f00920b00700c01600600200c64100200c", "0x620b00600f00601600201900620b00601400664200200220b006002009", "0x202d00206500620b0060190066430020c400620b00601000612b00201c", "0x601600205400620b00601b00664400200220b006002009002002984006", "0x620b0060540066430020c400620b00601700612b00201c00620b006015", "0x615100211b00620b00602900664600202900620b006065006645002065", "0x20b00602a00615200200220b00600200900202b00698502a00620b00711b", "0x1600202e00620b00602d00633200202d00620b00602c00633100202c006", "0x20b00602e00621200203000620b0060c400612b00202f00620b00601c006", "0x620b00602b00633300200220b00600200900203303002f009006033006", "0x621200203500620b0060c400612b00203900620b00601c006016002048", "0x264900200220b00600900639500211e03503900900611e00620b006048", "0x201700620b00600200600c00201600620b00600206500200c00620b006", "0x601600611b00201900620b00600700612b00201b00620b006006006016", "0x60c401c01901b01701664a0020c400620b00600c00661600201c00620b", "0x200900205400698606500620b00701500664b00201501401000f00c20b", "0x202a00620b00611b00664d00211b00620b00606500664c00200220b006", "0x900202c00698702b00620b0070290063e500202900620b00602a006220", "0x2e00620b00602d00664e00202d00620b00602b0063e600200220b006002", "0x1000601600203000620b00600f00600c00202f00620b00602e00664f002", "0x3900620b00602f00665000204800620b00601400612b00203300620b006", "0x3500620b00602c00665100200220b00600200900203904803303000c006", "0x1400612b00203700620b00601000601600211e00620b00600f00600c002", "0x900210d12003711e00c00610d00620b00603500665000212000620b006", "0x3c00620b00600f00600c00203a00620b00605400665100200220b006002", "0x3a00665000207d00620b00601400612b00212400620b006010006016002", "0x65200200700620b00600200665200203e07d12403c00c00603e00620b006", "0x20b00600c00665400200c00620b00600700665200200900620b006006006", "0x65200200220b00600f00604d00201000f00720b006016006130002016006", "0x20b00601500613000201500620b00601400665400201400620b006009006", "0x1b200201900620b0060100061b200200220b00601700604d00201b017007", "0x60c400604b0020c400620b00601c0190071c100201c00620b00601b006", "0x200220b00600200900206500698800220b0070c40061c50020c400620b", "0x20b00611b00602c00211b00620b00605400602e00205400620b00600202a", "0x20b0060650060f200200220b00600200900200298900600202d002029006", "0x2b00602c00202b00620b00602a00602b00202a00620b00600202a002002", "0x60070063e200202c00600602c00620b00602900636f00202900620b006", "0x65400200f00620b00600264900200220b00601600639500201600c00720b", "0x620b00600206500201400620b00600f00622400201000620b006009006", "0x1662200201400620b00601400664000201500620b00601500611b002015", "0x20b0060020090020c401c01900998a01b01700720b007010014015006002", "0x1700601600205400620b0060650063b700206500620b00600202a002002", "0x2a00620b0060540063b800202900620b00601b00612b00211b00620b006", "0x2b00620b0060c40063b900200220b00600200900200298b00600202d002", "0x2b0063b800202900620b00601c00612b00211b00620b006019006016002", "0x2c00620b00602d0063bb00202d00620b00602a0063ba00202a00620b006", "0x65eb00200220b00600200900202f00698c02e00620b00702c0063bc002", "0x20b00603300665600203300620b00603000c00765300203000620b00602e", "0x65700203500620b00602900612b00203900620b00611b006016002048006", "0x639500200220b00600200900211e03503900900611e00620b006048006", "0x12000620b00611b00601600203700620b00602f00665800200220b00600c", "0x10d12000900603a00620b00603700665700210d00620b00602900612b002", "0x213100201600620b00600f00665a00200f00620b00600c0063ee00203a", "0x1701500720b0060160065de00201400620b00600213100201000620b006", "0x60060060160020c400620b00600200600c00200220b0060150065df002", "0x211b00620b00601000604e00205400620b0060170065e000206500620b", "0x1901b00920b00602911b0540650c40165e600202900620b00601400604e", "0x900202b00698d02a00620b00701c0065e800200220b00600200600201c", "0x20b00602e00603300202e02d02c00920b00602a0065e900200220b006002", "0x605300200220b00602f00605100203002f00720b00602c006132002002", "0x20b00604800605100203904800720b00602d00613200203300620b006030", "0x600f00203300620b00603300600f00203500620b006039006053002002", "0x12000998e03711e00720b00703503300701900c5ea00203500620b006035", "0x603c0063b700203c00620b00600202a00200220b00600200900203a10d", "0x203e00620b00603700612b00207d00620b00611e00601600212400620b", "0x200220b00600200900200298f00600202d00212a00620b0061240063b8", "0x610d00612b00207d00620b00612000601600212c00620b00603a0063b9", "0x204100620b00612a0063ba00212a00620b00612c0063b800203e00620b", "0x900212d00699004300620b00712b0063bc00212b00620b0060410063bb", "0x48400204500620b0060430065eb00200220b00600211e00200220b006002", "0x601b00600c00204700620b00612e00648500212e00620b006045009007", "0x204d00620b00603e00612b00213000620b00607d00601600213100620b", "0x200220b00600200900204b04d13013100c00604b00620b00604700644c", "0x4e00620b00612d00644b00200220b00600900604700200220b00600211e", "0x3e00612b00213200620b00607d00601600204f00620b00601b00600c002", "0x900205305113204f00c00605300620b00604e00644c00205100620b006", "0x644b00200220b00600900604700200220b00600211e00200220b006002", "0x620b00601900601600205600620b00601b00600c00212f00620b00602b", "0x5600c00613600620b00612f00644c00205800620b00600700612b002133", "0x3500200c00620b00600c00603900200c00620b006002048002136058133", "0x200220b00600200900201401000799100f01600720b00700c006002009", "0x701500665b00201600620b00601600600c00201500620b006007006590", "0x620b00601b00665c00200220b00600200900201900699201b01700720b", "0x202d00206500620b00601c00665d0020c400620b00601700659600201c", "0x5400665e00205400620b00600202a00200220b006002009002002993006", "0x6500620b00611b00665d0020c400620b00601900659600211b00620b006", "0x6500666000202900620b0060290060fc00202900620b0060c40061d6002", "0x620b00602a00659b00200220b00600200900202b00699402a00620b007", "0x202f02e02d00920b00602c00659e00202c00620b00602c00659c00202c", "0x620b00602d00636100200220b00602f00659f00200220b00602e00604d", "0x636000200220b0060330060fa00204803300720b006030006360002030", "0x611e0060fa00203711e00720b00604800636000203503900720b006009", "0x3f100200220b0061200060fa00210d12000720b00603500636000200220b", "0x612403c00766100212400620b00610d0063f100203c00620b006037006", "0x207d00620b00607d00602c00207d00620b00603a00602f00203a00620b", "0x703e00603000203e00620b00603e00602c00203e00620b00607d00602f", "0x3300200220b00600211e00200220b00600200900212c00699512a00620b", "0x620b00600f00601600212d00620b00601600600c00200220b00612a006", "0xc3f200204700620b0060390063f100212e00620b0060290060fc002045", "0x699613100620b0070430063f300204304112b00920b00604712e04512d", "0x4d00766300204b04d00720b00613100666200200220b006002009002130", "0x620b00612b00600c00204f00620b00604e00666400204e00620b00604b", "0x13200900605300620b00604f00666500205100620b006041006016002132", "0x12b00600c00212f00620b00613000621f00200220b006002009002053051", "0x5800620b00612f00666500213300620b00604100601600205600620b006", "0x603300200220b00600211e00200220b006002009002058133056009006", "0x13100200220b00602900639c00200220b0060390060fa00200220b00612c", "0x13400620b00613400604b00213400620b00600266600213600620b006002", "0x13500705d00213500620b00600213500205b00620b00613413600705b002", "0x620b00601600600c00213700620b00605d00621f00205d00620b00605b", "0x5f00900613800620b00613700666500206100620b00600f00601600205f", "0x20b00602b00603300200220b00600211e00200220b006002009002138061", "0x6402900766300206400620b00600202a00200220b0060090060fa002002", "0x13b00620b00601600600c00206700620b00613900666400213900620b006", "0x6913b00900606a00620b00606700666500206900620b00600f006016002", "0x220b0060090060fa00200220b00600211e00200220b00600200900206a", "0x620b00600213400206c00620b00600213100200220b00600700639c002", "0x13500206f00620b00613c06c00705b00213c00620b00613c00604b00213c", "0x20b00607100621f00207100620b00606f13f00705d00213f00620b006002", "0x66500207500620b00601400601600214500620b00601000600c002141006", "0x201500620b00600200600c00207607514500900607600620b006141006", "0x65fb00201401000720b0060170150075fa00201700620b00600f00600f", "0x20b00601b0065fc00200220b00600200900201900699701b00620b007014", "0x202c00620b00601000600c0020650c400720b00601c0065fd00201c006", "0x600900612b00202e00620b00600700601600202d00620b00600600612c", "0x3000620b00603000604100203000c00720b00600c0065fe00202f00620b", "0x600f00203300620b00603300604b00203301600720b00601600635a002", "0x11b05401620b00604803303002f02e02d02c0105d400204800620b0060c4", "0x220b00600200900203500699803900620b00702b0060ed00202b02a029", "0x3700602c00203700620b00611e00602f00211e00620b00603900608e002", "0x20b00600200900210d00699912000620b00703700603000203700620b006", "0x637100203a00c00720b00600c0065fe00200220b006120006033002002", "0x200220b00603c00639500204112b12c12a03e07d12403c01420b00603a", "0x220b00612a00639800200220b00603e00639900200220b00612400639b", "0x20b00604100620c00200220b00612b00639600200220b00612c006397002", "0x63d300204700620b00602a00612b00212e00620b006029006016002002", "0x615100204512d04300920b00613104712e0093d400213100620b00607d", "0x20b00613000615200200220b00600200900204d00699a13000620b007045", "0x4d00200220b00600200900204e00699b00220b00704b0061c500204b006", "0x4f00620b00606500601b00200220b00600c00604700200220b006016006", "0x60c400205305100720b00613200601c00213200620b00604f006019002", "0x13305600720b00612f00601c00212f00620b00600206500200220b006051", "0x613300605400205800620b00605300605400200220b0060560060c4002", "0x99c00220b00713605800702900205800620b00605800611b00213600620b", "0x20b00613400602b00213400620b00600202a00200220b006002009002002", "0x600200900200299d00600202d00213500620b00605b00602c00205b006", "0x602c00213700620b00605d00602e00205d00620b00600202a00200220b", "0x620b00605f00602c00205f00620b00613500602f00213500620b006137", "0x3300200220b00600200900213800699e06100620b00705f00603000205f", "0x620b00611b00612c00206400620b00605400600c00200220b006061006", "0x202d00213b00620b00612d00612b00206700620b006043006016002139", "0x600213100200220b00613800603300200220b00600200900200299f006", "0x5b00206a00620b00606a00604b00206a00620b0060025bb00206900620b", "0x606c13c00705d00213c00620b00600213500206c00620b00606a069007", "0x207100620b00605400600c00213f00620b00606f00663700206f00620b", "0x612d00612b00214500620b00604300601600214100620b00611b00612c", "0x900207607514514107101600607600620b00613f00663600207500620b", "0x214a00620b00605400600c00200220b00604e0060f200200220b006002", "0x612d00612b0020c700620b00604300601600207f00620b00611b00612c", "0x214e00620b00601600604b00215200620b00600c00604100215100620b", "0x1620b00614f14e1521510c707f14a0105b800214f00620b00606500600f", "0x60020090020850069a008300620b00707b0060ed00207b14b146079077", "0x2c00215e00620b00615000602f00215000620b00608300608e00200220b", "0x20090021600069a116100620b00715e00603000215e00620b00615e006", "0x12c00206400620b00607700600c00200220b00616100603300200220b006", "0x20b00614b00612b00206700620b00614600601600213900620b006079006", "0x622300215d00620b00615f00663500215f00620b00600202a00213b006", "0x620b00613900666700215c00620b00606400636e00216300620b00615d", "0x663600215400620b00613b00644900208700620b006067006448002162", "0x3300200220b00600200900215715408716215c01600615700620b006163", "0x215b00620b0060025bb00208a00620b00600213100200220b006160006", "0x600213500216e00620b00615b08a00705b00215b00620b00615b00604b", "0x8e00620b0060ed0066370020ed00620b00616e16800705d00216800620b", "0x1460060160020d000620b00607900612c00216b00620b00607700600c002", "0x16d00620b00608e00663600209200620b00614b00612b00216c00620b006", "0x620b00608500663700200220b00600200900216d09216c0d016b016006", "0x601600217300620b00607900612c00209400620b00607700600c002171", "0x620b00617100663600217500620b00614b00612b00209600620b006146", "0x20b00606500606100200220b0060020090020d11750961730940160060d1", "0x604d00663700200220b00600c00604700200220b00601600604d002002", "0x209b00620b00611b00612c00217600620b00605400600c00209900620b", "0x609900663600209d00620b00612d00612b00217a00620b006043006016", "0x10d00603300200220b00600200900217c09d17a09b17601600617c00620b", "0x606100200220b00600c00604700200220b00601600604d00200220b006", "0x4b0020a000620b0060022220020cc00620b00600213100200220b006065", "0x20b00600213500217d00620b0060a00cc00705b0020a000620b0060a0006", "0x20a400620b00617e00663700217e00620b00617d0a200705d0020a2006", "0x60290060160020cd00620b00611b00612c00217f00620b00605400600c", "0x618000620b0060a40066360020a800620b00602a00612b0020d200620b", "0x200220b00601600604d00200220b0060020090021800a80d20cd17f016", "0x620b00603500663700200220b00606500606100200220b00600c006047", "0x601600218100620b00611b00612c0020ab00620b00605400600c0020ce", "0x620b0060ce0066360020c800620b00602a00612b0020cf00620b006029", "0x20b00600c00604700200220b0060020090020c90c80cf1810ab0160060c9", "0x1000600c0020ca00620b00601900663700200220b00601600604d002002", "0xb300620b0060070060160020c600620b00600600612c0020cb00620b006", "0xc60cb01600618e00620b0060ca0066360020b500620b00600900612b002", "0x201b00620b0060020ef00201701500720b00600f00613000218e0b50b3", "0x60170061b200200220b00601900604d00201c01900720b00601b006130", "0x200220b00606500604d00205406500720b0060c40061300020c400620b", "0x2900604d00202a02900720b00611b00613000211b00620b00601c0061b2", "0x202c00620b00602a0061b200202b00620b0060540061b200200220b006", "0x2d0061c500202d00620b00602d00604b00202d00620b00602c02b0071c1", "0x202f00620b00600202a00200220b00600200900202e0069a200220b007", "0x9a300600202d00203300620b00603000602c00203000620b00602f00602e", "0x620b00600202a00200220b00602e0060f200200220b006002009002002", "0x602f00203300620b00603900602c00203900620b00604800602b002048", "0x620b00603500602f00203500620b00603500602c00203500620b006033", "0x1200069a403700620b00711e00603000211e00620b00611e00602c00211e", "0x620b00600700601600200220b00603700603300200220b006002009002", "0x3c03a10d00920b00607d1240070f400207d00620b00600c00612b002124", "0x61ca00200220b00600200900212a0069a503e00620b00703c0061c8002", "0x1020b00612b0061eb00212b00620b00612c0061d400212c00620b00603e", "0x20b0060430060fa00200220b00604100604d00213104712e04512d043041", "0x612e00604d00200220b00604500606100200220b00612d0061ef002002", "0x612b00204e00620b00610d00601600200220b00613100604d00200220b", "0x4700604b00204b04d13000920b00604f04e00738300204f00620b00603a", "0x20b0060020090020510069a613200620b00704b0060ea00204700620b006", "0x5813305612f01420b00601600637100205300620b0061320060ec002002", "0x39900200220b00613300639a00200220b00612f00639500213505b134136", "0x200220b00613400639700200220b00613600639800200220b006058006", "0x620b00613000601600200220b00613500620c00200220b00605b006396", "0x93d100206400620b0060560063d000213800620b00604d00612b002061", "0x670069a713900620b00705f00615100205f13705d00920b006064138061", "0x620b00600266800213b00620b00613900615200200220b006002009002", "0x206c00620b0060020ef00206a00620b00613b05304706900c66d002069", "0x606a00666e00207100620b00606c00604b00213f00620b00600900615d", "0x620b00600238200206f13c00720b00614107113f00966f00214100620b", "0x7607500720b00614506f13c00937b00214500620b00614500604b002145", "0x7600604b00207b00620b00600600612c00214b00620b00600200600c002", "0xc700620b00601000604b00207f00620b00601500604b00214a00620b006", "0x920b0061510c707f14a07b14b00f67000215100620b00601400604b002", "0x215200620b00615200602c00215200620b00614600602f002146079077", "0x900214f0069a814e00620b00715200603000207500620b00607500615d", "0x63500208300620b00600202a00200220b00614e00603300200220b006002", "0x20b00607700600c00215000620b00608500622300208500620b006083006", "0x15d00216000620b00605d00601600216100620b00607900612c00215e006", "0x20b00615000663600215d00620b00613700612b00215f00620b006075006", "0x14f00603300200220b00600200900216315d15f16016115e00f006163006", "0x604b00216200620b00600222200215c00620b00600213100200220b006", "0x620b00600213500208700620b00616215c00705b00216200620b006162", "0xc00208a00620b00615700663700215700620b00608715400705d002154", "0x20b00605d00601600216e00620b00607900612c00215b00620b006077006", "0x63600208e00620b00613700612b0020ed00620b00607500615d002168006", "0x220b00600200900216b08e0ed16816e15b00f00616b00620b00608a006", "0x20b00601500604d00200220b00601000604d00200220b00601400604d002", "0x606700663700200220b0060530060fa00200220b00604700604d002002", "0x209200620b00600600612c00216c00620b00600200600c0020d000620b", "0x613700612b00217100620b00600900615d00216d00620b00605d006016", "0x217309417116d09216c00f00617300620b0060d000663600209400620b", "0x200220b00601600604700200220b00604700604d00200220b006002009", "0x220b00601500604d00200220b00601000604d00200220b00601400604d", "0x600612c00217500620b00600200600c00209600620b006051006637002", "0x17600620b00600900615d00209900620b0061300060160020d100620b006", "0xd117500f00617a00620b00609600663600209b00620b00604d00612b002", "0x604d00200220b00601600604700200220b00600200900217a09b176099", "0x63700200220b00601500604d00200220b00601000604d00200220b006014", "0x20b00600600612c00217c00620b00600200600c00209d00620b00612a006", "0x12b00217d00620b00600900615d0020a000620b00610d0060160020cc006", "0x17d0a00cc17c00f00617e00620b00609d0066360020a200620b00603a006", "0x601600604700200220b00612000603300200220b00600200900217e0a2", "0x1500604d00200220b00601000604d00200220b00601400604d00200220b", "0x604b00217f00620b0060023f60020a400620b00600213100200220b006", "0x620b0060021350020cd00620b00617f0a400705b00217f00620b00617f", "0xc00218000620b0060a80066370020a800620b0060cd0d200705d0020d2", "0x20b0060070060160020ab00620b00600600612c0020ce00620b006002006", "0x6360020c800620b00600c00612b0020cf00620b00600900615d002181006", "0x20b0060090063980020c90c80cf1810ab0ce00f0060c900620b006180006", "0x600200600c00201600620b00600206500200c00620b006002669002002", "0x201900620b00600700612b00201b00620b00600600601600201700620b", "0x1b01701666a0020c400620b00600c00661600201c00620b00601600611b", "0x69a906500620b00701500666b00201501401000f00c20b0060c401c019", "0x611b00667100211b00620b00606500666c00200220b006002009002054", "0x9aa02b00620b0070290060c800202900620b00602a00667300202a00620b", "0x2d00652800202d00620b00602b0060c900200220b00600200900202c006", "0x3000620b00600f00600c00202f00620b00602e00621400202e00620b006", "0x2f00652900204800620b00601400612b00203300620b006010006016002", "0x2c00652a00200220b00600200900203904803303000c00603900620b006", "0x3700620b00601000601600211e00620b00600f00600c00203500620b006", "0x3711e00c00610d00620b00603500652900212000620b00601400612b002", "0xf00600c00203a00620b00605400652a00200220b00600200900210d120", "0x7d00620b00601400612b00212400620b00601000601600203c00620b006", "0x20b00600900621e00203e07d12403c00c00603e00620b00603a006529002", "0x201401000720b00600f00621e00200f00620b00600243e00201600c007", "0x20b00601400661f00201500620b00601600661f00200220b006010006349", "0x1600200220b0060020090020029ab00220b007017015007678002017006", "0x60650c400736500206500620b00600700612b0020c400620b006006006", "0x600200900211b0069ac05400620b00701c00636600201c01901b00920b", "0x202a02900720b00602900635b00202900620b00605400636800200220b", "0x9ad02d02c00720b00702b02a00200936900202b00c00720b00600c00635b", "0x60024d200200220b00602d00634900200220b00600200900202f02e007", "0x203500620b00600c00621b00203900620b00602c00600c00203000620b", "0x36600204803300720b00611e0350390094d300211e00620b00603000621b", "0x603700636800200220b0060020090021200069ae03700620b007048006", "0x900207d1240079af03c03a00720b00710d02903300936900210d00620b", "0x44300203e00620b00600202a00200220b00603c00634900200220b006002", "0x20b00612c00667a00212c00620b00612a00667900212a00620b00603e006", "0x12b00204300620b00601b00601600204100620b00603a00600c00212b006", "0x4512d04304100c00604500620b00612b00667b00212d00620b006019006", "0x12e00620b00600202a00200220b00607d00634900200220b006002009002", "0x13100667a00213100620b00604700667900204700620b00612e0064f4002", "0x4b00620b00601b00601600204d00620b00612400600c00213000620b006", "0x4b04d00c00604f00620b00613000667b00204e00620b00601900612b002", "0x612000667400200220b00602900634900200220b00600200900204f04e", "0x205300620b00601b00601600205100620b00603300600c00213200620b", "0x12f05305100c00605600620b00613200667b00212f00620b00601900612b", "0x20b00602900634900200220b00602f00634900200220b006002009002056", "0x613300667500213300620b00600202a00200220b00600c006349002002", "0x213400620b00613600667a00213600620b00605800667900205800620b", "0x601900612b00213500620b00601b00601600205b00620b00602e00600c", "0x200900213705d13505b00c00613700620b00613400667b00205d00620b", "0xc00205f00620b00611b00667400200220b00600c00634900200220b006", "0x20b00601900612b00213800620b00601b00601600206100620b006002006", "0x600200900213906413806100c00613900620b00605f00667b002064006", "0x6700640300206700620b00600202a00200220b00600c00634900200220b", "0x6a00620b00606900667a00206900620b00613b00667900213b00620b006", "0x700612b00213c00620b00600600601600206c00620b00600200600c002", "0x67600213f06f13c06c00c00613f00620b00606a00667b00206f00620b006", "0x20b0060020090020160069b200c0069b10090069b000700620b00c002006", "0x90020150069b50140069b40100069b300f00620b00c006006676002002", "0x220b00601700603300201b01700720b00600700667700200220b006002", "0x1b0061ff00200220b00601900603300201c01900720b00600f006677002", "0x620b00605406500767c00205400620b00601c0061ff00206500620b006", "0x20b0060020090020029b600600202d00211b00620b0060c400636f0020c4", "0x20b00600202a00200220b00600700603300200220b006010006033002002", "0x2d00211b00620b00602a00602c00202a00620b00602900602b002029006", "0x603300200220b00601400603300200220b0060020090020029b6006002", "0x202c00620b00602b00602b00202b00620b00600202a00200220b006007", "0x200220b0060020090020029b600600202d00211b00620b00602c00602c", "0x2d00620b00600202a00200220b00600700603300200220b006015006033", "0x11b00636f00211b00620b00602e00602c00202e00620b00602d00602b002", "0x600667600200220b0060020090020029b700600202d00202f00620b006", "0x200220b0060020090020390069ba0480069b90330069b803000620b00c", "0x3500620b00600202a00200220b00600900603300200220b006030006033", "0x600202d00203700620b00611e00602c00211e00620b00603500602b002", "0x603300210d12000720b00600900667700200220b0060020090020029bb", "0x220b00603a00603300203c03a00720b00603300667700200220b006120", "0x7d00767c00203e00620b00603c0061ff00207d00620b00610d0061ff002", "0x20029bb00600202d00203700620b00612400636f00212400620b00603e", "0x200220b00600900603300200220b00604800603300200220b006002009", "0x20b00612c00602c00212c00620b00612a00602b00212a00620b00600202a", "0x20b00603900603300200220b0060020090020029bb00600202d002037006", "0x612b00602b00212b00620b00600202a00200220b006009006033002002", "0x202f00620b00603700636f00203700620b00604100602c00204100620b", "0x9bc04300620b00c00600667600200220b0060020090020029b700600202d", "0x20b00604300603300200220b00600200900212e0069be0450069bd12d006", "0x604700602b00204700620b00600202a00200220b00600c006033002002", "0x20090020029bf00600202d00213000620b00613100602c00213100620b", "0x202a00200220b00600c00603300200220b00612d00603300200220b006", "0x13000620b00604b00602c00204b00620b00604d00602b00204d00620b006", "0x4e00720b00600c00667700200220b0060020090020029bf00600202d002", "0x603300205113200720b00604500667700200220b00604e00603300204f", "0x5600620b0060510061ff00212f00620b00604f0061ff00200220b006132", "0x202d00213000620b00605300636f00205300620b00605612f00767c002", "0xc00603300200220b00612e00603300200220b0060020090020029bf006", "0x2c00205800620b00613300602b00213300620b00600202a00200220b006", "0x29b700600202d00202f00620b00613000636f00213000620b006058006", "0x5b0069c11340069c013600620b00c00600667600200220b006002009002", "0x1600603300200220b00613600603300200220b0060020090021350069c2", "0x2c00213700620b00605d00602b00205d00620b00600202a00200220b006", "0x3300200220b0060020090020029c300600202d00205f00620b006137006", "0x206100620b00600202a00200220b00601600603300200220b006134006", "0x9c300600202d00205f00620b00613800602c00213800620b00606100602b", "0x20b00601600603300200220b00605b00603300200220b006002009002002", "0x13900602c00213900620b00606400602b00206400620b00600202a002002", "0x1600667700200220b0060020090020029c300600202d00205f00620b006", "0x6900720b00613500667700200220b00606700603300213b06700720b006", "0x6a0061ff00213c00620b00613b0061ff00200220b00606900603300206a", "0x620b00606c00636f00206c00620b00606f13c00767c00206f00620b006", "0x13f00600613f00620b00602f00636f00202f00620b00605f00636f00205f", "0x600266900200220b00600f00639800200f01600720b0060090063fb002", "0x1600201c00620b00600200600c00201400620b00600206500201000620b", "0x20b00601400611b00206500620b00600700612b0020c400620b006006006", "0x67e00202900620b00600c0060c600211b00620b006010006616002054006", "0x20b00701900667f00201901b01701500c20b00602911b0540650c401c00f", "0x202c00620b00602a00668300200220b00600200900202b0069c402a006", "0x702d0063bc00202d00620b00602e0063bb00202e00620b00602c0063b8", "0x3300620b00602f0065eb00200220b0060020090020300069c502f00620b", "0x600c00203900620b00604800668000204800620b006033016007684002", "0x620b00601b00612b00211e00620b00601700601600203500620b006015", "0x20b00600200900212003711e03500c00612000620b006039006681002037", "0x1500600c00210d00620b00603000668200200220b006016006398002002", "0x12400620b00601b00612b00203c00620b00601700601600203a00620b006", "0x220b00600200900207d12403c03a00c00607d00620b00610d006681002", "0x601500600c00203e00620b00602b00668200200220b006016006398002", "0x212b00620b00601b00612b00212c00620b00601700601600212a00620b", "0x620b00600200668500204112b12c12a00c00604100620b00603e006681", "0x643d00201600620b00600700643d00200900620b006006006685002007", "0x20b00600c00636f00200c00620b00600f01600721a00200f00620b006009", "0x620b00600f00668700200f00620b00600c006446002010006006010006", "0x60160065de00201400620b00600213100201000620b006002131002016", "0x20c400620b00600200600c00200220b0060150065df00201701500720b", "0x601000604e00205400620b0060170065e000206500620b006006006016", "0x602911b0540650c40165e600202900620b00601400604e00211b00620b", "0x9c602a00620b00701c0065e800200220b00600200600201c01901b00920b", "0x3300202e02d02c00920b00602a0065e900200220b00600200900202b006", "0x20b00602f00605100203002f00720b00602c00613200200220b00602e006", "0x5100203904800720b00602d00613200203300620b006030006053002002", "0x620b00603300600f00203500620b00603900605300200220b006048006", "0x11e00720b00703503300701900c5ea00203500620b00603500600f002033", "0x203c00620b00600202a00200220b00600200900203a10d1200099c7037", "0x603700612b00207d00620b00611e00601600212400620b00603c0063b7", "0x20090020029c800600202d00212a00620b0061240063b800203e00620b", "0x207d00620b00612000601600212c00620b00603a0063b900200220b006", "0x612a0063ba00212a00620b00612c0063b800203e00620b00610d00612b", "0x9c904300620b00712b0063bc00212b00620b0060410063bb00204100620b", "0x20b0060430065eb00200220b00600211e00200220b00600200900212d006", "0x204700620b00612e00648500212e00620b006045009007484002045006", "0x603e00612b00213000620b00607d00601600213100620b00601b00600c", "0x200900204b04d13013100c00604b00620b00604700644c00204d00620b", "0x12d00644b00200220b00600900604700200220b00600211e00200220b006", "0x13200620b00607d00601600204f00620b00601b00600c00204e00620b006", "0x13204f00c00605300620b00604e00644c00205100620b00603e00612b002", "0x20b00600900604700200220b00600211e00200220b006002009002053051", "0x601600205600620b00601b00600c00212f00620b00602b00644b002002", "0x620b00612f00644c00205800620b00600700612b00213300620b006019", "0x1600620c00201600c00720b0060070065d300213605813305600c006136", "0x22400201000620b00600900653c00200f00620b00600268800200220b006", "0x620b00601500611b00201500620b00600206500201400620b00600f006", "0x720b00701001401500600201662200201400620b006014006640002015", "0x6500620b00600202a00200220b0060020090020c401c0190099ca01b017", "0x1b00612b00211b00620b00601700601600205400620b0060650063b7002", "0x90020029cb00600202d00202a00620b0060540063b800202900620b006", "0x11b00620b00601900601600202b00620b0060c40063b900200220b006002", "0x2a0063ba00202a00620b00602b0063b800202900620b00601c00612b002", "0x2e00620b00702c0063bc00202c00620b00602d0063bb00202d00620b006", "0x768d00203000620b00602e0065eb00200220b00600200900202f0069cc", "0x20b00611b00601600204800620b00603300668e00203300620b00603000c", "0x900611e00620b00604800621d00203500620b00602900612b002039006", "0x2f00668900200220b00600c00620c00200220b00600200900211e035039", "0x10d00620b00602900612b00212000620b00611b00601600203700620b006", "0x720b0060070065a500203a10d12000900603a00620b00603700621d002", "0x900653c00200f00620b00600268a00200220b00601600639600201600c", "0x201500620b00600206500201400620b00600f00622400201000620b006", "0x600201662200201400620b00601400664000201500620b00601500611b", "0x200220b0060020090020c401c0190099cd01b01700720b007010014015", "0x20b00601700601600205400620b0060650063b700206500620b00600202a", "0x2d00202a00620b0060540063b800202900620b00601b00612b00211b006", "0x1600202b00620b0060c40063b900200220b0060020090020029ce006002", "0x20b00602b0063b800202900620b00601c00612b00211b00620b006019006", "0x3bc00202c00620b00602d0063bb00202d00620b00602a0063ba00202a006", "0x602e0065eb00200220b00600200900202f0069cf02e00620b00702c006", "0x4800620b00603300668c00203300620b00603000c00768b00203000620b", "0x4800668f00203500620b00602900612b00203900620b00611b006016002", "0x600c00639600200220b00600200900211e03503900900611e00620b006", "0x12b00212000620b00611b00601600203700620b00602f00669100200220b", "0x203a10d12000900603a00620b00603700668f00210d00620b006029006", "0x20b00600263f00200220b00601600639b00201600c00720b0060070063cf", "0x611b00201400620b00600206500201000620b00600f00622400200f006", "0x1001400600201662200201000620b00601000664000201400620b006014", "0x202a00200220b00600200900201c01901b0099d001701500720b007009", "0x5400620b00601500601600206500620b0060c40063b70020c400620b006", "0x600202d00202900620b0060650063b800211b00620b00601700612b002", "0x1b00601600202a00620b00601c0063b900200220b0060020090020029d1", "0x2900620b00602a0063b800211b00620b00601900612b00205400620b006", "0x2b0063bc00202b00620b00602c0063bb00202c00620b0060290063ba002", "0x620b00602d0065eb00200220b00600200900202e0069d202d00620b007", "0x1600203300620b00603000669300203000620b00602f00c00769200202f", "0x20b00603300669400203900620b00611b00612b00204800620b006054006", "0x220b00600c00639b00200220b006002009002035039048009006035006", "0x11b00612b00203700620b00605400601600211e00620b00602e006695002", "0x645800210d12003700900610d00620b00611e00669400212000620b006", "0x1000620b00600213100201600620b00600f00669600200f00620b00600c", "0x150065df00201701500720b0060160065de00201400620b006002131002", "0x206500620b0060060060160020c400620b00600200600c00200220b006", "0x601400604e00211b00620b00601000604e00205400620b0060170065e0", "0x200600201c01901b00920b00602911b0540650c40165e600202900620b", "0x220b00600200900202b0069d302a00620b00701c0065e800200220b006", "0x613200200220b00602e00603300202e02d02c00920b00602a0065e9002", "0x620b00603000605300200220b00602f00605100203002f00720b00602c", "0x605300200220b00604800605100203904800720b00602d006132002033", "0x620b00603500600f00203300620b00603300600f00203500620b006039", "0x900203a10d1200099d403711e00720b00703503300701900c5ea002035", "0x212400620b00603c0063b700203c00620b00600202a00200220b006002", "0x61240063b800203e00620b00603700612b00207d00620b00611e006016", "0x603a0063b900200220b0060020090020029d500600202d00212a00620b", "0x203e00620b00610d00612b00207d00620b00612000601600212c00620b", "0x60410063bb00204100620b00612a0063ba00212a00620b00612c0063b8", "0x220b00600200900212d0069d604300620b00712b0063bc00212b00620b", "0x604500900748400204500620b0060430065eb00200220b00600211e002", "0x213100620b00601b00600c00204700620b00612e00648500212e00620b", "0x604700644c00204d00620b00603e00612b00213000620b00607d006016", "0x20b00600211e00200220b00600200900204b04d13013100c00604b00620b", "0x1b00600c00204e00620b00612d00644b00200220b006009006047002002", "0x5100620b00603e00612b00213200620b00607d00601600204f00620b006", "0x220b00600200900205305113204f00c00605300620b00604e00644c002", "0x620b00602b00644b00200220b00600900604700200220b00600211e002", "0x612b00213300620b00601900601600205600620b00601b00600c00212f", "0x213605813305600c00613600620b00612f00644c00205800620b006007", "0x20b00600213100201600620b00600f00669700200f00620b00600c006480", "0x5df00201701500720b0060160065de00201400620b006002131002010006", "0x620b0060060060160020c400620b00600200600c00200220b006015006", "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", "0x600200900202b0069d702a00620b00701c0065e800200220b006002006", "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", "0x603000605300200220b00602f00605100203002f00720b00602c006132", "0x200220b00604800605100203904800720b00602d00613200203300620b", "0x603500600f00203300620b00603300600f00203500620b006039006053", "0x3a10d1200099d803711e00720b00703503300701900c5ea00203500620b", "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", "0x63b900200220b0060020090020029d900600202d00212a00620b006124", "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", "0x600200900212d0069da04300620b00712b0063bc00212b00620b006041", "0x900748400204500620b0060430065eb00200220b00600211e00200220b", "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", "0x600200900205305113204f00c00605300620b00604e00644c002051006", "0x602b00644b00200220b00600900604700200220b00600211e00200220b", "0x213300620b00601900601600205600620b00601b00600c00212f00620b", "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", "0x264700200220b00601600639a00201600c00720b0060070063d2002136", "0x201400620b00600206500201000620b00600f00622400200f00620b006", "0x600201662200201000620b00601000664000201400620b00601400611b", "0x200220b00600200900201c01901b0099db01701500720b007009010014", "0x20b00601500601600206500620b0060c40063b70020c400620b00600202a", "0x2d00202900620b0060650063b800211b00620b00601700612b002054006", "0x1600202a00620b00601c0063b900200220b0060020090020029dc006002", "0x20b00602a0063b800211b00620b00601900612b00205400620b00601b006", "0x3bc00202b00620b00602c0063bb00202c00620b0060290063ba002029006", "0x602d0065eb00200220b00600200900202e0069dd02d00620b00702b006", "0x3300620b00603000621c00203000620b00602f00c00769800202f00620b", "0x3300669a00203900620b00611b00612b00204800620b006054006016002", "0x600c00639a00200220b00600200900203503904800900603500620b006", "0x12b00203700620b00605400601600211e00620b00602e00669900200220b", "0x210d12003700900610d00620b00611e00669a00212000620b00611b006", "0x20b00600213100201600620b00600f00669b00200f00620b00600c00649f", "0x5df00201701500720b0060160065de00201400620b006002131002010006", "0x620b0060060060160020c400620b00600200600c00200220b006015006", "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", "0x600200900202b0069de02a00620b00701c0065e800200220b006002006", "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", "0x603000605300200220b00602f00605100203002f00720b00602c006132", "0x200220b00604800605100203904800720b00602d00613200203300620b", "0x603500600f00203300620b00603300600f00203500620b006039006053", "0x3a10d1200099df03711e00720b00703503300701900c5ea00203500620b", "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", "0x63b900200220b0060020090020029e000600202d00212a00620b006124", "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", "0x600200900212d0069e104300620b00712b0063bc00212b00620b006041", "0x900748400204500620b0060430065eb00200220b00600211e00200220b", "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", "0x600200900205305113204f00c00605300620b00604e00644c002051006", "0x602b00644b00200220b00600900604700200220b00600211e00200220b", "0x213300620b00601900601600205600620b00601b00600c00212f00620b", "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", "0x264800200220b00601600639900201600c00720b0060070063dd002136", "0x201400620b00600206500201000620b00600f00622400200f00620b006", "0x600201662200201000620b00601000664000201400620b00601400611b", "0x200220b00600200900201c01901b0099e201701500720b007009010014", "0x20b00601500601600206500620b0060c40063b70020c400620b00600202a", "0x2d00202900620b0060650063b800211b00620b00601700612b002054006", "0x1600202a00620b00601c0063b900200220b0060020090020029e3006002", "0x20b00602a0063b800211b00620b00601900612b00205400620b00601b006", "0x3bc00202b00620b00602c0063bb00202c00620b0060290063ba002029006", "0x602d0065eb00200220b00600200900202e0069e402d00620b00702b006", "0x3300620b00603000669e00203000620b00602f00c00769d00202f00620b", "0x3300669f00203900620b00611b00612b00204800620b006054006016002", "0x600c00639900200220b00600200900203503904800900603500620b006", "0x12b00203700620b00605400601600211e00620b00602e0066a000200220b", "0x210d12003700900610d00620b00611e00669f00212000620b00611b006", "0x20b00600213100201600620b00600f0066a100200f00620b00600c0064ba", "0x5df00201701500720b0060160065de00201400620b006002131002010006", "0x620b0060060060160020c400620b00600200600c00200220b006015006", "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", "0x600200900202b0069e502a00620b00701c0065e800200220b006002006", "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", "0x603000605300200220b00602f00605100203002f00720b00602c006132", "0x200220b00604800605100203904800720b00602d00613200203300620b", "0x603500600f00203300620b00603300600f00203500620b006039006053", "0x3a10d1200099e603711e00720b00703503300701900c5ea00203500620b", "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", "0x63b900200220b0060020090020029e700600202d00212a00620b006124", "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", "0x600200900212d0069e804300620b00712b0063bc00212b00620b006041", "0x900748400204500620b0060430065eb00200220b00600211e00200220b", "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", "0x600200900205305113204f00c00605300620b00604e00644c002051006", "0x602b00644b00200220b00600900604700200220b00600211e00200220b", "0x213300620b00601900601600205600620b00601b00600c00212f00620b", "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", "0x600200900200f0160079e900c00900720b0070070060020096a2002136", "0x6a400201400620b00600900600c00201000620b00600c0066a300200220b", "0x6a500200220b0060020090020029ea00600202d00201500620b006010006", "0x20b0060170066a400201400620b00601600600c00201700620b00600f006", "0x604b00201c00620b0060150066a800201b00620b0060026a6002015006", "0x20b00701900636600201900620b0060c401c0076a90020c400620b00601b", "0x211b00620b00606500636800200220b0060020090020540069eb065006", "0x601400600c00202a00620b00602900661200202900620b00611b006226", "0x20b00600200900202c02b00700602c00620b00602a00661300202b00620b", "0x661300202e00620b00601400600c00202d00620b006054006614002002", "0x66aa00200f00620b00600c0064d700202f02e00700602f00620b00602d", "0x201400620b00600213100201000620b00600213100201600620b00600f", "0x600200600c00200220b0060150065df00201701500720b0060160065de", "0x205400620b0060170065e000206500620b0060060060160020c400620b", "0x650c40165e600202900620b00601400604e00211b00620b00601000604e", "0x701c0065e800200220b00600200600201c01901b00920b00602911b054", "0x2c00920b00602a0065e900200220b00600200900202b0069ec02a00620b", "0x5100203002f00720b00602c00613200200220b00602e00603300202e02d", "0x720b00602d00613200203300620b00603000605300200220b00602f006", "0x600f00203500620b00603900605300200220b006048006051002039048", "0x3503300701900c5ea00203500620b00603500600f00203300620b006033", "0x600202a00200220b00600200900203a10d1200099ed03711e00720b007", "0x207d00620b00611e00601600212400620b00603c0063b700203c00620b", "0x9ee00600202d00212a00620b0061240063b800203e00620b00603700612b", "0x612000601600212c00620b00603a0063b900200220b006002009002002", "0x212a00620b00612c0063b800203e00620b00610d00612b00207d00620b", "0x712b0063bc00212b00620b0060410063bb00204100620b00612a0063ba", "0x5eb00200220b00600211e00200220b00600200900212d0069ef04300620b", "0x612e00648500212e00620b00604500900748400204500620b006043006", "0x213000620b00607d00601600213100620b00601b00600c00204700620b", "0x4d13013100c00604b00620b00604700644c00204d00620b00603e00612b", "0x220b00600900604700200220b00600211e00200220b00600200900204b", "0x7d00601600204f00620b00601b00600c00204e00620b00612d00644b002", "0x5300620b00604e00644c00205100620b00603e00612b00213200620b006", "0x4700200220b00600211e00200220b00600200900205305113204f00c006", "0x620b00601b00600c00212f00620b00602b00644b00200220b006009006", "0x644c00205800620b00600700612b00213300620b006019006016002056", "0x200f00620b00600c0064eb00213605813305600c00613600620b00612f", "0x620b00600213100201000620b00600213100201600620b00600f0066ac", "0x600c00200220b0060150065df00201701500720b0060160065de002014", "0x620b0060170065e000206500620b0060060060160020c400620b006002", "0x165e600202900620b00601400604e00211b00620b00601000604e002054", "0x65e800200220b00600200600201c01901b00920b00602911b0540650c4", "0x20b00602a0065e900200220b00600200900202b0069f002a00620b00701c", "0x3002f00720b00602c00613200200220b00602e00603300202e02d02c009", "0x602d00613200203300620b00603000605300200220b00602f006051002", "0x203500620b00603900605300200220b00604800605100203904800720b", "0x701900c5ea00203500620b00603500600f00203300620b00603300600f", "0x2a00200220b00600200900203a10d1200099f103711e00720b007035033", "0x620b00611e00601600212400620b00603c0063b700203c00620b006002", "0x202d00212a00620b0061240063b800203e00620b00603700612b00207d", "0x601600212c00620b00603a0063b900200220b0060020090020029f2006", "0x620b00612c0063b800203e00620b00610d00612b00207d00620b006120", "0x63bc00212b00620b0060410063bb00204100620b00612a0063ba00212a", "0x220b00600211e00200220b00600200900212d0069f304300620b00712b", "0x648500212e00620b00604500900748400204500620b0060430065eb002", "0x620b00607d00601600213100620b00601b00600c00204700620b00612e", "0x13100c00604b00620b00604700644c00204d00620b00603e00612b002130", "0x600900604700200220b00600211e00200220b00600200900204b04d130", "0x1600204f00620b00601b00600c00204e00620b00612d00644b00200220b", "0x20b00604e00644c00205100620b00603e00612b00213200620b00607d006", "0x220b00600211e00200220b00600200900205305113204f00c006053006", "0x601b00600c00212f00620b00602b00644b00200220b006009006047002", "0x205800620b00600700612b00213300620b00601900601600205600620b", "0x620b00600c0064fb00213605813305600c00613600620b00612f00644c", "0x600213100201000620b00600213100201600620b00600f0066ad00200f", "0x200220b0060150065df00201701500720b0060160065de00201400620b", "0x60170065e000206500620b0060060060160020c400620b00600200600c", "0x202900620b00601400604e00211b00620b00601000604e00205400620b", "0x200220b00600200600201c01901b00920b00602911b0540650c40165e6", "0x2a0065e900200220b00600200900202b0069f402a00620b00701c0065e8", "0x720b00602c00613200200220b00602e00603300202e02d02c00920b006", "0x613200203300620b00603000605300200220b00602f00605100203002f", "0x620b00603900605300200220b00604800605100203904800720b00602d", "0xc5ea00203500620b00603500600f00203300620b00603300600f002035", "0x220b00600200900203a10d1200099f503711e00720b007035033007019", "0x611e00601600212400620b00603c0063b700203c00620b00600202a002", "0x212a00620b0061240063b800203e00620b00603700612b00207d00620b", "0x212c00620b00603a0063b900200220b0060020090020029f600600202d", "0x612c0063b800203e00620b00610d00612b00207d00620b006120006016", "0x212b00620b0060410063bb00204100620b00612a0063ba00212a00620b", "0x600211e00200220b00600200900212d0069f704300620b00712b0063bc", "0x212e00620b00604500900748400204500620b0060430065eb00200220b", "0x607d00601600213100620b00601b00600c00204700620b00612e006485", "0x604b00620b00604700644c00204d00620b00603e00612b00213000620b", "0x604700200220b00600211e00200220b00600200900204b04d13013100c", "0x4f00620b00601b00600c00204e00620b00612d00644b00200220b006009", "0x4e00644c00205100620b00603e00612b00213200620b00607d006016002", "0x600211e00200220b00600200900205305113204f00c00605300620b006", "0x600c00212f00620b00602b00644b00200220b00600900604700200220b", "0x620b00600700612b00213300620b00601900601600205600620b00601b", "0x600c00650e00213605813305600c00613600620b00612f00644c002058", "0x13100201000620b00600213100201600620b00600f0066ae00200f00620b", "0x20b0060150065df00201701500720b0060160065de00201400620b006002", "0x65e000206500620b0060060060160020c400620b00600200600c002002", "0x620b00601400604e00211b00620b00601000604e00205400620b006017", "0x20b00600200600201c01901b00920b00602911b0540650c40165e6002029", "0x5e900200220b00600200900202b0069f802a00620b00701c0065e8002002", "0x602c00613200200220b00602e00603300202e02d02c00920b00602a006", "0x203300620b00603000605300200220b00602f00605100203002f00720b", "0x603900605300200220b00604800605100203904800720b00602d006132", "0x203500620b00603500600f00203300620b00603300600f00203500620b", "0x600200900203a10d1200099f903711e00720b00703503300701900c5ea", "0x601600212400620b00603c0063b700203c00620b00600202a00200220b", "0x620b0061240063b800203e00620b00603700612b00207d00620b00611e", "0x620b00603a0063b900200220b0060020090020029fa00600202d00212a", "0x63b800203e00620b00610d00612b00207d00620b00612000601600212c", "0x620b0060410063bb00204100620b00612a0063ba00212a00620b00612c", "0x11e00200220b00600200900212d0069fb04300620b00712b0063bc00212b", "0x620b00604500900748400204500620b0060430065eb00200220b006002", "0x601600213100620b00601b00600c00204700620b00612e00648500212e", "0x620b00604700644c00204d00620b00603e00612b00213000620b00607d", "0x200220b00600211e00200220b00600200900204b04d13013100c00604b", "0x20b00601b00600c00204e00620b00612d00644b00200220b006009006047", "0x44c00205100620b00603e00612b00213200620b00607d00601600204f006", "0x11e00200220b00600200900205305113204f00c00605300620b00604e006", "0x212f00620b00602b00644b00200220b00600900604700200220b006002", "0x600700612b00213300620b00601900601600205600620b00601b00600c", "0x661f00213605813305600c00613600620b00612f00644c00205800620b", "0x720b00600900613000200900620b00600700662000200700620b006002", "0x604e00201400620b00601600604b00200220b00600c00604d00201600c", "0x601000603300201000f00720b00601501400704f00201500620b006006", "0x61ff00201b00620b00600f00604e00201700620b00600202a00200220b", "0x66b100200700620b0060020066af00201901b00700601900620b006017", "0x20b00600c00604d00201600c00720b00600900613000200900620b006007", "0x704f00201500620b00600600604e00201400620b00601600604b002002", "0x620b00600202a00200220b00601000603300201000f00720b006015014", "0x1b00700601900620b0060170061ff00201b00620b00600f00604e002017", "0x20b00600206500200c00620b00600268a00200220b006009006396002019", "0x12b00201b00620b00600600601600201700620b00600200600c002016006", "0x20b00600c00661600201c00620b00601600611b00201900620b006007006", "0x66b400201501401000f00c20b0060c401c01901b0170166b30020c4006", "0x20b0060650066b500200220b0060020090020540069fc06500620b007015", "0x18f00202900620b00602a0066b700202a00620b00611b0066b600211b006", "0x602b0060be00200220b00600200900202c0069fd02b00620b007029006", "0x202f00620b00602e00653a00202e00620b00602d00653900202d00620b", "0x601400612b00203300620b00601000601600203000620b00600f00600c", "0x200900203904803303000c00603900620b00602f00621300204800620b", "0x211e00620b00600f00600c00203500620b00602c00653b00200220b006", "0x603500621300212000620b00601400612b00203700620b006010006016", "0x605400653b00200220b00600200900210d12003711e00c00610d00620b", "0x212400620b00601000601600203c00620b00600f00600c00203a00620b", "0x7d12403c00c00603e00620b00603a00621300207d00620b00601400612b", "0x20b00600206500200c00620b00600268800200220b00600900620c00203e", "0x12b00201b00620b00600600601600201700620b00600200600c002016006", "0x20b00600c00661600201c00620b00601600611b00201900620b006007006", "0x66b400201501401000f00c20b0060c401c01901b0170166b30020c4006", "0x20b0060650066b500200220b0060020090020540069fe06500620b007015", "0x18f00202900620b00602a0066b700202a00620b00611b0066b600211b006", "0x602b0060be00200220b00600200900202c0069ff02b00620b007029006", "0x202f00620b00602e00653a00202e00620b00602d00653900202d00620b", "0x601400612b00203300620b00601000601600203000620b00600f00600c", "0x200900203904803303000c00603900620b00602f00621300204800620b", "0x211e00620b00600f00600c00203500620b00602c00653b00200220b006", "0x603500621300212000620b00601400612b00203700620b006010006016", "0x605400653b00200220b00600200900210d12003711e00c00610d00620b", "0x212400620b00601000601600203c00620b00600f00600c00203a00620b", "0x7d12403c00c00603e00620b00603a00621300207d00620b00601400612b", "0x9002016006a0200c006a01009006a0000700620b00c00200667600203e", "0x1401000720b00600f00613000200f00620b0060020ef00200220b006002", "0x600600604e00201b00620b00601400604b00200220b00601000604d002", "0x220b00601700603300201701500720b00601901b00704f00201900620b", "0x650076b800205400620b00601500604e00206500620b0060070061ff002", "0x620b00601c00604e00200220b0060c40060330020c401c00720b006054", "0x2900620b00600200000200220b006002009002002a0300600202d00211b", "0x2b00604b00200220b00602a00604d00202b02a00720b006029006130002", "0x720b00602f02e00704f00202f00620b00600600604e00202e00620b006", "0x604e00204800620b0060090061ff00200220b00602d00603300202d02c", "0x603300603300203303000720b0060390480076b800203900620b00602c", "0x6002009002002a0300600202d00211b00620b00603000604e00200220b", "0x4d00203711e00720b00603500613000203500620b0060023f700200220b", "0x620b00600600604e00203a00620b00603700604b00200220b00611e006", "0x1ff00200220b00610d00603300210d12000720b00603c03a00704f00203c", "0x612a03e0076b800212a00620b00612000604e00203e00620b00600c006", "0x211b00620b00612400604e00200220b00607d00603300207d12400720b", "0x13000212c00620b0060026b900200220b006002009002002a0300600202d", "0x20b00604100604b00200220b00612b00604d00204112b00720b00612c006", "0x12d04300720b00612e04500704f00212e00620b00600600604e002045006", "0x604300604e00213000620b0060160061ff00200220b00612d006033002", "0x220b00613100603300213104700720b00604d1300076b800204d00620b", "0x611b00652d00204b00620b00600202a00211b00620b00604700604e002", "0x600c00656700204f04e00700604f00620b00604b0061ff00204e00620b", "0x13100201000620b00600213100201600620b00600f0066ba00200f00620b", "0x20b0060150065df00201701500720b0060160065de00201400620b006002", "0x65e000206500620b0060060060160020c400620b00600200600c002002", "0x620b00601400604e00211b00620b00601000604e00205400620b006017", "0x20b00600200600201c01901b00920b00602911b0540650c40165e6002029", "0x5e900200220b00600200900202b006a0402a00620b00701c0065e8002002", "0x602c00613200200220b00602e00603300202e02d02c00920b00602a006", "0x203300620b00603000605300200220b00602f00605100203002f00720b", "0x603900605300200220b00604800605100203904800720b00602d006132", "0x203500620b00603500600f00203300620b00603300600f00203500620b", "0x600200900203a10d120009a0503711e00720b00703503300701900c5ea", "0x601600212400620b00603c0063b700203c00620b00600202a00200220b", "0x620b0061240063b800203e00620b00603700612b00207d00620b00611e", "0x620b00603a0063b900200220b006002009002002a0600600202d00212a", "0x63b800203e00620b00610d00612b00207d00620b00612000601600212c", "0x620b0060410063bb00204100620b00612a0063ba00212a00620b00612c", "0x11e00200220b00600200900212d006a0704300620b00712b0063bc00212b", "0x620b00604500900748400204500620b0060430065eb00200220b006002", "0x601600213100620b00601b00600c00204700620b00612e00648500212e", "0x620b00604700644c00204d00620b00603e00612b00213000620b00607d", "0x200220b00600211e00200220b00600200900204b04d13013100c00604b", "0x20b00601b00600c00204e00620b00612d00644b00200220b006009006047", "0x44c00205100620b00603e00612b00213200620b00607d00601600204f006", "0x11e00200220b00600200900205305113204f00c00605300620b00604e006", "0x212f00620b00602b00644b00200220b00600900604700200220b006002", "0x600700612b00213300620b00601900601600205600620b00601b00600c", "0x207500213605813305600c00613600620b00612f00644c00205800620b", "0x211e00200220b00600213900200f00620b00600233500200c00620b006", "0x201b00620b00600700600f00201700620b00600200600c00200220b006", "0x6a0801600620b00701500633700201501401000920b00601b017007336", "0x606500607600206500620b00601400600f00200220b006002009002019", "0x620b0070c400607700201600620b00601600f0073390020c401c00720b", "0x1600202b00620b00601000600c00200220b006002009002054006a09009", "0x600900c00707900202d00620b00601c00600f00202c00620b006006006", "0x702a00614b00202a02911b00920b00602d02c02b00914600200900620b", "0x3000720b00602e00607b00200220b00600200900202f006a0a02e00620b", "0x6bb00200220b006002009002039006a0b04800620b00703300614a002033", "0x300076bd00211e00620b0060350066bc00203500620b006048009016009", "0x620b00611b00600c00212000620b0060370066c100203700620b00611e", "0x10d00900603c00620b0061200066c200203a00620b00602900601600210d", "0x600900604d00200220b0060160060fa00200220b00600200900203c03a", "0x207d00620b0061240300076bd00212400620b0060390066c300200220b", "0x602900601600212a00620b00611b00600c00203e00620b00607d0066c1", "0x600200900212b12c12a00900612b00620b00603e0066c200212c00620b", "0x2f0066be00200220b0060160060fa00200220b00600900604d00200220b", "0x12d00620b00602900601600204300620b00611b00600c00204100620b006", "0x200220b00600200900204512d04300900604500620b0060410066c2002", "0x620b0060540066c300200220b00600c00614e00200220b0060160060fa", "0xc00213100620b0060470066c100204700620b00612e01c0076bd00212e", "0x20b0061310066c200204d00620b00600600601600213000620b006010006", "0x220b00600c00614e00200220b00600200900204b04d13000900604b006", "0x4e0140076bd00204e00620b0060190066c300200220b00600f00634d002", "0x5100620b00601000600c00213200620b00604f0066c100204f00620b006", "0x5305100900612f00620b0061320066c200205300620b006006006016002", "0x200900201000f016009a0c00c00900700920b0070060020076bf00212f", "0x201500620b00600700601600201400620b00600c0066c000200220b006", "0xa0d00600202d00201b00620b0060140066c400201700620b00600900612b", "0x601600601600201900620b0060100066c600200220b006002009002002", "0x201b00620b0060190066c400201700620b00600f00612b00201500620b", "0x701c00657700201c00620b0060c40066c80020c400620b00601b0066c7", "0x11b00620b00606500657900200220b006002009002054006a0e06500620b", "0x1500601600202a00620b0060290066ca00202900620b00611b0066c9002", "0x2d00620b00602a0066cb00202c00620b00601700612b00202b00620b006", "0x202e00620b0060540066cc00200220b00600200900202d02c02b009006", "0x602e0066cb00203000620b00601700612b00202f00620b006015006016", "0xa0f00c00900720b0070070060020096cd00203303002f00900603300620b", "0xf0066cf00200f00620b00600c0066ce00200220b006002009002016006", "0x1500620b0060100066d100201400620b00600900600c00201000620b006", "0x222a00201700620b00600213100200220b006002009002015014007006", "0x620b00601b01700705b00201b00620b00601b00604b00201b00620b006", "0x66d20020c400620b00601901c00705d00201c00620b006002135002019", "0x620b0060650066d100205400620b00601600600c00206500620b0060c4", "0x620b00600700612b00201000620b00600600601600211b05400700611b", "0x1500620b00700f0061c800200f01600c00920b0060140100070f4002014", "0x61d400201b00620b0060150061ca00200220b006002009002017006a10", "0x202a02911b0540650c401c01020b0060190061eb00201900620b00601b", "0x220b00605400606100200220b0060c40060fa00200220b00601c00604d", "0x20b00602a00604d00200220b00602900604d00200220b00611b00604d002", "0x650066d500202b00620b00602b0066d500202b00620b0060026d3002002", "0x202f02e007a1102d02c00720b00706502b00200922b00206500620b006", "0x203000620b00600202a00200220b00602d0061ef00200220b006002009", "0x603300602c00204800620b00602c00600c00203300620b00603000602e", "0x602f0061ef00200220b006002009002002a1200600202d00203900620b", "0x600c00211e00620b00603500602b00203500620b00600202a00200220b", "0x620b00603900602f00203900620b00611e00602c00204800620b00602e", "0x10d006a1312000620b00703700603000203700620b00603700602c002037", "0x3a00620b0060026d600200220b00612000603300200220b006002009002", "0xa1412403c00720b00703a0090480096d700203a00620b00603a00611b002", "0x600202a00200220b0061240060c400200220b00600200900203e07d007", "0x212b00620b00603c00600c00212c00620b00612a00602b00212a00620b", "0x200220b006002009002002a1500600202d00204100620b00612c00602c", "0x620b00604300602e00204300620b00600202a00200220b00603e0060c4", "0x602f00204100620b00612d00602c00212b00620b00607d00600c00212d", "0x620b00704500603000204500620b00604500602c00204500620b006041", "0x202a00200220b00612e00603300200220b006002009002047006a1612e", "0x4d00620b00613000622300213000620b00613100663500213100620b006", "0x1600612b00204e00620b00600c00601600204b00620b00612b00600c002", "0x900213204f04e04b00c00613200620b00604d00663600204f00620b006", "0x6d900205100620b00600213100200220b00604700603300200220b006002", "0x20b00605305100705b00205300620b00605300604b00205300620b006002", "0x63700213300620b00612f05600705d00205600620b00600213500212f006", "0x20b00600c00601600213600620b00612b00600c00205800620b006133006", "0xc00613500620b00605800663600205b00620b00601600612b002134006", "0x60c400200220b00610d00603300200220b00600200900213505b134136", "0x4b00213700620b0060026da00205d00620b00600213100200220b006009", "0x20b00600213500205f00620b00613705d00705b00213700620b006137006", "0x206400620b00613800663700213800620b00605f06100705d002061006", "0x601600612b00206700620b00600c00601600213900620b00604800600c", "0x200900206913b06713900c00606900620b00606400663600213b00620b", "0xc00206a00620b00601700663700200220b0060090060c400200220b006", "0x20b00601600612b00213c00620b00600c00601600206c00620b006002006", "0x20096db00213f06f13c06c00c00613f00620b00606a00663600206f006", "0x66dc00200220b00600200900200f016007a1700c00900720b007007006", "0x620b0060100066dd00201400620b00600900600c00201000620b00600c", "0x620b00600f0066df00200220b006002009002002a1800600202d002015", "0x26e000201500620b0060170066dd00201400620b00601600600c002017", "0xc400620b00601b00604b00201c00620b0060150066e100201b00620b006", "0x54006a1906500620b00701900618f00201900620b0060c401c0076e2002", "0x20b00611b00653900211b00620b0060650060be00200220b006002009002", "0x21300202b00620b00601400600c00202a00620b00602900653a002029006", "0x5400653b00200220b00600200900202c02b00700602c00620b00602a006", "0x2f00620b00602d00621300202e00620b00601400600c00202d00620b006", "0x620b00601000601b00201000f00720b00600f0066e300202f02e007006", "0xc400201b01700720b00601500601c00201500620b006014006019002014", "0x1c00720b00601900601c00201900620b0060026e400200220b006017006", "0x6500601c00206500620b00601b00605400200220b00601c0060c40020c4", "0x2900620b0060c400605400200220b0060540060c400211b05400720b006", "0x11b00605400200220b00602a0060c400202b02a00720b00602900601c002", "0x2c00620b00602c00611b00202d00620b00602b00605400202c00620b006", "0x600202a00200220b006002009002002a1a00220b00702d02c007029002", "0x203000620b00602f00602c00202f00620b00602e00602b00202e00620b", "0x2e00203300620b00600202a00200220b006002009002002a1b00600202d", "0x20b00603000602f00203000620b00604800602c00204800620b006033006", "0x6a1c03500620b00703900603000203900620b00603900602c002039006", "0x20b00600f0066e500200220b00603500603300200220b00600200900211e", "0x203a00620b00610d0066e600210d00620b00612000601b002120037007", "0x20b00603a00609900203e00620b00600200600c00203c00620b006002065", "0x12400720b00612c12a03e0096e700212c00620b00603c00611b00212a006", "0x6e900200220b006002009002041006a1d12b00620b00707d0066e800207d", "0x20b00612d0061b200212d00620b0060430061a600204300620b00612b006", "0x1b00200220b00612e00606100204712e00720b0060370066e5002045006", "0x620b00600259200213000620b0061310066e600213100620b006047006", "0x611b00213200620b00613000609900204f00620b00612400600c00204d", "0x4500604b00204e04b00720b00605113204f0096e700205100620b00604d", "0x20b00600200900212f006a1e05300620b00704e0066e800204500620b006", "0x61b200213300620b0060560061a600205600620b0060530066e9002002", "0x20b00613600637100213600c00720b00600c0065fe00205800620b006133", "0x5b00639b00200220b00613400639500213806105f13705d13505b134014", "0x639700200220b00613700639800200220b00605d00639900200220b006", "0x1600200220b00613800620c00200220b00606100639600200220b00605f", "0x20b0061350063d300206900620b00600900612b00213b00620b006007006", "0x20b00605800604b00206713906400920b00606a06913b0093d400206a006", "0x200220b00600200900213c006a1f06c00620b007067006151002058006", "0x600600612c00214500620b00604b00600c00206f00620b00606c006152", "0x7600620b00607600604b00207601600720b00601600635a00207500620b", "0x604b00207904500720b00604500635a00207700620b00606f00604b002", "0x20b00614600604b00214605800720b00605800635a00207900620b006079", "0x603000214107113f00920b00614607907707607514500f670002146006", "0x20b00614b00603300200220b00600200900207b006a2014b00620b007141", "0x14a00639500208314f14e1521510c707f14a01420b00600c006371002002", "0x639800200220b0060c700639a00200220b00607f00639b00200220b006", "0x20c00200220b00614f00639600200220b00614e00639700200220b006152", "0x620b00613900612b00216100620b00606400601600200220b006083006", "0x15008500920b00615f1601610093df00215f00620b0061510063de002160", "0x15200200220b006002009002163006a2115d00620b00715e00615100215e", "0x20b00607100612c00215700620b00613f00600c00215c00620b00615d006", "0x4b00216e00620b00615c00604b00215b00620b00601600604b00208a006", "0x15b08a15700f6700020ed00620b00605800604b00216800620b006045006", "0x612c00208e00620b00616200600c00215408716200920b0060ed16816e", "0x620b00615000612b0020d000620b00608500601600216b00620b006087", "0x20b006002009002002a2200600202d00209200620b00615400602c00216c", "0x601600604d00200220b00604500604d00200220b00605800604d002002", "0x12c00217100620b00613f00600c00216d00620b0061630063ab00200220b", "0x20b00615000612b00217300620b00608500601600209400620b006071006", "0x200900217509617309417101600617500620b00616d0063aa002096006", "0x604d00200220b00601600604d00200220b00607b00603300200220b006", "0x2a00200220b00600c00604700200220b00604500604d00200220b006058", "0x620b00613f00600c00209900620b0060d100602e0020d100620b006002", "0x612b0020d000620b00606400601600216b00620b00607100612c00208e", "0x620b0060920063a800209200620b00609900602c00216c00620b006139", "0x612c00217a00620b00608e00600c00209b00620b0061760063a9002176", "0x620b00616c00612b00217c00620b0060d000601600209d00620b00616b", "0x60020090020a00cc17c09d17a0160060a000620b00609b0063aa0020cc", "0x5800604d00200220b00601600604d00200220b00600c00604700200220b", "0xc00217d00620b00613c0063ab00200220b00604500604d00200220b006", "0x20b00606400601600217e00620b00600600612c0020a200620b00604b006", "0x160060cd00620b00617d0063aa00217f00620b00613900612b0020a4006", "0x4d00200220b00600c00604700200220b0060020090020cd17f0a417e0a2", "0xd200620b00612f0063ab00200220b00604500604d00200220b006016006", "0x700601600218000620b00600600612c0020a800620b00604b00600c002", "0x18100620b0060d20063aa0020ab00620b00600900612b0020ce00620b006", "0x220b00600c00604700200220b0060020090021810ab0ce1800a8016006", "0x20b0060410063ab00200220b00603700606100200220b00601600604d002", "0x160020c900620b00600600612c0020c800620b00612400600c0020cf006", "0x20b0060cf0063aa0020cb00620b00600900612b0020ca00620b006007006", "0x611e00603300200220b0060020090020c60cb0ca0c90c80160060c6006", "0xf00606100200220b00601600604d00200220b00600c00604700200220b", "0x3a80020b500620b0060b300602b0020b300620b00600202a00200220b006", "0x20b00600200600c0020b700620b00618e0063a900218e00620b0060b5006", "0x12b0020bb00620b0060070060160020ba00620b00600600612c0020b9006", "0xbd0bb0ba0b901600618f00620b0060b70063aa0020bd00620b006009006", "0x1900201400620b00601000601b00201000f00720b00600f0066e300218f", "0x60170060c400201b01700720b00601500601c00201500620b006014006", "0xc40020c401c00720b00601900601c00201900620b0060026e400200220b", "0x720b00606500601c00206500620b00601b00605400200220b00601c006", "0x601c00202900620b0060c400605400200220b0060540060c400211b054", "0x620b00611b00605400200220b00602a0060c400202b02a00720b006029", "0x702900202c00620b00602c00611b00202d00620b00602b00605400202c", "0x2e00620b00600202a00200220b006002009002002a2300220b00702d02c", "0x600202d00203000620b00602f00602c00202f00620b00602e00602b002", "0x603300602e00203300620b00600202a00200220b006002009002002a24", "0x203900620b00603000602f00203000620b00604800602c00204800620b", "0x900211e006a2503500620b00703900603000203900620b00603900602c", "0x12003700720b00600f0066e500200220b00603500603300200220b006002", "0x600206500203a00620b00610d0066e600210d00620b00612000601b002", "0x212a00620b00603a00609900203e00620b00600200600c00203c00620b", "0x6e800207d12400720b00612c12a03e0096e700212c00620b00603c00611b", "0x612b0066e900200220b006002009002041006a2612b00620b00707d006", "0x204500620b00612d0061b200212d00620b0060430061a600204300620b", "0x604700601b00200220b00612e00606100204712e00720b0060370066e5", "0xc00204d00620b00600259200213000620b0061310066e600213100620b", "0x20b00604d00611b00213200620b00613000609900204f00620b006124006", "0x620b00604500604b00204e04b00720b00605113204f0096e7002051006", "0x6e900200220b00600200900212f006a2705300620b00704e0066e8002045", "0x20b0061330061b200213300620b0060560061a600205600620b006053006", "0x639500206105f13705d13505b13413601420b00600c006371002058006", "0x39800200220b00613500639900200220b00605b00639a00200220b006136", "0x200220b00605f00639600200220b00613700639700200220b00605d006", "0x20b00600900612b00206700620b00600700601600200220b00606100620c", "0x13800920b00606913b0670093d100206900620b0061340063d000213b006", "0x6a2806a00620b00713900615100205800620b00605800604b002139064", "0x604b00600c00213c00620b00606a00615200200220b00600200900206c", "0x207500620b00601600604b00214500620b00600600612c00214100620b", "0x605800604b00207700620b00604500604b00207600620b00613c00604b", "0x3a800207113f06f00920b00607907707607514514100f67000207900620b", "0x20b00606f00600c00214b00620b0061460063a900214600620b006071006", "0x12b00207f00620b00613800601600214a00620b00613f00612c00207b006", "0xc707f14a07b01600615100620b00614b0063aa0020c700620b006064006", "0x20b00604500604d00200220b00605800604d00200220b006002009002151", "0x4b00600c00215200620b00606c0063ab00200220b00601600604d002002", "0x8300620b00613800601600214f00620b00600600612c00214e00620b006", "0x14f14e01600615000620b0061520063aa00208500620b00606400612b002", "0xc00604700200220b00601600604d00200220b006002009002150085083", "0xc00215e00620b00612f0063ab00200220b00604500604d00200220b006", "0x20b00600700601600216000620b00600600612c00216100620b00604b006", "0x1600616300620b00615e0063aa00215d00620b00600900612b00215f006", "0x4700200220b00601600604d00200220b00600200900216315d15f160161", "0x15c00620b0060410063ab00200220b00603700606100200220b00600c006", "0x700601600208700620b00600600612c00216200620b00612400600c002", "0x8a00620b00615c0063aa00215700620b00600900612b00215400620b006", "0x220b00611e00603300200220b00600200900208a157154087162016006", "0x20b00600f00606100200220b00600c00604700200220b00601600604d002", "0x16e0063a800216e00620b00615b00602b00215b00620b00600202a002002", "0x8e00620b00600200600c0020ed00620b0061680063a900216800620b006", "0x900612b0020d000620b00600700601600216b00620b00600600612c002", "0x209216c0d016b08e01600609200620b0060ed0063aa00216c00620b006", "0x201400620b00600204800200220b00600213900201000620b006002064", "0x7a2901701500720b00701400600200903500201400620b006014006039", "0x1500600c00201c00620b00600900659000200220b00600200900201901b", "0x6002009002054006a2a0650c400720b00701c00665b00201500620b006", "0x65d00202900620b0060c400659600211b00620b00606500665c00200220b", "0x2a00200220b006002009002002a2b00600202d00202a00620b00611b006", "0x620b00605400659600202c00620b00602b00665e00202b00620b006002", "0x60fc00202d00620b0060290061d600202a00620b00602c00665d002029", "0x600200900202f006a2c02e00620b00702a00666000202d00620b00602d", "0x59d00203000620b00603000659c00203000620b00602e00659b00200220b", "0x604d00203503904800920b00603300659e00203303000720b006030006", "0x211e00620b00604800636100200220b00603500659f00200220b006039", "0xfa00203a10d12000920b00603700659e00203703000720b00603000659d", "0x3c00620b00610d0061b200200220b00603a00659f00200220b006120006", "0x604d00200220b0061240060fa00203e07d12400920b00603000659e002", "0x12a00620b00612a00600f00212a00620b00603e00605300200220b00607d", "0x212d00f043009a2d04112b12c00920b00712a03c11e0070170166ea002", "0xf00200220b00601000614500200220b00600211e00200220b006002009", "0x20b00600200000204500620b0060410160076eb00204100620b006041006", "0x204e00620b00601500600c00204700620b00612e00c0076ec00212e006", "0x602d0060fc00213200620b00612b00612b00204f00620b00612c006016", "0x212f00620b0060450065e100205300620b00604700604b00205100620b", "0x704b0065e300204b04d13013100c20b00612f05305113204f04e00f5e2", "0x5800c20b0060560065e400200220b006002009002133006a2e05600620b", "0x20b0061350066ee00213500620b00605b13413605800c6ed00205b134136", "0x12b00205f00620b00613000601600213700620b00613100600c00205d006", "0x13806105f13700c00613800620b00605d0066ef00206100620b00604d006", "0x20b00613100600c00206400620b0061330066f000200220b006002009002", "0x6ef00213b00620b00604d00612b00206700620b006130006016002139006", "0x11e00200220b00600200900206913b06713900c00606900620b006064006", "0x13100200220b00601600613c00200220b00602d00639c00200220b006002", "0x6c00620b00606c00604b00206c00620b0060026f100206a00620b006002", "0xc00206f00620b00600c13c00705b00213c00620b00606c06a00705b002", "0x20b00606f00604e00207500620b00604300601600214500620b006015006", "0x200f00620b00600f01000713b00207700620b00612d00604e002076006", "0x7900620b00714100607100214107113f00920b00607707607514500c6f2", "0x3300207b14b00720b00607900614100200220b006002009002146006a2f", "0x620b00614b14a00705d00214a00620b00600213500200220b00607b006", "0x601600215100620b00613f00600c0020c700620b00607f0066f000207f", "0x620b0060c70066ef00214e00620b00600f00612b00215200620b006071", "0x620b0061460066f000200220b00600200900214f14e15215100c00614f", "0x612b00215000620b00607100601600208500620b00613f00600c002083", "0x216115e15008500c00616100620b0060830066ef00215e00620b00600f", "0x14500200220b00602f00603300200220b00600211e00200220b006002009", "0x616000c01602d00c6ed00216000620b00600202a00200220b006010006", "0x216300620b00601500600c00215d00620b00615f0066ee00215f00620b", "0x615d0066ef00216200620b00600700612b00215c00620b006017006016", "0x20b00600211e00200220b00600200900208716215c16300c00608700620b", "0x601600613c00200220b00600900639c00200220b00600c00604d002002", "0x600213400215400620b00600213100200220b00601000614500200220b", "0x8a00620b00615715400705b00215700620b00615700604b00215700620b", "0x16e0066f000216e00620b00608a15b00705d00215b00620b006002135002", "0x8e00620b0060190060160020ed00620b00601b00600c00216800620b006", "0x8e0ed00c0060d000620b0061680066ef00216b00620b00600700612b002", "0x600600700620b0060060065e000200600620b0060020066f30020d016b", "0x6a3100f006a3001600620b01c0070066f400200220b00600211e002007", "0xa3801c006a37019006a3601b006a35017006a34015006a33014006a32010", "0x26f500200220b00600200900211b006a3b054006a3a065006a390c4006", "0x620b00602900900705b00202900620b00602900604b00202900620b006", "0x604e00202f00620b00602a00604e00202e00620b00601600656700202a", "0x603300202d02c02b00920b00603002f02e0096f600203000620b00600c", "0x4800620b00600600601600203300620b00600200600c00200220b00602d", "0x600202d00203500620b00602c00604e00203900620b00602b00604e002", "0x611e00604b00211e00620b0060026f700200220b006002009002002a3c", "0x3c00620b00600200600c00203700620b00611e00900705b00211e00620b", "0x3700604e00207d00620b00600f00630b00212400620b006006006016002", "0x12a03e07d12403c0166f800212a00620b00600c00604e00203e00620b006", "0x200900212b006a3d12c00620b00703a0065e800203a10d12000920b006", "0x220b00612d00603300212d04304100920b00612c0065e900200220b006", "0x4100604e00204800620b00610d00601600203300620b00612000600c002", "0x9002002a3c00600202d00203500620b00604300604e00203900620b006", "0x12e00620b00612000600c00204500620b00612b0066f900200220b006002", "0x4712e00900613100620b0060450066fd00204700620b00610d006016002", "0x20b00613000604b00213000620b0060026fe00200220b006002009002131", "0x213200620b0060100064d700204d00620b00613000900705b002130006", "0x511320096ff00205300620b00600c00604e00205100620b00604d00604e", "0x20b00600200600c00200220b00604f00603300204f04e04b00920b006053", "0x4e00203900620b00604b00604e00204800620b006006006016002033006", "0x6fa00200220b006002009002002a3c00600202d00203500620b00604e006", "0x20b00612f00900705b00212f00620b00612f00604b00212f00620b006002", "0x4e00205b00620b00605600604e00213400620b0060140064eb002056006", "0x3300213605813300920b00613505b1340096fb00213500620b00600c006", "0x620b00600600601600203300620b00600200600c00200220b006136006", "0x202d00203500620b00605800604e00203900620b00613300604e002048", "0x5d00604b00205d00620b0060026fc00200220b006002009002002a3c006", "0x620b0060150064fb00213700620b00605d00900705b00205d00620b006", "0x970000206700620b00600c00604e00213900620b00613700604e002064", "0x200600c00200220b00613800603300213806105f00920b006067139064", "0x3900620b00605f00604e00204800620b00600600601600203300620b006", "0x220b006002009002002a3c00600202d00203500620b00606100604e002", "0x13b00900705b00213b00620b00613b00604b00213b00620b006002702002", "0x13f00620b00606900604e00206f00620b00601700650e00206900620b006", "0x13c06c06a00920b00607113f06f00970300207100620b00600c00604e002", "0x600600601600203300620b00600200600c00200220b00613c006033002", "0x203500620b00606c00604e00203900620b00606a00604e00204800620b", "0x4b00214100620b00600270400200220b006002009002002a3c00600202d", "0x601b00644600214500620b00614100900705b00214100620b006141006", "0x214b00620b00600c00604e00214600620b00614500604e00207900620b", "0xc00200220b00607700603300207707607500920b00614b146079009705", "0x20b00607500604e00204800620b00600600601600203300620b006002006", "0x6002009002002a3c00600202d00203500620b00607600604e002039006", "0x705b00207b00620b00607b00604b00207b00620b00600270600200220b", "0x20b00614a00604e00215200620b00601900645800214a00620b00607b009", "0x7f00920b00614f14e15200970700214f00620b00600c00604e00214e006", "0x601600203300620b00600200600c00200220b0061510060330021510c7", "0x620b0060c700604e00203900620b00607f00604e00204800620b006006", "0x8300620b00600270800200220b006002009002002a3c00600202d002035", "0x649f00208500620b00608300900705b00208300620b00608300604b002", "0x620b00600c00604e00215f00620b00608500604e00216000620b00601c", "0x220b00616100603300216115e15000920b00615d15f16000922e00215d", "0x15000604e00204800620b00600600601600203300620b00600200600c002", "0x9002002a3c00600202d00203500620b00615e00604e00203900620b006", "0x216300620b00616300604b00216300620b00600270900200220b006002", "0x15c00604e00215700620b0060c40064ba00215c00620b00616300900705b", "0x20b00615b08a15700970a00215b00620b00600c00604e00208a00620b006", "0x203300620b00600200600c00200220b006154006033002154087162009", "0x608700604e00203900620b00616200604e00204800620b006006006016", "0x20b00600270b00200220b006002009002002a3c00600202d00203500620b", "0x216800620b00616e00900705b00216e00620b00616e00604b00216e006", "0x600c00604e00216c00620b00616800604e0020d000620b0060650063bf", "0x616b00603300216b08e0ed00920b00609216c0d000970c00209200620b", "0x4e00204800620b00600600601600203300620b00600200600c00200220b", "0x2a3c00600202d00203500620b00608e00604e00203900620b0060ed006", "0x620b00616d00604b00216d00620b00600270d00200220b006002009002", "0x4e00217500620b0060540063ee00217100620b00616d00900705b00216d", "0x990d117500970e00209900620b00600c00604e0020d100620b006171006", "0x620b00600200600c00200220b00609600603300209617309400920b006", "0x604e00203900620b00609400604e00204800620b006006006016002033", "0x270f00200220b006002009002002a3c00600202d00203500620b006173", "0x620b00617600900705b00217600620b00617600604b00217600620b006", "0x604e0020a000620b00609b00604e0020cc00620b00611b00648000209b", "0x603300217c09d17a00920b00617d0a00cc00922d00217d00620b00600c", "0x4800620b00600600601600203300620b00600200600c00200220b00617c", "0x600202a00203500620b00609d00604e00203900620b00617a00604e002", "0x620b00617e00671200217e00620b0060a20350390097110020a200620b", "0x66fd0020cd00620b00604800601600217f00620b00603300600c0020a4", "0x70066e300200220b00600211e0020d20cd17f0090060d200620b0060a4", "0x620b00601600601b00201600620b00600c00671300200c00700720b006", "0xc400201501400720b00601000601c00201000620b00600f00601900200f", "0x620b00600900604e00201900620b00601500611b00200220b006014006", "0x71300200220b00601b00603300201b01700720b00601c0190070bf00201c", "0x20b00600600601600202900620b00600200600c0020c400620b006007006", "0x21800202c00620b00601700604e00202b00620b0060c400600f00202a006", "0xa3e02d00620b00711b00607100211b05406500920b00602c02b02a02900c", "0x731900203002f00720b00602d00614100200220b00600200900202e006", "0x20b00606500600c00204800620b00603300631a00203300620b00603002f", "0x900611e00620b00604800631b00203500620b006054006016002039006", "0x600c00203700620b00602e00631c00200220b00600200900211e035039", "0x620b00603700631b00210d00620b00605400601600212000620b006065", "0x600700601b00200700600720b0060060066e300203a10d12000900603a", "0xf01600720b00600c00601c00200c00620b00600900601900200900620b", "0x20b00601000601c00201000620b0060026e400200220b0060160060c4002", "0x5400201700620b00600f00605400200220b0060140060c4002015014007", "0x701b01700702900201700620b00601700611b00201b00620b006015006", "0x201900600720b0060060066e300200220b006002009002002a3f00220b", "0x60c400601c0020c400620b00601c00601900201c00620b00601900601b", "0x1c00211b00620b00600271400200220b0060650060c400205406500720b", "0x20b00605400605400200220b0060290060c400202a02900720b00611b006", "0x2900202b00620b00602b00611b00202c00620b00602a00605400202b006", "0x620b00600202a00200220b006002009002002a4000220b00702c02b007", "0x202d00202f00620b00602e00602c00202e00620b00602d00602b00202d", "0x3000602e00203000620b00600202a00200220b006002009002002a41006", "0x4800620b00602f00602f00202f00620b00603300602c00203300620b006", "0x2035006a4203900620b00704800603000204800620b00604800602c002", "0x211e00620b00600213100200220b00603900603300200220b006002009", "0x10d0066e600210d00620b00612000601b00212003700720b0060060066e5", "0x203e00620b00600200600c00203c00620b00600206500203a00620b006", "0x12a03e0096e700212c00620b00603c00611b00212a00620b00603a006099", "0x2009002041006a4312b00620b00707d0066e800207d12400720b00612c", "0x212d00620b0060430061a600204300620b00612b0066e900200220b006", "0x4511e00705b00204500620b00604500604b00204500620b00612d0061b2", "0x620b00613100601b00213104700720b0060370066e500212e00620b006", "0x12400600c00204b00620b00600259200204d00620b0061300066e6002130", "0x5300620b00604b00611b00205100620b00604d00609900213200620b006", "0x212e00620b00612e00604e00204f04e00720b0060530511320096e7002", "0x12f0066e900200220b006002009002056006a4412f00620b00704f0066e8", "0x13600620b0060580061b200205800620b0061330061a600213300620b006", "0x213100213400620b00613612e00705b00213600620b00613600604b002", "0x620b00605d00601b00205d13500720b0060470066e500205b00620b006", "0x4e00600c00206100620b0060026e400205f00620b0061370066e6002137", "0x13b00620b00606100611b00206700620b00605f00609900213900620b006", "0x213400620b00613400604e00206413800720b00613b0671390096e7002", "0x690066e900200220b00600200900206a006a4506900620b0070640066e8", "0x6f00620b00613c0061b200213c00620b00606c0061a600206c00620b006", "0x66e500213f00620b00606f05b00705b00206f00620b00606f00604b002", "0x620b00614100601b00200220b00607100606100214107100720b006135", "0x13800600c00207600620b00600271600207500620b0061450066e6002145", "0x7b00620b00607600611b00214b00620b00607500609900214600620b006", "0x213f00620b00613f00604e00207907700720b00607b14b1460096e7002", "0x14a0066e900200220b00600200900207f006a4614a00620b0070790066e8", "0x15200620b0061510061b200215100620b0060c70061a60020c700620b006", "0x613200214e00620b00615213f00705b00215200620b00615200604b002", "0x620b00608300605300200220b00614f00605100208314f00720b006134", "0x605300200220b00615000605100215e15000720b00614e006132002085", "0x20b00616000671800216000620b00616108500771700216100620b00615e", "0x71a00216300620b00607700600c00215d00620b00615f00671900215f006", "0x13400605100200220b00600200900215c16300700615c00620b00615d006", "0xc00216200620b00607f00671c00200220b00613f00605100200220b006", "0x900215408700700615400620b00616200671a00208700620b006077006", "0x5100200220b00613400605100200220b00613500606100200220b006002", "0x620b00613800600c00215700620b00606a00671c00200220b00605b006", "0x200220b00600200900215b08a00700615b00620b00615700671a00208a", "0x620b00605600671c00200220b00612e00605100200220b006047006061", "0x1680070060ed00620b00616e00671a00216800620b00604e00600c00216e", "0x20b00611e00605100200220b00603700606100200220b0060020090020ed", "0x671a00216b00620b00612400600c00208e00620b00604100671c002002", "0x603500603300200220b0060020090020d016b0070060d000620b00608e", "0x600271d00216c00620b00600213100200220b00600600606100200220b", "0x16d00620b00609216c00705b00209200620b00609200604b00209200620b", "0x9400671c00209400620b00616d17100705d00217100620b006002135002", "0x17500620b00617300671a00209600620b00600200600c00217300620b006", "0x61320020d100620b00600213100200220b006002009002175096007006", "0x620b00617600605300200220b00609900605100217609900720b0060d1", "0x71900209d00620b00617a00671800217a00620b00609b00600771700209b", "0x20b00617c00671a0020cc00620b00600200600c00217c00620b00609d006", "0x200c006a4700900700720b00700600200771e0020a00cc0070060a0006", "0x620b00600700600c00201600620b00600900660400200220b006002009", "0x20b006002009002002a4800600202d00201000620b00601600660500200f", "0xc00600c00201500620b00601400660600201400620b00600202a002002", "0x1700620b00600f00636e00201000620b00601500660500200f00620b006", "0x1600620b00600200601600201b01700700601b00620b006010006726002", "0x200c00900700920b00600f01600757600200f00620b00600600612b002", "0x1000657900200220b006002009002014006a4901000620b00700c006577", "0x1b01620b00601700657b00201700620b00601500657a00201500620b006", "0xfa00200220b00601c0060fa00200220b00601900657d0020650c401c019", "0x5400620b00601b00672700200220b00606500604d00200220b0060c4006", "0x900612b00202900620b00600700601600211b00620b006054006728002", "0x200900202b02a02900900602b00620b00611b00622c00202a00620b006", "0x202d00620b00600700601600202c00620b00601400672900200220b006", "0x2f02e02d00900602f00620b00602c00622c00202e00620b00600900612b", "0x20b00600c00604b00200c00620b00600271f00200220b006007006397002", "0x620b00600f00604b00200f01600720b00600900c00600937b00200c006", "0x201500620b00601000600c00201401000720b00600f00200772000200f", "0x1b01701500900601b00620b00601400661600201700620b00601600615d", "0xf01600920b00700c00700600200c64100200c00620b006009006224002", "0x1b00720b00601000613000200220b006002009002017015014009a4a010", "0x601c00613000201c00620b0060020ef00200220b00601b00604d002019", "0x205400620b0060190061b200200220b0060c400604d0020650c400720b", "0x60650061b200200220b00611b00604d00202911b00720b006054006130", "0x200220b00602b00604d00202c02b00720b00602a00613000202a00620b", "0x602d00604b00202e00620b00602c0061b200202d00620b0060290061b2", "0x2f00620b00602f00604b00202f00620b00602e02d0071c100202d00620b", "0x2f0061c500200f00620b00600f00612b00201600620b006016006016002", "0x203300620b00600202a00200220b006002009002030006a4b00220b007", "0xa4c00600202d00203900620b00604800602c00204800620b00603300602e", "0x620b00600202a00200220b0060300060f200200220b006002009002002", "0x602f00203900620b00611e00602c00211e00620b00603500602b002035", "0x620b00601600601600212000620b00603700672100203700620b006039", "0x10d00900603c00620b00612000672200203a00620b00600f00612b00210d", "0x1400601600212400620b00601700672300200220b00600200900203c03a", "0x12a00620b00612400672200203e00620b00601500612b00207d00620b006", "0x6002009002007006a4d00600620b00700200672400212a03e07d009006", "0x3aa00200c00620b0060090063a900200900620b0060060063a800200220b", "0x20b00600213500200220b00600200900201600600601600620b00600c006", "0x201400620b0060100063ab00201000620b00600700f00705d00200f006", "0x213900200f00620b00600272500201500600601500620b0060140063aa", "0x3500201000620b00601000603900201000620b00600204800200220b006", "0x200220b00600200900201b017007a4e01501400720b007010006002009", "0x701900665b00201400620b00601400600c00201900620b006009006590", "0x620b0060c400665c00200220b006002009002065006a4f0c401c00720b", "0x202d00202900620b00605400665d00211b00620b00601c006596002054", "0x2a00665e00202a00620b00600202a00200220b006002009002002a50006", "0x2900620b00602b00665d00211b00620b00606500659600202b00620b006", "0xf00772a00201600620b0060160060fc00201600620b00611b0061d6002", "0x600200900202d006a5102c00620b00702900666000201600620b006016", "0x1400600c00202e00620b00602c00659b00200220b00600211e00200220b", "0x11e00620b00600700615d00203500620b00601500601600203900620b006", "0x3002f00c20b00603711e03503900c72c00203700620b00602e00659c002", "0x200220b00600200900210d006a5212000620b007048006151002048033", "0xc00212403c00720b00603a00c03300937b00203a00620b006120006152", "0x20b00603c00615d00204100620b00603000601600212b00620b00602f006", "0x61b00204500620b00612400604b00212d00620b0060160060fc002043006", "0x620b00712c00661c00212c12a03e07d00c20b00604512d04304112b016", "0x4d13013100920b00612e00661d00200220b006002009002047006a5312e", "0xc00204e00620b00604b00672e00204b00620b00604d13013100972d002", "0x20b00612a00615d00213200620b00603e00601600204f00620b00607d006", "0x600200900205305113204f00c00605300620b00604e00672f002051006", "0x1600205600620b00607d00600c00212f00620b00604700673100200220b", "0x20b00612f00672f00205800620b00612a00615d00213300620b00603e006", "0x20b00601600639c00200220b00600200900213605813305600c006136006", "0x2f00600c00213400620b00610d00673100200220b00600c00604d002002", "0x5d00620b00603300615d00213500620b00603000601600205b00620b006", "0x220b00600200900213705d13505b00c00613700620b00613400672f002", "0x5f00620b00600202a00200220b00602d00603300200220b00600211e002", "0xc00213800620b00606100672e00206100620b00605f00c01600972d002", "0x20b00600700615d00213900620b00601500601600206400620b006014006", "0x600200900213b06713906400c00613b00620b00613800672f002067006", "0x600f00673200200220b00600c00604d00200220b00600211e00200220b", "0x600213400206900620b00600213100200220b00600900639c00200220b", "0x6c00620b00606a06900705b00206a00620b00606a00604b00206a00620b", "0x6f00673100206f00620b00606c13c00705d00213c00620b006002135002", "0x14100620b00601b00601600207100620b00601700600c00213f00620b006", "0x14107100c00607500620b00613f00672f00214500620b00600700615d002", "0x200220b006002009002007006a5400600620b007002006733002075145", "0x600c00613300200c00620b00600900605600200900620b00600600612f", "0x200f00620b00600213500200220b00600200900201600600601600620b", "0x1400613300201400620b00601000605800201000620b00600700f00705d", "0x70060060db00200600620b00600200601b00201500600601500620b006", "0x620b0060090061a300200220b00600200900200c006a5500900700720b", "0x202d00201000620b0060160061a400200f00620b006007006099002016", "0x140061a500201400620b00600202a00200220b006002009002002a56006", "0x1000620b0060150061a400200f00620b00600c00609900201500620b006", "0x100060df00201700620b00601700600f00201700620b00600f006053002", "0x620b00601b0061a600200220b006002009002019006a5701b00620b007", "0x4d00205406500720b0060c40061300020c400620b00601c0061b200201c", "0x2900720b00611b00613000211b00620b0060020ef00200220b006065006", "0x2b00613000202b00620b0060540061b200200220b00602900604d00202a", "0x2e00620b00602a0061b200200220b00602c00604d00202d02c00720b006", "0x2d0061b200200220b00602f00604d00203002f00720b00602e006130002", "0x3300620b00603300604b00204800620b0060300061b200203300620b006", "0x61c500203900620b00603900604b00203900620b0060480330071c1002", "0x11e00620b00600202a00200220b006002009002035006a5800220b007039", "0x600202d00212000620b00603700602c00203700620b00611e00602e002", "0x20b00600202a00200220b0060350060f200200220b006002009002002a59", "0x2f00212000620b00603a00602c00203a00620b00610d00602b00210d006", "0x20b00601700600f00212400620b00603c00673400203c00620b006120006", "0x220b00600200900203e07d00700603e00620b00612400673500207d006", "0x20b00612a00673600212a00620b00600202a00200220b006019006033002", "0x700604100620b00612c00673500212b00620b00601700600f00212c006", "0x600600700620b0060060065e000200600620b00600200622900204112b", "0x33100200220b006002009002007006a5a00600620b007002006737002007", "0x20b00600c00621200200c00620b00600900633200200900620b006006006", "0x5d00200f00620b00600213500200220b006002009002016006006016006", "0x601400621200201400620b00601000633300201000620b00600700f007", "0x900700600c64100201600620b00600c00622400201500600601500620b", "0xc00200220b00600200900201b017015009a5b01401000f00920b007016", "0x60650c400773800206500620b00601400604b0020c400620b006002006", "0x1000620b00601000612b00200f00620b00600f00601600201c01900720b", "0x673900200220b00600200900211b006a5c05400620b00701c006171002", "0x620b00602a00673b00202a00620b00602900673a00202900620b006054", "0x612b00202d00620b00600f00601600202c00620b00601900600c00202b", "0x202f02e02d02c00c00602f00620b00602b00673c00202e00620b006010", "0x203000620b00600213100200220b00611b00603300200220b006002009", "0x603303000705b00203300620b00603300604b00203300620b00600273d", "0x203500620b00604803900705d00203900620b00600213500204800620b", "0x600f00601600203700620b00601900600c00211e00620b00603500673e", "0x603a00620b00611e00673c00210d00620b00601000612b00212000620b", "0x203c00620b00601b00673f00200220b00600200900203a10d12003700c", "0x600200600c00207d00620b00612400673b00212400620b00603c00673a", "0x212c00620b00601700612b00212a00620b00601500601600203e00620b", "0x620b00700200674000212b12c12a03e00c00612b00620b00607d00673c", "0x64f00200900620b00600600664e00200220b006002009002007006a5d006", "0x200900201600600601600620b00600c00665000200c00620b006009006", "0x201000620b00600700f00705d00200f00620b00600213500200220b006", "0x74100201500600601500620b00601400665000201400620b006010006651", "0x636100200700600600700620b0060060065e000200600620b006002006", "0x620b00600700636100200900620b00600600636100200700620b006002", "0x4d00201000f00720b00601600613000201600620b00600c0061bf00200c", "0x620b0060140061bf00201400620b00600900636100200220b00600f006", "0x61b200200220b00601700604d00201b01700720b006015006130002015", "0x20b00601c0190071c100201c00620b00601b0061b200201900620b006010", "0x65006a5e00220b0070c40061c50020c400620b0060c400604b0020c4006", "0x620b00605400602e00205400620b00600202a00200220b006002009002", "0x20b006002009002002a5f00600202d00202900620b00611b00602c00211b", "0x602a00602b00202a00620b00600202a00200220b0060650060f2002002", "0x602c00620b00602900636f00202900620b00602b00602c00202b00620b", "0x600900600200937b00200f01600c00900c20b00600700674200202c006", "0x20b00600c01401000937b00201400620b00601400604b00201401000720b", "0x20c400620b00601700604b00201c00620b00601500615d002017015007", "0x37b00201901b00720b0060650c401c00974300206500620b0060160063f1", "0x604b00202900620b00605400615d00211b05400720b00600f01901b009", "0x1c500200f01600720b00601600635a00202a02900700602a00620b00611b", "0x20b00601600604d00200220b006002009002010006a6000220b00700f006", "0x600900604d00200220b00600c00604d00200220b00600700604d002002", "0x600c00201500620b00601400602b00201400620b00600202a00200220b", "0x620b00601500602c00201b00620b00600600612c00201700620b006002", "0x200220b0060100060f200200220b00600200900201901b017009006019", "0x1c0650071c100206501600720b00601600635a00201c00620b006002744", "0xa6100220b0070c40061c50020c400620b0060c400604b0020c400620b006", "0x600700604d00200220b00601600604d00200220b006002009002054006", "0x600202a00200220b00600900604d00200220b00600c00604d00200220b", "0x202a00620b00600200600c00202900620b00611b00602b00211b00620b", "0x2c02b02a00900602c00620b00602900602c00202b00620b00600600612c", "0x2d00620b00600274400200220b0060540060f200200220b006002009002", "0x4b00202e00620b00602d02f0071c100202f00c00720b00600c00635a002", "0x6002009002030006a6200220b00702e0061c500202e00620b00602e006", "0xc00604d00200220b00600700604d00200220b00601600604d00200220b", "0x602b00203300620b00600202a00200220b00600900604d00200220b006", "0x620b00600600612c00203900620b00600200600c00204800620b006033", "0x220b00600200900211e03503900900611e00620b00604800602c002035", "0x10d006a6312003700720b00700900200774500200220b0060300060f2002", "0x20b00612000622800212000620b00612000674600200220b006002009002", "0x12400720b00703c03700774500203c00c00720b00600c00635a00203a006", "0x22800207d00620b00607d00674600200220b00600200900203e006a6407d", "0x12b00620b00600274800212c00620b00600274700212a00620b00607d006", "0x12400600c00212b00620b00612b00604b00212c00620b00612c00604b002", "0x20b006002009002002a6504100620b00712b12c00774900212400620b006", "0x612c00204300620b00604100622800204100620b006041006746002002", "0x620b00601600604b00204700620b00612a00674a00212e00620b006006", "0xa6600220b00704500674c00204512d00720b00613104712e00974b002131", "0x600c00604d00200220b00603a00674d00200220b006002009002130006", "0x600202a00200220b00604300674d00200220b00600700604d00200220b", "0x204e00620b00612400600c00204b00620b00604d00602b00204d00620b", "0x13204f04e00900613200620b00604b00602c00204f00620b00612d00612c", "0x605300604d00205305100720b00613000674e00200220b006002009002", "0x4b00205800620b00604300674a00213300620b00612d00612c00200220b", "0x612c00205612f00720b00613605813300974b00213600620b006007006", "0x620b00600c00604b00205d00620b00603a00674a00213500620b00612f", "0x5600720b00605600622700205b13400720b00613705d13500974b002137", "0x74a00213805b00720b00605b00622700206100620b00606100674a002061", "0x705f00674c00205f00620b00613806100774f00213800620b006138006", "0x2009002002a6800600202d00200220b006002009002064006a6700220b", "0x200220b00606700604d00206713900720b00606400674e00200220b006", "0x604b00213b00620b0060691390071c100206905100720b00605100635a", "0x20b00600200900206a006a6900220b00713b0061c500213b00620b00613b", "0x605600674d00200220b00605b00674d00200220b00605100604d002002", "0x600c00213c00620b00606c00602e00206c00620b00600202a00200220b", "0x620b00613c00602c00213f00620b00613400612c00206f00620b006124", "0x200220b00606a0060f200200220b00600200900207113f06f009006071", "0x7514500775000207500620b00605b00674a00214500620b00605600674a", "0x220b006002009002076006a6a00220b00714100674c00214100620b006", "0x200220b006002009002002a6b00600202d00200220b00605100604d002", "0x510770071c100200220b00607900604d00207907700720b00607600674e", "0xa6c00220b0071460061c500214600620b00614600604b00214600620b006", "0x607b00602e00207b00620b00600202a00200220b00600200900214b006", "0x20c700620b00613400612c00207f00620b00612400600c00214a00620b", "0xf200200220b0060020090021510c707f00900615100620b00614a00602c", "0x14e00620b00615200602b00215200620b00600202a00200220b00614b006", "0x14e00602c00208300620b00613400612c00214f00620b00612400600c002", "0x603a00674d00200220b00600200900208508314f00900608500620b006", "0x1600604d00200220b00600700604d00200220b00600c00604d00200220b", "0x602b00215000620b00600202a00200220b00612a00674d00200220b006", "0x620b00600600612c00216100620b00612400600c00215e00620b006150", "0x220b00600200900215f16016100900615f00620b00615e00602c002160", "0x20b00600c00604d00200220b00603a00674d00200220b00601600604d002", "0x615d00602b00215d00620b00600202a00200220b00600700604d002002", "0x216200620b00600600612c00215c00620b00603e00600c00216300620b", "0x4d00200220b00600200900208716215c00900608700620b00616300602c", "0x200220b00600c00604d00200220b00600700604d00200220b006016006", "0x20b00610d00600c00215700620b00615400602b00215400620b00600202a", "0x900616e00620b00615700602c00215b00620b00600600612c00208a006", "0x201700620b00600600601600201500620b00600200600c00216e15b08a", "0x1900611b00201900900720b0060090065a700201b00620b00600700612b", "0x620b00601c00661600201c00c00720b00600c00675100201900620b006", "0x1400675300201401000f01600c20b00601c01901b01701501675200201c", "0x620b0060c400675400200220b006002009002065006a6d0c400620b007", "0x75600200220b006002009002029006a6e11b00620b007054006755002054", "0x20b00602a00675700202c00c00720b00600c00675100202a00620b006002", "0x900720b0060090065a700202b00620b00602d02c00775800202d02a007", "0x2f00920b00702b02e01000f00c64100202b00620b00602b00664000202e", "0x11e00620b00600275600200220b006002009002035039048009a6f033030", "0x11e00653500203a00620b00602a00653500210d00620b00601600600c002", "0x603300604b00212003700720b00603c03a10d00975900203c00620b006", "0x203000620b00603000612b00202f00620b00602f00601600203300620b", "0x12400675b00200220b00600200900207d006a7012400620b00712000675a", "0x620b00612a00664000212a00620b00603e00c00775800203e00620b006", "0x204512d043009a7104112b12c00920b00712a00903002f00c64100212a", "0x612e00675c00212e00620b00604103311b00943f00200220b006002009", "0x213000620b00613100675e00213100620b00604700675d00204700620b", "0x612b00612b00204b00620b00612c00601600204d00620b00603700600c", "0x200900204f04e04b04d00c00604f00620b00613000675f00204e00620b", "0x676000200220b00611b00634900200220b00603300604d00200220b006", "0x620b00605100675e00205100620b00613200675d00213200620b006045", "0x612b00205600620b00604300601600212f00620b00603700600c002053", "0x205813305612f00c00605800620b00605300675f00213300620b00612d", "0x200220b00611b00634900200220b00603300604d00200220b006002009", "0x620b00607d00676200200220b00600c00676100200220b0060090060c4", "0x612b00205b00620b00602f00601600213400620b00603700600c002136", "0x205d13505b13400c00605d00620b00613600675f00213500620b006030", "0x200220b00611b00634900200220b00600c00676100200220b006002009", "0x620b00603500676000200220b0060090060c400200220b00602a006534", "0x600c00206100620b00605f00675e00205f00620b00613700675d002137", "0x620b00603900612b00206400620b00604800601600213800620b006016", "0x20b00600200900206713906413800c00606700620b00606100675f002139", "0x602900676000200220b0060090060c400200220b00600c006761002002", "0x206a00620b00606900675e00206900620b00613b00675d00213b00620b", "0x601000612b00213c00620b00600f00601600206c00620b00601600600c", "0x200900213f06f13c06c00c00613f00620b00606a00675f00206f00620b", "0x676200200220b0060090060c400200220b00600c00676100200220b006", "0x620b00600f00601600214100620b00601600600c00207100620b006065", "0x14100c00607600620b00607100675f00207500620b00601000612b002145", "0x220b006002009002007006a7200600620b007002006763002076075145", "0xc00652900200c00620b00600900621400200900620b006006006528002", "0xf00620b00600213500200220b00600200900201600600601600620b006", "0x652900201400620b00601000652a00201000620b00600700f00705d002", "0x700603300200700620b00600200652e00201500600601500620b006014", "0x2a00200220b00600900603300200900620b00600600652e00200220b006", "0x620b00601600602c00201600620b00600c00602e00200c00620b006002", "0x20b00600f00662000201401000f00920b0060160063fe00200f00600600f", "0x201700620b00601b00622400201b00c00720b00600c006751002015006", "0x1c00720b00701501701900700601662200201900900720b0060090065a7", "0x202900620b00600275600200220b00600200900211b054065009a730c4", "0x775800202c02900720b00602900675700202b00c00720b00600c006751", "0x601c00601600202d00900720b0060090065a700202a00620b00602c02b", "0x701002a02d0c401c01662200202a00620b00602a00664000201c00620b", "0x20b00600275600200220b006002009002048033030009a7402f02e00720b", "0x53500212000620b00602900653500203700620b00600200600c002039006", "0x612b00211e03500720b00610d12003700975900210d00620b006039006", "0x620b00711e00675a00202e00620b00602e00601600202f00620b00602f", "0x75800212400620b00603a00675b00200220b00600200900203c006a7503a", "0x2f02e01662200207d00620b00607d00664000207d00620b00612400c007", "0x200220b00600200900204112b12c009a7612a03e00720b00701407d009", "0x20b00612d00676400212d00620b0060430063b700204300620b00600202a", "0x1600204700620b00603500600c00212e00620b006045006765002045006", "0x20b00612e00676600213000620b00612a00612b00213100620b00603e006", "0x20b0060410063b900200220b00600200900204d13013104700c00604d006", "0xc00204f00620b00604e00676500204e00620b00604b00676400204b006", "0x20b00612b00612b00205100620b00612c00601600213200620b006035006", "0x600200900212f05305113200c00612f00620b00604f006766002053006", "0xc00676100200220b0060090060c400200220b00601400604d00200220b", "0x213300620b00603500600c00205600620b00603c00676700200220b006", "0x605600676600213600620b00602f00612b00205800620b00602e006016", "0x600c00676100200220b00600200900213413605813300c00613400620b", "0x90060c400200220b00602900653400200220b00601400604d00200220b", "0x213500620b00605b00676400205b00620b0060480063b900200220b006", "0x603000601600213700620b00600200600c00205d00620b006135006765", "0x613800620b00605d00676600206100620b00603300612b00205f00620b", "0x4d00200220b00600c00676100200220b00600200900213806105f13700c", "0x200220b0060090060c400200220b00601000604d00200220b006014006", "0x613900676500213900620b00606400676400206400620b00611b0063b9", "0x206900620b00606500601600213b00620b00600200600c00206700620b", "0x6a06913b00c00606c00620b00606700676600206a00620b00605400612b", "0x700600600700620b0060060065e000200600620b00600200676800206c", "0x200700600600700620b0060060065e000200600620b006002006769002", "0x76b00200700600600700620b0060060065e000200600620b00600200676a", "0x676c00200700600600700620b0060060065e000200600620b006002006", "0x200676d00200700600600700620b0060060065e000200600620b006002", "0x220b00600600604d00200220b006002009002009006a7700700620b007", "0x1600661300201600620b00600c00661200200c00620b006007006226002", "0x220b00600900634900200220b00600200900200f00600600f00620b006", "0x600213500201400620b00600601000705b00201000620b006002131002", "0x1b00620b00601700661400201700620b00601401500705d00201500620b", "0x200600620b00600200676e00201900600601900620b00601b006613002", "0x5e000200600620b00600200676f00200700600600700620b0060060065e0", "0x65e000200600620b00600200677000200700600600700620b006006006", "0x60065e000200600620b00600200677100200700600600700620b006006", "0x700600c64100201600620b00600c00622400200700600600700620b006", "0x200220b00600200900201b017015009a7801401000f00920b007016009", "0x650c400777200206500620b00601400604b0020c400620b00600200600c", "0x620b00601000612b00200f00620b00600f00601600201c01900720b006", "0x77400200220b00600200900211b006a7905400620b00701c006773002010", "0x20b00602a00677600202a00620b00602900677500202900620b006054006", "0x12b00202d00620b00600f00601600202c00620b00601900600c00202b006", "0x2f02e02d02c00c00602f00620b00602b00623100202e00620b006010006", "0x3000620b00600213100200220b00611b00603300200220b006002009002", "0x3303000705b00203300620b00603300604b00203300620b006002777002", "0x3500620b00604803900705d00203900620b00600213500204800620b006", "0xf00601600203700620b00601900600c00211e00620b006035006778002", "0x3a00620b00611e00623100210d00620b00601000612b00212000620b006", "0x3c00620b00601b00677900200220b00600200900203a10d12003700c006", "0x200600c00207d00620b00612400677600212400620b00603c006775002", "0x12c00620b00601700612b00212a00620b00601500601600203e00620b006", "0x20b00700200623200212b12c12a03e00c00612b00620b00607d006231002", "0x200900620b00600600653900200220b006002009002007006a7a006006", "0x900201600600601600620b00600c00621300200c00620b00600900653a", "0x1000620b00600700f00705d00200f00620b00600213500200220b006002", "0x201500600601500620b00601400621300201400620b00601000653b002", "0x620b00600600604e00200700620b00600202a00200220b006002006033", "0x620b00600200677a00200c00900700600c00620b0060070061ff002009", "0x600620b00700200677b00200700600600700620b0060060065e0002006", "0x66ca00200900620b0060060066c900200220b006002009002007006a7b", "0x600200900201600600601600620b00600c0066cb00200c00620b006009", "0x6cc00201000620b00600700f00705d00200f00620b00600213500200220b", "0x677c00201500600601500620b0060140066cb00201400620b006010006", "0x20b00600600604d00200220b006002009002009006a7c00700620b007002", "0x621300201600620b00600c00653a00200c00620b006007006539002002", "0x20b0060090060c400200220b00600200900200f00600600f00620b006016", "0x213500201400620b00600601000705b00201000620b006002131002002", "0x620b00601700653b00201700620b00601401500705d00201500620b006", "0x20b00700700600200977d00201900600601900620b00601b00621300201b", "0xf00620b00600c00677e00200220b006002009002016006a7d00c009007", "0x1000678000201400620b00600900600c00201000620b00600f00677f002", "0x620b00600213100200220b00600200900201501400700601500620b006", "0x1700705b00201b00620b00601b00604b00201b00620b00600222a002017", "0x620b00601901c00705d00201c00620b00600213500201900620b00601b", "0x678000205400620b00601600600c00206500620b0060c40067810020c4", "0x600200600c00200220b00600211e00211b05400700611b00620b006065", "0x201500620b00600900604e00201400620b00600600601600201000620b", "0xf01600c00920b00601701501401000c78200201700620b00600700604e", "0x65e900200220b006002009002019006a7e01b00620b00700f0065e8002", "0x20b00606500603300200220b00601c0060510020650c401c00920b00601b", "0x631a00211b00620b0060540c400731900205400620b00600202a002002", "0x620b00601600601600202a00620b00600c00600c00202900620b00611b", "0x220b00600200900202c02b02a00900602c00620b00602900631b00202b", "0x1600601600202e00620b00600c00600c00202d00620b00601900631c002", "0x678300203002f02e00900603000620b00602d00631b00202f00620b006", "0x601600604d00201600c00720b00600900678400200900200720b006002", "0x4f00201500620b00600600604e00201400620b00600c00604b00200220b", "0x600200678400200220b00601000603300201000f00720b006015014007", "0x20c400620b00601b00604b00200220b00601700604d00201b01700720b", "0x603300201c01900720b0060650c400704f00206500620b00600700604e", "0x211b00620b00600f00604e00205400620b00600202a00200220b00601c", "0x2a02911b00900602a00620b0060540061ff00202900620b00601900604e", "0x200220b00600211e00200220b00600213900200f00620b006002785002", "0x65f700201501400720b00601000678600201000700720b006007006787", "0x1900620b00600900604e00201b00620b00601400604b00200220b006015", "0x678600200220b00601700603300201701600720b00601901b00704f002", "0x620b00600200600c00200220b00601c00604d0020c401c00720b006007", "0x604e00202b00620b0060c400631600202a00620b006006006016002029", "0x2b02a02900c78a00201600620b00601600f00778900202c00620b00600c", "0x900202e006a7f02d00620b00711b00607100211b05406500920b00602c", "0x220b00603000603300203002f00720b00602d00614100200220b006002", "0x671200204800620b00603302f01600971100203300620b00600202a002", "0x620b00605400601600203500620b00606500600c00203900620b006048", "0x220b00600200900203711e03500900603700620b0060390066fd00211e", "0x606500600c00212000620b00602e0066f900200220b006016006051002", "0x603c00620b0061200066fd00203a00620b00605400601600210d00620b", "0x720b00600900678d00200900200720b00600200678b00203c03a10d009", "0x604e00201400620b00600c00621b00200220b00601600604d00201600c", "0x601000603300201000f00720b00601501400752c00201500620b006007", "0x4b00200220b00601700634900201b01700720b00600200678d00200220b", "0x60650c400704f00206500620b00600f00604e0020c400620b00601b006", "0x4e00205400620b00600202a00200220b00601c00603300201c01900720b", "0x20b0060540061ff00202900620b00601900604e00211b00620b006006006", "0x900678f00200900200720b00600200678e00202a02911b00900602a006", "0x1400620b00600c00621b00200220b00601600604d00201600c00720b006", "0x3300201000f00720b00601501400752c00201500620b00600700604e002", "0x20b00601700634900201b01700720b00600200678f00200220b006010006", "0x704f00206500620b00600f00604e0020c400620b00601b00604b002002", "0x620b00600202a00200220b00601c00603300201c01900720b0060650c4", "0x61ff00202900620b00601900604e00211b00620b00600600604e002054", "0x4b00200900620b00600200679000202a02911b00900602a00620b006054", "0x601000f00704f00201000620b00600700604e00200f00620b006009006", "0x4e00201400620b00600202a00200220b00601600603300201600c00720b", "0x20b0060140061ff00201700620b00600c00604e00201500620b006006006", "0x600900604b00200900620b00600200679100201b01701500900601b006", "0xc00720b00601000f00704f00201000620b00600700604e00200f00620b", "0x600600604e00201400620b00600202a00200220b006016006033002016", "0x601b00620b0060140061ff00201700620b00600c00604e00201500620b", "0x4e00200900620b00600202a00200220b00600200679300201b017015009", "0x20b0060090061ff00201600620b00600700604e00200c00620b006006006", "0x600900604b00200900620b00600200679400200f01600c00900600f006", "0xc00720b00601000f00704f00201000620b00600700604e00200f00620b", "0x600600604e00201400620b00600202a00200220b006016006033002016", "0x601b00620b0060140061ff00201700620b00600c00604e00201500620b", "0xf00620b00600900604b00200900620b00600200679500201b017015009", "0x3300201600c00720b00601000f00704f00201000620b00600700604e002", "0x1500620b00600600604e00201400620b00600202a00200220b006016006", "0x1701500900601b00620b0060140061ff00201700620b00600c00604e002", "0x604e00200f00620b00600900604b00200900620b00600200679600201b", "0x601600603300201600c00720b00601000f00704f00201000620b006007", "0x604e00201500620b00600600604e00201400620b00600202a00200220b", "0x79700201b01701500900601b00620b0060140061ff00201700620b00600c", "0x20b00600700604e00200f00620b00600900617300200900620b006002006", "0x200220b00601600603300201600c00720b00601000f007798002010006", "0x20b00600c00604e00201500620b00600600604e00201400620b00600202a", "0x600200679900201b01701500900601b00620b0060140061ff002017006", "0x201000620b00600600604e00200f00620b00600900604b00200900620b", "0x600202a00200220b00601600603300201600c00720b00601000f00704f", "0x201700620b00600700604e00201500620b00600c00604e00201400620b", "0x900620b00600200679a00201b01701500900601b00620b0060140061ff", "0xf00704f00201000620b00600600604e00200f00620b00600900604b002", "0x1400620b00600202a00200220b00601600603300201600c00720b006010", "0x140061ff00201700620b00600700604e00201500620b00600c00604e002", "0x600900659d00200220b00600211e00201b01701500900601b00620b006", "0x20b0060160060fa00201000f01600920b00600c00659e00200c00900720b", "0x60020ef00201400620b00601000605300200220b00600f00604d002002", "0x206500620b0060060060160020c400620b00600200600c00201500620b", "0x601500604b00211b00620b00601400600f00205400620b00600700615d", "0x79c00201c01901b01700c20b00602911b0540650c401679b00202900620b", "0x602a0067a100200220b00600200900202b006a8002a00620b00701c006", "0x200220b00602e00603300200220b00602c00606100202e02d02c00920b", "0xfa00204803303000920b00602f00659e00202f00900720b00600900659d", "0x3900620b00604800601900200220b00603300604d00200220b006030006", "0x1900937b00203500620b00603500604b00203500620b00603900653c002", "0x620b0060027a200212000620b0060020ef00203711e00720b00603502d", "0x937b00210d00620b00610d00604b00212000620b00612000604b00210d", "0x659e00212400900720b00600900659d00203c03a00720b00610d12011e", "0x20b00612a00659f00200220b00603e00604d00212a03e07d00920b006124", "0x604b00212b00620b00612c0061bf00212c00620b00607d006361002002", "0x900659d00204304100720b00612b03c03a00937b00203c00620b00603c", "0x60450060fa00204712e04500920b00612d00659e00212d00900720b006", "0x604b00213100620b00612e0061b200200220b00604700659f00200220b", "0x900659e00204d13000720b00613104304100937b00204300620b006043", "0x220b00604e00604d00200220b00604b0060fa00204f04e04b00920b006", "0x4d00604b00205100620b00613200653c00213200620b00604f006019002", "0x20b00605104d13000937b00205100620b00605100604b00204d00620b006", "0x203700620b00603700604b00212f00620b00612f00604b00212f053007", "0x604b00205800620b0060027a300213305600720b00603712f05300937b", "0x605813305600937b00205800620b00605800604b00213300620b006133", "0x13500620b00605b00633200205b00620b00613400633100213413600720b", "0x13600615d00213700620b00601b00601600205d00620b00601700600c002", "0x900206105f13705d00c00606100620b00613500621200205f00620b006", "0x213800620b00602b00633300200220b0060090065bd00200220b006002", "0x601900615d00213900620b00601b00601600206400620b00601700600c", "0x73ac00213b06713906400c00613b00620b00613800621200206700620b", "0x90063ad00200220b00600200900200c006a8100900700720b007006002", "0x1000620b0060160063ae00200f00620b00600700600c00201600620b006", "0x201400620b00600202a00200220b006002009002002a8200600202d002", "0x60150063ae00200f00620b00600c00600c00201500620b0060140063af", "0x601b00620b0060100067a400201700620b00600f00636e00201000620b", "0x720b00600900600200937b00200900620b0060070061bf00201b017007", "0x700601000620b00601600604b00200f00620b00600c00615d00201600c", "0x6a8300220b00700900674c00200900600720b00600600622700201000f", "0x20b00600200612c00200220b00600700604d00200220b00600200900200c", "0x6002009002002a8400600202d00200f00620b00600600674a002016006", "0x200c79e00201000620b00600279d00200220b00600600674d00200220b", "0x1400612c00201500620b00601500679f00201501400720b00600c007010", "0x220b006002009002002a8501700620b0070150067a000201400620b006", "0x600202d00201900620b00601b00674a00201b00620b006017006228002", "0x601c00674a00201c00620b0060027a500200220b006002009002002a86", "0x200f00620b00601900674a00201600620b00601400612c00201900620b", "0x20650c400700606500620b00600f0067a70020c400620b006016006667", "0x9002009006a8700220b00700700674c00200700200720b006002006227", "0x600c00620b00600600674a00200220b00600200674d00200220b006002", "0x9002016006a8800220b00700600674c00200220b00600200900200c006", "0x600f00620b00600200674a00200220b0060090067a800200220b006002", "0x20b00600279d00200220b00600200674d00200220b00600200900200f006", "0x201400620b00601400679f00201400620b0060090100077ac002010006", "0x150067a000201500620b00601500679f00201500620b0060160140077ac", "0x1b00620b00601700622800200220b006002009002002a8901700620b007", "0x220b006002009002002a8a00600202d00201900620b00601b00674a002", "0x60190067a700201900620b00601c00674a00201c00620b0060027a5002", "0x700700674c00200700600720b0060060062270020c40060060c400620b", "0x74a00200220b00600600674d00200220b006002009002009006a8b00220b", "0x60090067a800200220b00600200900200c00600600c00620b006002006", "0x74a00201000620b00600200674a00201600620b0060060067ad00200220b", "0x600f0067a700200f00620b00601401000774f00201400620b006016006", "0x900700600c64100201600620b00600c00622400201500600601500620b", "0xc00200220b00600200900201b017015009a8c01401000f00920b007016", "0x60650c400760300206500620b00601400604b0020c400620b006002006", "0x1000620b00601000612b00200f00620b00600f00601600201c01900720b", "0x67ae00200220b00600200900211b006a8d05400620b00701c00633b002", "0x620b00602a0067a900202a00620b0060290067af00202900620b006054", "0x612b00202d00620b00600f00601600202c00620b00601900600c00202b", "0x202f02e02d02c00c00602f00620b00602b00623500202e00620b006010", "0x203000620b00600213100200220b00611b00603300200220b006002009", "0x603303000705b00203300620b00603300604b00203300620b0060027aa", "0x203500620b00604803900705d00203900620b00600213500204800620b", "0x600f00601600203700620b00601900600c00211e00620b0060350067ab", "0x603a00620b00611e00623500210d00620b00601000612b00212000620b", "0x203c00620b00601b0067b000200220b00600200900203a10d12003700c", "0x600200600c00207d00620b0061240067a900212400620b00603c0067af", "0x212c00620b00601700612b00212a00620b00601500601600203e00620b", "0x70070060020097b200212b12c12a03e00c00612b00620b00607d006235", "0x20b00600c0067b300200220b00600200900200f016007a8e00c00900720b", "0x2d00201500620b0060100067b600201400620b00600900600c002010006", "0xc00201700620b00600f0067b700200220b006002009002002a8f006002", "0x620b00600223400201500620b0060170067b600201400620b006016006", "0x77b50020c400620b00601b00604b00201c00620b0060150067b400201b", "0x2009002054006a9006500620b00701900675a00201900620b0060c401c", "0x202900620b00611b0067b800211b00620b00606500675b00200220b006", "0x602a0067bb00202b00620b00601400600c00202a00620b0060290067ba", "0x620b0060540067c000200220b00600200900202c02b00700602c00620b", "0x2e00700602f00620b00602d0067bb00202e00620b00601400600c00202d", "0x220b00600200900200c006a9100900700720b0070060020077c100202f", "0x160067bc00200f00620b00600700600c00201600620b0060090067c2002", "0x600202a00200220b006002009002002a9200600202d00201000620b006", "0x200f00620b00600c00600c00201500620b0060140067bd00201400620b", "0x60100067be00201700620b00600f00636e00201000620b0060150067bc", "0x20b00600c00603900200c00620b00600204800201b01700700601b00620b", "0x2009002014010007a9300f01600720b00700c00600200903500200c006", "0x1701500720b0070070067bf00201600620b00601600600c00200220b006", "0x632000201900620b0060170061a600200220b00600200900201b006a94", "0x620b00601c0063210020c400620b00601500604e00201c00620b006019", "0x5400620b00600202a00200220b006002009002002a9500600202d002065", "0x11b0063210020c400620b00601b00604e00211b00620b006054006322002", "0x20b00600200900202a006a9602900620b00706500607700206500620b006", "0x1600600c00202b00620b00602900900705b00200220b00600211e002002", "0x3300620b0060c400604e00203000620b00600f00601600202f00620b006", "0x2d02c00920b00604803303002f00c78200204800620b00602b00604e002", "0x5e900200220b006002009002035006a9703900620b00702e0065e800202e", "0x71200210d00620b00612003711e00971100212003711e00920b006039006", "0x20b00602d00601600203c00620b00602c00600c00203a00620b00610d006", "0x20b00600200900207d12403c00900607d00620b00603a0066fd002124006", "0x601600212a00620b00602c00600c00203e00620b0060350066f9002002", "0x900212b12c12a00900612b00620b00603e0066fd00212c00620b00602d", "0x202a00200220b00602a00603300200220b00600211e00200220b006002", "0x20b00604300671200204300620b0060410090c400971100204100620b006", "0x6fd00212e00620b00600f00601600204500620b00601600600c00212d006", "0x211e00200220b00600200900204712e04500900604700620b00612d006", "0x213100200220b00600900605100200220b00600700605100200220b006", "0x213000620b00613000604b00213000620b00600213400213100620b006", "0x4d04b00705d00204b00620b00600213500204d00620b00613013100705b", "0x13200620b00601000600c00204f00620b00604e0066f900204e00620b006", "0x5113200900605300620b00604f0066fd00205100620b006014006016002", "0xc0067c500200c00700720b0060070067c300200220b00600211e002053", "0x1000620b00600f00631500200f00620b0060160065ee00201600620b006", "0x1500611b00200220b0060140060c400201501400720b00601000601c002", "0x720b00601c0190070bf00201c00620b00600900604e00201900620b006", "0x600c0020c400620b0060070067c500200220b00601b00603300201b017", "0x620b0060c400631600202a00620b00600600601600202900620b006002", "0x6500920b00602c02b02a02900c31700202c00620b00601700604e00202b", "0x200220b00600200900202e006a9802d00620b00711b00607100211b054", "0x631a00203300620b00603002f00731900203002f00720b00602d006141", "0x620b00605400601600203900620b00606500600c00204800620b006033", "0x220b00600200900211e03503900900611e00620b00604800631b002035", "0x5400601600212000620b00606500600c00203700620b00602e00631c002", "0x665200203a10d12000900603a00620b00603700631b00210d00620b006", "0x720b00600900613000200900620b00600700665400200700620b006002", "0x604e00201400620b00601600604b00200220b00600c00604d00201600c", "0x601000603300201000f00720b00601501400704f00201500620b006006", "0x61ff00201b00620b00600f00604e00201700620b00600202a00200220b", "0x1600603900201600620b00600204800201901b00700601900620b006017", "0x2015014007a9901000f00720b00701600600200903500201600620b006", "0x620b00600f00600c00201700620b00600900601b00200220b006002009", "0x200220b00600200900201c006a9a01901b00720b0070170060db00200f", "0x60c40061a400206500620b00601b0060990020c400620b0060190061a3", "0x20b00600202a00200220b006002009002002a9b00600202d00205400620b", "0x1a400206500620b00601c00609900202900620b00611b0061a500211b006", "0x20b00602a00600f00202a00620b00606500605300205400620b006029006", "0x200220b00600200900202c006a9c02b00620b0070540060df00202a006", "0x620b00602d0061b200202d00620b00602b0061a600200220b00600211e", "0x3002f00720b00602e00c00700937b00202e00620b00602e00604b00202e", "0x2f00615d00203700620b00601000601600211e00620b00600f00600c002", "0x3a00620b00603000604b00210d00620b00602a00600f00212000620b006", "0x703500679c00203503904803300c20b00603a10d12003711e01679b002", "0x7d00920b00603c0067a100200220b006002009002124006a9d03c00620b", "0x12b00620b00612c00623300212c00620b00612a03e07d0097c600212a03e", "0x3900615d00204300620b00604800601600204100620b00603300600c002", "0x900204512d04304100c00604500620b00612b0067c700212d00620b006", "0x4700620b00603300600c00212e00620b0061240067c800200220b006002", "0x12e0067c700213000620b00603900615d00213100620b006048006016002", "0x600211e00200220b00600200900204d13013104700c00604d00620b006", "0x2a0097c600204b00620b00600202a00200220b00602c00603300200220b", "0x20b00600f00600c00204f00620b00604e00623300204e00620b00604b00c", "0x7c700205300620b00600700615d00205100620b006010006016002132006", "0x11e00200220b00600200900212f05305113200c00612f00620b00604f006", "0x13100200220b00600900606100200220b00600c00604d00200220b006002", "0x13300620b00613300604b00213300620b00600213400205600620b006002", "0x13600705d00213600620b00600213500205800620b00613305600705b002", "0x620b00601400600c00205b00620b0061340067c800213400620b006058", "0x67c700213700620b00600700615d00205d00620b006015006016002135", "0xa9e00700620b0070020067c900205f13705d13500c00605f00620b00605b", "0x60070067b800200220b00600600604d00200220b006002009002009006", "0x600f00620b0060160067bb00201600620b00600c0067ba00200c00620b", "0x20b00600213100200220b00600900653400200220b00600200900200f006", "0x5d00201500620b00600213500201400620b00600601000705b002010006", "0x601b0067bb00201b00620b0060170067c000201700620b006014015007", "0x212003900604800201601603900604800201610001900600601900620b", "0x19b00900700600212003900600200c01603900600200c00200c009007006", "0x4700f3a500c009007006002120039006048002016016039006048002016", "0x1656601600c00900700600212003900604800204700f016039006048002", "0x20470166b100c009007006002120039006002047016016039006002047", "0x1603900600200c75e00c009007006002120039006002047016016039006", "0x12003900600200c01603900600200c7fc00900700600212003900600200c", "0x70060021200390060480020160160390060480020168d4009007006002", "0xc009007006002120039006048002016016039006048002016a9f00c009", "0xc00900700600212003900604800204700f01603900604800204700faa0", "0x600200caa200900700600212003900600200c01603900600200caa1016", "0x600200c01603900600200caa300900700600212003900600200c016039", "0x700600212003900600200c01603900600200caa4009007006002120039", "0x600200caa600900700600212003900600200c01603900600200caa5009", "0x600200c01603900600200caa700900700600212003900600200c016039", "0x700600212003900600200c01603900600200caa8009007006002120039", "0x600200caaa00900700600212003900600200c01603900600200caa9009", "0x600200c01603900600200caab00900700600212003900600200c016039", "0x700600212003900600200c01603900600200caac009007006002120039", "0x600200caae00900700600212003900600200c01603900600200caad009", "0x600200c01603900600200caaf00900700600212003900600200c016039", "0x700600212003900600200c01603900600200cab0009007006002120039", "0x600200cab200900700600212003900600200c01603900600200cab1009", "0x600200c01603900600200cab300900700600212003900600200c016039", "0x700600212003900600200c01603900600200cab4009007006002120039", "0xab600c009007006002120039006048002016016039006048002016ab5009", "0x9016006002009ab700900700600212003900600200c01603900600200c", "0x11e03900604800201601403303900604800200fab80070060020c4006002", "0x39007039006aba006002015009007009007007ab901600c009007006002", "0xabc00c00900700600212403900600200c014033039006002016abb002015", "0x212b016007016006abd00900700600212a00600200900907d00600200c", "0x7033039006048002010abf00700600212d006002009016006002009abe", "0x9016006002009ac000f01600c00900700600212e039006048002016009", "0x604800200f00904f033039047006048002014ac100700600212f006002", "0x1604f03303904700600200fac201000f01600c009007006002124039047", "0x1600703303904700600200fac301600c00900700600212e039047006002", "0x6002015009007009054007ac401600c009007006002133039047006002", "0x200c00905803303900600200fac6006002134016002009016002007ac5", "0x212a00600200900900c00600200cac701600c009007006002135039006", "0xc00900700600213503900600200c009033039006002016ac8009007006", "0x1600c00900700600212e03900604800201600703303900604800200fac9", "0x700600212e039006048002016007007007007033039006048002015aca", "0x4800200f007007007033039047006048002015acb01401000f01600c009", "0x7033039006002016acc01401000f01600c009007006002137039047006", "0x600200c007033039006002016acd00c00900700600213703900600200c", "0x213703900600200c007033039006002016ace00c009007006002137039", "0x900700600213703900600200c007033039006002016acf00c009007006", "0x600200cad100900700600213703900600200c03303900600200cad000c", "0x600200c03303900600200cad200900700600213703900600200c033039", "0x9ad400700600212e039006009033039006009ad3009007006002137039", "0x212e039006009033039006009ad500700600212e039006009033039006", "0x5f007ad700900700600213803900600200c03303900600200cad6007006", "0x2015009007009139007ad9002139006033006ad8006002015009007009", "0x9065007adb00900700600213b03900600200c03303900600200cada006", "0x900700600213b03900600200c03303900600200cadc006002015009007", "0x700906a007ade00900700600213c03900600200c03303900600200cadd", "0x6002007006007033007ae0006002054006007033007adf006002015009", "0xc00900700600212e039006048002016009007033039006048002010ae1", "0xc00900700600213703900600200c00700703303900600200fae200f016", "0x6007ae400c0090070060020c4006002009007014016006002016ae3016", "0x2015ae6006002146039006009039006007ae5006002141039006009039", "0x1600c00900700600213703900604800201605401600704e033039006048", "0x16ae800900700600214a03900600200c04e03900600200cae701401000f", "0x7f00600200cae900c00900700600213703900600200c0c7033039006002", "0x12d006002009007009016006002016aea00900700600212a006002009009", "0x133039006048002016016007033039006048002010aeb00c009007006002", "0x2007aed00600214e016002009016002007aec00f01600c009007006002", "0xaef007006002150006002009016006002009aee00600214f016002009016", "0x600201600702e03904700600200faf0006002154039006009039006007", "0xaf2006002141039006009039006007af101600c009007006002133039047", "0x39047006002010af300900700600212e04700600200c04f04700600200c", "0x3900600caf400f01600c00900700600215b03904700600201605400702e", "0x6002016af600216b0060ed006af5009007006002133039006009007168", "0x916c039006002016af700c00900700600213703900600200c0d0033039", "0x12a00600200900901600600200caf800c00900700600216d03900600200c", "0x39006009afa00700600212e03900600902a039006009af9009007006002", "0x700600212e03900600902c039006009afb00700600212e03900600902b", "0x6058058007afd00900700600217303900600200c02903900600200cafc", "0x2016aff00900700600217503900600905802903900600cafe006002054", "0xf04e00600200cb0000c00900700600213703900600200c0d1033039006", "0x48002016016007033039006048002010b01009007006002176006002009", "0x7007033039047006048002015b0200f01600c00900700600216b039006", "0x200cb0301401000f01600c00900700600216b03904700604800200f007", "0x200c04d03900600200cb0400900700600213803900600200c02d039006", "0x39006002016b06006002054006069069007b0500900700600217a039006", "0x6002054006069069007b0700c00900700600217c03900600200c05f02d", "0x600cb0900c00900700600213703900600200c0cc033039006002016b08", "0x3900600906502f03900600cb0a00900700600217d039006009065030039", "0xb0c00900700600217f03900600900702a03900600cb0b00900700600217e", "0x6002016b0d00c00900700600213703900600200c0cd033039006002016", "0x900702b03900600cb0e00c00900700600213703900600200c0d2033039", "0x213703900600200c0ce033039006002016b0f009007006002180039006", "0x16b1100900700600218103900600900702c03900600cb1000c009007006", "0x4d04d002009b1200c00900700600213703900600200c0cf033039006002", "0x600213703900600200c0c8033039006002016b13007006002154002007", "0xc00900700600213703900600200c0c9033039006002016b1400c009007", "0x2016b1600c00900700600213703900600200c0ca033039006002016b15", "0x900700904d007b1700c00900700600213703900600200c0cb033039006", "0x200c02f03900600200cb19006002015009007009064007b18006002015", "0x600213b03900600200c03003900600200cb1a00900700600213b039006", "0x200c0c6033039006002016b1c006002015009007009069007b1b009007", "0x700600218e006002009016006002009b1d00c009007006002137039006", "0x600219000200706504b002009b1f00600218f039006009039006007b1e", "0x65002009b2100900700600216b03900600200c06503900600200cb20007", "0x6048002016016007033039006048002010b2200700600213b002007065", "0x2016016007033039006048002010b2300f01600c009007006002133039", "0xc03a00704e03900600200fb2400f01600c009007006002133039006048", "0x6002016b2600219c0060c7006b2501600c00900700600219b039006002", "0x200900901600600200cb2700c00900700600219d00600200900900919c", "0x7007002007b290060021a1002007016002007b2800900700600212a006", "0x702e04700200cb2b0060021a3039006009039006007b2a00600214f002", "0x60021a50390060091a406503900600cb2c0090070060021a4047002009", "0x1a604700600200c00704e047006002016b2e0021330061a5006b2d009007", "0x6b310021ae016007016006b300021200061ad006b2f00c009007006002", "0x600200c1a4065039006002016b3300212e0061b4006b3200219c0060d0", "0xb3600219c0060d1006b350021730060e5006b3400c0090070060021b8039", "0xfb380070060020070470071bd007047009b3700600205400600f00f007", "0x6002016b3901600c009007006002054048002009007007007007048002", "0xb3b0021380060ea006b3a00c0090070060021bf03900600200c1a4065039", "0x1c103900600200c05f1a406503900600200fb3c006002054006015015007", "0x6b3f00219c0060cd006b3e00219c0060cc006b3d01600c009007006002", "0x71c5007b4200219c0060cf006b4100219c0060ce006b4000219c0060d2", "0x60ca006b4500219c0060c9006b4400219c0060c8006b43006002154006", "0x1c803900600200c1a4065039006002016b4700219c0060cb006b4600219c", "0x6002015009007009015007b4900213b0060f2006b4800c009007006002", "0x600213b0060071d4007b4c00218f0061ca006b4b00219c0060c6006b4a", "0x600200900900900600200cb4e0070060021d600200706500c002009b4d", "0x2016b500070060020150090090090090090c6009b4f00900700600212a", "0x90090090090c8009b5100c00900700600219d0060020090090090c7006", "0xca009b530070060020150090090090090090c9009b52007006002015009", "0x60020150090090090090090cb009b54007006002015009009009009009", "0x90090090090cd009b560070060020150090090090090090cc009b55007", "0xcf009b580070060020150090090090090090ce009b57007006002015009", "0x60020150090090090090090d0009b59007006002015009009009009009", "0x90090090090d2009b5b0070060020150090090090090090d1009b5a007", "0x900700600212e04700600200c0be04700600200cb5c007006002015009", "0x700600200704700700f007047009b5e006002134002007007002007b5d", "0xb610060020fa0060fa0fa007b600070060020fa0480070070fa048009b5f", "0x21f603900600200c1a4065039006002016b620060020fa0060fa0fa007", "0x7007002007b640070060021f8002007064064002009b6300c009007006", "0xcb6600900700600219d00600200900900900600200cb650060021f9002", "0x2015009007009058007b6700900700600212a00600200900907f006002", "0x7b6900c0090070060021fb04700600200c007016047006002016b68006", "0xb6a0060021f8006007206"], "entry_points_by_type": {"CONSTRUCTOR": [{"selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", "function_idx": 32}], "EXTERNAL": [{"selector": "0x233f7eb4ceacfd7c3e238afaf740a3ffcb352f9844a11df665e97c3b0370b6", "function_idx": 4}, {"selector": "0x29ce6d1019e7bef00e94df2973d8d36e9e9b6c5f8783275441c9e466cb8b43", "function_idx": 14}, {"selector": "0x7ec457cd7ed1630225a8328f826a29a327b19486f6b2882b4176545ebdbe3d", "function_idx": 3}, {"selector": "0x9278fa5f64a571de10741418f1c4c0c4322aef645dd9d94a429c1f3e99a8a5", "function_idx": 29}, {"selector": "0x960e70c0b7135476e33b1ba6a72e9b10cb5e261ebaa730d1ed01a0f21c22d3", "function_idx": 12}, {"selector": "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", "function_idx": 6}, {"selector": "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", "function_idx": 27}, {"selector": "0x139562604eb722f14da2b8c1f8f681c99d31226bf9d57f148ec8b4d611f92f8", "function_idx": 24}, {"selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "function_idx": 1}, {"selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "function_idx": 0}, {"selector": "0x1746f7542cac71b5c88f0b2301e87cd9b0896dab1c83b8b515762697e521040", "function_idx": 10}, {"selector": "0x178e27745484c91a084e6a72059b13e3dbebef761175a63f4330bec3ad4aaa0", "function_idx": 21}, {"selector": "0x1a1e41f464a235695e5050a846a26ca22ecc27acac54be5f6666848031efb8f", "function_idx": 7}, {"selector": "0x1e6d35df2b9d989fb4b6bbcebda1314e4254cbe5e589dd94ff4f29ea935e91c", "function_idx": 5}, {"selector": "0x213dfe25e2ca309c4d615a09cfc95fdb2fc7dc73fbcad12c450fe93b1f2ff9e", "function_idx": 31}, {"selector": "0x22e07fe65aff1304b57cc48ee7c75a04ce2583b5ef2e7866eb8acbe09be43e2", "function_idx": 25}, {"selector": "0x231c71f842bf17eb7be2cd595e2ad846543dbbbe46c1381a6477a1022625d60", "function_idx": 17}, {"selector": "0x24fd89f2d8a7798e705aa5361f39154ca43e03721c05188285138f16018955d", "function_idx": 19}, {"selector": "0x26e71b81ea2af0a2b5c6bfceb639b4fc6faae9d8de072a61fc913d3301ff56b", "function_idx": 13}, {"selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941", "function_idx": 2}, {"selector": "0x289da278a8dc833409cabfdad1581e8e7d40e42dcaed693fa4008dcdb4963b3", "function_idx": 8}, {"selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", "function_idx": 30}, {"selector": "0x2a4bb4205277617b698a9a2950b938d0a236dd4619f82f05bec02bdbd245fab", "function_idx": 22}, {"selector": "0x2aa20ff86b29546fd697eb81064769cf566031d56b10b8bba2c70125bd8403a", "function_idx": 28}, {"selector": "0x2ad0f031c5480fdb7c7a0a026c56d2281dcc7359b88bd9053a8cf10048d44c4", "function_idx": 20}, {"selector": "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead", "function_idx": 11}, {"selector": "0x31341177714d81ad9ccd0c903211bc056a60e8af988d0fd918cc43874549653", "function_idx": 23}, {"selector": "0x36fcbf06cd96843058359e1a75928beacfac10727dab22a3972f0af8aa92895", "function_idx": 9}, {"selector": "0x395b662db8770f18d407bbbfeebf45fffec4a7fa4f6c7cee13d084055a9387d", "function_idx": 15}, {"selector": "0x3ad2979f59dc1535593f6af33e41945239f4811966bcd49314582a892ebcee8", "function_idx": 16}, {"selector": "0x3ce4edd1dfe90e117a8b46482ea1d41700d9d00c1dccbce6a8e2f812c1882e4", "function_idx": 26}, {"selector": "0x3ee0bfaf5b124501fef19bbd1312e71f6966d186c42eeb91d1bff729b91d1d4", "function_idx": 18}], "L1_HANDLER": []}, "abi": "[{\"type\": \"struct\", \"name\": \"core::starknet::account::Call\", \"members\": [{\"name\": \"to\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"selector\", \"type\": \"core::felt252\"}, {\"name\": \"calldata\", \"type\": \"core::array::Array::\"}]}, {\"type\": \"function\", \"name\": \"__validate__\", \"inputs\": [{\"name\": \"calls\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"external\"}, {\"type\": \"struct\", \"name\": \"core::array::Span::\", \"members\": [{\"name\": \"snapshot\", \"type\": \"@core::array::Array::\"}]}, {\"type\": \"function\", \"name\": \"__execute__\", \"inputs\": [{\"name\": \"calls\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::>\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"is_valid_signature\", \"inputs\": [{\"name\": \"hash\", \"type\": \"core::felt252\"}, {\"name\": \"signature\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"impl\", \"name\": \"ExecuteFromOutsideImpl\", \"interface_name\": \"lib::outside_execution::IOutsideExecution\"}, {\"type\": \"struct\", \"name\": \"lib::outside_execution::OutsideExecution\", \"members\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"nonce\", \"type\": \"core::felt252\"}, {\"name\": \"execute_after\", \"type\": \"core::integer::u64\"}, {\"name\": \"execute_before\", \"type\": \"core::integer::u64\"}, {\"name\": \"calls\", \"type\": \"core::array::Span::\"}]}, {\"type\": \"enum\", \"name\": \"core::bool\", \"variants\": [{\"name\": \"False\", \"type\": \"()\"}, {\"name\": \"True\", \"type\": \"()\"}]}, {\"type\": \"interface\", \"name\": \"lib::outside_execution::IOutsideExecution\", \"items\": [{\"type\": \"function\", \"name\": \"execute_from_outside\", \"inputs\": [{\"name\": \"outside_execution\", \"type\": \"lib::outside_execution::OutsideExecution\"}, {\"name\": \"signature\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::>\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"is_valid_outside_execution_nonce\", \"inputs\": [{\"name\": \"nonce\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::bool\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_outside_execution_message_hash\", \"inputs\": [{\"name\": \"outside_execution\", \"type\": \"lib::outside_execution::OutsideExecution\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"UpgradeableImpl\", \"interface_name\": \"lib::upgrade::IUpgradeable\"}, {\"type\": \"interface\", \"name\": \"lib::upgrade::IUpgradeable\", \"items\": [{\"type\": \"function\", \"name\": \"upgrade\", \"inputs\": [{\"name\": \"new_implementation\", \"type\": \"core::starknet::class_hash::ClassHash\"}, {\"name\": \"calldata\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"execute_after_upgrade\", \"inputs\": [{\"name\": \"data\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::\"}], \"state_mutability\": \"external\"}]}, {\"type\": \"impl\", \"name\": \"ArgentAccountImpl\", \"interface_name\": \"account::interface::IArgentAccount\"}, {\"type\": \"struct\", \"name\": \"account::escape::Escape\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\"}, {\"name\": \"escape_type\", \"type\": \"core::felt252\"}, {\"name\": \"new_signer\", \"type\": \"core::felt252\"}]}, {\"type\": \"struct\", \"name\": \"lib::version::Version\", \"members\": [{\"name\": \"major\", \"type\": \"core::integer::u8\"}, {\"name\": \"minor\", \"type\": \"core::integer::u8\"}, {\"name\": \"patch\", \"type\": \"core::integer::u8\"}]}, {\"type\": \"enum\", \"name\": \"account::escape::EscapeStatus\", \"variants\": [{\"name\": \"None\", \"type\": \"()\"}, {\"name\": \"NotReady\", \"type\": \"()\"}, {\"name\": \"Ready\", \"type\": \"()\"}, {\"name\": \"Expired\", \"type\": \"()\"}]}, {\"type\": \"interface\", \"name\": \"account::interface::IArgentAccount\", \"items\": [{\"type\": \"function\", \"name\": \"__validate_declare__\", \"inputs\": [{\"name\": \"class_hash\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"__validate_deploy__\", \"inputs\": [{\"name\": \"class_hash\", \"type\": \"core::felt252\"}, {\"name\": \"contract_address_salt\", \"type\": \"core::felt252\"}, {\"name\": \"owner\", \"type\": \"core::felt252\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"change_owner\", \"inputs\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\"}, {\"name\": \"signature_r\", \"type\": \"core::felt252\"}, {\"name\": \"signature_s\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"change_guardian\", \"inputs\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"change_guardian_backup\", \"inputs\": [{\"name\": \"new_guardian_backup\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"trigger_escape_owner\", \"inputs\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"trigger_escape_guardian\", \"inputs\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"escape_owner\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"escape_guardian\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"cancel_escape\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"get_owner\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian_backup\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_escape\", \"inputs\": [], \"outputs\": [{\"type\": \"account::escape::Escape\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_version\", \"inputs\": [], \"outputs\": [{\"type\": \"lib::version::Version\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_name\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian_escape_attempts\", \"inputs\": [], \"outputs\": [{\"type\": \"core::integer::u32\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_owner_escape_attempts\", \"inputs\": [], \"outputs\": [{\"type\": \"core::integer::u32\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_escape_and_status\", \"inputs\": [], \"outputs\": [{\"type\": \"(account::escape::Escape, account::escape::EscapeStatus)\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"Erc165Impl\", \"interface_name\": \"lib::erc165::IErc165\"}, {\"type\": \"interface\", \"name\": \"lib::erc165::IErc165\", \"items\": [{\"type\": \"function\", \"name\": \"supports_interface\", \"inputs\": [{\"name\": \"interface_id\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::bool\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"OldArgentAccountImpl\", \"interface_name\": \"account::interface::IDeprecatedArgentAccount\"}, {\"type\": \"interface\", \"name\": \"account::interface::IDeprecatedArgentAccount\", \"items\": [{\"type\": \"function\", \"name\": \"getVersion\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"getName\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"supportsInterface\", \"inputs\": [{\"name\": \"interface_id\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"isValidSignature\", \"inputs\": [{\"name\": \"hash\", \"type\": \"core::felt252\"}, {\"name\": \"signatures\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"constructor\", \"name\": \"constructor\", \"inputs\": [{\"name\": \"owner\", \"type\": \"core::felt252\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::AccountCreated\", \"kind\": \"struct\", \"members\": [{\"name\": \"owner\", \"type\": \"core::felt252\", \"kind\": \"key\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"struct\", \"name\": \"core::array::Span::>\", \"members\": [{\"name\": \"snapshot\", \"type\": \"@core::array::Array::>\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::TransactionExecuted\", \"kind\": \"struct\", \"members\": [{\"name\": \"hash\", \"type\": \"core::felt252\", \"kind\": \"key\"}, {\"name\": \"response\", \"type\": \"core::array::Span::>\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeOwnerTriggered\", \"kind\": \"struct\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\", \"kind\": \"data\"}, {\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeGuardianTriggered\", \"kind\": \"struct\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\", \"kind\": \"data\"}, {\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerEscaped\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianEscaped\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeCanceled\", \"kind\": \"struct\", \"members\": []}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianBackupChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian_backup\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::AccountUpgraded\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_implementation\", \"type\": \"core::starknet::class_hash::ClassHash\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerAdded\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner_guid\", \"type\": \"core::felt252\", \"kind\": \"key\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerRemoved\", \"kind\": \"struct\", \"members\": [{\"name\": \"removed_owner_guid\", \"type\": \"core::felt252\", \"kind\": \"key\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::Event\", \"kind\": \"enum\", \"variants\": [{\"name\": \"AccountCreated\", \"type\": \"account::argent_account::ArgentAccount::AccountCreated\", \"kind\": \"nested\"}, {\"name\": \"TransactionExecuted\", \"type\": \"account::argent_account::ArgentAccount::TransactionExecuted\", \"kind\": \"nested\"}, {\"name\": \"EscapeOwnerTriggered\", \"type\": \"account::argent_account::ArgentAccount::EscapeOwnerTriggered\", \"kind\": \"nested\"}, {\"name\": \"EscapeGuardianTriggered\", \"type\": \"account::argent_account::ArgentAccount::EscapeGuardianTriggered\", \"kind\": \"nested\"}, {\"name\": \"OwnerEscaped\", \"type\": \"account::argent_account::ArgentAccount::OwnerEscaped\", \"kind\": \"nested\"}, {\"name\": \"GuardianEscaped\", \"type\": \"account::argent_account::ArgentAccount::GuardianEscaped\", \"kind\": \"nested\"}, {\"name\": \"EscapeCanceled\", \"type\": \"account::argent_account::ArgentAccount::EscapeCanceled\", \"kind\": \"nested\"}, {\"name\": \"OwnerChanged\", \"type\": \"account::argent_account::ArgentAccount::OwnerChanged\", \"kind\": \"nested\"}, {\"name\": \"GuardianChanged\", \"type\": \"account::argent_account::ArgentAccount::GuardianChanged\", \"kind\": \"nested\"}, {\"name\": \"GuardianBackupChanged\", \"type\": \"account::argent_account::ArgentAccount::GuardianBackupChanged\", \"kind\": \"nested\"}, {\"name\": \"AccountUpgraded\", \"type\": \"account::argent_account::ArgentAccount::AccountUpgraded\", \"kind\": \"nested\"}, {\"name\": \"OwnerAdded\", \"type\": \"account::argent_account::ArgentAccount::OwnerAdded\", \"kind\": \"nested\"}, {\"name\": \"OwnerRemoved\", \"type\": \"account::argent_account::ArgentAccount::OwnerRemoved\", \"kind\": \"nested\"}]}]"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/1_success.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/1_success.txt index 9881c774..9810e2ab 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_state_update/1_success.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/1_success.txt @@ -1 +1 @@ -{"block_hash": "0x106dead55518396ee003cb511679e6cd6dc078d1468fee19bf7eae9a3ab6f5f", "new_root": "0xddd0de392f94070c3a4bbb67a330c56029f945623f0f5cfcc7c53f119d4a9f", "old_root": "0xf4fdf017fc66ded549ed26f278d0e3244d4e1a5289722906a29a8ae3114bb6", "state_diff": {"storage_diffs": {"0xdc2e5d3d73589a12037d1cdf1ba3f69bde2e8983faa0a5c6b3b051b2c46e14": [{"key": "0x23444ef42446d7a7ebaaceea3dedfa11c3306fa839f98611e5efcd38ea59350", "value": "0x7c7"}], "0x257f579eb1d25f9e6979775e4cebe3ca03a44d51d5f6b73bd14042d3c5a9508": [{"key": "0x5", "value": "0x66"}], "0x3cf62dea11e1f1e904b9289ea1d4fa38cbc2e93371059e6142c42a78387c4fe": [{"key": "0x6f8d2332813a0260a9feb3a37efe25e8e581c14e0b920078fd99adc3db14930", "value": "0x7e5"}], "0x32b458a0db74f78ff5783d1219a36cb6028f657f7c0bb9f5b290865f230e981": [{"key": "0x5725fc4a3adfb2b890dc3d0f160cc05ec990caa4f14168e8c83d5f37d28f645", "value": "0x7e5"}], "0x4fac68b2a7677cc1e106e65d116ebad39fef10eb0730a72b8adc7be2eaef542": [{"key": "0x3be1a5847893edda139e2211d838505b10635bd1701887ed35592f7d7802997", "value": "0x30350de53d380483cedf00edb8046f2df99408d75d8a41ce0d0707dc1035f80"}, {"key": "0x3be1a5847893edda139e2211d838505b10635bd1701887ed35592f7d7802998", "value": "0x7b979ea397dc43b2ab86169ae72e10f07e32009d4e866e0edcca77e091f890"}], "0x4ed6a502aa1a07e5199eecb37188e1f3108d530fbc24cdcab0d662663e3ef3f": [{"key": "0x5", "value": "0x456"}], "0x510140c607f71423075ff0bd023155518b7bcb4fb5367396542431e56024af8": [{"key": "0x4880a0598fda4b960b7656c2f515899e9ca956f444c3ba975c8ff743651dc7", "value": "0x6fc55ab75ac9d0ed8e25b93163c3209c419e1bf36e4b8cd38f4999d27cdc13a"}], "0x607aded6f2deb304169653fa33febc06f9c4f6302d9bb2f1d7a1460289401ef": [{"key": "0x75e4350807d04b365ec1cf33a1e9e4d1372eadbace63436223e7b3e19b80e04", "value": "0x404eb56faa377ec98ea190de7720630528656cb998414c069776361437df37"}, {"key": "0x75e4350807d04b365ec1cf33a1e9e4d1372eadbace63436223e7b3e19b80e05", "value": "0x634eb9e9c1532126259bbc2188b221bd54762cb1365b24dfd005f8e3ac10659"}], "0x5b0f6e792e730b613a8f1aa7cc5301f00a2781f99e03bc0704b548f5f7ab449": [{"key": "0x6c3fa19e3b2fbba458e1261cbec1f73490107b1a51b46c84454846ce6097984", "value": "0xacc75a60467d2db4cbd0462ca9b3db93a243f598b32b63f04ed3405238d2aa"}, {"key": "0x6c3fa19e3b2fbba458e1261cbec1f73490107b1a51b46c84454846ce6097985", "value": "0x68f2b3b65ab5c339c22a5e4c77ca5c9e1d32e8cf11446885058db5c5fb42d27"}], "0x7ad2d0900f111e6bbcf01f7b4b68c3c7bc8dae30b508d8d83bdb02449f73c07": [{"key": "0x5", "value": "0x0"}], "0x7ccba5cc32ebd5e1534ecea7a3260028c078c211a44a7dda2693bc3ac4eddc6": [{"key": "0x617e2aac2f5c2dd9b8ab7160e7e451944da96d361e202ab3df3f577c4e1dfe8", "value": "0x5ab277a68cee9a2e17969d6689f687c43eb167b48f17c72049eadcd59a43704"}], "0xa251264114855c3d59281ad5a912730fbba38dddbcce7abce115440db7868f": [{"key": "0x1f19c469eb0b6120f877b9636310acbf486f003eccbf4eaf6534787b0b50e80", "value": "0x6450652cf1b811f38e4df63e877165d79d0dac36531b23a8d07acb402360a6b"}], "0xc24061333e526687d5491c74bdbff5c6c6d5da7debecc9d8c338abf8aeff62": [{"key": "0x71742eb6ef40f62cd6f21f5ae689192b3daad58b43838fabeb71f35884bb596", "value": "0x56e418171fb10bd5ab474d21b54179dafe6e5e2b080a9fa4a082835ee2d9730"}], "0x179af41d033c64899b0575dfd9825f0ac529b2e67c4e9d7887df2b1a6320367": [{"key": "0x180c9a2c6a8c91cabab9d87b5cb8e9ff2b4edf890ff6554d57f0aae67879b25", "value": "0x27c99efe59863652e4847babae4259161539c4a22f533185fcf3ca43943fb0d"}, {"key": "0x180c9a2c6a8c91cabab9d87b5cb8e9ff2b4edf890ff6554d57f0aae67879b26", "value": "0x48e7b73d55a81b1a4ee7417bd644f3a3e369ea62d1c1c3a287ac72aad5b03be"}], "0x26733294937f4c5464d08c0cda180a4a43fc544685cfb33450911c83e9f7f8a": [{"key": "0x5", "value": "0x64"}], "0x3cc0aeb760032874f97fc7497825750030898eb2fe6ab3d7391c289aba4304e": [{"key": "0x1a764bf9856ad385c80eb111d81bd189606ea4f75bbb87530a55778e18e4018", "value": "0x125a36a5651dc4395642c18cd7deb38d0b6d8c1dcf981674ce43a21dddbe234"}, {"key": "0x1a764bf9856ad385c80eb111d81bd189606ea4f75bbb87530a55778e18e4019", "value": "0x41fd34679877417cd8cac2aec14cdd5414fbdb9c53d1ab97a7089956fc6c046"}], "0x33cad2b769abe3546c76a39ab1aa61c8061449832fa017ac35c749f77e6bd74": [{"key": "0x1a815163e0c879d268251a6bf9ea068cb92464d2ab3b246f6be0f0d4d600804", "value": "0x6ae416bc6fcf3bd74e90c235346065b58bb6ef0c148a82fdfeba975b99d9ace"}], "0x4bce26d3bd4a56e1eb221af75e7a8f8bcc2148819e9840a3a5ed03097f02087": [{"key": "0x7a492b37205c5b51f7c7292bb927d2f5ce035b5a5767445d0600965f6e35af0", "value": "0x5ae2eddba347ddfa39f9531b000e438383e72e7d7485dad4ba0bdc33fead5ce"}], "0x599793f0f1fb81b3daf932bfd01c3caf38740003aeebdf7a1fe31a5c9643b09": [{"key": "0x2fb37795ef04549751e3341437022fc050e0031203ac5847a50f236f5465b5a", "value": "0x3a1ec66dc9ad000909e3076f384938018e4a88a4a764927ea6644da1ed763b"}, {"key": "0x2fb37795ef04549751e3341437022fc050e0031203ac5847a50f236f5465b5b", "value": "0x4a34bd8c47df4541b293fbdbc2fdb5c1a80731970fdc74a45eaf632b01d8f9f"}], "0x699971854681eeed3b353322a290de2e1f4b0984b9e5d0c66186c759125f94a": [{"key": "0x48cc8128477b920e7fe80dac7251faecf4faab6384186f8f7a0d48b7fd2bd90", "value": "0x28703dccccd24c46f8fa79b95aa613566fecb2566968f09dc2e1d7a80fc139"}, {"key": "0x48cc8128477b920e7fe80dac7251faecf4faab6384186f8f7a0d48b7fd2bd91", "value": "0x3685e62b38cd2b82fa8a1cd0296b3f4777864e3d099b875ead2b3551aef48b8"}], "0x6290384722c20ee306e15757721c138c836c1e087bba8b0f0b9af7804aeaa31": [{"key": "0x4d6b9d454622123ecfc1058696f035039d3e3da5b0f6109ed3712d7699f7feb", "value": "0x4578394dd1511e80106bd0936db8a7d72ed4a4aee0c8df182fde2158b3e6ec1"}], "0x634a3437f2b2e0341fef27289d3b505852a424e1da9fe46f23122e29f55bac1": [{"key": "0x5725fc4a3adfb2b890dc3d0f160cc05ec990caa4f14168e8c83d5f37d28f645", "value": "0x7c7"}], "0x7b6f5834a7a8a27fe3edbc7641e5e0c3209b2dbf1765b9d7f3eb6311665a849": [{"key": "0x5", "value": "0x22b"}], "0x202c13739c7a662f14ab069500f6d2de5d4b0a7679750a16ccfb1c0d922b9d2": [{"key": "0x5", "value": "0x22b"}], "0x121dcb345683f66904bb34957f18cbe5879af135520b76766795d1669e76fb5": [{"key": "0x7989a16919ed2e900d66dc6d50f3ee404948b58405661d8c26d53eb5a8b153b", "value": "0x66cd818470d7c1bab3cf020447e94a2a81ca86baa4a4a8b5fbf8808d3bdfbb2"}, {"key": "0x7989a16919ed2e900d66dc6d50f3ee404948b58405661d8c26d53eb5a8b153c", "value": "0x461968766c0b7c17767b766497edee3ec962d532603c706dc5828ed7a964fe0"}], "0x3dc720c428ffb3d8c9d8df6ca29f4246c527e44df98b9816873dce139e5aaec": [{"key": "0x3cc7a3f927dfbf199815bfd49beb25b5375d3c972378f080877c49616c33e62", "value": "0x646fe19c6e69542ae6d515eb5c59a5cd1a8f7800a30034a2856c53307ea4c2e"}], "0x60c77c99c5067eb09c6b0d0600bca09277e78f9169fc1d0cf8d8cbada336319": [{"key": "0x151f3c00dec9cbdb1fdfbe8cd8f2b120b88cae79834c53cd60bf7f252ead74b", "value": "0x58e48aa167c9e868ed2c72d2c7b40ecf2ab60bc58167010992203d02b7958ef"}, {"key": "0x151f3c00dec9cbdb1fdfbe8cd8f2b120b88cae79834c53cd60bf7f252ead74c", "value": "0x10727e7ede8deeeb4b71090b180cd9ceef46a078f2dde6eb4cca10f148b68c0"}], "0x5a52ffcf90d00894d2a1b579ebf8e5e32900d14c1e7b55b92e8fd513c12d36e": [{"key": "0x5", "value": "0x64"}], "0x6b1984ebca321281f05c601ab5d26172d068f7b469a58f140c5c9c6b7b6dabd": [{"key": "0x203d531497ddd7be8c8f9be9c7f9e379268c51ac9756a7627c7b4fdb1b1967f", "value": "0x7e5"}], "0x7223e47d4c54130cd0d82ad0a55370b446dc1dbeeb6d900cabe2c7604a47b1a": [{"key": "0x203d531497ddd7be8c8f9be9c7f9e379268c51ac9756a7627c7b4fdb1b1967f", "value": "0x7c7"}], "0x7cc8089449a95703156b44daeeb1e0701ac266132056d79a007506379de69c1": [{"key": "0x6f8d2332813a0260a9feb3a37efe25e8e581c14e0b920078fd99adc3db14930", "value": "0x7c7"}], "0x759033e68f056c5036cad38c083de5c365aa5c48345887ed2d457fde19027d1": [{"key": "0xbd4db28fcc307e6f9536db8271d3bb2d93b88fa77930d1cf70f5edcc7ab8f", "value": "0xca5306249b90a45b8249a1c4c5da7992e32a90f71191d583dc53eb342b147"}, {"key": "0xbd4db28fcc307e6f9536db8271d3bb2d93b88fa77930d1cf70f5edcc7ab90", "value": "0x44c33d865a9e9a149a56cb4944f4e930c8088eee87ae90623b6d5fa9629958f"}], "0x4fd2c357a36c933181f6677a2a675ff3591220701c0d01c6319a9d17b24d36e": [{"key": "0x5", "value": "0x64"}], "0xbf4225b5b792d3f4df6f6a8340708233211e0958dfe072bdfc07dc737c94f6": [{"key": "0x23444ef42446d7a7ebaaceea3dedfa11c3306fa839f98611e5efcd38ea59350", "value": "0x7e5"}]}, "nonces": {}, "deployed_contracts": [{"address": "0xa251264114855c3d59281ad5a912730fbba38dddbcce7abce115440db7868f", "class_hash": "0x48498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1"}], "old_declared_contracts": [], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file +{"block_hash": "0x1b2aa5b3d3549f4d20e5da0c4e883569062bba77b83deaf05023ff25ed263ab", "new_root": "0x51098918fd96edda4e251f695181c063e21fb0666352e3469db507c7fd62b89", "old_root": "0x12fcb983ce58ba9cc15c7776bd75a618e6af4c77195a76f3f57d90a7a00c415", "state_diff": {"storage_diffs": {"0x1": [{"key": "0x5a", "value": "0xc65017feed33b9e40a8ddd77efced3298c73f2673c27d6defad365b3be866b"}], "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76": [{"key": "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e", "value": "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b"}, {"key": "0xc075a92d5f64c1871a75f92da69b4493a811b169da892553848f4737e0fd3a", "value": "0x2dbb8734d8d3c7946c2daceeecbc797125b0f6fb4c2d531cd7d4d4bccf186e8"}, {"key": "0xc075a92d5f64c1871a75f92da69b4493a811b169da892553848f4737e0fd3b", "value": "0x6baecfa03535a63b6b96886a03f221117e8fe7fc8ad821c22a062fcd3c2f587"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x1c9a3cb76acfabbba0abccd0a3bad33e6e2a5af5e42873d3af9e6ac3a0e3992", "value": "0x156c2f98b6a2e27"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0xc963eceda24c5"}]}, "nonces": {"0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655": "0xfb"}, "deployed_contracts": [], "old_declared_contracts": [], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/2_pending_block.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/2_pending_block.txt index 513efc52..611f3644 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_state_update/2_pending_block.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/2_pending_block.txt @@ -1 +1 @@ -{"old_root": "0x5a3bbcac1f6e30828a3ed47f43bf70751a1559662c053f725409fbeca01ab3", "state_diff": {"storage_diffs": {"0x47ad6a25df680763e5663bd0eba3d2bfd18b24b1e8f6bd36b71c37433c63ed0": [{"key": "0x1663bb79bcf59fe5c8e7586e92485b8d1bdd9f92127213acf2b954f7806ce8d", "value": "0x7c7"}], "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d": [{"key": "0x503a140cc3b467b2eb124e3746cbf7c6f065fdcce68ca9764b7418391d76bd", "value": "0x657423d600000000000000000000000000000004a0605344642af6"}, {"key": "0x2752ca5adc5b7283939990e78f0c2ad01c3394a4f0029df0de0cdaf8843e326", "value": "0x42a"}, {"key": "0x295c615dc08b568dce79348e5dd16f45bc6458ddb026f09e16ce03f3c68e12e", "value": "0x971b76c8cf97a73d"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x4a0605344642af6"}], "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a": [{"key": "0x1663bb79bcf59fe5c8e7586e92485b8d1bdd9f92127213acf2b954f7806ce8d", "value": "0x7e5"}], "0x1": [{"key": "0x4e905", "value": "0x1d18d82f5eeb84f5aeb17f9d6b26aef45c5dfd23b672eeb326594a542fd0b2b"}]}, "nonces": {"0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3": "0x2345"}, "deployed_contracts": [], "old_declared_contracts": [], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file +{"old_root": "0x2a7f75304a59ee5fd764572354982aa691bea46378b442781aeebc0330b0a38", "state_diff": {"storage_diffs": {"0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e": [{"key": "0x59afa44e29be8f6773485a7a3845aad401f13ead82431a12a435f983551a96", "value": "0x660beabf06601660d"}, {"key": "0x385526a66d67276f31da5aa28e5730dfa32ecbc3ad6d029fd8c690a252fa08c", "value": "0x175df06d0000097faebe01000a000000001d3b01f28c00073cfa4a1805"}, {"key": "0x385526a66d67276f31da5aa28e5730dfa32ecbc3ad6d029fd8c690a252fa08d", "value": "0x1d350002d000600009000a40021008ac81e0010531e000003540003d811"}, {"key": "0x7f94b35184db040db36fc54afc0abef5b7dd10b44fbf9d605e5e3e947a3ab4a", "value": "0x1"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x4ee5ba003dbf77d76"}, {"key": "0x7a6b8377e86398f58e58aee5a5fedd31ab113dc492ff7a37f4b030f1cd263d1", "value": "0xaa235eb5ac0d2aa"}], "0x1": [{"key": "0xda41", "value": "0x21088b5b4221f3b8bdee4a0977f9f09ffa31bf0418f43144700e1e0ed28d84f"}]}, "nonces": {"0x3231e1d09ec74fcc419cd4ac7dd62db82896c02dac41cf49fdb542c5c5d963c": "0x2e8"}, "deployed_contracts": [], "old_declared_contracts": [], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/3_with_declarations.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/3_with_declarations.txt index 3b4a3c43..fd4465a4 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_state_update/3_with_declarations.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/3_with_declarations.txt @@ -1 +1 @@ -{"block_hash": "0x67d24961077de7a1f49b6b1da78903ee80217662d026c155e14d7abedc04034", "new_root": "0x16faa4c43f71b49facab6b0585094195c989ea6168e69f235fdcef86428cd42", "old_root": "0x5e40123c30cfecb5284c041a703c2b542de91a8c29c69af2e37e12496fa88a", "state_diff": {"storage_diffs": {"0x24dbaeb7bf551b2e6c403957a5e4c1b19596c2d6b9c77d677ed85af73007fc": [{"key": "0x5", "value": "0x65"}, {"key": "0x1469414c13009d9841e8cf4d8abd32ae6d59fe66c8e555271dc2231f45c7a6d", "value": "0x1c0f34928344fecbeed32e6087bd0c8ec049c1f33b6b115568f2b11c94a9ab6"}], "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265": [{"key": "0x6bfbb0f2bdec6f6e4a6eb5de2bfad5722a48bbcf7db16dbb361edf1b15eaa65", "value": "0x5a887e8eea583dd5ffa62dff9a127c2b851c63d40d6694932143fa7d30ee"}, {"key": "0x5", "value": "0x22b"}, {"key": "0x212a9e2c79c5bed28bca6740bae5babb6e2ec02c8e63d19e18027080b41bd31", "value": "0x69deb1aaf37c520b687dfa5e23b60d10822ac65875446c2f3a26d9251f12e93"}, {"key": "0x212a9e2c79c5bed28bca6740bae5babb6e2ec02c8e63d19e18027080b41bd32", "value": "0x1c65c2f72ab9a8589d1594e4c367a499d663af5de0184d387af8f5009048a31"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x42328937f66f0427ca9e66a9b2b0e471a361ff0524b2676d4dc9546aff531a8", "value": "0x69d296d2ba457ca"}, {"key": "0x2d782db90efbf9b41bf6bdf47cfe2ad71e4f2cb31532a827f98260725f854c9", "value": "0x1e1731bd604ae0"}, {"key": "0x48e3426cfff518cb97998a29da47874171880da2a5b5da4e1b91d6f91dd59ce", "value": "0x8c264c2a2f178746"}, {"key": "0x31bd9ebcad63b29b6ce51df0b9978b7f5b1c158b0ee90b6d44024f225603e28", "value": "0x99655dab499a330"}], "0x60de99e2ba100ea02799ed692306ff5e209edc3a2be30c5c7e00e789f74771c": [{"key": "0x633cce43561d71b1f82035f5f0af626da6b22bea7a0ff9f942a6fd4f039fe51", "value": "0x126a5919e999f9195ae166f349429f050380f691fc4ea5b2f4d8585d050bf12"}]}, "nonces": {"0x2fd67a7bcca0d984408143255c41563b14e6c8a0846b5c9e092e7d56cf1a862": "0x3", "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a": "0xf", "0x733dead6027a46717d7e79be28bf059bb8f5b02db2854c742ff652392d94506": "0x6"}, "deployed_contracts": [{"address": "0x60de99e2ba100ea02799ed692306ff5e209edc3a2be30c5c7e00e789f74771c", "class_hash": "0x4631b6b3fa31e140524b7d21ba784cea223e618bffe60b5bbdca44a8b45be04"}, {"address": "0x390a7973fd96e03d16ff669cee465dec765920c66d6e63ee4901270f4930e97", "class_hash": "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c"}], "old_declared_contracts": [], "declared_classes": [{"class_hash": "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c", "compiled_class_hash": "0x711c0c3e56863e29d3158804aac47f424241eda64db33e2cc2999d60ee5105"}], "replaced_classes": []}} \ No newline at end of file +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "new_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "old_root": "0x2729a9ded030fa182a4802b9accf662d071d23fdfb2011504d1777927c9abaf", "state_diff": {"storage_diffs": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": [{"key": "0x3b28019ccfdbd30ffc65951d94bb85c9e2b8434111a000b5afd533ce65f57a4", "value": "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x110e2f729c9c2b988559994a3daccd838cf52faf88e18101373e67dd061455a", "value": "0xe043da617250000"}, {"key": "0x3d539ea1ce2715fb83fdcf90500b73ad2631bb17bbb56386bfa43a36c0d94da", "value": "0x1eda606a8f3964"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x14e4124892515"}, {"key": "0x7e4feecce63daa81e391376af74856dad0fe0b663a1fb6aff9e945c7aba842d", "value": "0x35e50e0a8a187"}]}, "nonces": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": "0xe", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d": "0x2"}, "deployed_contracts": [{"address": "0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909"}, {"address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"}, {"address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08"}, {"address": "0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"}, {"address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6"}], "old_declared_contracts": ["0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"], "declared_classes": [{"class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52"}, {"class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4"}, {"class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313"}], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/4_with_nonce_changes.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/4_with_nonce_changes.txt index 66367e1a..fd4465a4 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_state_update/4_with_nonce_changes.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/4_with_nonce_changes.txt @@ -1 +1 @@ -{"block_hash": "0x41b22182b36679dd74a706d4b88bd3383c0f60fbf3c1b5ee48ea7fdb243843b", "new_root": "0x2739a2583d58f6ce0592beff09b322b723c24df508e8b80e1337cf386d30e6c", "old_root": "0x441a4d5da357a7ed6c14236c0e80414fa020ab16bc5f07bd6c36269eac226a5", "state_diff": {"storage_diffs": {"0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x2613faa68a7436dc0beae57f590e21b2b9d652e9a37d5410a1cb6efba74eabb", "value": "0x18720051c5db4d91"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x1d365e008ab4ced085"}], "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea": [{"key": "0x78defa7d99df5fdd626b3d621ed55b73954be46e9ab53fb8f6c8cd3537bead4", "value": "0x7e5"}], "0x7812357541c81dd9a320c2339c0c76add710db15f8cc29e8dde8e588cad4455": [{"key": "0x78defa7d99df5fdd626b3d621ed55b73954be46e9ab53fb8f6c8cd3537bead4", "value": "0x7c7"}], "0x1": [{"key": "0x4ada6", "value": "0x3453c9a83249262a229ddc44eca1e41cc3a15feb04d93b519428cec23e5e057"}]}, "nonces": {"0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46": "0x1071"}, "deployed_contracts": [], "old_declared_contracts": [], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "new_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "old_root": "0x2729a9ded030fa182a4802b9accf662d071d23fdfb2011504d1777927c9abaf", "state_diff": {"storage_diffs": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": [{"key": "0x3b28019ccfdbd30ffc65951d94bb85c9e2b8434111a000b5afd533ce65f57a4", "value": "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x110e2f729c9c2b988559994a3daccd838cf52faf88e18101373e67dd061455a", "value": "0xe043da617250000"}, {"key": "0x3d539ea1ce2715fb83fdcf90500b73ad2631bb17bbb56386bfa43a36c0d94da", "value": "0x1eda606a8f3964"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x14e4124892515"}, {"key": "0x7e4feecce63daa81e391376af74856dad0fe0b663a1fb6aff9e945c7aba842d", "value": "0x35e50e0a8a187"}]}, "nonces": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": "0xe", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d": "0x2"}, "deployed_contracts": [{"address": "0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909"}, {"address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"}, {"address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08"}, {"address": "0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"}, {"address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6"}], "old_declared_contracts": ["0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"], "declared_classes": [{"class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52"}, {"class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4"}, {"class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313"}], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/5_with_declare_v2.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/5_with_declare_v2.txt index 3b4a3c43..fd4465a4 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_state_update/5_with_declare_v2.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/5_with_declare_v2.txt @@ -1 +1 @@ -{"block_hash": "0x67d24961077de7a1f49b6b1da78903ee80217662d026c155e14d7abedc04034", "new_root": "0x16faa4c43f71b49facab6b0585094195c989ea6168e69f235fdcef86428cd42", "old_root": "0x5e40123c30cfecb5284c041a703c2b542de91a8c29c69af2e37e12496fa88a", "state_diff": {"storage_diffs": {"0x24dbaeb7bf551b2e6c403957a5e4c1b19596c2d6b9c77d677ed85af73007fc": [{"key": "0x5", "value": "0x65"}, {"key": "0x1469414c13009d9841e8cf4d8abd32ae6d59fe66c8e555271dc2231f45c7a6d", "value": "0x1c0f34928344fecbeed32e6087bd0c8ec049c1f33b6b115568f2b11c94a9ab6"}], "0x22fa2a6e1854e136bca7a60fa841bd0e7ae9f86320ea941db6da2ec53145265": [{"key": "0x6bfbb0f2bdec6f6e4a6eb5de2bfad5722a48bbcf7db16dbb361edf1b15eaa65", "value": "0x5a887e8eea583dd5ffa62dff9a127c2b851c63d40d6694932143fa7d30ee"}, {"key": "0x5", "value": "0x22b"}, {"key": "0x212a9e2c79c5bed28bca6740bae5babb6e2ec02c8e63d19e18027080b41bd31", "value": "0x69deb1aaf37c520b687dfa5e23b60d10822ac65875446c2f3a26d9251f12e93"}, {"key": "0x212a9e2c79c5bed28bca6740bae5babb6e2ec02c8e63d19e18027080b41bd32", "value": "0x1c65c2f72ab9a8589d1594e4c367a499d663af5de0184d387af8f5009048a31"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x42328937f66f0427ca9e66a9b2b0e471a361ff0524b2676d4dc9546aff531a8", "value": "0x69d296d2ba457ca"}, {"key": "0x2d782db90efbf9b41bf6bdf47cfe2ad71e4f2cb31532a827f98260725f854c9", "value": "0x1e1731bd604ae0"}, {"key": "0x48e3426cfff518cb97998a29da47874171880da2a5b5da4e1b91d6f91dd59ce", "value": "0x8c264c2a2f178746"}, {"key": "0x31bd9ebcad63b29b6ce51df0b9978b7f5b1c158b0ee90b6d44024f225603e28", "value": "0x99655dab499a330"}], "0x60de99e2ba100ea02799ed692306ff5e209edc3a2be30c5c7e00e789f74771c": [{"key": "0x633cce43561d71b1f82035f5f0af626da6b22bea7a0ff9f942a6fd4f039fe51", "value": "0x126a5919e999f9195ae166f349429f050380f691fc4ea5b2f4d8585d050bf12"}]}, "nonces": {"0x2fd67a7bcca0d984408143255c41563b14e6c8a0846b5c9e092e7d56cf1a862": "0x3", "0x52125c1e043126c637d1436d9551ef6c4f6e3e36945676bbd716a56e3a41b7a": "0xf", "0x733dead6027a46717d7e79be28bf059bb8f5b02db2854c742ff652392d94506": "0x6"}, "deployed_contracts": [{"address": "0x60de99e2ba100ea02799ed692306ff5e209edc3a2be30c5c7e00e789f74771c", "class_hash": "0x4631b6b3fa31e140524b7d21ba784cea223e618bffe60b5bbdca44a8b45be04"}, {"address": "0x390a7973fd96e03d16ff669cee465dec765920c66d6e63ee4901270f4930e97", "class_hash": "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c"}], "old_declared_contracts": [], "declared_classes": [{"class_hash": "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c", "compiled_class_hash": "0x711c0c3e56863e29d3158804aac47f424241eda64db33e2cc2999d60ee5105"}], "replaced_classes": []}} \ No newline at end of file +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "new_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "old_root": "0x2729a9ded030fa182a4802b9accf662d071d23fdfb2011504d1777927c9abaf", "state_diff": {"storage_diffs": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": [{"key": "0x3b28019ccfdbd30ffc65951d94bb85c9e2b8434111a000b5afd533ce65f57a4", "value": "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x110e2f729c9c2b988559994a3daccd838cf52faf88e18101373e67dd061455a", "value": "0xe043da617250000"}, {"key": "0x3d539ea1ce2715fb83fdcf90500b73ad2631bb17bbb56386bfa43a36c0d94da", "value": "0x1eda606a8f3964"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x14e4124892515"}, {"key": "0x7e4feecce63daa81e391376af74856dad0fe0b663a1fb6aff9e945c7aba842d", "value": "0x35e50e0a8a187"}]}, "nonces": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": "0xe", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d": "0x2"}, "deployed_contracts": [{"address": "0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909"}, {"address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"}, {"address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08"}, {"address": "0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"}, {"address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6"}], "old_declared_contracts": ["0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"], "declared_classes": [{"class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52"}, {"class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4"}, {"class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313"}], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/6_with_replaced_classes.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/6_with_replaced_classes.txt index 1c336b4e..60c1d686 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_state_update/6_with_replaced_classes.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/6_with_replaced_classes.txt @@ -1 +1 @@ -{"block_hash": "0x34e815552e42c5eb5233b99de2d3d7fd396e575df2719bf98e7ed2794494f86", "new_root": "0x74abfb3f55d3f9c3967014e1a5ec7205949130ff8912dba0565daf70299144c", "old_root": "0x1f386a54db7796872829c9168cdc567980daad382daa4df3b71641a2551e833", "state_diff": {"storage_diffs": {"0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352": [{"key": "0x1a315d6be5adafdd493b45672137525190b23b7f3a0ec91feafaa6ab48b0828", "value": "0x24740a6b71ae76d658a1ec1efb6f201ba9794ebeed49ca59c0efe63f4a3cca2"}], "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5": [{"key": "0x782142c3526899d48e6f1ce725f56b11cb462586c9f1340e4cfbcbebdd174f2", "value": "0x7dee1fa95f31fd5ffb0ad1c3313aa51d82d66adfbb65efb982eae696c4309b7"}], "0x64ed79a8ebe97485d3357bbfdf5f6bea0d9db3b5f1feb6e80d564a179122dc6": [{"key": "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32", "value": "0x7e5"}], "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b": [{"key": "0x26a1e7e74188cbc724a793c972ad09d5aba110c4c06dfae51ae078b321e957", "value": "0x461226574f9663500fc330295cea93b295389618c9eab30c3362fa14975d54c"}], "0x7b196a359045d4d0c10f73bdf244a9e1205a615dbb754b8df40173364288534": [{"key": "0x4e23b03fa17cab92b1fbcf15b4f6583736b7bef4be4d87559618265095adf32", "value": "0x7c7"}]}, "nonces": {}, "deployed_contracts": [{"address": "0x3cafce8a34c9796e8f71209bcfcc2903dcad24b8d924944e88466b0cafd352", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8"}, {"address": "0x30b81d3f0f4e2af48e211d9914d611422430cd6fac6a9df64136a6a879c1dc5", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8"}, {"address": "0x703283db9c320db759d02c5255af47be11ac2e2dca4a27bca92b407e25e063b", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8"}], "old_declared_contracts": [], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file +{"block_hash": "0x78b67b11f8c23850041e11fb0f3b39db0bcb2c99d756d5a81321d1b483d79f6", "new_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "old_root": "0xe005205a1327f3dff98074e528f7b96f30e0624a1dfcf571bdc81948d150a0", "state_diff": {"storage_diffs": {}, "nonces": {}, "deployed_contracts": [], "old_declared_contracts": ["0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1"], "declared_classes": [], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_state_update/7_with_deployed_contracts.txt b/starknet-core/test-data/raw_gateway_responses/get_state_update/7_with_deployed_contracts.txt new file mode 100644 index 00000000..fd4465a4 --- /dev/null +++ b/starknet-core/test-data/raw_gateway_responses/get_state_update/7_with_deployed_contracts.txt @@ -0,0 +1 @@ +{"block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "new_root": "0x4604bb7f9ebbf8bf909ba5982b11adf2ed3638f1d736036ddb4154889e139a0", "old_root": "0x2729a9ded030fa182a4802b9accf662d071d23fdfb2011504d1777927c9abaf", "state_diff": {"storage_diffs": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": [{"key": "0x3b28019ccfdbd30ffc65951d94bb85c9e2b8434111a000b5afd533ce65f57a4", "value": "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca"}], "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7": [{"key": "0x110e2f729c9c2b988559994a3daccd838cf52faf88e18101373e67dd061455a", "value": "0xe043da617250000"}, {"key": "0x3d539ea1ce2715fb83fdcf90500b73ad2631bb17bbb56386bfa43a36c0d94da", "value": "0x1eda606a8f3964"}, {"key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", "value": "0x14e4124892515"}, {"key": "0x7e4feecce63daa81e391376af74856dad0fe0b663a1fb6aff9e945c7aba842d", "value": "0x35e50e0a8a187"}]}, "nonces": {"0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5": "0xe", "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d": "0x2"}, "deployed_contracts": [{"address": "0x163dd8182a69972b9fc7e95eb0be92b731680212beddfede2eff4ffcfa28bfb", "class_hash": "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909"}, {"address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69"}, {"address": "0x535ca4e1d1be7ec4a88d51a2962cd6c5aea1be96cb2c0b60eb1721dc34f800d", "class_hash": "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08"}, {"address": "0x5754af3760f3356da99aea5c3ec39ccac7783d925a19666ebbeca58ff0087f4", "class_hash": "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"}, {"address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "class_hash": "0x5c478ee27f2112411f86f207605b2e2c58cdb647bac0df27f660ef2252359c6"}], "old_declared_contracts": ["0x3ae692aaf1ded26a0b58cf42490f757563850acea887ed57b4894fee8279063", "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "0x7db5c2c2676c2a5bfc892ee4f596b49514e3056a0eee8ad125870b4fb1dd909", "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", "0x402d6191ebe3ea289789edd160f3afa6600a389f1aad0ab7709b830653c6f08", "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", "0x381f14e5e0db5889c981bf050fb034c0fbe0c4f070ee79346a05dbe2bf2af90"], "declared_classes": [{"class_hash": "0x903752516de5c04fe91600ca6891e325278b2dfc54880ae11a809abb364844", "compiled_class_hash": "0x7e2bc0b8214da5e9506f383ce72dd8e92cf7f09e8cb668522f43e77023c9f52"}, {"class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4"}, {"class_hash": "0x298049830f817974463b6d4186b062b04cc1af2557f98f55e21334739252600", "compiled_class_hash": "0x63a8548e679463cb43c229d688641269ad847d98ead75ed0f93bbb1a9505313"}], "replaced_classes": []}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/10_deploy_account_v3.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/10_deploy_account_v3.txt index 79263177..2a00c6fe 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/10_deploy_account_v3.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/10_deploy_account_v3.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0xff810c2cc83851e2f80af89252e4dc42fb7d549a362d2db72f76ba329d7b96", "block_number": 319693, "transaction_index": 4, "transaction": {"transaction_hash": "0x29fd7881f14380842414cdfdd8d6c0b1f2174f8916edcfeb1ede1eb26ac3ef0", "version": "0x3", "signature": ["0x6d756e754793d828c6c1a89c13f7ec70dbd8837dfeea5028a673b80e0d6b4ec", "0x4daebba599f860daee8f6e100601d98873052e1c61530c630cc4375c6bd48e3"], "nonce": "0x0", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x186a0", "max_price_per_unit": "0x5af3107a4000"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x2fab82e4aef1d8664874e1f194951856d48463c3e6bf9a8c68e234a629a6f50", "contract_address_salt": "0x0", "class_hash": "0x2338634f11772ea342365abd5be9d9dc8a6f44f159ad782fdebd3db5d969738", "constructor_calldata": ["0x5cd65f3d7daea6c63939d659b8473ea0c5cd81576035a4d34e52fb06840196c"], "type": "DEPLOY_ACCOUNT"}} \ No newline at end of file +{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x795cbb5f8bf62e8ada74d65b763efed1c3e31cf5129b79f29be7e07d1055195", "block_number": 40678, "transaction_index": 2, "transaction": {"transaction_hash": "0x11c67fb3a9a623b3190c9ac41ebf7f5dd421f2583344c498a30a7280c660f01", "version": "0x3", "signature": ["0x4fb29966488ff8a1836f2920f65c4ad9ef90f79b00919de5ae3c74657285df6", "0x58a248483f80ebcf1f848558cbc9987a2ebcde1cc5b7176a7fe005102392716", "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0", "0x0", "0x534e5f5345504f4c4941", "0x4b5b7a5e8940b06fcd3f6f4a49841bd64ec6c78d883814567f14fd5b9a1bd35", "0x3f0f9985e77eca21a39adc32b5bd37a748d9534bf7282a54c6f531cc05ffdac"], "nonce": "0x0", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0xe5c", "max_price_per_unit": "0xa76610b0c"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x7108b40ffb3213e00a211ed5b0734fa35f95826ef385bc2b17ddf38ca69ecac", "contract_address_salt": "0x421163b3b1b523d3f459ecf9961ca50517ed36a72c7bcf42e485f9d4174984", "class_hash": "0x13bfe114fb1cf405bfc3a7f8dbe2d91db146c17521d40dcf57e16d6b59fa8e6", "constructor_calldata": ["0x421163b3b1b523d3f459ecf9961ca50517ed36a72c7bcf42e485f9d4174984"], "type": "DEPLOY_ACCOUNT"}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/1_invoke.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/1_invoke.txt index 1689a6b2..c24deffc 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/1_invoke.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/1_invoke.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x42553deb16a14de4153f28312971f825e83d924e0f2883c1178de86a64a398f", "block_number": 100, "transaction_index": 2, "transaction": {"transaction_hash": "0x6c26da8c26aa61dc40ed36b9078536f3b5b0532e884a8f0b7488480580bf3c9", "version": "0x0", "max_fee": "0x0", "signature": [], "entry_point_selector": "0x27c3334165536f239cfd400ed956eabff55fc60de4fb56728b6a4f6b87db01c", "calldata": ["0x1b16ae63c8a3ca48ad7df4b7699750d1dbb1570f528628384e7ae76fa9b18dc", "0x33ce93a3eececa5c9fc70da05f4aff3b00e1820b79587924d514bc76788991a", "0x1", "0x0"], "contract_address": "0x12d1e51756ee5642f08f32d6a63f661e0af3ad44f8f253ae8060368712029b1", "type": "INVOKE_FUNCTION"}} \ No newline at end of file +{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x13b390a0b2c48f907cda28c73a12aa31b96d51bc1be004ba5f71174d8d70e4f", "block_number": 5, "transaction_index": 0, "transaction": {"transaction_hash": "0xcc475316c44b764c852e4ce721b15afcc8b9c53a5a54c85020f5dee067b8ce", "version": "0x1", "max_fee": "0x0", "signature": ["0x193eec72e2d84fcc5e0e1986130b95d9d7f52de5c0d33c7c7e9b353207b481d", "0x1ff8880e792e978868f0c49293f0934c14c257a506cf5568f0105006e302c62"], "nonce": "0xb", "sender_address": "0x43abaa073c768ebf039c0c4f46db9acc39e9ec165690418060a652aab39e7d8", "calldata": ["0x1", "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", "0x2991bb19305a4d6507010cd65c3b5ae1573665f684593f23c839f2011e46bf1", "0x0", "0x1", "0x1", "0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc"], "type": "INVOKE_FUNCTION"}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/2_deploy.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/2_deploy.txt index 0d2f72b7..05b916a7 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/2_deploy.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/2_deploy.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x42553deb16a14de4153f28312971f825e83d924e0f2883c1178de86a64a398f", "block_number": 100, "transaction_index": 0, "transaction": {"transaction_hash": "0x2cce6f468d865bf93476c7a96b7ce0ca3d26a6ffbb4ba93a027a67f0d2e2773", "version": "0x0", "contract_address": "0x3272141143bc48b691d2037401c6957aef95f8e5ac0228b8d4518c8a0ef4b9f", "contract_address_salt": "0x7388987d7b2b134b2607a5bcb16cf4d2a746c5b195cceb3bd642109a3c111f0", "class_hash": "0x10455c752b86932ce552f2b0fe81a880746649b9aee7e0d842bf3f52378f9f8", "constructor_calldata": ["0x733f7cf7e65348e0de5e7da675c243254fb225031575efa12b3baf9528cec6c", "0x600139c4376cff21a74f59f76bd2ffbd834e3944efcd9b712887bdd73b025db"], "type": "DEPLOY"}} \ No newline at end of file +{"finality_status": "NOT_RECEIVED", "status": "NOT_RECEIVED"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/5_declare_v1.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/5_declare_v1.txt index 4f01a2c0..94c808a0 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/5_declare_v1.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/5_declare_v1.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x4240594bf968c0bddd211eaa3bd4bf1eb71d189708e07b362adab02afce32f", "block_number": 216182, "transaction_index": 0, "transaction": {"transaction_hash": "0x42d25cc0876a5885be10d59d9d665821ac17965fcb47dd6c0c633dbcc7c4bb6", "version": "0x1", "max_fee": "0x2386f26fc10000", "signature": ["0x5a64cc717d2b677d88f567ab8b5e67fbf68a02082c796d29c7631258d61c182", "0x2bd1361cd370118fdb08e3dd02d3afa2022aef2ad789ea8ec5bf7bd93975020"], "nonce": "0x7", "class_hash": "0xa69700a89b1fa3648adff91c438b79c75f7dcb0f4798938a144cce221639d6", "sender_address": "0x5fb7f82414f88e8418bb5f973bbc8fcb660a91913da262f47ecf8e898b83b09", "type": "DECLARE"}} \ No newline at end of file +{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "block_number": 7, "transaction_index": 2, "transaction": {"transaction_hash": "0x1936a09e5aaee208fc0f7cc826e126d421c3ac9aca2c789605e1e919e399185", "version": "0x1", "max_fee": "0x625e5879c08f4", "signature": ["0x30a10763fc93c0e02959352754d11dbb03dcabb0c1e786b4dc02c77170ab017", "0x3ae5a2e11c72bbda3ef9621856d26f3f9d82b3ce7b9825a59ecd1e28dd0ae29"], "nonce": "0x1", "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/6_declare_v2.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/6_declare_v2.txt index fe462850..d282a4cb 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/6_declare_v2.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/6_declare_v2.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x67d24961077de7a1f49b6b1da78903ee80217662d026c155e14d7abedc04034", "block_number": 283364, "transaction_index": 3, "transaction": {"transaction_hash": "0x722b666ce83ec69c18190aae6149f79e6ad4b9c051b171cc6c309c9e0c28129", "version": "0x2", "max_fee": "0x38d7ea4c68000", "signature": ["0x6f3070288fb33359289f5995190c1074de5ff00d181b1a7d6be87346d9957fe", "0x4ab2d251d18a75f8e1ad03aba2a77bd3d978abf571dc262c592fb07920dc50d"], "nonce": "0x1", "class_hash": "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c", "compiled_class_hash": "0x711c0c3e56863e29d3158804aac47f424241eda64db33e2cc2999d60ee5105", "sender_address": "0x2fd67a7bcca0d984408143255c41563b14e6c8a0846b5c9e092e7d56cf1a862", "type": "DECLARE"}} \ No newline at end of file +{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x2e59a5adbdf53e00fd282a007b59771067870c1c7664ca7878327adfff398b4", "block_number": 7, "transaction_index": 9, "transaction": {"transaction_hash": "0x4cacc2bbdd5ec77b20e908f311ab27d6495b69761e929bb24ba02632716944", "version": "0x2", "max_fee": "0x92fa1ac712614", "signature": ["0x4ab3e77908396c66b39326f52334b447fe878d1d899a287c9e3cf7bd09839ea", "0x79a56f9e61eb834f1ac524eb35da33cccf92ff3b01a7a8eaf68cbb64bebdba9"], "nonce": "0x6", "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "compiled_class_hash": "0x29787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4", "sender_address": "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5", "type": "DECLARE"}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/8_invoke_v3.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/8_invoke_v3.txt index e83f6c32..3cf0e5fd 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/8_invoke_v3.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/8_invoke_v3.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L2", "status": "ACCEPTED_ON_L2", "block_hash": "0x74c2d131b94e779989f3f50a728970439b739731a9eecb38e9740f2faf97811", "block_number": 321800, "transaction_index": 0, "transaction": {"transaction_hash": "0x4eaf2732c8459e8de553f50d6aeb989f4b1173a9ff5579a55e8aea8b01d0a44", "version": "0x3", "signature": ["0x2c1ce7d53d17d5eb30b2c0e4692a21d7d7c52fce161e82a91ddf22a3d76b0f1", "0x2151eef8c038b1dc1aa5c89670d6271dfe25b8bb1ab2f78868326d4085fd23a"], "nonce": "0x2327", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x186a0", "max_price_per_unit": "0x5af3107a4000"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "calldata": ["0x2", "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", "0x5", "0x772164c9d6179a89e7f1167f099219f47d752304b16ed01f081b6e0b45c93c3", "0x2e0a0b7625be9e2727125166351da8b9f43ad6e4f78f26f4d6fa6daa6f282d4", "0x2", "0x41110247563d500ef76776594d148aa6a9f16fe258cfc274db4f3cef96aa3bc", "0x2202a556642afd1cbb50cc29d520c8d2152017213a89829bb361aa058229bf", "0x3fe8e4571772bbe0065e271686bd655efd1365a5d6858981e582f82f2c10313", "0x1136789e1c76159d9b9eca06fcef05bdcf77f5d51bd4d9e09f2bc8d7520d8e6", "0x2", "0x6aa87a8dd4f10ae5694223e8167a06e4", "0x577669320375d903569e370ca02272be"], "account_deployment_data": [], "type": "INVOKE_FUNCTION"}} \ No newline at end of file +{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x60ff8b1977d67388f6fd479c51ce6a884b22c009e8b59b8887ff9401cc49092", "block_number": 8432, "transaction_index": 1, "transaction": {"transaction_hash": "0x45cbde9a600beb9beb77a54f16842ba2871a8ead541dd2803c9397e1f097ed4", "version": "0x3", "signature": ["0xb2b0c95620428b14e0659b535a8de1629f2b53273acffcc71dad9eb15e65f1", "0x5b330d105eda9205f5f9762cdfdd85452c8c898571543b584b3fa48b7532b36"], "nonce": "0x19da", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x186a0", "max_price_per_unit": "0x5af3107a4000"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "calldata": ["0x2", "0x47ad6a25df680763e5663bd0eba3d2bfd18b24b1e8f6bd36b71c37433c63ed0", "0x7772be8b80a8a33dc6c1f9a6ab820c02e537c73e859de67f288c70f92571bb", "0x3", "0x767d44b0c20b8bf81cd67a593392b92bde507386dc3efe0de75d6d33f5785b7", "0xe3d350a40b4f17a2d5f225570a5481e1596b777039cd9e178fd9c801d844d3", "0x6b72064266439542160f27c6ea2108c82c20531d5aeed08201b0438c20f076d", "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", "0x1", "0x2c370b7bffafddac9a4ab47bb08bc1abaf6cd8d9"], "account_deployment_data": [], "type": "INVOKE_FUNCTION"}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction/9_declare_v3.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction/9_declare_v3.txt index dc71d5d8..cfef0f3b 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction/9_declare_v3.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction/9_declare_v3.txt @@ -1 +1 @@ -{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x3372a677fc331bfdc6c4ee5430b4b934b486668dedbfeadae5e50b9af37a27e", "block_number": 319709, "transaction_index": 1, "transaction": {"transaction_hash": "0x41d1f5206ef58a443e7d3d1ca073171ec25fa75313394318fc83a074a6631c3", "version": "0x3", "signature": ["0x29a49dff154fede73dd7b5ca5a0beadf40b4b069f3a850cd8428e54dc809ccc", "0x429d142a17223b4f2acde0f5ecb9ad453e188b245003c86fab5c109bad58fc3"], "nonce": "0x1", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x186a0", "max_price_per_unit": "0x2540be400"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x2fab82e4aef1d8664874e1f194951856d48463c3e6bf9a8c68e234a629a6f50", "class_hash": "0x5ae9d09292a50ed48c5930904c880dab56e85b825022a7d689cfc9e65e01ee7", "compiled_class_hash": "0x1add56d64bebf8140f3b8a38bdf102b7874437f0c861ab4ca7526ec33b4d0f8", "account_deployment_data": [], "type": "DECLARE"}} \ No newline at end of file +{"execution_status": "SUCCEEDED", "finality_status": "ACCEPTED_ON_L1", "status": "ACCEPTED_ON_L1", "block_hash": "0x2aefcf25b336119ef7817804de05ea6e461befde0af907d1a9a572a715b1ff2", "block_number": 51171, "transaction_index": 19, "transaction": {"transaction_hash": "0x54270d103c875a613e013d1fd555edcff2085feca9d7b4532243a8257fd5cf3", "version": "0x3", "signature": ["0x2ce8f1a06d1da2df33b81bc73d59fdf28a19afcd86e658e87c66fb0d5aff93", "0x33c55f6637e52696376928c833fa6fb8657725ef379a098ddbab5d5cdcb1d4"], "nonce": "0x22", "nonce_data_availability_mode": 0, "fee_data_availability_mode": 0, "resource_bounds": {"L1_GAS": {"max_amount": "0x2ddd", "max_price_per_unit": "0x2ba7def30000"}, "L2_GAS": {"max_amount": "0x0", "max_price_per_unit": "0x0"}}, "tip": "0x0", "paymaster_data": [], "sender_address": "0x7e8d46c49d734530b51222b7bb7ff8537d6126559f160d73e8c7ac4fc0cad75", "class_hash": "0xa298b56801319b054855d39720eab22502e77627552e564d3bf50bd7844df9", "compiled_class_hash": "0x186f6c4ca3af40dbcbf3f08f828ab0ee072938aaaedccc74ef3b9840cbd9fb3", "account_deployment_data": [], "type": "DECLARE"}} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction_status/1_accepted.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction_status/1_accepted.txt index f615b177..91e3f7a0 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction_status/1_accepted.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction_status/1_accepted.txt @@ -1 +1 @@ -{"tx_status": "ACCEPTED_ON_L1", "finality_status": "ACCEPTED_ON_L1", "execution_status": "SUCCEEDED", "block_hash": "0x42553deb16a14de4153f28312971f825e83d924e0f2883c1178de86a64a398f"} \ No newline at end of file +{"tx_status": "ACCEPTED_ON_L1", "finality_status": "ACCEPTED_ON_L1", "execution_status": "SUCCEEDED", "block_hash": "0x13b390a0b2c48f907cda28c73a12aa31b96d51bc1be004ba5f71174d8d70e4f"} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/1_with_messages.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/1_with_messages.txt index b53efd33..87480521 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/1_with_messages.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/1_with_messages.txt @@ -1 +1 @@ -{"function_invocation": {"caller_address": "0x0", "contract_address": "0x3e591c0f03fa44890270a10afcc20cd2955c230d3a5f23e9e878472d30de894", "calldata": ["0xfe6bfff9cc3a865e6a4c5a32f1ce6c1edaa8a20c"], "result": [], "execution_resources": {"n_steps": 31, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 0, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": [{"order": 0, "to_address": "0xFE6bFfF9cc3A865E6A4c5a32f1CE6c1EDaA8a20C", "payload": ["0xc", "0x22"]}]}, "signature": []} \ No newline at end of file +{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 2}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 370, "builtin_instance_counter": {"range_check_builtin": 7}, "n_memory_holes": 3}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "calldata": ["0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 229, "builtin_instance_counter": {"range_check_builtin": 5}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": [{"order": 0, "to_address": "0x882a7A6F609eABdcAE71a4EF2F52ff4E49AEaEBc", "payload": ["0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"]}]}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x674855e87b6d33cde07596caf7a58ac107883b83835e7dd0879edb70d303220", "0x1f7857f7acce0ce8f935c547ebb20307d3213c4dc8a2f855922de98363a5a4b"]} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/2_with_events.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/2_with_events.txt index f64824f1..87480521 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/2_with_events.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/2_with_events.txt @@ -1 +1 @@ -{"function_invocation": {"caller_address": "0x0", "contract_address": "0x49672cf4a6780b060f57d49b26634de69d3fa463e6428e060a35ef5e5f453d6", "calldata": ["0x8", "0x5310ba60cc041e1257880106159e014acd7f2db250577bfb95bf9a83936f127", "0x1cb4b3d6d873d4e399a0dd19e455cacf0614a944ca61c85496b9b20d5f51dd5", "0xbd65265d8c7afe085be7c3daefb875bbb2fc5cde9b97ea5ade799660ab360f", "0x62806861a4ba85af8d328ee0b7f1adec629232b873d66b94919d3e3ec503e62", "0x3434892122606509e984778cd29b30a200536b7e84e37f128f3ac8c74418c87", "0x72af1bff57cf5e0e888814c2a22faa7d20ecf71f2b976de4c871d609ebdc587", "0x547a1d7b3939ee1e0e2161ba091f7d2502163e0cef20c05408e13faa730e804", "0xd49e57e8597ea10b2c48dd26a46bc79fd6cd7bd14c50b77fa39e586bb13f7b", "0x0"], "selector": "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 43, "builtin_instance_counter": {"pedersen_builtin": 0, "range_check_builtin": 2, "bitwise_builtin": 0, "output_builtin": 0, "ecdsa_builtin": 0, "ec_op_builtin": 0}, "n_memory_holes": 8}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x5310ba60cc041e1257880106159e014acd7f2db250577bfb95bf9a83936f127", "0x1cb4b3d6d873d4e399a0dd19e455cacf0614a944ca61c85496b9b20d5f51dd5", "0xbd65265d8c7afe085be7c3daefb875bbb2fc5cde9b97ea5ade799660ab360f", "0x62806861a4ba85af8d328ee0b7f1adec629232b873d66b94919d3e3ec503e62", "0x3434892122606509e984778cd29b30a200536b7e84e37f128f3ac8c74418c87", "0x72af1bff57cf5e0e888814c2a22faa7d20ecf71f2b976de4c871d609ebdc587", "0x547a1d7b3939ee1e0e2161ba091f7d2502163e0cef20c05408e13faa730e804", "0xd49e57e8597ea10b2c48dd26a46bc79fd6cd7bd14c50b77fa39e586bb13f7b"], "data": []}], "messages": []}, "signature": []} \ No newline at end of file +{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 2}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 370, "builtin_instance_counter": {"range_check_builtin": 7}, "n_memory_holes": 3}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "calldata": ["0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 229, "builtin_instance_counter": {"range_check_builtin": 5}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": [{"order": 0, "to_address": "0x882a7A6F609eABdcAE71a4EF2F52ff4E49AEaEBc", "payload": ["0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"]}]}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x674855e87b6d33cde07596caf7a58ac107883b83835e7dd0879edb70d303220", "0x1f7857f7acce0ce8f935c547ebb20307d3213c4dc8a2f855922de98363a5a4b"]} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/3_with_call_type.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/3_with_call_type.txt index 64c6f8af..87480521 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/3_with_call_type.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/3_with_call_type.txt @@ -1 +1 @@ -{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "calldata": ["0x2", "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", "0x5", "0x772164c9d6179a89e7f1167f099219f47d752304b16ed01f081b6e0b45c93c3", "0x2e0a0b7625be9e2727125166351da8b9f43ad6e4f78f26f4d6fa6daa6f282d4", "0x2", "0x41110247563d500ef76776594d148aa6a9f16fe258cfc274db4f3cef96aa3bc", "0x2202a556642afd1cbb50cc29d520c8d2152017213a89829bb361aa058229bf", "0x3fe8e4571772bbe0065e271686bd655efd1365a5d6858981e582f82f2c10313", "0x1136789e1c76159d9b9eca06fcef05bdcf77f5d51bd4d9e09f2bc8d7520d8e6", "0x2", "0x6aa87a8dd4f10ae5694223e8167a06e4", "0x577669320375d903569e370ca02272be"], "call_type": "CALL", "class_hash": "0x2338634f11772ea342365abd5be9d9dc8a6f44f159ad782fdebd3db5d969738", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": ["0x56414c4944"], "execution_resources": {"n_steps": 1131, "builtin_instance_counter": {"ec_op_builtin": 3, "range_check_builtin": 28}, "n_memory_holes": 63}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "calldata": ["0x2", "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", "0x5", "0x772164c9d6179a89e7f1167f099219f47d752304b16ed01f081b6e0b45c93c3", "0x2e0a0b7625be9e2727125166351da8b9f43ad6e4f78f26f4d6fa6daa6f282d4", "0x2", "0x41110247563d500ef76776594d148aa6a9f16fe258cfc274db4f3cef96aa3bc", "0x2202a556642afd1cbb50cc29d520c8d2152017213a89829bb361aa058229bf", "0x3fe8e4571772bbe0065e271686bd655efd1365a5d6858981e582f82f2c10313", "0x1136789e1c76159d9b9eca06fcef05bdcf77f5d51bd4d9e09f2bc8d7520d8e6", "0x2", "0x6aa87a8dd4f10ae5694223e8167a06e4", "0x577669320375d903569e370ca02272be"], "call_type": "CALL", "class_hash": "0x2338634f11772ea342365abd5be9d9dc8a6f44f159ad782fdebd3db5d969738", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": ["0x2", "0x1", "0x59cc87201a08025619d0dedaa2092d36bc5c9484116036344089d38f8387b19", "0x0"], "execution_resources": {"n_steps": 1632, "builtin_instance_counter": {"range_check_builtin": 36}, "n_memory_holes": 18}, "internal_calls": [{"caller_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "contract_address": "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "calldata": ["0x772164c9d6179a89e7f1167f099219f47d752304b16ed01f081b6e0b45c93c3", "0x2e0a0b7625be9e2727125166351da8b9f43ad6e4f78f26f4d6fa6daa6f282d4", "0x2", "0x41110247563d500ef76776594d148aa6a9f16fe258cfc274db4f3cef96aa3bc", "0x2202a556642afd1cbb50cc29d520c8d2152017213a89829bb361aa058229bf"], "call_type": "CALL", "class_hash": "0x772164c9d6179a89e7f1167f099219f47d752304b16ed01f081b6e0b45c93c3", "selector": "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", "entry_point_type": "EXTERNAL", "result": ["0x59cc87201a08025619d0dedaa2092d36bc5c9484116036344089d38f8387b19"], "execution_resources": {"n_steps": 80, "builtin_instance_counter": {"range_check_builtin": 1}, "n_memory_holes": 2}, "internal_calls": [{"caller_address": "0x4d0b88ace5705bb7825f91ee95557d906600b7e7762f5615e6a4f407185a43a", "contract_address": "0x59cc87201a08025619d0dedaa2092d36bc5c9484116036344089d38f8387b19", "calldata": ["0x41110247563d500ef76776594d148aa6a9f16fe258cfc274db4f3cef96aa3bc", "0x2202a556642afd1cbb50cc29d520c8d2152017213a89829bb361aa058229bf"], "call_type": "CALL", "class_hash": "0x772164c9d6179a89e7f1167f099219f47d752304b16ed01f081b6e0b45c93c3", "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", "entry_point_type": "CONSTRUCTOR", "result": [], "execution_resources": {"n_steps": 30, "builtin_instance_counter": {}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, {"caller_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "contract_address": "0x3fe8e4571772bbe0065e271686bd655efd1365a5d6858981e582f82f2c10313", "calldata": ["0x6aa87a8dd4f10ae5694223e8167a06e4", "0x577669320375d903569e370ca02272be"], "call_type": "CALL", "class_hash": "0x5a1a156fd2af56bb992ce31fd2a4765e9b65b84efce45f3063974decaa339a2", "selector": "0x1136789e1c76159d9b9eca06fcef05bdcf77f5d51bd4d9e09f2bc8d7520d8e6", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 283, "builtin_instance_counter": {"range_check_builtin": 6}, "n_memory_holes": 14}, "internal_calls": [], "events": [], "messages": []}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "contract_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x8321561600", "0x0"], "call_type": "CALL", "class_hash": "0x6e7226605869c2bd8cb86a647b451adc0b90e1e4f00b1c45d502dcd2ba6d41e", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 2808, "builtin_instance_counter": {"pedersen_builtin": 7, "poseidon_builtin": 3, "range_check_builtin": 115, "bitwise_builtin": 4}, "n_memory_holes": 135}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", "0x35acd6dd6c5045d18ca6d0192af46b335a5402c02d41f46e4e77ea2c951d9a3", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"], "data": ["0x8321561600", "0x0"]}, {"order": 1, "keys": ["0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd"], "data": ["0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", "0x4a050047956448c", "0x0", "0x4a050879aac5a8c", "0x0"]}], "messages": []}, "signature": []} \ No newline at end of file +{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 2}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 370, "builtin_instance_counter": {"range_check_builtin": 7}, "n_memory_holes": 3}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "calldata": ["0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 229, "builtin_instance_counter": {"range_check_builtin": 5}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": [{"order": 0, "to_address": "0x882a7A6F609eABdcAE71a4EF2F52ff4E49AEaEBc", "payload": ["0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"]}]}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x674855e87b6d33cde07596caf7a58ac107883b83835e7dd0879edb70d303220", "0x1f7857f7acce0ce8f935c547ebb20307d3213c4dc8a2f855922de98363a5a4b"]} \ No newline at end of file diff --git a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/4_with_validation.txt b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/4_with_validation.txt index 7541c04a..87480521 100644 --- a/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/4_with_validation.txt +++ b/starknet-core/test-data/raw_gateway_responses/get_transaction_trace/4_with_validation.txt @@ -1 +1 @@ -{"code": "StarknetErrorCode.INVALID_TRANSACTION_HASH", "message": "Transaction corresponding to hash 1 is not found."} \ No newline at end of file +{"validate_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 89, "builtin_instance_counter": {"ecdsa_builtin": 1, "range_check_builtin": 2}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": []}, "function_invocation": {"caller_address": "0x0", "contract_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "calldata": ["0x1", "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "0x0", "0x4", "0x4", "0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x3f2460c826c7dee70d355feaaa1b2f89c7b5defdad66ec15c051f7cfb9f6cb5", "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 370, "builtin_instance_counter": {"range_check_builtin": 7}, "n_memory_holes": 3}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x267311365224e8d4eb4dd580f1b737f990dfc81112ca71ecce147e774bcecb", "calldata": ["0x882a7a6f609eabdcae71a4ef2f52ff4e49aeaebc", "0x2", "0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"], "call_type": "CALL", "class_hash": "0x2c70cf9fd8267406d330e369083429adf57b36f97193c475a90246231039e00", "selector": "0x2d7cf5d5a324a320f9f37804b1615a533fde487400b41af80f13f7ac5581325", "entry_point_type": "EXTERNAL", "result": [], "execution_resources": {"n_steps": 229, "builtin_instance_counter": {"range_check_builtin": 5}, "n_memory_holes": 0}, "internal_calls": [], "events": [], "messages": [{"order": 0, "to_address": "0x882a7A6F609eABdcAE71a4EF2F52ff4E49AEaEBc", "payload": ["0x336dec14d7f34f0192b829abd846d7a8561447b3cbb0526f7e928f3e7188d57", "0x572b73400b510445d1ca0624a55b8753c97956ab395e2411d1aad10323fb58c"]}]}], "events": [], "messages": []}, "fee_transfer_invocation": {"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "CALL", "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 585, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [{"caller_address": "0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", "calldata": ["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"], "call_type": "DELEGATE", "class_hash": "0x1b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1", "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", "entry_point_type": "EXTERNAL", "result": ["0x1"], "execution_resources": {"n_steps": 525, "builtin_instance_counter": {"pedersen_builtin": 4, "range_check_builtin": 21}, "n_memory_holes": 59}, "internal_calls": [], "events": [{"order": 0, "keys": ["0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"], "data": ["0x60664b576dae484dc3430ed3b1036e7879712e2c2c2728f568b8dbcbbc0f655", "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", "0x1eacd891dfe0", "0x0"]}], "messages": []}], "events": [], "messages": []}, "signature": ["0x674855e87b6d33cde07596caf7a58ac107883b83835e7dd0879edb70d303220", "0x1f7857f7acce0ce8f935c547ebb20307d3213c4dc8a2f855922de98363a5a4b"]} \ No newline at end of file diff --git a/starknet-providers/src/any.rs b/starknet-providers/src/any.rs index 0369dbab..cf6e5ce1 100644 --- a/starknet-providers/src/any.rs +++ b/starknet-providers/src/any.rs @@ -4,10 +4,10 @@ use starknet_core::types::{ BroadcastedDeployAccountTransaction, BroadcastedInvokeTransaction, BroadcastedTransaction, ContractClass, DeclareTransactionResult, DeployAccountTransactionResult, EventFilter, EventsPage, FeeEstimate, FieldElement, FunctionCall, InvokeTransactionResult, - MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, MaybePendingStateUpdate, - MaybePendingTransactionReceipt, MsgFromL1, SimulatedTransaction, SimulationFlag, - SimulationFlagForEstimateFee, SyncStatusType, Transaction, TransactionStatus, TransactionTrace, - TransactionTraceWithHash, + MaybePendingBlockWithReceipts, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, + MaybePendingStateUpdate, MsgFromL1, SimulatedTransaction, SimulationFlag, + SimulationFlagForEstimateFee, SyncStatusType, Transaction, TransactionReceiptWithBlockInfo, + TransactionStatus, TransactionTrace, TransactionTraceWithHash, }; use crate::{ @@ -83,6 +83,25 @@ impl Provider for AnyProvider { } } + async fn get_block_with_receipts( + &self, + block_id: B, + ) -> Result + where + B: AsRef + Send + Sync, + { + match self { + Self::JsonRpcHttp(inner) => { + as Provider>::get_block_with_receipts(inner, block_id) + .await + } + Self::SequencerGateway(inner) => { + ::get_block_with_receipts(inner, block_id) + .await + } + } + } + async fn get_state_update( &self, block_id: B, @@ -210,7 +229,7 @@ impl Provider for AnyProvider { async fn get_transaction_receipt( &self, transaction_hash: H, - ) -> Result + ) -> Result where H: AsRef + Send + Sync, { diff --git a/starknet-providers/src/jsonrpc/mod.rs b/starknet-providers/src/jsonrpc/mod.rs index 66232291..91a46304 100644 --- a/starknet-providers/src/jsonrpc/mod.rs +++ b/starknet-providers/src/jsonrpc/mod.rs @@ -10,11 +10,11 @@ use starknet_core::{ BroadcastedDeployAccountTransaction, BroadcastedInvokeTransaction, BroadcastedTransaction, ContractClass, ContractErrorData, DeclareTransactionResult, DeployAccountTransactionResult, EventFilter, EventFilterWithPage, EventsPage, FeeEstimate, FieldElement, FunctionCall, - InvokeTransactionResult, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, - MaybePendingStateUpdate, MaybePendingTransactionReceipt, MsgFromL1, - NoTraceAvailableErrorData, ResultPageRequest, SimulatedTransaction, SimulationFlag, - SimulationFlagForEstimateFee, StarknetError, SyncStatusType, Transaction, - TransactionExecutionErrorData, TransactionStatus, TransactionTrace, + InvokeTransactionResult, MaybePendingBlockWithReceipts, MaybePendingBlockWithTxHashes, + MaybePendingBlockWithTxs, MaybePendingStateUpdate, MsgFromL1, NoTraceAvailableErrorData, + ResultPageRequest, SimulatedTransaction, SimulationFlag, SimulationFlagForEstimateFee, + StarknetError, SyncStatusType, Transaction, TransactionExecutionErrorData, + TransactionReceiptWithBlockInfo, TransactionStatus, TransactionTrace, TransactionTraceWithHash, }, }; @@ -37,6 +37,8 @@ pub enum JsonRpcMethod { GetBlockWithTxHashes, #[serde(rename = "starknet_getBlockWithTxs")] GetBlockWithTxs, + #[serde(rename = "starknet_getBlockWithReceipts")] + GetBlockWithReceipts, #[serde(rename = "starknet_getStateUpdate")] GetStateUpdate, #[serde(rename = "starknet_getStorageAt")] @@ -100,6 +102,7 @@ pub enum JsonRpcRequestData { SpecVersion(SpecVersionRequest), GetBlockWithTxHashes(GetBlockWithTxHashesRequest), GetBlockWithTxs(GetBlockWithTxsRequest), + GetBlockWithReceipts(GetBlockWithReceiptsRequest), GetStateUpdate(GetStateUpdateRequest), GetStorageAt(GetStorageAtRequest), GetTransactionStatus(GetTransactionStatusRequest), @@ -249,6 +252,23 @@ where .await } + /// Get block information with full transactions and receipts given the block id + async fn get_block_with_receipts( + &self, + block_id: B, + ) -> Result + where + B: AsRef + Send + Sync, + { + self.send_request( + JsonRpcMethod::GetBlockWithReceipts, + GetBlockWithReceiptsRequestRef { + block_id: block_id.as_ref(), + }, + ) + .await + } + /// Get the information about the result of executing the requested block async fn get_state_update( &self, @@ -349,7 +369,7 @@ where async fn get_transaction_receipt( &self, transaction_hash: H, - ) -> Result + ) -> Result where H: AsRef + Send + Sync, { @@ -713,6 +733,10 @@ impl<'de> Deserialize<'de> for JsonRpcRequest { serde_json::from_value::(raw_request.params) .map_err(error_mapper)?, ), + JsonRpcMethod::GetBlockWithReceipts => JsonRpcRequestData::GetBlockWithReceipts( + serde_json::from_value::(raw_request.params) + .map_err(error_mapper)?, + ), JsonRpcMethod::GetStateUpdate => JsonRpcRequestData::GetStateUpdate( serde_json::from_value::(raw_request.params) .map_err(error_mapper)?, diff --git a/starknet-providers/src/provider.rs b/starknet-providers/src/provider.rs index 256b5429..3db7363c 100644 --- a/starknet-providers/src/provider.rs +++ b/starknet-providers/src/provider.rs @@ -5,10 +5,10 @@ use starknet_core::types::{ BroadcastedDeployAccountTransaction, BroadcastedInvokeTransaction, BroadcastedTransaction, ContractClass, DeclareTransactionResult, DeployAccountTransactionResult, EventFilter, EventsPage, FeeEstimate, FieldElement, FunctionCall, InvokeTransactionResult, - MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, MaybePendingStateUpdate, - MaybePendingTransactionReceipt, MsgFromL1, SimulatedTransaction, SimulationFlag, - SimulationFlagForEstimateFee, StarknetError, SyncStatusType, Transaction, TransactionStatus, - TransactionTrace, TransactionTraceWithHash, + MaybePendingBlockWithReceipts, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, + MaybePendingStateUpdate, MsgFromL1, SimulatedTransaction, SimulationFlag, + SimulationFlagForEstimateFee, StarknetError, SyncStatusType, Transaction, + TransactionReceiptWithBlockInfo, TransactionStatus, TransactionTrace, TransactionTraceWithHash, }; use std::{any::Any, error::Error, fmt::Debug}; @@ -35,6 +35,14 @@ pub trait Provider { where B: AsRef + Send + Sync; + /// Get block information with full transactions and receipts given the block id + async fn get_block_with_receipts( + &self, + block_id: B, + ) -> Result + where + B: AsRef + Send + Sync; + /// Get the information about the result of executing the requested block async fn get_state_update( &self, @@ -85,7 +93,7 @@ pub trait Provider { async fn get_transaction_receipt( &self, transaction_hash: H, - ) -> Result + ) -> Result where H: AsRef + Send + Sync; diff --git a/starknet-providers/src/sequencer/mod.rs b/starknet-providers/src/sequencer/mod.rs index 1fdc97d8..f8c25bc3 100644 --- a/starknet-providers/src/sequencer/mod.rs +++ b/starknet-providers/src/sequencer/mod.rs @@ -127,19 +127,11 @@ impl SequencerGatewayProvider { ) } - pub fn starknet_alpha_goerli() -> Self { + pub fn starknet_alpha_sepolia() -> Self { Self::new( - Url::parse("https://alpha4.starknet.io/gateway").unwrap(), - Url::parse("https://alpha4.starknet.io/feeder_gateway").unwrap(), - chain_id::TESTNET, - ) - } - - pub fn starknet_alpha_goerli_2() -> Self { - Self::new( - Url::parse("https://alpha4-2.starknet.io/gateway").unwrap(), - Url::parse("https://alpha4-2.starknet.io/feeder_gateway").unwrap(), - chain_id::TESTNET2, + Url::parse("https://alpha-sepolia.starknet.io/gateway").unwrap(), + Url::parse("https://alpha-sepolia.starknet.io/feeder_gateway").unwrap(), + chain_id::SEPOLIA, ) } } diff --git a/starknet-providers/src/sequencer/models/block.rs b/starknet-providers/src/sequencer/models/block.rs index 19273522..2a0bd3a9 100644 --- a/starknet-providers/src/sequencer/models/block.rs +++ b/starknet-providers/src/sequencer/models/block.rs @@ -2,7 +2,7 @@ use serde::Deserialize; use serde_with::serde_as; use starknet_core::{ serde::unsigned_field_element::{UfeHex, UfeHexOption}, - types::FieldElement, + types::{FieldElement, L1DataAvailabilityMode, ResourcePrice}, }; use super::{ConfirmedTransactionReceipt, TransactionType}; @@ -15,7 +15,7 @@ pub enum BlockId { Latest, } -#[derive(Debug, Deserialize, PartialEq, Eq)] +#[derive(Debug, Clone, Copy, Deserialize, PartialEq, Eq)] #[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub enum BlockStatus { @@ -49,11 +49,16 @@ pub struct Block { #[serde(default)] #[serde_as(as = "UfeHexOption")] pub state_root: Option, + #[serde(default)] + #[serde_as(as = "UfeHexOption")] + pub transaction_commitment: Option, + #[serde(default)] + #[serde_as(as = "UfeHexOption")] + pub event_commitment: Option, pub status: BlockStatus, - #[serde_as(as = "UfeHex")] - pub eth_l1_gas_price: FieldElement, - #[serde_as(as = "UfeHex")] - pub strk_l1_gas_price: FieldElement, + pub l1_da_mode: L1DataAvailabilityMode, + pub l1_gas_price: ResourcePrice, + pub l1_data_gas_price: ResourcePrice, pub transactions: Vec, pub transaction_receipts: Vec, // Field marked optional as old blocks don't include it yet. Drop optional once resolved. @@ -78,25 +83,34 @@ mod tests { assert_eq!( block.state_root.unwrap(), FieldElement::from_hex_be( - "04be6496e74b3877db0b958a197b32ad797b3d2b1045e0697c01c1481501ea39" + "051098918fd96edda4e251f695181c063e21fb0666352e3469db507c7fd62b89" + ) + .unwrap() + ); + assert_eq!( + block.transaction_commitment.unwrap(), + FieldElement::from_hex_be( + "0576db32d35cf011694a73c6ce400d5d77f768cbd77ee7cf87d12902e0f9b4ec" ) .unwrap() ); - assert_eq!(block.transactions.len(), 5); - assert_eq!(block.transaction_receipts.len(), 5); + assert_eq!( + block.event_commitment.unwrap(), + FieldElement::from_hex_be( + "01c972780140fd16dde94639226ca25818e4f24ecd5b5c3065cc1f5f5fc410f9" + ) + .unwrap() + ); + assert_eq!(block.transactions.len(), 4); + assert_eq!(block.transaction_receipts.len(), 4); - if let TransactionType::Deploy(tx) = &block.transactions[0] { - assert_eq!(tx.constructor_calldata.len(), 2); - } else { - panic!("Did not deserialize Transaction::Deploy properly"); - } - if let TransactionType::InvokeFunction(tx) = &block.transactions[2] { - assert_eq!(tx.calldata.len(), 4); + if let TransactionType::InvokeFunction(tx) = &block.transactions[0] { + assert_eq!(tx.calldata.len(), 16); } else { panic!("Did not deserialize Transaction::InvokeFunction properly"); } let receipt = &block.transaction_receipts[0]; - assert_eq!(receipt.execution_resources.as_ref().unwrap().n_steps, 29); + assert_eq!(receipt.execution_resources.as_ref().unwrap().n_steps, 10552); } #[test] @@ -108,15 +122,15 @@ mod tests { let block: Block = serde_json::from_str(raw).unwrap(); - assert_eq!(block.block_number.unwrap(), 102); - assert_eq!(block.transaction_receipts.len(), 6); - let receipt = &block.transaction_receipts[0]; + assert_eq!(block.block_number.unwrap(), 25); + assert_eq!(block.transaction_receipts.len(), 11); + let receipt = &block.transaction_receipts[10]; assert_eq!(receipt.l2_to_l1_messages.len(), 1); assert_eq!(receipt.l2_to_l1_messages[0].payload.len(), 2); } #[test] - #[ignore = "block with the same criteria not found in goerli-integration yet"] + #[ignore = "block with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_block_deser_with_messages_without_nonce() { // has an L2 to L1 message @@ -145,12 +159,12 @@ mod tests { let block: Block = serde_json::from_str(raw).unwrap(); - assert_eq!(block.block_number.unwrap(), 70000); - assert_eq!(block.transaction_receipts.len(), 35); + assert_eq!(block.block_number.unwrap(), 4); + assert_eq!(block.transaction_receipts.len(), 4); let receipt = &block.transaction_receipts[3]; assert_eq!(receipt.events.len(), 1); - assert_eq!(receipt.events[0].keys.len(), 8); - assert_eq!(receipt.events[0].data.len(), 0); + assert_eq!(receipt.events[0].keys.len(), 1); + assert_eq!(receipt.events[0].data.len(), 4); } #[test] @@ -176,12 +190,6 @@ mod tests { )) .unwrap(); assert!(new_block.sequencer_address.is_some()); - - let old_block: Block = serde_json::from_str(include_str!( - "../../../test-data/raw_gateway_responses/get_block/2_with_messages.txt" - )) - .unwrap(); - assert!(old_block.sequencer_address.is_none()); } #[test] @@ -193,12 +201,6 @@ mod tests { )) .unwrap(); assert!(new_block.starknet_version.is_some()); - - let old_block: Block = serde_json::from_str(include_str!( - "../../../test-data/raw_gateway_responses/get_block/2_with_messages.txt" - )) - .unwrap(); - assert!(old_block.starknet_version.is_none()); } #[test] @@ -210,12 +212,18 @@ mod tests { let block: Block = serde_json::from_str(raw).unwrap(); - let tx = match &block.transactions[1] { + let tx = match &block.transactions[2] { TransactionType::Declare(tx) => tx, _ => panic!("Unexpected tx type"), }; - assert_eq!(tx.sender_address, FieldElement::ONE); + assert_eq!( + tx.sender_address, + FieldElement::from_hex_be( + "0x68922eb87daed71fc3099031e178b6534fc39a570022342e8c166024da893f5" + ) + .unwrap() + ); } #[test] @@ -227,7 +235,7 @@ mod tests { let block: Block = serde_json::from_str(raw).unwrap(); - let tx = match &block.transactions[26] { + let tx = match &block.transactions[0] { TransactionType::L1Handler(tx) => tx, _ => panic!("Unexpected tx type"), }; @@ -235,14 +243,14 @@ mod tests { assert_eq!( tx.contract_address, FieldElement::from_hex_be( - "0x7e829edae4832b140c73ba615e02f2d593122d43724352e21716daff98bd1da" + "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f" ) .unwrap() ); } #[test] - #[ignore = "block with the same criteria not found in goerli-integration yet"] + #[ignore = "block with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_block_deser_without_execution_resources() { let raw = include_str!( @@ -257,7 +265,7 @@ mod tests { } #[test] - #[ignore = "block with the same criteria not found in goerli-integration yet"] + #[ignore = "block with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_block_deser_l1_handler_without_nonce() { let raw = include_str!( @@ -275,7 +283,7 @@ mod tests { } #[test] - #[ignore = "block with the same criteria not found in goerli-integration yet"] + #[ignore = "block with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_block_deser_without_entry_point() { let raw = include_str!( @@ -301,7 +309,7 @@ mod tests { let block: Block = serde_json::from_str(raw).unwrap(); - let tx = match &block.transactions[0] { + let tx = match &block.transactions[1] { TransactionType::DeployAccount(tx) => tx, _ => panic!("Unexpected tx type"), }; @@ -324,7 +332,7 @@ mod tests { } #[test] - #[ignore = "block with the same criteria not found in goerli-integration yet"] + #[ignore = "block with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_block_deser_with_reverted_tx() { let raw = include_str!( diff --git a/starknet-providers/src/sequencer/models/conversions.rs b/starknet-providers/src/sequencer/models/conversions.rs index 167eb2ba..e6358fd2 100644 --- a/starknet-providers/src/sequencer/models/conversions.rs +++ b/starknet-providers/src/sequencer/models/conversions.rs @@ -16,6 +16,12 @@ use super::{ #[error("unable to convert type")] pub struct ConversionError; +pub(crate) struct ConfirmedReceiptWithContext { + pub receipt: ConfirmedTransactionReceipt, + pub transaction: TransactionType, + pub finality: BlockStatus, +} + pub(crate) struct OrderedL2ToL1MessageResponseWithFromAddress { pub message: OrderedL2ToL1MessageResponse, pub from: FieldElement, @@ -47,10 +53,9 @@ impl TryFrom for core::MaybePendingBlockWithTxHashes { new_root: state_root, timestamp: value.timestamp, sequencer_address: value.sequencer_address.unwrap_or_default(), - l1_gas_price: core::ResourcePrice { - price_in_fri: value.strk_l1_gas_price, - price_in_wei: value.eth_l1_gas_price, - }, + l1_gas_price: value.l1_gas_price, + l1_data_gas_price: value.l1_data_gas_price, + l1_da_mode: value.l1_da_mode, starknet_version: value.starknet_version.ok_or(ConversionError)?, transactions: value .transactions @@ -69,10 +74,9 @@ impl TryFrom for core::MaybePendingBlockWithTxHashes { timestamp: value.timestamp, sequencer_address: value.sequencer_address.unwrap_or_default(), parent_hash: value.parent_block_hash, - l1_gas_price: core::ResourcePrice { - price_in_fri: value.strk_l1_gas_price, - price_in_wei: value.eth_l1_gas_price, - }, + l1_gas_price: value.l1_gas_price, + l1_data_gas_price: value.l1_data_gas_price, + l1_da_mode: value.l1_da_mode, starknet_version: value.starknet_version.ok_or(ConversionError)?, })), // Unknown combination @@ -96,10 +100,9 @@ impl TryFrom for core::MaybePendingBlockWithTxs { new_root: state_root, timestamp: value.timestamp, sequencer_address: value.sequencer_address.unwrap_or_default(), - l1_gas_price: core::ResourcePrice { - price_in_fri: value.strk_l1_gas_price, - price_in_wei: value.eth_l1_gas_price, - }, + l1_gas_price: value.l1_gas_price, + l1_data_gas_price: value.l1_data_gas_price, + l1_da_mode: value.l1_da_mode, starknet_version: value.starknet_version.ok_or(ConversionError)?, transactions: value .transactions @@ -118,10 +121,73 @@ impl TryFrom for core::MaybePendingBlockWithTxs { timestamp: value.timestamp, sequencer_address: value.sequencer_address.unwrap_or_default(), parent_hash: value.parent_block_hash, - l1_gas_price: core::ResourcePrice { - price_in_fri: value.strk_l1_gas_price, - price_in_wei: value.eth_l1_gas_price, - }, + l1_gas_price: value.l1_gas_price, + l1_data_gas_price: value.l1_data_gas_price, + l1_da_mode: value.l1_da_mode, + starknet_version: value.starknet_version.ok_or(ConversionError)?, + })), + // Unknown combination + _ => Err(ConversionError), + } + } +} + +impl TryFrom for core::MaybePendingBlockWithReceipts { + type Error = ConversionError; + + fn try_from(value: Block) -> Result { + if value.transactions.len() != value.transaction_receipts.len() { + return Err(ConversionError); + } + + let mut transactions = vec![]; + + for (tx, receipt) in value + .transactions + .into_iter() + .zip(value.transaction_receipts.into_iter()) + { + let core_tx = tx.clone().try_into()?; + + let tx_with_receipt = ConfirmedReceiptWithContext { + receipt, + transaction: tx, + finality: value.status, + }; + + transactions.push(core::TransactionWithReceipt { + transaction: core_tx, + receipt: tx_with_receipt.try_into()?, + }); + } + + match (value.block_hash, value.block_number, value.state_root) { + // Confirmed block + (Some(block_hash), Some(block_number), Some(state_root)) => { + Ok(Self::Block(core::BlockWithReceipts { + status: value.status.try_into()?, + block_hash, + parent_hash: value.parent_block_hash, + block_number, + new_root: state_root, + timestamp: value.timestamp, + sequencer_address: value.sequencer_address.unwrap_or_default(), + l1_gas_price: value.l1_gas_price, + l1_data_gas_price: value.l1_data_gas_price, + l1_da_mode: value.l1_da_mode, + starknet_version: value.starknet_version.ok_or(ConversionError)?, + transactions, + })) + } + // Pending block + (None, None, None) => Ok(Self::PendingBlock(core::PendingBlockWithReceipts { + transactions, + timestamp: value.timestamp, + sequencer_address: value.sequencer_address.unwrap_or_default(), + parent_hash: value.parent_block_hash, + l1_gas_price: value.l1_gas_price, + l1_data_gas_price: value.l1_data_gas_price, + l1_da_mode: value.l1_da_mode, starknet_version: value.starknet_version.ok_or(ConversionError)?, })), // Unknown combination @@ -815,7 +881,7 @@ impl From for core::OrderedMessage } } -impl From for core::ExecutionResources { +impl From for core::ComputationResources { fn from(value: ExecutionResources) -> Self { Self { steps: value.n_steps, @@ -864,29 +930,273 @@ impl TryFrom for core::TransactionStatus { } } +impl TryFrom for core::TransactionReceipt { + type Error = ConversionError; + + fn try_from(value: ConfirmedReceiptWithContext) -> Result { + match value.transaction { + TransactionType::Declare(_) => Ok(Self::Declare(value.try_into()?)), + TransactionType::Deploy(_) => Ok(Self::Deploy(value.try_into()?)), + TransactionType::DeployAccount(_) => Ok(Self::DeployAccount(value.try_into()?)), + TransactionType::InvokeFunction(_) => Ok(Self::Invoke(value.try_into()?)), + TransactionType::L1Handler(_) => Ok(Self::L1Handler(value.try_into()?)), + } + } +} + +impl TryFrom for core::DeclareTransactionReceipt { + type Error = ConversionError; + + fn try_from(value: ConfirmedReceiptWithContext) -> Result { + Ok(Self { + transaction_hash: value.receipt.transaction_hash, + actual_fee: core::FeePayment { + amount: value.receipt.actual_fee, + unit: core::PriceUnit::Wei, + }, + finality_status: value.finality.try_into()?, + messages_sent: value + .receipt + .l2_to_l1_messages + .into_iter() + .map(|item| item.into()) + .collect(), + events: value + .receipt + .events + .into_iter() + .map(|item| item.into()) + .collect(), + execution_resources: value + .receipt + .execution_resources + .ok_or(ConversionError)? + .try_into()?, + execution_result: convert_execution_result( + value.receipt.execution_status, + value.receipt.revert_error, + )?, + }) + } +} + +impl TryFrom for core::DeployTransactionReceipt { + type Error = ConversionError; + + fn try_from(value: ConfirmedReceiptWithContext) -> Result { + Ok(Self { + transaction_hash: value.receipt.transaction_hash, + actual_fee: core::FeePayment { + amount: value.receipt.actual_fee, + unit: core::PriceUnit::Wei, + }, + finality_status: value.finality.try_into()?, + messages_sent: value + .receipt + .l2_to_l1_messages + .into_iter() + .map(|item| item.into()) + .collect(), + events: value + .receipt + .events + .into_iter() + .map(|item| item.into()) + .collect(), + contract_address: match value.transaction { + TransactionType::Deploy(inner) => inner.contract_address, + _ => return Err(ConversionError), + }, + execution_resources: value + .receipt + .execution_resources + .ok_or(ConversionError)? + .try_into()?, + execution_result: convert_execution_result( + value.receipt.execution_status, + value.receipt.revert_error, + )?, + }) + } +} + +impl TryFrom for core::DeployAccountTransactionReceipt { + type Error = ConversionError; + + fn try_from(value: ConfirmedReceiptWithContext) -> Result { + Ok(Self { + transaction_hash: value.receipt.transaction_hash, + actual_fee: core::FeePayment { + amount: value.receipt.actual_fee, + unit: core::PriceUnit::Wei, + }, + finality_status: value.finality.try_into()?, + messages_sent: value + .receipt + .l2_to_l1_messages + .into_iter() + .map(|item| item.into()) + .collect(), + events: value + .receipt + .events + .into_iter() + .map(|item| item.into()) + .collect(), + contract_address: match value.transaction { + TransactionType::DeployAccount(inner) => { + inner.contract_address.ok_or(ConversionError)? + } + _ => return Err(ConversionError), + }, + execution_resources: value + .receipt + .execution_resources + .ok_or(ConversionError)? + .try_into()?, + execution_result: convert_execution_result( + value.receipt.execution_status, + value.receipt.revert_error, + )?, + }) + } +} + +impl TryFrom for core::InvokeTransactionReceipt { + type Error = ConversionError; + + fn try_from(value: ConfirmedReceiptWithContext) -> Result { + Ok(Self { + transaction_hash: value.receipt.transaction_hash, + actual_fee: core::FeePayment { + amount: value.receipt.actual_fee, + unit: core::PriceUnit::Wei, + }, + finality_status: value.finality.try_into()?, + messages_sent: value + .receipt + .l2_to_l1_messages + .into_iter() + .map(|item| item.into()) + .collect(), + events: value + .receipt + .events + .into_iter() + .map(|item| item.into()) + .collect(), + execution_resources: value + .receipt + .execution_resources + .ok_or(ConversionError)? + .try_into()?, + execution_result: convert_execution_result( + value.receipt.execution_status, + value.receipt.revert_error, + )?, + }) + } +} + +impl TryFrom for core::L1HandlerTransactionReceipt { + type Error = ConversionError; + + fn try_from(value: ConfirmedReceiptWithContext) -> Result { + // The sequencer never serves the message hash, so we have to compute it ourselves. + let l1_handler_tx: core::L1HandlerTransaction = match value.transaction { + TransactionType::L1Handler(tx) => tx.try_into().map_err(|_| ConversionError)?, + _ => return Err(ConversionError), + }; + let msg_to_l2 = l1_handler_tx + .parse_msg_to_l2() + .map_err(|_| ConversionError)?; + + Ok(Self { + transaction_hash: value.receipt.transaction_hash, + actual_fee: core::FeePayment { + amount: value.receipt.actual_fee, + unit: core::PriceUnit::Wei, + }, + finality_status: value.finality.try_into()?, + messages_sent: value + .receipt + .l2_to_l1_messages + .into_iter() + .map(|item| item.into()) + .collect(), + events: value + .receipt + .events + .into_iter() + .map(|item| item.into()) + .collect(), + execution_resources: value + .receipt + .execution_resources + .ok_or(ConversionError)? + .try_into()?, + execution_result: convert_execution_result( + value.receipt.execution_status, + value.receipt.revert_error, + )?, + message_hash: msg_to_l2.hash(), + }) + } +} + +impl TryFrom for core::TransactionFinalityStatus { + type Error = ConversionError; + + fn try_from(value: BlockStatus) -> Result { + match value { + // Transactions in pending blocks are considered "accepted on L2" now + BlockStatus::Pending | BlockStatus::AcceptedOnL2 => Ok(Self::AcceptedOnL2), + BlockStatus::AcceptedOnL1 => Ok(Self::AcceptedOnL1), + BlockStatus::Aborted | BlockStatus::Reverted => Err(ConversionError), + } + } +} + +impl TryFrom for core::ExecutionResources { + type Error = ConversionError; + + fn try_from(value: ExecutionResources) -> Result { + Ok(Self { + computation_resources: core::ComputationResources { + steps: value.n_steps, + memory_holes: Some(value.n_memory_holes), + range_check_builtin_applications: value + .builtin_instance_counter + .range_check_builtin, + pedersen_builtin_applications: value.builtin_instance_counter.pedersen_builtin, + poseidon_builtin_applications: value.builtin_instance_counter.poseidon_builtin, + ec_op_builtin_applications: value.builtin_instance_counter.ec_op_builtin, + ecdsa_builtin_applications: value.builtin_instance_counter.ecdsa_builtin, + bitwise_builtin_applications: value.builtin_instance_counter.bitwise_builtin, + keccak_builtin_applications: value.builtin_instance_counter.keccak_builtin, + segment_arena_builtin: value.builtin_instance_counter.segment_arena_builtin, + }, + data_resources: core::DataResources { + data_availability: value.data_availability.ok_or(ConversionError)?, + }, + }) + } +} + fn convert_execution_result( - status: TransactionStatus, execution_status: Option, revert_error: Option, ) -> Result { match (execution_status, revert_error) { (None, None) => { - // This is a response from pre-v0.12.1 - match status { - TransactionStatus::Pending - | TransactionStatus::AcceptedOnL2 - | TransactionStatus::AcceptedOnL1 => { - // Pre-v0.12.1 transactions are always successful as long as they're in a block - Ok(core::ExecutionResult::Succeeded) - } - TransactionStatus::NotReceived - | TransactionStatus::Received - | TransactionStatus::Rejected - | TransactionStatus::Reverted => { - // Otherwise it's a status not representable in JSON-RPC - Err(ConversionError) - } - } + // This is a response from pre-v0.12.1. Pre-v0.12.1 transactions are always successful + // as long as they're in a block. + // + // After feeder deprecation, the only way to fetch transaction receipts is by fetching + // them as part of a block. Therefore, it's always the case that this tx in question is + // in a block. + + Ok(core::ExecutionResult::Succeeded) } (Some(TransactionExecutionStatus::Succeeded), None) => Ok(core::ExecutionResult::Succeeded), (Some(TransactionExecutionStatus::Reverted), Some(revert_error)) => { diff --git a/starknet-providers/src/sequencer/models/state_update.rs b/starknet-providers/src/sequencer/models/state_update.rs index 113469c8..18cd5ee9 100644 --- a/starknet-providers/src/sequencer/models/state_update.rs +++ b/starknet-providers/src/sequencer/models/state_update.rs @@ -79,7 +79,7 @@ mod tests { .storage_diffs .get( &FieldElement::from_hex_be( - "0xdc2e5d3d73589a12037d1cdf1ba3f69bde2e8983faa0a5c6b3b051b2c46e14", + "0x197b9913e67947b0605934ec72db497d341a0199282c1da6d4aae46b17e0e76", ) .unwrap(), ) @@ -88,28 +88,14 @@ mod tests { assert_eq!( storage_diff.key, FieldElement::from_hex_be( - "0x23444ef42446d7a7ebaaceea3dedfa11c3306fa839f98611e5efcd38ea59350" + "0x34c0d833897dbc937dd35e9f49a5184aecd6ab47829de999f9587549f82d0e" ) .unwrap() ); assert_eq!( storage_diff.value, - FieldElement::from_hex_be("0x7c7").unwrap() - ); - - let deployed_contract = &state_update.state_diff.deployed_contracts[0]; - - assert_eq!( - deployed_contract.address, - FieldElement::from_hex_be( - "0xa251264114855c3d59281ad5a912730fbba38dddbcce7abce115440db7868f" - ) - .unwrap() - ); - assert_eq!( - deployed_contract.class_hash, FieldElement::from_hex_be( - "048498ebae1afc22157322db4bb7814b668c7ee20237cc8be64d934649679da1" + "0x74fd8ca6e84097ad9ae00febfb690ad032fc4477155ec2193382c1b30b5e12b" ) .unwrap() ); @@ -133,7 +119,7 @@ mod tests { ); let state_update: StateUpdate = serde_json::from_str(raw).unwrap(); - assert_eq!(state_update.state_diff.nonces.len(), 1); + assert_eq!(state_update.state_diff.nonces.len(), 2); } #[test] @@ -146,7 +132,7 @@ mod tests { } #[test] - #[ignore = "block with the same criteria not found in goerli-integration yet"] + #[ignore = "block with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_state_update_deser_with_replaced_classes() { let raw = include_str!( @@ -156,4 +142,15 @@ mod tests { let state_update: StateUpdate = serde_json::from_str(raw).unwrap(); assert_eq!(state_update.state_diff.replaced_classes.len(), 1); } + + #[test] + #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] + fn test_state_update_deser_with_deployed_contracts() { + let raw = include_str!( + "../../../test-data/raw_gateway_responses/get_state_update/7_with_deployed_contracts.txt" + ); + + let state_update: StateUpdate = serde_json::from_str(raw).unwrap(); + assert_eq!(state_update.state_diff.deployed_contracts.len(), 5); + } } diff --git a/starknet-providers/src/sequencer/models/trace.rs b/starknet-providers/src/sequencer/models/trace.rs index 12c2b5c8..680e6072 100644 --- a/starknet-providers/src/sequencer/models/trace.rs +++ b/starknet-providers/src/sequencer/models/trace.rs @@ -131,7 +131,6 @@ mod tests { } #[test] - #[ignore = "transaction with the same criteria not found in goerli-integration yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_trace_deser_with_validation() { let trace = serde_json::from_str::(include_str!( @@ -155,17 +154,5 @@ mod tests { None => panic!("Empty call_type"), } assert!(&new_tx.function_invocation.unwrap().class_hash.is_some()); - - let old_tx: TransactionTrace = serde_json::from_str(include_str!( - "../../../test-data/raw_gateway_responses/get_transaction_trace/1_with_messages.txt" - )) - .unwrap(); - assert!(&old_tx - .function_invocation - .as_ref() - .unwrap() - .call_type - .is_none()); - assert!(&old_tx.function_invocation.unwrap().class_hash.is_none()); } } diff --git a/starknet-providers/src/sequencer/models/transaction.rs b/starknet-providers/src/sequencer/models/transaction.rs index 23683e6f..e6bc531d 100644 --- a/starknet-providers/src/sequencer/models/transaction.rs +++ b/starknet-providers/src/sequencer/models/transaction.rs @@ -11,7 +11,7 @@ use super::{ TransactionStatus, }; -#[derive(Debug, Deserialize)] +#[derive(Debug, Clone, Deserialize)] #[serde(tag = "type", rename_all = "SCREAMING_SNAKE_CASE")] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub enum TransactionType { @@ -83,7 +83,7 @@ pub enum EntryPointType { } #[serde_as] -#[derive(Debug, Deserialize)] +#[derive(Debug, Clone, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct DeclareTransaction { #[serde_as(as = "UfeHex")] @@ -115,7 +115,7 @@ pub struct DeclareTransaction { } #[serde_as] -#[derive(Debug, Deserialize)] +#[derive(Debug, Clone, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct DeployTransaction { #[serde_as(deserialize_as = "Vec")] @@ -133,7 +133,7 @@ pub struct DeployTransaction { } #[serde_as] -#[derive(Debug, Deserialize)] +#[derive(Debug, Clone, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct DeployAccountTransaction { #[serde_as(deserialize_as = "Vec")] @@ -169,7 +169,7 @@ pub struct DeployAccountTransaction { } #[serde_as] -#[derive(Debug, Deserialize)] +#[derive(Debug, Clone, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct InvokeFunctionTransaction { #[serde_as(as = "UfeHex")] @@ -203,7 +203,7 @@ pub struct InvokeFunctionTransaction { } #[serde_as] -#[derive(Debug, Deserialize)] +#[derive(Debug, Clone, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct L1HandlerTransaction { #[serde_as(as = "UfeHex")] @@ -220,7 +220,7 @@ pub struct L1HandlerTransaction { pub version: FieldElement, } -#[derive(Debug, Serialize, Deserialize)] +#[derive(Debug, Clone, Serialize, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] #[serde(rename_all = "SCREAMING_SNAKE_CASE")] pub struct ResourceBoundsMapping { @@ -228,7 +228,7 @@ pub struct ResourceBoundsMapping { pub l2_gas: ResourceBounds, } -#[derive(Debug, Serialize, Deserialize)] +#[derive(Debug, Clone, Serialize, Deserialize)] #[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] pub struct ResourceBounds { #[serde(with = "u64_hex")] @@ -237,7 +237,7 @@ pub struct ResourceBounds { pub max_price_per_unit: u128, } -#[derive(Debug)] +#[derive(Debug, Clone, Copy)] pub enum DataAvailabilityMode { L1, L2, @@ -311,15 +311,16 @@ mod tests { include_str!("../../../test-data/raw_gateway_responses/get_transaction/1_invoke.txt"); let tx: TransactionInfo = serde_json::from_str(raw).unwrap(); - assert_eq!(tx.block_number, Some(100)); + assert_eq!(tx.block_number, Some(5)); if let TransactionType::InvokeFunction(invoke) = tx.r#type.unwrap() { - assert_eq!(invoke.signature.len(), 0); + assert_eq!(invoke.signature.len(), 2); } else { panic!("Did not deserialize TransactionType::InvokeFunction properly") } } #[test] + #[ignore = "transaction with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_deser_full_deploy_transaction() { let raw = @@ -347,7 +348,7 @@ mod tests { } #[test] - #[ignore = "transaction with the same criteria not found in goerli-integration yet"] + #[ignore = "transaction with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_deser_failure() { let raw = @@ -388,7 +389,7 @@ mod tests { } #[test] - #[ignore = "transaction with the same criteria not found in goerli-integration yet"] + #[ignore = "transaction with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_deser_reverted() { let raw = @@ -463,7 +464,7 @@ mod tests { tx.block_hash, Some( FieldElement::from_hex_be( - "0x42553deb16a14de4153f28312971f825e83d924e0f2883c1178de86a64a398f" + "0x13b390a0b2c48f907cda28c73a12aa31b96d51bc1be004ba5f71174d8d70e4f" ) .unwrap() ) @@ -484,7 +485,7 @@ mod tests { } #[test] - #[ignore = "transaction with the same criteria not found in goerli-integration yet"] + #[ignore = "transaction with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_deser_brief_failure() { let raw = include_str!( @@ -499,7 +500,7 @@ mod tests { } #[test] - #[ignore = "transaction with the same criteria not found in goerli-integration yet"] + #[ignore = "transaction with the same criteria not found in alpha-sepolia yet"] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] fn test_deser_brief_reverted() { let raw = include_str!( diff --git a/starknet-providers/src/sequencer/models/transaction_receipt.rs b/starknet-providers/src/sequencer/models/transaction_receipt.rs index 78fb6565..356586a4 100644 --- a/starknet-providers/src/sequencer/models/transaction_receipt.rs +++ b/starknet-providers/src/sequencer/models/transaction_receipt.rs @@ -2,7 +2,7 @@ use serde::Deserialize; use serde_with::serde_as; use starknet_core::{ serde::unsigned_field_element::{UfeHex, UfePendingBlockHash}, - types::FieldElement, + types::{DataAvailabilityResources, FieldElement}, }; use super::{L1Address, TransactionFailureReason}; @@ -74,6 +74,7 @@ pub struct ExecutionResources { pub n_steps: u64, pub n_memory_holes: u64, pub builtin_instance_counter: BuiltinInstanceCounter, + pub data_availability: Option, } #[derive(Debug, Deserialize)] diff --git a/starknet-providers/src/sequencer/provider.rs b/starknet-providers/src/sequencer/provider.rs index f7ac82d7..86beab47 100644 --- a/starknet-providers/src/sequencer/provider.rs +++ b/starknet-providers/src/sequencer/provider.rs @@ -8,10 +8,10 @@ use starknet_core::types::{ BroadcastedDeployAccountTransaction, BroadcastedInvokeTransaction, BroadcastedTransaction, ContractClass, DeclareTransactionResult, DeployAccountTransactionResult, EventFilter, EventsPage, FeeEstimate, FieldElement, FunctionCall, InvokeTransactionResult, - MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, MaybePendingStateUpdate, - MaybePendingTransactionReceipt, MsgFromL1, SimulatedTransaction, SimulationFlag, - SimulationFlagForEstimateFee, StarknetError, SyncStatusType, Transaction, TransactionStatus, - TransactionTrace, TransactionTraceWithHash, + MaybePendingBlockWithReceipts, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, + MaybePendingStateUpdate, MsgFromL1, SimulatedTransaction, SimulationFlag, + SimulationFlagForEstimateFee, StarknetError, SyncStatusType, Transaction, + TransactionReceiptWithBlockInfo, TransactionStatus, TransactionTrace, TransactionTraceWithHash, }; use crate::{ @@ -27,7 +27,7 @@ use super::models::TransactionFinalityStatus; #[cfg_attr(target_arch = "wasm32", async_trait(?Send))] impl Provider for SequencerGatewayProvider { async fn spec_version(&self) -> Result { - Ok(String::from("0.6.0")) + Ok(String::from("0.7.1")) } async fn get_block_with_tx_hashes( @@ -56,6 +56,19 @@ impl Provider for SequencerGatewayProvider { .try_into()?) } + async fn get_block_with_receipts( + &self, + block_id: B, + ) -> Result + where + B: AsRef + Send + Sync, + { + Ok(self + .get_block(block_id.as_ref().to_owned().into()) + .await? + .try_into()?) + } + async fn get_state_update( &self, block_id: B, @@ -145,7 +158,7 @@ impl Provider for SequencerGatewayProvider { async fn get_transaction_receipt( &self, transaction_hash: H, - ) -> Result + ) -> Result where H: AsRef + Send + Sync, { diff --git a/starknet-providers/tests/jsonrpc.rs b/starknet-providers/tests/jsonrpc.rs index e5aa7c48..45186fb9 100644 --- a/starknet-providers/tests/jsonrpc.rs +++ b/starknet-providers/tests/jsonrpc.rs @@ -3,8 +3,8 @@ use starknet_core::{ BlockId, BlockTag, BroadcastedInvokeTransaction, BroadcastedInvokeTransactionV1, BroadcastedTransaction, ContractClass, DeclareTransaction, DeployAccountTransaction, EthAddress, EventFilter, ExecuteInvocation, ExecutionResult, FieldElement, FunctionCall, - InvokeTransaction, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, - MaybePendingStateUpdate, MaybePendingTransactionReceipt, MsgFromL1, StarknetError, + InvokeTransaction, MaybePendingBlockWithReceipts, MaybePendingBlockWithTxHashes, + MaybePendingBlockWithTxs, MaybePendingStateUpdate, MsgFromL1, StarknetError, SyncStatusType, Transaction, TransactionExecutionStatus, TransactionReceipt, TransactionStatus, TransactionTrace, }, @@ -18,7 +18,7 @@ use url::Url; fn create_jsonrpc_client() -> JsonRpcClient { let rpc_url = std::env::var("STARKNET_RPC") - .unwrap_or("https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_6".into()); + .unwrap_or("https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_7".into()); JsonRpcClient::new(HttpTransport::new(Url::parse(&rpc_url).unwrap())) } @@ -28,7 +28,7 @@ async fn jsonrpc_spec_version() { let version = rpc_client.spec_version().await.unwrap(); - assert_eq!(version, "0.6.0"); + assert_eq!(version, "0.7.1"); } #[tokio::test] @@ -65,6 +65,23 @@ async fn jsonrpc_get_block_with_txs() { assert!(block.block_number > 0); } +#[tokio::test] +async fn jsonrpc_get_block_with_receipts() { + let rpc_client = create_jsonrpc_client(); + + let block = rpc_client + .get_block_with_receipts(BlockId::Tag(BlockTag::Latest)) + .await + .unwrap(); + + let block = match block { + MaybePendingBlockWithReceipts::Block(block) => block, + _ => panic!("unexpected block response type"), + }; + + assert!(block.block_number > 0); +} + #[tokio::test] async fn jsonrpc_get_state_update() { let rpc_client = create_jsonrpc_client(); @@ -265,6 +282,28 @@ async fn jsonrpc_get_transaction_by_hash_declare_v2() { assert!(tx.sender_address > FieldElement::ZERO); } +#[tokio::test] +async fn jsonrpc_get_transaction_by_hash_declare_v3() { + let rpc_client = create_jsonrpc_client(); + + let tx = rpc_client + .get_transaction_by_hash( + FieldElement::from_hex_be( + "054270d103c875a613e013d1fd555edcff2085feca9d7b4532243a8257fd5cf3", + ) + .unwrap(), + ) + .await + .unwrap(); + + let tx = match tx { + Transaction::Declare(DeclareTransaction::V3(tx)) => tx, + _ => panic!("unexpected tx response type"), + }; + + assert!(tx.sender_address > FieldElement::ZERO); +} + // Test case `jsonrpc_get_transaction_by_hash_deploy` was removed as there is no `DEPLOY` // transaction on the Sepolia network. @@ -290,6 +329,28 @@ async fn jsonrpc_get_transaction_by_hash_deploy_account_v1() { assert!(tx.class_hash > FieldElement::ZERO); } +#[tokio::test] +async fn jsonrpc_get_transaction_by_hash_deploy_account_v3() { + let rpc_client = create_jsonrpc_client(); + + let tx = rpc_client + .get_transaction_by_hash( + FieldElement::from_hex_be( + "011c67fb3a9a623b3190c9ac41ebf7f5dd421f2583344c498a30a7280c660f01", + ) + .unwrap(), + ) + .await + .unwrap(); + + let tx = match tx { + Transaction::DeployAccount(DeployAccountTransaction::V3(tx)) => tx, + _ => panic!("unexpected tx response type"), + }; + + assert!(tx.class_hash > FieldElement::ZERO); +} + #[tokio::test] async fn jsonrpc_get_transaction_by_block_id_and_index() { let rpc_client = create_jsonrpc_client(); @@ -338,8 +399,10 @@ async fn jsonrpc_get_transaction_receipt_invoke() { .await .unwrap(); - let receipt = match receipt { - MaybePendingTransactionReceipt::Receipt(TransactionReceipt::Invoke(receipt)) => receipt, + assert!(receipt.block.is_block()); + + let receipt = match receipt.receipt { + TransactionReceipt::Invoke(receipt) => receipt, _ => panic!("unexpected receipt response type"), }; @@ -363,8 +426,10 @@ async fn jsonrpc_get_transaction_receipt_invoke_reverted() { .await .unwrap(); - let receipt = match receipt { - MaybePendingTransactionReceipt::Receipt(TransactionReceipt::Invoke(receipt)) => receipt, + assert!(receipt.block.is_block()); + + let receipt = match receipt.receipt { + TransactionReceipt::Invoke(receipt) => receipt, _ => panic!("unexpected receipt response type"), }; @@ -391,8 +456,10 @@ async fn jsonrpc_get_transaction_receipt_l1_handler() { _ => panic!("unexpected tx type"), }; - let receipt = match receipt { - MaybePendingTransactionReceipt::Receipt(TransactionReceipt::L1Handler(receipt)) => receipt, + assert!(receipt.block.is_block()); + + let receipt = match receipt.receipt { + TransactionReceipt::L1Handler(receipt) => receipt, _ => panic!("unexpected receipt response type"), }; @@ -418,8 +485,10 @@ async fn jsonrpc_get_transaction_receipt_declare() { .await .unwrap(); - let receipt = match receipt { - MaybePendingTransactionReceipt::Receipt(TransactionReceipt::Declare(receipt)) => receipt, + assert!(receipt.block.is_block()); + + let receipt = match receipt.receipt { + TransactionReceipt::Declare(receipt) => receipt, _ => panic!("unexpected receipt response type"), }; @@ -446,10 +515,10 @@ async fn jsonrpc_get_transaction_receipt_deploy_account() { .await .unwrap(); - let receipt = match receipt { - MaybePendingTransactionReceipt::Receipt(TransactionReceipt::DeployAccount(receipt)) => { - receipt - } + assert!(receipt.block.is_block()); + + let receipt = match receipt.receipt { + TransactionReceipt::DeployAccount(receipt) => receipt, _ => panic!("unexpected receipt response type"), };