diff --git a/mainnet/README.md b/mainnet/README.md new file mode 100644 index 0000000..e69de29 diff --git a/premainnet/proposals/README.md b/mainnet/emergency-proposals/README.md similarity index 100% rename from premainnet/proposals/README.md rename to mainnet/emergency-proposals/README.md diff --git a/mainnet/emergency-proposals/sources/remove-validators.move b/mainnet/emergency-proposals/sources/remove-validators.move new file mode 100644 index 0000000..13adac3 --- /dev/null +++ b/mainnet/emergency-proposals/sources/remove-validators.move @@ -0,0 +1,16 @@ +/// This proposal removes specific validators from the validator set. +script { + use aptos_framework::aptos_governance; + use aptos_framework::stake; + + fun main(proposal_id: u64) { + let framework_signer = &aptos_governance::resolve(proposal_id, @aptos_framework); + stake::remove_validators(framework_signer, &vector[ + // TODO: Update list of validators to remove. + @0xda557f6d45952778e0c4c7296dc8f8303d846d5453800efd7b03cfbd5f8def04 + ]); + + // End the epoch so the validator set change takes effect. + aptos_governance::reconfigure(framework_signer); + } +} diff --git a/mainnet/emergency-proposals/sources/switch-to-allowed-validators-only.move b/mainnet/emergency-proposals/sources/switch-to-allowed-validators-only.move new file mode 100644 index 0000000..02e9039 --- /dev/null +++ b/mainnet/emergency-proposals/sources/switch-to-allowed-validators-only.move @@ -0,0 +1,16 @@ +/// This proposal configures the validator set to only allow specific validators to create a stake pool and join. +script { + use aptos_framework::aptos_governance; + use aptos_framework::stake; + + fun main(proposal_id: u64) { + let framework_signer = &aptos_governance::resolve(proposal_id, @aptos_framework); + stake::configure_allowed_validators(framework_signer, &vector[ + // TODO: Update list of validators to add to the initial allowed list. + @0xda557f6d45952778e0c4c7296dc8f8303d846d5453800efd7b03cfbd5f8def04 + ]); + + // End the epoch so the validator set change takes effect. + aptos_governance::reconfigure(framework_signer); + } +} diff --git a/mainnet/emergency-proposals/sources/update-allowed-validators-list.move b/mainnet/emergency-proposals/sources/update-allowed-validators-list.move new file mode 100644 index 0000000..2bfd792 --- /dev/null +++ b/mainnet/emergency-proposals/sources/update-allowed-validators-list.move @@ -0,0 +1,22 @@ +/// This proposal updates the list of validators allowed to join the validator set. +/// This can be combined with remove_validators to prevent validators from rejoining the set. +script { + use aptos_framework::aptos_governance; + use aptos_framework::stake; + + fun main(proposal_id: u64) { + let framework_signer = &aptos_governance::resolve(proposal_id, @aptos_framework); + stake::add_allowed_validators(framework_signer, &vector[ + // TODO: Update list of validators to add to the allowed list. + @0xda557f6d45952778e0c4c7296dc8f8303d846d5453800efd7b03cfbd5f8def04 + ]); + + stake::remove_allowed_validators(framework_signer, &vector[ + // TODO: Update list of validators to remove from the allowed list. + @0xda557f6d45952778e0c4c7296dc8f8303d846d5453800efd7b03cfbd5f8def04 + ]); + + // End the epoch so the validator set change takes effect. + aptos_governance::reconfigure(framework_signer); + } +} diff --git a/premainnet/README.md b/premainnet/README.md deleted file mode 100644 index 7970664..0000000 --- a/premainnet/README.md +++ /dev/null @@ -1,7 +0,0 @@ -For bootstrapping your validator node: - -- The branch to use is mainnet, commit a059b3d6965c63d124da09db83eed4f1221c6896 (or latest is fine) -- Sha256 for genesis blob is 3efc165b5c0207780aba894693bf28c3a9dbee9e0a810e6a1836b9fff9c32468 -- The docker image tag to use is mainnet_a059b3d6965c63d124da09db83eed4f1221c6896 -- REST API endpoint: https://premainnet.aptosdev.com -- Docs to follow: https://aptos.dev/nodes/validator-node/operator/connect-to-aptos-network#bootstrapping-validator-node diff --git a/premainnet/genesis.blob b/premainnet/genesis.blob index 64baab0..e69de29 100644 Binary files a/premainnet/genesis.blob and b/premainnet/genesis.blob differ diff --git a/premainnet/proposals/metadata/0-update-duration-and-increase-limit.json b/premainnet/proposals/metadata/0-update-duration-and-increase-limit.json deleted file mode 100644 index a4b9290..0000000 --- a/premainnet/proposals/metadata/0-update-duration-and-increase-limit.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "title":"Increase epoch duration to 2 hours and reduce per-epoch voting power increase limit to 10%", - "description":"Increase epoch duration from 1 hour to 2 hours and reduce per-epoch voting power increase limit from 20% to 10%", - "source_code_url":"https://github.com/aptos-labs/aptos-genesis-waypoint/blob/main/premainnet/proposals/sources/0-update-duration-and-increase-limit.move", - "discussion_url":"https://forum.aptoslabs.com/t/governance-premainnet-set-network-on-chain-config/32587" -} diff --git a/premainnet/proposals/metadata/1-update-min_price_per_gas_unit.json b/premainnet/proposals/metadata/1-update-min_price_per_gas_unit.json deleted file mode 100644 index 70af99e..0000000 --- a/premainnet/proposals/metadata/1-update-min_price_per_gas_unit.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "title":"Increase min_price_per_gas_unit to 1000", - "description":"To simulate emergancy gas price bump, increase min_price_per_gas_unit to 1000", - "source_code_url":"https://github.com/aptos-labs/aptos-genesis-waypoint/blob/main/premainnet/proposals/sources/1-update-min_price_per_gas_unit.move", - "discussion_url":"https://forum.aptoslabs.com/t/governance-premainnet-set-network-on-chain-config/32587" -} diff --git a/premainnet/proposals/metadata/2-set-default-gas-schedule.json b/premainnet/proposals/metadata/2-set-default-gas-schedule.json deleted file mode 100644 index af0c927..0000000 --- a/premainnet/proposals/metadata/2-set-default-gas-schedule.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "title":"Set default gas schedule", - "description":"Set the default gas schedule back, after experimenting emergance gas price bump.", - "source_code_url":"https://github.com/aptos-labs/aptos-genesis-waypoint/blob/main/premainnet/proposals/sources/2-set-default-gas-schedule.move", - "discussion_url":"https://forum.aptoslabs.com/t/governance-premainnet-set-network-on-chain-config/32587" -} diff --git a/premainnet/proposals/sources/0-update-duration-and-increase-limit.move b/premainnet/proposals/sources/0-update-duration-and-increase-limit.move deleted file mode 100644 index f94b07a..0000000 --- a/premainnet/proposals/sources/0-update-duration-and-increase-limit.move +++ /dev/null @@ -1,19 +0,0 @@ -script { - use aptos_framework::aptos_governance; - use aptos_framework::block; - use aptos_framework::staking_config; - - fun main(proposal_id: u64) { - let framework_signer = &aptos_governance::resolve(proposal_id, @aptos_framework); - // Update epoch interval from 1 hour to 2 hours. - let epoch_interval_secs = 2 * 60 * 60; - let epoch_interval_microsecs = epoch_interval_secs * 1000000; - block::update_epoch_interval_microsecs(framework_signer, epoch_interval_microsecs); - - // Update the per-epoch voting power increase limit from 20% to 10%. - staking_config::update_voting_power_increase_limit(framework_signer, 10); - - // Always trigger a reconfig event at the end of a proposal execution. - aptos_governance::reconfigure(framework_signer); - } -} diff --git a/premainnet/proposals/sources/1-update-min_price_per_gas_unit.move b/premainnet/proposals/sources/1-update-min_price_per_gas_unit.move deleted file mode 100644 index 3d08bfd..0000000 --- a/premainnet/proposals/sources/1-update-min_price_per_gas_unit.move +++ /dev/null @@ -1,642 +0,0 @@ -// Gas schedule upgrade proposal - -// Feature version: 3 -// -// Entries: -// instr.nop : 200 -// instr.ret : 1200 -// instr.abort : 1200 -// instr.br_true : 2400 -// instr.br_false : 2400 -// instr.branch : 1600 -// instr.pop : 800 -// instr.ld_u8 : 1200 -// instr.ld_u64 : 1200 -// instr.ld_u128 : 1600 -// instr.ld_true : 1200 -// instr.ld_false : 1200 -// instr.ld_const.base : 13000 -// instr.ld_const.per_byte : 700 -// instr.imm_borrow_loc : 1200 -// instr.mut_borrow_loc : 1200 -// instr.imm_borrow_field : 4000 -// instr.mut_borrow_field : 4000 -// instr.imm_borrow_field_generic : 4000 -// instr.mut_borrow_field_generic : 4000 -// instr.copy_loc.base : 1600 -// instr.copy_loc.per_abs_val_unit : 80 -// instr.move_loc.base : 2400 -// instr.st_loc.base : 2400 -// instr.call.base : 20000 -// instr.call.per_arg : 2000 -// instr.call.per_local : 2000 -// instr.call_generic.base : 20000 -// instr.call_generic.per_ty_arg : 2000 -// instr.call_generic.per_arg : 2000 -// instr.call_generic.per_local : 2000 -// instr.pack.base : 4400 -// instr.pack.per_field : 800 -// instr.pack_generic.base : 4400 -// instr.pack_generic.per_field : 800 -// instr.unpack.base : 4400 -// instr.unpack.per_field : 800 -// instr.unpack_generic.base : 4400 -// instr.unpack_generic.per_field : 800 -// instr.read_ref.base : 4000 -// instr.read_ref.per_abs_val_unit : 80 -// instr.write_ref.base : 4000 -// instr.freeze_ref : 200 -// instr.cast_u8 : 2400 -// instr.cast_u64 : 2400 -// instr.cast_u128 : 2400 -// instr.add : 3200 -// instr.sub : 3200 -// instr.mul : 3200 -// instr.mod : 3200 -// instr.div : 3200 -// instr.bit_or : 3200 -// instr.bit_and : 3200 -// instr.bit_xor : 3200 -// instr.bit_shl : 3200 -// instr.bit_shr : 3200 -// instr.or : 3200 -// instr.and : 3200 -// instr.not : 3200 -// instr.lt : 3200 -// instr.gt : 3200 -// instr.le : 3200 -// instr.ge : 3200 -// instr.eq.base : 2000 -// instr.eq.per_abs_val_unit : 80 -// instr.neq.base : 2000 -// instr.neq.per_abs_val_unit : 80 -// instr.imm_borrow_global.base : 10000 -// instr.imm_borrow_global_generic.base : 10000 -// instr.mut_borrow_global.base : 10000 -// instr.mut_borrow_global_generic.base : 10000 -// instr.exists.base : 5000 -// instr.exists_generic.base : 5000 -// instr.move_from.base : 7000 -// instr.move_from_generic.base : 7000 -// instr.move_to.base : 10000 -// instr.move_to_generic.base : 10000 -// instr.vec_len.base : 4400 -// instr.vec_imm_borrow.base : 6600 -// instr.vec_mut_borrow.base : 6600 -// instr.vec_push_back.base : 7600 -// instr.vec_pop_back.base : 5200 -// instr.vec_swap.base : 6000 -// instr.vec_pack.base : 12000 -// instr.vec_pack.per_elem : 800 -// instr.vec_unpack.base : 10000 -// instr.vec_unpack.per_expected_elem : 800 -// txn.min_transaction_gas_units : 1500000 -// txn.large_transaction_cutoff : 600 -// txn.intrinsic_gas_per_byte : 2000 -// txn.maximum_number_of_gas_units : 2000000 -// txn.min_price_per_gas_unit : 1000 -// txn.max_price_per_gas_unit : 10000 -// txn.max_transaction_size_in_bytes : 65536 -// txn.gas_unit_scaling_factor : 10000 -// txn.load_data.base : 16000 -// txn.load_data.per_byte : 1000 -// txn.load_data.failure : 0 -// txn.write_data.per_op : 160000 -// txn.write_data.new_item : 1280000 -// txn.write_data.per_byte_in_key : 10000 -// txn.write_data.per_byte_in_val : 10000 -// txn.memory_quota : 10000000 -// move_stdlib.bcs.to_bytes.per_byte_serialized : 200 -// move_stdlib.bcs.to_bytes.failure : 20000 -// move_stdlib.hash.sha2_256.base : 60000 -// move_stdlib.hash.sha2_256.per_byte : 1000 -// move_stdlib.hash.sha3_256.base : 80000 -// move_stdlib.hash.sha3_256.per_byte : 900 -// move_stdlib.signer.borrow_address.base : 4000 -// move_stdlib.string.check_utf8.base : 6000 -// move_stdlib.string.check_utf8.per_byte : 160 -// move_stdlib.string.is_char_boundary.base : 6000 -// move_stdlib.string.sub_string.base : 8000 -// move_stdlib.string.sub_string.per_byte : 60 -// move_stdlib.string.index_of.base : 8000 -// move_stdlib.string.index_of.per_byte_pattern : 400 -// move_stdlib.string.index_of.per_byte_searched : 200 -// aptos_framework.account.create_address.base : 6000 -// aptos_framework.account.create_signer.base : 6000 -// aptos_framework.bls12381.base : 3000 -// aptos_framework.bls12381.per_pubkey_deserialize : 2180000 -// aptos_framework.bls12381.per_pubkey_aggregate : 84000 -// aptos_framework.bls12381.per_pubkey_subgroup_check : 7400000 -// aptos_framework.bls12381.per_sig_deserialize : 4440000 -// aptos_framework.bls12381.per_sig_aggregate : 233000 -// aptos_framework.bls12381.per_sig_subgroup_check : 9210000 -// aptos_framework.bls12381.per_sig_verify : 169700000 -// aptos_framework.bls12381.per_pop_verify : 206000000 -// aptos_framework.bls12381.per_pairing : 80260000 -// aptos_framework.bls12381.per_msg_hashing : 30800000 -// aptos_framework.bls12381.per_byte_hashing : 1000 -// aptos_framework.signature.base : 3000 -// aptos_framework.signature.per_pubkey_deserialize : 760000 -// aptos_framework.signature.per_pubkey_small_order_check : 127000 -// aptos_framework.signature.per_sig_deserialize : 7500 -// aptos_framework.signature.per_sig_strict_verify : 5340000 -// aptos_framework.signature.per_msg_hashing_base : 64800 -// aptos_framework.signature.per_msg_byte_hashing : 1200 -// aptos_framework.secp256k1.base : 3000 -// aptos_framework.secp256k1.ecdsa_recover : 32200000 -// aptos_framework.ristretto255.basepoint_mul : 2560000 -// aptos_framework.ristretto255.basepoint_double_mul : 8800000 -// aptos_framework.ristretto255.point_add : 42700 -// aptos_framework.ristretto255.point_compress : 800000 -// aptos_framework.ristretto255.point_decompress : 810000 -// aptos_framework.ristretto255.point_equals : 46000 -// aptos_framework.ristretto255.point_from_64_uniform_bytes : 1630000 -// aptos_framework.ristretto255.point_identity : 3000 -// aptos_framework.ristretto255.point_mul : 9420000 -// aptos_framework.ristretto255.point_neg : 7200 -// aptos_framework.ristretto255.point_sub : 42600 -// aptos_framework.ristretto255.point_parse_arg : 3000 -// aptos_framework.ristretto255.scalar_sha512_per_byte : 1200 -// aptos_framework.ristretto255.scalar_sha512_per_hash : 64800 -// aptos_framework.ristretto255.scalar_add : 15400 -// aptos_framework.ristretto255.scalar_reduced_from_32_bytes : 14200 -// aptos_framework.ristretto255.scalar_uniform_from_64_bytes : 24900 -// aptos_framework.ristretto255.scalar_from_u128 : 3500 -// aptos_framework.ristretto255.scalar_from_u64 : 3500 -// aptos_framework.ristretto255.scalar_invert : 2200000 -// aptos_framework.ristretto255.scalar_is_canonical : 23000 -// aptos_framework.ristretto255.scalar_mul : 21300 -// aptos_framework.ristretto255.scalar_neg : 14500 -// aptos_framework.ristretto255.scalar_sub : 21200 -// aptos_framework.ristretto255.scalar_parse_arg : 3000 -// aptos_framework.hash.sip_hash.base : 20000 -// aptos_framework.hash.sip_hash.per_byte : 400 -// aptos_framework.hash.keccak256.base : 80000 -// aptos_framework.hash.keccak256.per_byte : 900 -// aptos_framework.type_info.type_of.base : 6000 -// aptos_framework.type_info.type_of.per_abstract_memory_unit : 100 -// aptos_framework.type_info.type_name.base : 6000 -// aptos_framework.type_info.type_name.per_abstract_memory_unit : 100 -// aptos_framework.util.from_bytes.base : 6000 -// aptos_framework.util.from_bytes.per_byte : 100 -// aptos_framework.transaction_context.get_script_hash.base : 4000 -// aptos_framework.code.request_publish.base : 10000 -// aptos_framework.code.request_publish.per_byte : 40 -// aptos_framework.event.write_to_event_store.base : 500000 -// aptos_framework.event.write_to_event_store.per_abstract_memory_unit : 5000 -// aptos_framework.state_storage.get_usage.base : 10000 -// aptos_framework.aggregator.add.base : 6000 -// aptos_framework.aggregator.read.base : 6000 -// aptos_framework.aggregator.sub.base : 6000 -// aptos_framework.aggregator.destroy.base : 10000 -// aptos_framework.aggregator_factory.new_aggregator.base : 10000 -// table.common.load.base : 8000 -// table.common.load.per_byte : 1000 -// table.common.load.failure : 0 -// table.new_table_handle.base : 20000 -// table.add_box.base : 24000 -// table.add_box.per_byte_serialized : 200 -// table.borrow_box.base : 24000 -// table.borrow_box.per_byte_serialized : 200 -// table.contains_box.base : 24000 -// table.contains_box.per_byte_serialized : 200 -// table.remove_box.base : 24000 -// table.remove_box.per_byte_serialized : 200 -// table.destroy_empty_box.base : 24000 -// table.drop_unchecked_box.base : 2000 -// misc.abs_val.u8 : 40 -// misc.abs_val.u64 : 40 -// misc.abs_val.u128 : 40 -// misc.abs_val.bool : 40 -// misc.abs_val.address : 40 -// misc.abs_val.struct : 40 -// misc.abs_val.vector : 40 -// misc.abs_val.reference : 40 -// misc.abs_val.per_u8_packed : 1 -// misc.abs_val.per_u64_packed : 8 -// misc.abs_val.per_u128_packed : 16 -// misc.abs_val.per_bool_packed : 1 -// misc.abs_val.per_address_packed : 32 - -script { - use aptos_framework::aptos_governance; - use aptos_framework::gas_schedule; - - fun main(proposal_id: u64) { - let framework_signer = aptos_governance::resolve(proposal_id, @0000000000000000000000000000000000000000000000000000000000000001); - - let gas_schedule_blob: vector = vector[ - 3, 0, 0, 0, 0, 0, 0, 0, 214, 1, 9, 105, 110, 115, 116, 114, 46, 110, 111, 112, - 200, 0, 0, 0, 0, 0, 0, 0, 9, 105, 110, 115, 116, 114, 46, 114, 101, 116, 176, 4, - 0, 0, 0, 0, 0, 0, 11, 105, 110, 115, 116, 114, 46, 97, 98, 111, 114, 116, 176, 4, - 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, 98, 114, 95, 116, 114, 117, 101, - 96, 9, 0, 0, 0, 0, 0, 0, 14, 105, 110, 115, 116, 114, 46, 98, 114, 95, 102, 97, - 108, 115, 101, 96, 9, 0, 0, 0, 0, 0, 0, 12, 105, 110, 115, 116, 114, 46, 98, 114, - 97, 110, 99, 104, 64, 6, 0, 0, 0, 0, 0, 0, 9, 105, 110, 115, 116, 114, 46, 112, - 111, 112, 32, 3, 0, 0, 0, 0, 0, 0, 11, 105, 110, 115, 116, 114, 46, 108, 100, 95, - 117, 56, 176, 4, 0, 0, 0, 0, 0, 0, 12, 105, 110, 115, 116, 114, 46, 108, 100, 95, - 117, 54, 52, 176, 4, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, 108, 100, - 95, 117, 49, 50, 56, 64, 6, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, - 108, 100, 95, 116, 114, 117, 101, 176, 4, 0, 0, 0, 0, 0, 0, 14, 105, 110, 115, 116, - 114, 46, 108, 100, 95, 102, 97, 108, 115, 101, 176, 4, 0, 0, 0, 0, 0, 0, 19, 105, - 110, 115, 116, 114, 46, 108, 100, 95, 99, 111, 110, 115, 116, 46, 98, 97, 115, 101, 200, 50, - 0, 0, 0, 0, 0, 0, 23, 105, 110, 115, 116, 114, 46, 108, 100, 95, 99, 111, 110, 115, - 116, 46, 112, 101, 114, 95, 98, 121, 116, 101, 188, 2, 0, 0, 0, 0, 0, 0, 20, 105, - 110, 115, 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 108, 111, 99, 176, - 4, 0, 0, 0, 0, 0, 0, 20, 105, 110, 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, - 114, 114, 111, 119, 95, 108, 111, 99, 176, 4, 0, 0, 0, 0, 0, 0, 22, 105, 110, 115, - 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 102, 105, 101, 108, 100, 160, - 15, 0, 0, 0, 0, 0, 0, 22, 105, 110, 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, - 114, 114, 111, 119, 95, 102, 105, 101, 108, 100, 160, 15, 0, 0, 0, 0, 0, 0, 30, 105, - 110, 115, 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 102, 105, 101, 108, - 100, 95, 103, 101, 110, 101, 114, 105, 99, 160, 15, 0, 0, 0, 0, 0, 0, 30, 105, 110, - 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 95, 102, 105, 101, 108, 100, - 95, 103, 101, 110, 101, 114, 105, 99, 160, 15, 0, 0, 0, 0, 0, 0, 19, 105, 110, 115, - 116, 114, 46, 99, 111, 112, 121, 95, 108, 111, 99, 46, 98, 97, 115, 101, 64, 6, 0, 0, - 0, 0, 0, 0, 31, 105, 110, 115, 116, 114, 46, 99, 111, 112, 121, 95, 108, 111, 99, 46, - 112, 101, 114, 95, 97, 98, 115, 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, - 0, 0, 0, 0, 19, 105, 110, 115, 116, 114, 46, 109, 111, 118, 101, 95, 108, 111, 99, 46, - 98, 97, 115, 101, 96, 9, 0, 0, 0, 0, 0, 0, 17, 105, 110, 115, 116, 114, 46, 115, - 116, 95, 108, 111, 99, 46, 98, 97, 115, 101, 96, 9, 0, 0, 0, 0, 0, 0, 15, 105, - 110, 115, 116, 114, 46, 99, 97, 108, 108, 46, 98, 97, 115, 101, 32, 78, 0, 0, 0, 0, - 0, 0, 18, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, 46, 112, 101, 114, 95, 97, 114, - 103, 208, 7, 0, 0, 0, 0, 0, 0, 20, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, - 46, 112, 101, 114, 95, 108, 111, 99, 97, 108, 208, 7, 0, 0, 0, 0, 0, 0, 23, 105, - 110, 115, 116, 114, 46, 99, 97, 108, 108, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, - 115, 101, 32, 78, 0, 0, 0, 0, 0, 0, 29, 105, 110, 115, 116, 114, 46, 99, 97, 108, - 108, 95, 103, 101, 110, 101, 114, 105, 99, 46, 112, 101, 114, 95, 116, 121, 95, 97, 114, 103, - 208, 7, 0, 0, 0, 0, 0, 0, 26, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, 95, - 103, 101, 110, 101, 114, 105, 99, 46, 112, 101, 114, 95, 97, 114, 103, 208, 7, 0, 0, 0, - 0, 0, 0, 28, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, 95, 103, 101, 110, 101, 114, - 105, 99, 46, 112, 101, 114, 95, 108, 111, 99, 97, 108, 208, 7, 0, 0, 0, 0, 0, 0, - 15, 105, 110, 115, 116, 114, 46, 112, 97, 99, 107, 46, 98, 97, 115, 101, 48, 17, 0, 0, - 0, 0, 0, 0, 20, 105, 110, 115, 116, 114, 46, 112, 97, 99, 107, 46, 112, 101, 114, 95, - 102, 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, 0, 0, 23, 105, 110, 115, 116, 114, 46, - 112, 97, 99, 107, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 48, 17, 0, - 0, 0, 0, 0, 0, 28, 105, 110, 115, 116, 114, 46, 112, 97, 99, 107, 95, 103, 101, 110, - 101, 114, 105, 99, 46, 112, 101, 114, 95, 102, 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, - 0, 0, 17, 105, 110, 115, 116, 114, 46, 117, 110, 112, 97, 99, 107, 46, 98, 97, 115, 101, - 48, 17, 0, 0, 0, 0, 0, 0, 22, 105, 110, 115, 116, 114, 46, 117, 110, 112, 97, 99, - 107, 46, 112, 101, 114, 95, 102, 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, 0, 0, 25, - 105, 110, 115, 116, 114, 46, 117, 110, 112, 97, 99, 107, 95, 103, 101, 110, 101, 114, 105, 99, - 46, 98, 97, 115, 101, 48, 17, 0, 0, 0, 0, 0, 0, 30, 105, 110, 115, 116, 114, 46, - 117, 110, 112, 97, 99, 107, 95, 103, 101, 110, 101, 114, 105, 99, 46, 112, 101, 114, 95, 102, - 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, 0, 0, 19, 105, 110, 115, 116, 114, 46, 114, - 101, 97, 100, 95, 114, 101, 102, 46, 98, 97, 115, 101, 160, 15, 0, 0, 0, 0, 0, 0, - 31, 105, 110, 115, 116, 114, 46, 114, 101, 97, 100, 95, 114, 101, 102, 46, 112, 101, 114, 95, - 97, 98, 115, 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, 0, 0, 0, 0, - 20, 105, 110, 115, 116, 114, 46, 119, 114, 105, 116, 101, 95, 114, 101, 102, 46, 98, 97, 115, - 101, 160, 15, 0, 0, 0, 0, 0, 0, 16, 105, 110, 115, 116, 114, 46, 102, 114, 101, 101, - 122, 101, 95, 114, 101, 102, 200, 0, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, - 46, 99, 97, 115, 116, 95, 117, 56, 96, 9, 0, 0, 0, 0, 0, 0, 14, 105, 110, 115, - 116, 114, 46, 99, 97, 115, 116, 95, 117, 54, 52, 96, 9, 0, 0, 0, 0, 0, 0, 15, - 105, 110, 115, 116, 114, 46, 99, 97, 115, 116, 95, 117, 49, 50, 56, 96, 9, 0, 0, 0, - 0, 0, 0, 9, 105, 110, 115, 116, 114, 46, 97, 100, 100, 128, 12, 0, 0, 0, 0, 0, - 0, 9, 105, 110, 115, 116, 114, 46, 115, 117, 98, 128, 12, 0, 0, 0, 0, 0, 0, 9, - 105, 110, 115, 116, 114, 46, 109, 117, 108, 128, 12, 0, 0, 0, 0, 0, 0, 9, 105, 110, - 115, 116, 114, 46, 109, 111, 100, 128, 12, 0, 0, 0, 0, 0, 0, 9, 105, 110, 115, 116, - 114, 46, 100, 105, 118, 128, 12, 0, 0, 0, 0, 0, 0, 12, 105, 110, 115, 116, 114, 46, - 98, 105, 116, 95, 111, 114, 128, 12, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, - 46, 98, 105, 116, 95, 97, 110, 100, 128, 12, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, - 116, 114, 46, 98, 105, 116, 95, 120, 111, 114, 128, 12, 0, 0, 0, 0, 0, 0, 13, 105, - 110, 115, 116, 114, 46, 98, 105, 116, 95, 115, 104, 108, 128, 12, 0, 0, 0, 0, 0, 0, - 13, 105, 110, 115, 116, 114, 46, 98, 105, 116, 95, 115, 104, 114, 128, 12, 0, 0, 0, 0, - 0, 0, 8, 105, 110, 115, 116, 114, 46, 111, 114, 128, 12, 0, 0, 0, 0, 0, 0, 9, - 105, 110, 115, 116, 114, 46, 97, 110, 100, 128, 12, 0, 0, 0, 0, 0, 0, 9, 105, 110, - 115, 116, 114, 46, 110, 111, 116, 128, 12, 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, - 114, 46, 108, 116, 128, 12, 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, 114, 46, 103, - 116, 128, 12, 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, 114, 46, 108, 101, 128, 12, - 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, 114, 46, 103, 101, 128, 12, 0, 0, 0, - 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, 101, 113, 46, 98, 97, 115, 101, 208, 7, 0, - 0, 0, 0, 0, 0, 25, 105, 110, 115, 116, 114, 46, 101, 113, 46, 112, 101, 114, 95, 97, - 98, 115, 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, 0, 0, 0, 0, 14, - 105, 110, 115, 116, 114, 46, 110, 101, 113, 46, 98, 97, 115, 101, 208, 7, 0, 0, 0, 0, - 0, 0, 26, 105, 110, 115, 116, 114, 46, 110, 101, 113, 46, 112, 101, 114, 95, 97, 98, 115, - 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, 0, 0, 0, 0, 28, 105, 110, - 115, 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, 98, 97, - 108, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 36, 105, 110, 115, 116, 114, - 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, 98, 97, 108, 95, 103, - 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 28, - 105, 110, 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, - 98, 97, 108, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 36, 105, 110, 115, - 116, 114, 46, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, 98, 97, 108, - 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, - 0, 17, 105, 110, 115, 116, 114, 46, 101, 120, 105, 115, 116, 115, 46, 98, 97, 115, 101, 136, - 19, 0, 0, 0, 0, 0, 0, 25, 105, 110, 115, 116, 114, 46, 101, 120, 105, 115, 116, 115, - 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 136, 19, 0, 0, 0, 0, 0, - 0, 20, 105, 110, 115, 116, 114, 46, 109, 111, 118, 101, 95, 102, 114, 111, 109, 46, 98, 97, - 115, 101, 88, 27, 0, 0, 0, 0, 0, 0, 28, 105, 110, 115, 116, 114, 46, 109, 111, 118, - 101, 95, 102, 114, 111, 109, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 88, - 27, 0, 0, 0, 0, 0, 0, 18, 105, 110, 115, 116, 114, 46, 109, 111, 118, 101, 95, 116, - 111, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 26, 105, 110, 115, 116, 114, - 46, 109, 111, 118, 101, 95, 116, 111, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, - 101, 16, 39, 0, 0, 0, 0, 0, 0, 18, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, - 108, 101, 110, 46, 98, 97, 115, 101, 48, 17, 0, 0, 0, 0, 0, 0, 25, 105, 110, 115, - 116, 114, 46, 118, 101, 99, 95, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 46, 98, 97, - 115, 101, 200, 25, 0, 0, 0, 0, 0, 0, 25, 105, 110, 115, 116, 114, 46, 118, 101, 99, - 95, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 46, 98, 97, 115, 101, 200, 25, 0, 0, - 0, 0, 0, 0, 24, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, 112, 117, 115, 104, 95, - 98, 97, 99, 107, 46, 98, 97, 115, 101, 176, 29, 0, 0, 0, 0, 0, 0, 23, 105, 110, - 115, 116, 114, 46, 118, 101, 99, 95, 112, 111, 112, 95, 98, 97, 99, 107, 46, 98, 97, 115, - 101, 80, 20, 0, 0, 0, 0, 0, 0, 19, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, - 115, 119, 97, 112, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 19, 105, 110, - 115, 116, 114, 46, 118, 101, 99, 95, 112, 97, 99, 107, 46, 98, 97, 115, 101, 224, 46, 0, - 0, 0, 0, 0, 0, 23, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, 112, 97, 99, 107, - 46, 112, 101, 114, 95, 101, 108, 101, 109, 32, 3, 0, 0, 0, 0, 0, 0, 21, 105, 110, - 115, 116, 114, 46, 118, 101, 99, 95, 117, 110, 112, 97, 99, 107, 46, 98, 97, 115, 101, 16, - 39, 0, 0, 0, 0, 0, 0, 34, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, 117, 110, - 112, 97, 99, 107, 46, 112, 101, 114, 95, 101, 120, 112, 101, 99, 116, 101, 100, 95, 101, 108, - 101, 109, 32, 3, 0, 0, 0, 0, 0, 0, 29, 116, 120, 110, 46, 109, 105, 110, 95, 116, - 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 103, 97, 115, 95, 117, 110, 105, 116, 115, - 96, 227, 22, 0, 0, 0, 0, 0, 28, 116, 120, 110, 46, 108, 97, 114, 103, 101, 95, 116, - 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 99, 117, 116, 111, 102, 102, 88, 2, 0, - 0, 0, 0, 0, 0, 26, 116, 120, 110, 46, 105, 110, 116, 114, 105, 110, 115, 105, 99, 95, - 103, 97, 115, 95, 112, 101, 114, 95, 98, 121, 116, 101, 208, 7, 0, 0, 0, 0, 0, 0, - 31, 116, 120, 110, 46, 109, 97, 120, 105, 109, 117, 109, 95, 110, 117, 109, 98, 101, 114, 95, - 111, 102, 95, 103, 97, 115, 95, 117, 110, 105, 116, 115, 128, 132, 30, 0, 0, 0, 0, 0, - 26, 116, 120, 110, 46, 109, 105, 110, 95, 112, 114, 105, 99, 101, 95, 112, 101, 114, 95, 103, - 97, 115, 95, 117, 110, 105, 116, 232, 3, 0, 0, 0, 0, 0, 0, 26, 116, 120, 110, 46, - 109, 97, 120, 95, 112, 114, 105, 99, 101, 95, 112, 101, 114, 95, 103, 97, 115, 95, 117, 110, - 105, 116, 16, 39, 0, 0, 0, 0, 0, 0, 33, 116, 120, 110, 46, 109, 97, 120, 95, 116, - 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 115, 105, 122, 101, 95, 105, 110, 95, 98, - 121, 116, 101, 115, 0, 0, 1, 0, 0, 0, 0, 0, 27, 116, 120, 110, 46, 103, 97, 115, - 95, 117, 110, 105, 116, 95, 115, 99, 97, 108, 105, 110, 103, 95, 102, 97, 99, 116, 111, 114, - 16, 39, 0, 0, 0, 0, 0, 0, 18, 116, 120, 110, 46, 108, 111, 97, 100, 95, 100, 97, - 116, 97, 46, 98, 97, 115, 101, 128, 62, 0, 0, 0, 0, 0, 0, 22, 116, 120, 110, 46, - 108, 111, 97, 100, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 98, 121, 116, 101, 232, 3, - 0, 0, 0, 0, 0, 0, 21, 116, 120, 110, 46, 108, 111, 97, 100, 95, 100, 97, 116, 97, - 46, 102, 97, 105, 108, 117, 114, 101, 0, 0, 0, 0, 0, 0, 0, 0, 21, 116, 120, 110, - 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 111, 112, 0, 113, - 2, 0, 0, 0, 0, 0, 23, 116, 120, 110, 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, - 97, 46, 110, 101, 119, 95, 105, 116, 101, 109, 0, 136, 19, 0, 0, 0, 0, 0, 30, 116, - 120, 110, 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 98, 121, - 116, 101, 95, 105, 110, 95, 107, 101, 121, 16, 39, 0, 0, 0, 0, 0, 0, 30, 116, 120, - 110, 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 98, 121, 116, - 101, 95, 105, 110, 95, 118, 97, 108, 16, 39, 0, 0, 0, 0, 0, 0, 16, 116, 120, 110, - 46, 109, 101, 109, 111, 114, 121, 95, 113, 117, 111, 116, 97, 128, 150, 152, 0, 0, 0, 0, - 0, 44, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 98, 99, 115, 46, 116, 111, - 95, 98, 121, 116, 101, 115, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 115, 101, 114, 105, - 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, 0, 32, 109, 111, 118, 101, 95, - 115, 116, 100, 108, 105, 98, 46, 98, 99, 115, 46, 116, 111, 95, 98, 121, 116, 101, 115, 46, - 102, 97, 105, 108, 117, 114, 101, 32, 78, 0, 0, 0, 0, 0, 0, 30, 109, 111, 118, 101, - 95, 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 50, 95, 50, 53, - 54, 46, 98, 97, 115, 101, 96, 234, 0, 0, 0, 0, 0, 0, 34, 109, 111, 118, 101, 95, - 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 50, 95, 50, 53, 54, - 46, 112, 101, 114, 95, 98, 121, 116, 101, 232, 3, 0, 0, 0, 0, 0, 0, 30, 109, 111, - 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 51, 95, - 50, 53, 54, 46, 98, 97, 115, 101, 128, 56, 1, 0, 0, 0, 0, 0, 34, 109, 111, 118, - 101, 95, 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 51, 95, 50, - 53, 54, 46, 112, 101, 114, 95, 98, 121, 116, 101, 132, 3, 0, 0, 0, 0, 0, 0, 38, - 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 105, 103, 110, 101, 114, 46, 98, - 111, 114, 114, 111, 119, 95, 97, 100, 100, 114, 101, 115, 115, 46, 98, 97, 115, 101, 160, 15, - 0, 0, 0, 0, 0, 0, 34, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, - 116, 114, 105, 110, 103, 46, 99, 104, 101, 99, 107, 95, 117, 116, 102, 56, 46, 98, 97, 115, - 101, 112, 23, 0, 0, 0, 0, 0, 0, 38, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, - 98, 46, 115, 116, 114, 105, 110, 103, 46, 99, 104, 101, 99, 107, 95, 117, 116, 102, 56, 46, - 112, 101, 114, 95, 98, 121, 116, 101, 160, 0, 0, 0, 0, 0, 0, 0, 40, 109, 111, 118, - 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 115, 95, 99, - 104, 97, 114, 95, 98, 111, 117, 110, 100, 97, 114, 121, 46, 98, 97, 115, 101, 112, 23, 0, - 0, 0, 0, 0, 0, 34, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, - 114, 105, 110, 103, 46, 115, 117, 98, 95, 115, 116, 114, 105, 110, 103, 46, 98, 97, 115, 101, - 64, 31, 0, 0, 0, 0, 0, 0, 38, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, - 46, 115, 116, 114, 105, 110, 103, 46, 115, 117, 98, 95, 115, 116, 114, 105, 110, 103, 46, 112, - 101, 114, 95, 98, 121, 116, 101, 60, 0, 0, 0, 0, 0, 0, 0, 32, 109, 111, 118, 101, - 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 110, 100, 101, 120, - 95, 111, 102, 46, 98, 97, 115, 101, 64, 31, 0, 0, 0, 0, 0, 0, 44, 109, 111, 118, - 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 110, 100, 101, - 120, 95, 111, 102, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 112, 97, 116, 116, 101, 114, - 110, 144, 1, 0, 0, 0, 0, 0, 0, 45, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, - 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 110, 100, 101, 120, 95, 111, 102, 46, 112, 101, - 114, 95, 98, 121, 116, 101, 95, 115, 101, 97, 114, 99, 104, 101, 100, 200, 0, 0, 0, 0, - 0, 0, 0, 43, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, - 97, 99, 99, 111, 117, 110, 116, 46, 99, 114, 101, 97, 116, 101, 95, 97, 100, 100, 114, 101, - 115, 115, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 42, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 99, 99, 111, 117, 110, 116, 46, - 99, 114, 101, 97, 116, 101, 95, 115, 105, 103, 110, 101, 114, 46, 98, 97, 115, 101, 112, 23, - 0, 0, 0, 0, 0, 0, 29, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 98, 97, 115, 101, 184, 11, 0, 0, - 0, 0, 0, 0, 47, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, - 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, 117, 98, 107, 101, 121, - 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, 101, 160, 67, 33, 0, 0, 0, 0, 0, - 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, - 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, 117, 98, 107, 101, 121, 95, 97, 103, 103, - 114, 101, 103, 97, 116, 101, 32, 72, 1, 0, 0, 0, 0, 0, 50, 97, 112, 116, 111, 115, - 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, - 112, 101, 114, 95, 112, 117, 98, 107, 101, 121, 95, 115, 117, 98, 103, 114, 111, 117, 112, 95, - 99, 104, 101, 99, 107, 64, 234, 112, 0, 0, 0, 0, 0, 44, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, - 101, 114, 95, 115, 105, 103, 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, 101, 192, 191, - 67, 0, 0, 0, 0, 0, 42, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 115, 105, 103, 95, - 97, 103, 103, 114, 101, 103, 97, 116, 101, 40, 142, 3, 0, 0, 0, 0, 0, 47, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, - 56, 49, 46, 112, 101, 114, 95, 115, 105, 103, 95, 115, 117, 98, 103, 114, 111, 117, 112, 95, - 99, 104, 101, 99, 107, 144, 136, 140, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, - 101, 114, 95, 115, 105, 103, 95, 118, 101, 114, 105, 102, 121, 160, 106, 29, 10, 0, 0, 0, - 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, - 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, 111, 112, 95, 118, 101, 114, 105, 102, - 121, 128, 79, 71, 12, 0, 0, 0, 0, 36, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, - 97, 105, 114, 105, 110, 103, 160, 171, 200, 4, 0, 0, 0, 0, 40, 97, 112, 116, 111, 115, - 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, - 112, 101, 114, 95, 109, 115, 103, 95, 104, 97, 115, 104, 105, 110, 103, 128, 248, 213, 1, 0, - 0, 0, 0, 41, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, - 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 104, 97, - 115, 104, 105, 110, 103, 232, 3, 0, 0, 0, 0, 0, 0, 30, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, - 98, 97, 115, 101, 184, 11, 0, 0, 0, 0, 0, 0, 48, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, - 101, 114, 95, 112, 117, 98, 107, 101, 121, 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, - 101, 192, 152, 11, 0, 0, 0, 0, 0, 54, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, 101, 114, 95, - 112, 117, 98, 107, 101, 121, 95, 115, 109, 97, 108, 108, 95, 111, 114, 100, 101, 114, 95, 99, - 104, 101, 99, 107, 24, 240, 1, 0, 0, 0, 0, 0, 45, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, - 101, 114, 95, 115, 105, 103, 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, 101, 76, 29, - 0, 0, 0, 0, 0, 0, 47, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, 101, 114, 95, 115, 105, 103, - 95, 115, 116, 114, 105, 99, 116, 95, 118, 101, 114, 105, 102, 121, 96, 123, 81, 0, 0, 0, - 0, 0, 46, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, - 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, 101, 114, 95, 109, 115, 103, 95, 104, 97, 115, - 104, 105, 110, 103, 95, 98, 97, 115, 101, 32, 253, 0, 0, 0, 0, 0, 0, 46, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, - 117, 114, 101, 46, 112, 101, 114, 95, 109, 115, 103, 95, 98, 121, 116, 101, 95, 104, 97, 115, - 104, 105, 110, 103, 176, 4, 0, 0, 0, 0, 0, 0, 30, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 101, 99, 112, 50, 53, 54, 107, 49, 46, 98, - 97, 115, 101, 184, 11, 0, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, - 97, 109, 101, 119, 111, 114, 107, 46, 115, 101, 99, 112, 50, 53, 54, 107, 49, 46, 101, 99, - 100, 115, 97, 95, 114, 101, 99, 111, 118, 101, 114, 64, 85, 235, 1, 0, 0, 0, 0, 42, - 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, - 114, 101, 116, 116, 111, 50, 53, 53, 46, 98, 97, 115, 101, 112, 111, 105, 110, 116, 95, 109, - 117, 108, 0, 16, 39, 0, 0, 0, 0, 0, 49, 97, 112, 116, 111, 115, 95, 102, 114, 97, - 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, - 98, 97, 115, 101, 112, 111, 105, 110, 116, 95, 100, 111, 117, 98, 108, 101, 95, 109, 117, 108, - 0, 71, 134, 0, 0, 0, 0, 0, 38, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, - 105, 110, 116, 95, 97, 100, 100, 204, 166, 0, 0, 0, 0, 0, 0, 43, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, - 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 99, 111, 109, 112, 114, 101, 115, 115, 0, - 53, 12, 0, 0, 0, 0, 0, 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, - 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, 105, - 110, 116, 95, 100, 101, 99, 111, 109, 112, 114, 101, 115, 115, 16, 92, 12, 0, 0, 0, 0, - 0, 41, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, - 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 101, 113, 117, - 97, 108, 115, 176, 179, 0, 0, 0, 0, 0, 0, 56, 97, 112, 116, 111, 115, 95, 102, 114, - 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, - 46, 112, 111, 105, 110, 116, 95, 102, 114, 111, 109, 95, 54, 52, 95, 117, 110, 105, 102, 111, - 114, 109, 95, 98, 121, 116, 101, 115, 48, 223, 24, 0, 0, 0, 0, 0, 43, 97, 112, 116, - 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, - 116, 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 105, 100, 101, 110, 116, 105, 116, 121, - 184, 11, 0, 0, 0, 0, 0, 0, 38, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, - 105, 110, 116, 95, 109, 117, 108, 224, 188, 143, 0, 0, 0, 0, 0, 38, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, - 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 110, 101, 103, 32, 28, 0, 0, 0, 0, - 0, 0, 38, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 115, 117, - 98, 104, 166, 0, 0, 0, 0, 0, 0, 44, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, - 111, 105, 110, 116, 95, 112, 97, 114, 115, 101, 95, 97, 114, 103, 184, 11, 0, 0, 0, 0, - 0, 0, 51, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 115, - 104, 97, 53, 49, 50, 95, 112, 101, 114, 95, 98, 121, 116, 101, 176, 4, 0, 0, 0, 0, - 0, 0, 51, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 115, - 104, 97, 53, 49, 50, 95, 112, 101, 114, 95, 104, 97, 115, 104, 32, 253, 0, 0, 0, 0, - 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 97, - 100, 100, 40, 60, 0, 0, 0, 0, 0, 0, 57, 97, 112, 116, 111, 115, 95, 102, 114, 97, - 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, - 115, 99, 97, 108, 97, 114, 95, 114, 101, 100, 117, 99, 101, 100, 95, 102, 114, 111, 109, 95, - 51, 50, 95, 98, 121, 116, 101, 115, 120, 55, 0, 0, 0, 0, 0, 0, 57, 97, 112, 116, - 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, - 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 117, 110, 105, 102, 111, 114, 109, - 95, 102, 114, 111, 109, 95, 54, 52, 95, 98, 121, 116, 101, 115, 68, 97, 0, 0, 0, 0, - 0, 0, 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 102, - 114, 111, 109, 95, 117, 49, 50, 56, 172, 13, 0, 0, 0, 0, 0, 0, 44, 97, 112, 116, - 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, - 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 102, 114, 111, 109, 95, 117, 54, - 52, 172, 13, 0, 0, 0, 0, 0, 0, 42, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, - 99, 97, 108, 97, 114, 95, 105, 110, 118, 101, 114, 116, 192, 145, 33, 0, 0, 0, 0, 0, - 48, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, - 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 105, 115, 95, - 99, 97, 110, 111, 110, 105, 99, 97, 108, 216, 89, 0, 0, 0, 0, 0, 0, 39, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, - 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 109, 117, 108, 52, 83, 0, - 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, - 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, - 114, 95, 110, 101, 103, 164, 56, 0, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, - 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 115, 117, 98, 208, 82, 0, 0, 0, 0, 0, - 0, 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, - 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 112, 97, - 114, 115, 101, 95, 97, 114, 103, 184, 11, 0, 0, 0, 0, 0, 0, 34, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 104, 97, 115, 104, 46, 115, 105, 112, - 95, 104, 97, 115, 104, 46, 98, 97, 115, 101, 32, 78, 0, 0, 0, 0, 0, 0, 38, 97, - 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 104, 97, 115, 104, 46, - 115, 105, 112, 95, 104, 97, 115, 104, 46, 112, 101, 114, 95, 98, 121, 116, 101, 144, 1, 0, - 0, 0, 0, 0, 0, 35, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, - 107, 46, 104, 97, 115, 104, 46, 107, 101, 99, 99, 97, 107, 50, 53, 54, 46, 98, 97, 115, - 101, 128, 56, 1, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 104, 97, 115, 104, 46, 107, 101, 99, 99, 97, 107, 50, 53, 54, - 46, 112, 101, 114, 95, 98, 121, 116, 101, 132, 3, 0, 0, 0, 0, 0, 0, 38, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 116, 121, 112, 101, 95, 105, - 110, 102, 111, 46, 116, 121, 112, 101, 95, 111, 102, 46, 98, 97, 115, 101, 112, 23, 0, 0, - 0, 0, 0, 0, 58, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, - 46, 116, 121, 112, 101, 95, 105, 110, 102, 111, 46, 116, 121, 112, 101, 95, 111, 102, 46, 112, - 101, 114, 95, 97, 98, 115, 116, 114, 97, 99, 116, 95, 109, 101, 109, 111, 114, 121, 95, 117, - 110, 105, 116, 100, 0, 0, 0, 0, 0, 0, 0, 40, 97, 112, 116, 111, 115, 95, 102, 114, - 97, 109, 101, 119, 111, 114, 107, 46, 116, 121, 112, 101, 95, 105, 110, 102, 111, 46, 116, 121, - 112, 101, 95, 110, 97, 109, 101, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, - 60, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 116, 121, 112, - 101, 95, 105, 110, 102, 111, 46, 116, 121, 112, 101, 95, 110, 97, 109, 101, 46, 112, 101, 114, - 95, 97, 98, 115, 116, 114, 97, 99, 116, 95, 109, 101, 109, 111, 114, 121, 95, 117, 110, 105, - 116, 100, 0, 0, 0, 0, 0, 0, 0, 36, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 117, 116, 105, 108, 46, 102, 114, 111, 109, 95, 98, 121, 116, 101, - 115, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 40, 97, 112, 116, 111, 115, - 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 117, 116, 105, 108, 46, 102, 114, 111, 109, - 95, 98, 121, 116, 101, 115, 46, 112, 101, 114, 95, 98, 121, 116, 101, 100, 0, 0, 0, 0, - 0, 0, 0, 56, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, - 116, 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 99, 111, 110, 116, 101, 120, 116, 46, - 103, 101, 116, 95, 115, 99, 114, 105, 112, 116, 95, 104, 97, 115, 104, 46, 98, 97, 115, 101, - 160, 15, 0, 0, 0, 0, 0, 0, 41, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 99, 111, 100, 101, 46, 114, 101, 113, 117, 101, 115, 116, 95, 112, 117, - 98, 108, 105, 115, 104, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 45, 97, - 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 99, 111, 100, 101, 46, - 114, 101, 113, 117, 101, 115, 116, 95, 112, 117, 98, 108, 105, 115, 104, 46, 112, 101, 114, 95, - 98, 121, 116, 101, 40, 0, 0, 0, 0, 0, 0, 0, 47, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 101, 118, 101, 110, 116, 46, 119, 114, 105, 116, 101, - 95, 116, 111, 95, 101, 118, 101, 110, 116, 95, 115, 116, 111, 114, 101, 46, 98, 97, 115, 101, - 32, 161, 7, 0, 0, 0, 0, 0, 67, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 101, 118, 101, 110, 116, 46, 119, 114, 105, 116, 101, 95, 116, 111, 95, - 101, 118, 101, 110, 116, 95, 115, 116, 111, 114, 101, 46, 112, 101, 114, 95, 97, 98, 115, 116, - 114, 97, 99, 116, 95, 109, 101, 109, 111, 114, 121, 95, 117, 110, 105, 116, 136, 19, 0, 0, - 0, 0, 0, 0, 44, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, - 46, 115, 116, 97, 116, 101, 95, 115, 116, 111, 114, 97, 103, 101, 46, 103, 101, 116, 95, 117, - 115, 97, 103, 101, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 35, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 103, 103, 114, 101, 103, - 97, 116, 111, 114, 46, 97, 100, 100, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, - 0, 36, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 103, - 103, 114, 101, 103, 97, 116, 111, 114, 46, 114, 101, 97, 100, 46, 98, 97, 115, 101, 112, 23, - 0, 0, 0, 0, 0, 0, 35, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 97, 103, 103, 114, 101, 103, 97, 116, 111, 114, 46, 115, 117, 98, 46, 98, 97, - 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, - 109, 101, 119, 111, 114, 107, 46, 97, 103, 103, 114, 101, 103, 97, 116, 111, 114, 46, 100, 101, - 115, 116, 114, 111, 121, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 54, 97, - 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 103, 103, 114, 101, - 103, 97, 116, 111, 114, 95, 102, 97, 99, 116, 111, 114, 121, 46, 110, 101, 119, 95, 97, 103, - 103, 114, 101, 103, 97, 116, 111, 114, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, - 0, 22, 116, 97, 98, 108, 101, 46, 99, 111, 109, 109, 111, 110, 46, 108, 111, 97, 100, 46, - 98, 97, 115, 101, 64, 31, 0, 0, 0, 0, 0, 0, 26, 116, 97, 98, 108, 101, 46, 99, - 111, 109, 109, 111, 110, 46, 108, 111, 97, 100, 46, 112, 101, 114, 95, 98, 121, 116, 101, 232, - 3, 0, 0, 0, 0, 0, 0, 25, 116, 97, 98, 108, 101, 46, 99, 111, 109, 109, 111, 110, - 46, 108, 111, 97, 100, 46, 102, 97, 105, 108, 117, 114, 101, 0, 0, 0, 0, 0, 0, 0, - 0, 27, 116, 97, 98, 108, 101, 46, 110, 101, 119, 95, 116, 97, 98, 108, 101, 95, 104, 97, - 110, 100, 108, 101, 46, 98, 97, 115, 101, 32, 78, 0, 0, 0, 0, 0, 0, 18, 116, 97, - 98, 108, 101, 46, 97, 100, 100, 95, 98, 111, 120, 46, 98, 97, 115, 101, 192, 93, 0, 0, - 0, 0, 0, 0, 33, 116, 97, 98, 108, 101, 46, 97, 100, 100, 95, 98, 111, 120, 46, 112, - 101, 114, 95, 98, 121, 116, 101, 95, 115, 101, 114, 105, 97, 108, 105, 122, 101, 100, 200, 0, - 0, 0, 0, 0, 0, 0, 21, 116, 97, 98, 108, 101, 46, 98, 111, 114, 114, 111, 119, 95, - 98, 111, 120, 46, 98, 97, 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 36, 116, 97, 98, - 108, 101, 46, 98, 111, 114, 114, 111, 119, 95, 98, 111, 120, 46, 112, 101, 114, 95, 98, 121, - 116, 101, 95, 115, 101, 114, 105, 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, - 0, 23, 116, 97, 98, 108, 101, 46, 99, 111, 110, 116, 97, 105, 110, 115, 95, 98, 111, 120, - 46, 98, 97, 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 38, 116, 97, 98, 108, 101, 46, - 99, 111, 110, 116, 97, 105, 110, 115, 95, 98, 111, 120, 46, 112, 101, 114, 95, 98, 121, 116, - 101, 95, 115, 101, 114, 105, 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, 0, - 21, 116, 97, 98, 108, 101, 46, 114, 101, 109, 111, 118, 101, 95, 98, 111, 120, 46, 98, 97, - 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 36, 116, 97, 98, 108, 101, 46, 114, 101, 109, - 111, 118, 101, 95, 98, 111, 120, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 115, 101, 114, - 105, 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, 0, 28, 116, 97, 98, 108, - 101, 46, 100, 101, 115, 116, 114, 111, 121, 95, 101, 109, 112, 116, 121, 95, 98, 111, 120, 46, - 98, 97, 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 29, 116, 97, 98, 108, 101, 46, 100, - 114, 111, 112, 95, 117, 110, 99, 104, 101, 99, 107, 101, 100, 95, 98, 111, 120, 46, 98, 97, - 115, 101, 208, 7, 0, 0, 0, 0, 0, 0, 15, 109, 105, 115, 99, 46, 97, 98, 115, 95, - 118, 97, 108, 46, 117, 56, 40, 0, 0, 0, 0, 0, 0, 0, 16, 109, 105, 115, 99, 46, - 97, 98, 115, 95, 118, 97, 108, 46, 117, 54, 52, 40, 0, 0, 0, 0, 0, 0, 0, 17, - 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 117, 49, 50, 56, 40, 0, 0, - 0, 0, 0, 0, 0, 17, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 98, - 111, 111, 108, 40, 0, 0, 0, 0, 0, 0, 0, 20, 109, 105, 115, 99, 46, 97, 98, 115, - 95, 118, 97, 108, 46, 97, 100, 100, 114, 101, 115, 115, 40, 0, 0, 0, 0, 0, 0, 0, - 19, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 115, 116, 114, 117, 99, 116, - 40, 0, 0, 0, 0, 0, 0, 0, 19, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, - 108, 46, 118, 101, 99, 116, 111, 114, 40, 0, 0, 0, 0, 0, 0, 0, 22, 109, 105, 115, - 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 114, 101, 102, 101, 114, 101, 110, 99, 101, 40, - 0, 0, 0, 0, 0, 0, 0, 26, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, - 46, 112, 101, 114, 95, 117, 56, 95, 112, 97, 99, 107, 101, 100, 1, 0, 0, 0, 0, 0, - 0, 0, 27, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, - 117, 54, 52, 95, 112, 97, 99, 107, 101, 100, 8, 0, 0, 0, 0, 0, 0, 0, 28, 109, - 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, 117, 49, 50, 56, - 95, 112, 97, 99, 107, 101, 100, 16, 0, 0, 0, 0, 0, 0, 0, 28, 109, 105, 115, 99, - 46, 97, 98, 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, 98, 111, 111, 108, 95, 112, 97, - 99, 107, 101, 100, 1, 0, 0, 0, 0, 0, 0, 0, 31, 109, 105, 115, 99, 46, 97, 98, - 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, 97, 100, 100, 114, 101, 115, 115, 95, 112, 97, - 99, 107, 101, 100, 32, 0, 0, 0, 0, 0, 0, 0, - ]; - - gas_schedule::set_gas_schedule(&framework_signer, gas_schedule_blob); - } -} diff --git a/premainnet/proposals/sources/2-set-default-gas-schedule.move b/premainnet/proposals/sources/2-set-default-gas-schedule.move deleted file mode 100644 index 4be6942..0000000 --- a/premainnet/proposals/sources/2-set-default-gas-schedule.move +++ /dev/null @@ -1,642 +0,0 @@ -// Gas schedule upgrade proposal - -// Feature version: 3 -// -// Entries: -// instr.nop : 200 -// instr.ret : 1200 -// instr.abort : 1200 -// instr.br_true : 2400 -// instr.br_false : 2400 -// instr.branch : 1600 -// instr.pop : 800 -// instr.ld_u8 : 1200 -// instr.ld_u64 : 1200 -// instr.ld_u128 : 1600 -// instr.ld_true : 1200 -// instr.ld_false : 1200 -// instr.ld_const.base : 13000 -// instr.ld_const.per_byte : 700 -// instr.imm_borrow_loc : 1200 -// instr.mut_borrow_loc : 1200 -// instr.imm_borrow_field : 4000 -// instr.mut_borrow_field : 4000 -// instr.imm_borrow_field_generic : 4000 -// instr.mut_borrow_field_generic : 4000 -// instr.copy_loc.base : 1600 -// instr.copy_loc.per_abs_val_unit : 80 -// instr.move_loc.base : 2400 -// instr.st_loc.base : 2400 -// instr.call.base : 20000 -// instr.call.per_arg : 2000 -// instr.call.per_local : 2000 -// instr.call_generic.base : 20000 -// instr.call_generic.per_ty_arg : 2000 -// instr.call_generic.per_arg : 2000 -// instr.call_generic.per_local : 2000 -// instr.pack.base : 4400 -// instr.pack.per_field : 800 -// instr.pack_generic.base : 4400 -// instr.pack_generic.per_field : 800 -// instr.unpack.base : 4400 -// instr.unpack.per_field : 800 -// instr.unpack_generic.base : 4400 -// instr.unpack_generic.per_field : 800 -// instr.read_ref.base : 4000 -// instr.read_ref.per_abs_val_unit : 80 -// instr.write_ref.base : 4000 -// instr.freeze_ref : 200 -// instr.cast_u8 : 2400 -// instr.cast_u64 : 2400 -// instr.cast_u128 : 2400 -// instr.add : 3200 -// instr.sub : 3200 -// instr.mul : 3200 -// instr.mod : 3200 -// instr.div : 3200 -// instr.bit_or : 3200 -// instr.bit_and : 3200 -// instr.bit_xor : 3200 -// instr.bit_shl : 3200 -// instr.bit_shr : 3200 -// instr.or : 3200 -// instr.and : 3200 -// instr.not : 3200 -// instr.lt : 3200 -// instr.gt : 3200 -// instr.le : 3200 -// instr.ge : 3200 -// instr.eq.base : 2000 -// instr.eq.per_abs_val_unit : 80 -// instr.neq.base : 2000 -// instr.neq.per_abs_val_unit : 80 -// instr.imm_borrow_global.base : 10000 -// instr.imm_borrow_global_generic.base : 10000 -// instr.mut_borrow_global.base : 10000 -// instr.mut_borrow_global_generic.base : 10000 -// instr.exists.base : 5000 -// instr.exists_generic.base : 5000 -// instr.move_from.base : 7000 -// instr.move_from_generic.base : 7000 -// instr.move_to.base : 10000 -// instr.move_to_generic.base : 10000 -// instr.vec_len.base : 4400 -// instr.vec_imm_borrow.base : 6600 -// instr.vec_mut_borrow.base : 6600 -// instr.vec_push_back.base : 7600 -// instr.vec_pop_back.base : 5200 -// instr.vec_swap.base : 6000 -// instr.vec_pack.base : 12000 -// instr.vec_pack.per_elem : 800 -// instr.vec_unpack.base : 10000 -// instr.vec_unpack.per_expected_elem : 800 -// txn.min_transaction_gas_units : 1500000 -// txn.large_transaction_cutoff : 600 -// txn.intrinsic_gas_per_byte : 2000 -// txn.maximum_number_of_gas_units : 2000000 -// txn.min_price_per_gas_unit : 100 -// txn.max_price_per_gas_unit : 10000 -// txn.max_transaction_size_in_bytes : 65536 -// txn.gas_unit_scaling_factor : 10000 -// txn.load_data.base : 16000 -// txn.load_data.per_byte : 1000 -// txn.load_data.failure : 0 -// txn.write_data.per_op : 160000 -// txn.write_data.new_item : 1280000 -// txn.write_data.per_byte_in_key : 10000 -// txn.write_data.per_byte_in_val : 10000 -// txn.memory_quota : 10000000 -// move_stdlib.bcs.to_bytes.per_byte_serialized : 200 -// move_stdlib.bcs.to_bytes.failure : 20000 -// move_stdlib.hash.sha2_256.base : 60000 -// move_stdlib.hash.sha2_256.per_byte : 1000 -// move_stdlib.hash.sha3_256.base : 80000 -// move_stdlib.hash.sha3_256.per_byte : 900 -// move_stdlib.signer.borrow_address.base : 4000 -// move_stdlib.string.check_utf8.base : 6000 -// move_stdlib.string.check_utf8.per_byte : 160 -// move_stdlib.string.is_char_boundary.base : 6000 -// move_stdlib.string.sub_string.base : 8000 -// move_stdlib.string.sub_string.per_byte : 60 -// move_stdlib.string.index_of.base : 8000 -// move_stdlib.string.index_of.per_byte_pattern : 400 -// move_stdlib.string.index_of.per_byte_searched : 200 -// aptos_framework.account.create_address.base : 6000 -// aptos_framework.account.create_signer.base : 6000 -// aptos_framework.bls12381.base : 3000 -// aptos_framework.bls12381.per_pubkey_deserialize : 2180000 -// aptos_framework.bls12381.per_pubkey_aggregate : 84000 -// aptos_framework.bls12381.per_pubkey_subgroup_check : 7400000 -// aptos_framework.bls12381.per_sig_deserialize : 4440000 -// aptos_framework.bls12381.per_sig_aggregate : 233000 -// aptos_framework.bls12381.per_sig_subgroup_check : 9210000 -// aptos_framework.bls12381.per_sig_verify : 169700000 -// aptos_framework.bls12381.per_pop_verify : 206000000 -// aptos_framework.bls12381.per_pairing : 80260000 -// aptos_framework.bls12381.per_msg_hashing : 30800000 -// aptos_framework.bls12381.per_byte_hashing : 1000 -// aptos_framework.signature.base : 3000 -// aptos_framework.signature.per_pubkey_deserialize : 760000 -// aptos_framework.signature.per_pubkey_small_order_check : 127000 -// aptos_framework.signature.per_sig_deserialize : 7500 -// aptos_framework.signature.per_sig_strict_verify : 5340000 -// aptos_framework.signature.per_msg_hashing_base : 64800 -// aptos_framework.signature.per_msg_byte_hashing : 1200 -// aptos_framework.secp256k1.base : 3000 -// aptos_framework.secp256k1.ecdsa_recover : 32200000 -// aptos_framework.ristretto255.basepoint_mul : 2560000 -// aptos_framework.ristretto255.basepoint_double_mul : 8800000 -// aptos_framework.ristretto255.point_add : 42700 -// aptos_framework.ristretto255.point_compress : 800000 -// aptos_framework.ristretto255.point_decompress : 810000 -// aptos_framework.ristretto255.point_equals : 46000 -// aptos_framework.ristretto255.point_from_64_uniform_bytes : 1630000 -// aptos_framework.ristretto255.point_identity : 3000 -// aptos_framework.ristretto255.point_mul : 9420000 -// aptos_framework.ristretto255.point_neg : 7200 -// aptos_framework.ristretto255.point_sub : 42600 -// aptos_framework.ristretto255.point_parse_arg : 3000 -// aptos_framework.ristretto255.scalar_sha512_per_byte : 1200 -// aptos_framework.ristretto255.scalar_sha512_per_hash : 64800 -// aptos_framework.ristretto255.scalar_add : 15400 -// aptos_framework.ristretto255.scalar_reduced_from_32_bytes : 14200 -// aptos_framework.ristretto255.scalar_uniform_from_64_bytes : 24900 -// aptos_framework.ristretto255.scalar_from_u128 : 3500 -// aptos_framework.ristretto255.scalar_from_u64 : 3500 -// aptos_framework.ristretto255.scalar_invert : 2200000 -// aptos_framework.ristretto255.scalar_is_canonical : 23000 -// aptos_framework.ristretto255.scalar_mul : 21300 -// aptos_framework.ristretto255.scalar_neg : 14500 -// aptos_framework.ristretto255.scalar_sub : 21200 -// aptos_framework.ristretto255.scalar_parse_arg : 3000 -// aptos_framework.hash.sip_hash.base : 20000 -// aptos_framework.hash.sip_hash.per_byte : 400 -// aptos_framework.hash.keccak256.base : 80000 -// aptos_framework.hash.keccak256.per_byte : 900 -// aptos_framework.type_info.type_of.base : 6000 -// aptos_framework.type_info.type_of.per_abstract_memory_unit : 100 -// aptos_framework.type_info.type_name.base : 6000 -// aptos_framework.type_info.type_name.per_abstract_memory_unit : 100 -// aptos_framework.util.from_bytes.base : 6000 -// aptos_framework.util.from_bytes.per_byte : 100 -// aptos_framework.transaction_context.get_script_hash.base : 4000 -// aptos_framework.code.request_publish.base : 10000 -// aptos_framework.code.request_publish.per_byte : 40 -// aptos_framework.event.write_to_event_store.base : 500000 -// aptos_framework.event.write_to_event_store.per_abstract_memory_unit : 5000 -// aptos_framework.state_storage.get_usage.base : 10000 -// aptos_framework.aggregator.add.base : 6000 -// aptos_framework.aggregator.read.base : 6000 -// aptos_framework.aggregator.sub.base : 6000 -// aptos_framework.aggregator.destroy.base : 10000 -// aptos_framework.aggregator_factory.new_aggregator.base : 10000 -// table.common.load.base : 8000 -// table.common.load.per_byte : 1000 -// table.common.load.failure : 0 -// table.new_table_handle.base : 20000 -// table.add_box.base : 24000 -// table.add_box.per_byte_serialized : 200 -// table.borrow_box.base : 24000 -// table.borrow_box.per_byte_serialized : 200 -// table.contains_box.base : 24000 -// table.contains_box.per_byte_serialized : 200 -// table.remove_box.base : 24000 -// table.remove_box.per_byte_serialized : 200 -// table.destroy_empty_box.base : 24000 -// table.drop_unchecked_box.base : 2000 -// misc.abs_val.u8 : 40 -// misc.abs_val.u64 : 40 -// misc.abs_val.u128 : 40 -// misc.abs_val.bool : 40 -// misc.abs_val.address : 40 -// misc.abs_val.struct : 40 -// misc.abs_val.vector : 40 -// misc.abs_val.reference : 40 -// misc.abs_val.per_u8_packed : 1 -// misc.abs_val.per_u64_packed : 8 -// misc.abs_val.per_u128_packed : 16 -// misc.abs_val.per_bool_packed : 1 -// misc.abs_val.per_address_packed : 32 - -script { - use aptos_framework::aptos_governance; - use aptos_framework::gas_schedule; - - fun main(proposal_id: u64) { - let framework_signer = aptos_governance::resolve(proposal_id, @0000000000000000000000000000000000000000000000000000000000000001); - - let gas_schedule_blob: vector = vector[ - 3, 0, 0, 0, 0, 0, 0, 0, 214, 1, 9, 105, 110, 115, 116, 114, 46, 110, 111, 112, - 200, 0, 0, 0, 0, 0, 0, 0, 9, 105, 110, 115, 116, 114, 46, 114, 101, 116, 176, 4, - 0, 0, 0, 0, 0, 0, 11, 105, 110, 115, 116, 114, 46, 97, 98, 111, 114, 116, 176, 4, - 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, 98, 114, 95, 116, 114, 117, 101, - 96, 9, 0, 0, 0, 0, 0, 0, 14, 105, 110, 115, 116, 114, 46, 98, 114, 95, 102, 97, - 108, 115, 101, 96, 9, 0, 0, 0, 0, 0, 0, 12, 105, 110, 115, 116, 114, 46, 98, 114, - 97, 110, 99, 104, 64, 6, 0, 0, 0, 0, 0, 0, 9, 105, 110, 115, 116, 114, 46, 112, - 111, 112, 32, 3, 0, 0, 0, 0, 0, 0, 11, 105, 110, 115, 116, 114, 46, 108, 100, 95, - 117, 56, 176, 4, 0, 0, 0, 0, 0, 0, 12, 105, 110, 115, 116, 114, 46, 108, 100, 95, - 117, 54, 52, 176, 4, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, 108, 100, - 95, 117, 49, 50, 56, 64, 6, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, - 108, 100, 95, 116, 114, 117, 101, 176, 4, 0, 0, 0, 0, 0, 0, 14, 105, 110, 115, 116, - 114, 46, 108, 100, 95, 102, 97, 108, 115, 101, 176, 4, 0, 0, 0, 0, 0, 0, 19, 105, - 110, 115, 116, 114, 46, 108, 100, 95, 99, 111, 110, 115, 116, 46, 98, 97, 115, 101, 200, 50, - 0, 0, 0, 0, 0, 0, 23, 105, 110, 115, 116, 114, 46, 108, 100, 95, 99, 111, 110, 115, - 116, 46, 112, 101, 114, 95, 98, 121, 116, 101, 188, 2, 0, 0, 0, 0, 0, 0, 20, 105, - 110, 115, 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 108, 111, 99, 176, - 4, 0, 0, 0, 0, 0, 0, 20, 105, 110, 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, - 114, 114, 111, 119, 95, 108, 111, 99, 176, 4, 0, 0, 0, 0, 0, 0, 22, 105, 110, 115, - 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 102, 105, 101, 108, 100, 160, - 15, 0, 0, 0, 0, 0, 0, 22, 105, 110, 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, - 114, 114, 111, 119, 95, 102, 105, 101, 108, 100, 160, 15, 0, 0, 0, 0, 0, 0, 30, 105, - 110, 115, 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 102, 105, 101, 108, - 100, 95, 103, 101, 110, 101, 114, 105, 99, 160, 15, 0, 0, 0, 0, 0, 0, 30, 105, 110, - 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 95, 102, 105, 101, 108, 100, - 95, 103, 101, 110, 101, 114, 105, 99, 160, 15, 0, 0, 0, 0, 0, 0, 19, 105, 110, 115, - 116, 114, 46, 99, 111, 112, 121, 95, 108, 111, 99, 46, 98, 97, 115, 101, 64, 6, 0, 0, - 0, 0, 0, 0, 31, 105, 110, 115, 116, 114, 46, 99, 111, 112, 121, 95, 108, 111, 99, 46, - 112, 101, 114, 95, 97, 98, 115, 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, - 0, 0, 0, 0, 19, 105, 110, 115, 116, 114, 46, 109, 111, 118, 101, 95, 108, 111, 99, 46, - 98, 97, 115, 101, 96, 9, 0, 0, 0, 0, 0, 0, 17, 105, 110, 115, 116, 114, 46, 115, - 116, 95, 108, 111, 99, 46, 98, 97, 115, 101, 96, 9, 0, 0, 0, 0, 0, 0, 15, 105, - 110, 115, 116, 114, 46, 99, 97, 108, 108, 46, 98, 97, 115, 101, 32, 78, 0, 0, 0, 0, - 0, 0, 18, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, 46, 112, 101, 114, 95, 97, 114, - 103, 208, 7, 0, 0, 0, 0, 0, 0, 20, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, - 46, 112, 101, 114, 95, 108, 111, 99, 97, 108, 208, 7, 0, 0, 0, 0, 0, 0, 23, 105, - 110, 115, 116, 114, 46, 99, 97, 108, 108, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, - 115, 101, 32, 78, 0, 0, 0, 0, 0, 0, 29, 105, 110, 115, 116, 114, 46, 99, 97, 108, - 108, 95, 103, 101, 110, 101, 114, 105, 99, 46, 112, 101, 114, 95, 116, 121, 95, 97, 114, 103, - 208, 7, 0, 0, 0, 0, 0, 0, 26, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, 95, - 103, 101, 110, 101, 114, 105, 99, 46, 112, 101, 114, 95, 97, 114, 103, 208, 7, 0, 0, 0, - 0, 0, 0, 28, 105, 110, 115, 116, 114, 46, 99, 97, 108, 108, 95, 103, 101, 110, 101, 114, - 105, 99, 46, 112, 101, 114, 95, 108, 111, 99, 97, 108, 208, 7, 0, 0, 0, 0, 0, 0, - 15, 105, 110, 115, 116, 114, 46, 112, 97, 99, 107, 46, 98, 97, 115, 101, 48, 17, 0, 0, - 0, 0, 0, 0, 20, 105, 110, 115, 116, 114, 46, 112, 97, 99, 107, 46, 112, 101, 114, 95, - 102, 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, 0, 0, 23, 105, 110, 115, 116, 114, 46, - 112, 97, 99, 107, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 48, 17, 0, - 0, 0, 0, 0, 0, 28, 105, 110, 115, 116, 114, 46, 112, 97, 99, 107, 95, 103, 101, 110, - 101, 114, 105, 99, 46, 112, 101, 114, 95, 102, 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, - 0, 0, 17, 105, 110, 115, 116, 114, 46, 117, 110, 112, 97, 99, 107, 46, 98, 97, 115, 101, - 48, 17, 0, 0, 0, 0, 0, 0, 22, 105, 110, 115, 116, 114, 46, 117, 110, 112, 97, 99, - 107, 46, 112, 101, 114, 95, 102, 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, 0, 0, 25, - 105, 110, 115, 116, 114, 46, 117, 110, 112, 97, 99, 107, 95, 103, 101, 110, 101, 114, 105, 99, - 46, 98, 97, 115, 101, 48, 17, 0, 0, 0, 0, 0, 0, 30, 105, 110, 115, 116, 114, 46, - 117, 110, 112, 97, 99, 107, 95, 103, 101, 110, 101, 114, 105, 99, 46, 112, 101, 114, 95, 102, - 105, 101, 108, 100, 32, 3, 0, 0, 0, 0, 0, 0, 19, 105, 110, 115, 116, 114, 46, 114, - 101, 97, 100, 95, 114, 101, 102, 46, 98, 97, 115, 101, 160, 15, 0, 0, 0, 0, 0, 0, - 31, 105, 110, 115, 116, 114, 46, 114, 101, 97, 100, 95, 114, 101, 102, 46, 112, 101, 114, 95, - 97, 98, 115, 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, 0, 0, 0, 0, - 20, 105, 110, 115, 116, 114, 46, 119, 114, 105, 116, 101, 95, 114, 101, 102, 46, 98, 97, 115, - 101, 160, 15, 0, 0, 0, 0, 0, 0, 16, 105, 110, 115, 116, 114, 46, 102, 114, 101, 101, - 122, 101, 95, 114, 101, 102, 200, 0, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, - 46, 99, 97, 115, 116, 95, 117, 56, 96, 9, 0, 0, 0, 0, 0, 0, 14, 105, 110, 115, - 116, 114, 46, 99, 97, 115, 116, 95, 117, 54, 52, 96, 9, 0, 0, 0, 0, 0, 0, 15, - 105, 110, 115, 116, 114, 46, 99, 97, 115, 116, 95, 117, 49, 50, 56, 96, 9, 0, 0, 0, - 0, 0, 0, 9, 105, 110, 115, 116, 114, 46, 97, 100, 100, 128, 12, 0, 0, 0, 0, 0, - 0, 9, 105, 110, 115, 116, 114, 46, 115, 117, 98, 128, 12, 0, 0, 0, 0, 0, 0, 9, - 105, 110, 115, 116, 114, 46, 109, 117, 108, 128, 12, 0, 0, 0, 0, 0, 0, 9, 105, 110, - 115, 116, 114, 46, 109, 111, 100, 128, 12, 0, 0, 0, 0, 0, 0, 9, 105, 110, 115, 116, - 114, 46, 100, 105, 118, 128, 12, 0, 0, 0, 0, 0, 0, 12, 105, 110, 115, 116, 114, 46, - 98, 105, 116, 95, 111, 114, 128, 12, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, 116, 114, - 46, 98, 105, 116, 95, 97, 110, 100, 128, 12, 0, 0, 0, 0, 0, 0, 13, 105, 110, 115, - 116, 114, 46, 98, 105, 116, 95, 120, 111, 114, 128, 12, 0, 0, 0, 0, 0, 0, 13, 105, - 110, 115, 116, 114, 46, 98, 105, 116, 95, 115, 104, 108, 128, 12, 0, 0, 0, 0, 0, 0, - 13, 105, 110, 115, 116, 114, 46, 98, 105, 116, 95, 115, 104, 114, 128, 12, 0, 0, 0, 0, - 0, 0, 8, 105, 110, 115, 116, 114, 46, 111, 114, 128, 12, 0, 0, 0, 0, 0, 0, 9, - 105, 110, 115, 116, 114, 46, 97, 110, 100, 128, 12, 0, 0, 0, 0, 0, 0, 9, 105, 110, - 115, 116, 114, 46, 110, 111, 116, 128, 12, 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, - 114, 46, 108, 116, 128, 12, 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, 114, 46, 103, - 116, 128, 12, 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, 114, 46, 108, 101, 128, 12, - 0, 0, 0, 0, 0, 0, 8, 105, 110, 115, 116, 114, 46, 103, 101, 128, 12, 0, 0, 0, - 0, 0, 0, 13, 105, 110, 115, 116, 114, 46, 101, 113, 46, 98, 97, 115, 101, 208, 7, 0, - 0, 0, 0, 0, 0, 25, 105, 110, 115, 116, 114, 46, 101, 113, 46, 112, 101, 114, 95, 97, - 98, 115, 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, 0, 0, 0, 0, 14, - 105, 110, 115, 116, 114, 46, 110, 101, 113, 46, 98, 97, 115, 101, 208, 7, 0, 0, 0, 0, - 0, 0, 26, 105, 110, 115, 116, 114, 46, 110, 101, 113, 46, 112, 101, 114, 95, 97, 98, 115, - 95, 118, 97, 108, 95, 117, 110, 105, 116, 80, 0, 0, 0, 0, 0, 0, 0, 28, 105, 110, - 115, 116, 114, 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, 98, 97, - 108, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 36, 105, 110, 115, 116, 114, - 46, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, 98, 97, 108, 95, 103, - 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 28, - 105, 110, 115, 116, 114, 46, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, - 98, 97, 108, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 36, 105, 110, 115, - 116, 114, 46, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 95, 103, 108, 111, 98, 97, 108, - 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, - 0, 17, 105, 110, 115, 116, 114, 46, 101, 120, 105, 115, 116, 115, 46, 98, 97, 115, 101, 136, - 19, 0, 0, 0, 0, 0, 0, 25, 105, 110, 115, 116, 114, 46, 101, 120, 105, 115, 116, 115, - 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 136, 19, 0, 0, 0, 0, 0, - 0, 20, 105, 110, 115, 116, 114, 46, 109, 111, 118, 101, 95, 102, 114, 111, 109, 46, 98, 97, - 115, 101, 88, 27, 0, 0, 0, 0, 0, 0, 28, 105, 110, 115, 116, 114, 46, 109, 111, 118, - 101, 95, 102, 114, 111, 109, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, 101, 88, - 27, 0, 0, 0, 0, 0, 0, 18, 105, 110, 115, 116, 114, 46, 109, 111, 118, 101, 95, 116, - 111, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 26, 105, 110, 115, 116, 114, - 46, 109, 111, 118, 101, 95, 116, 111, 95, 103, 101, 110, 101, 114, 105, 99, 46, 98, 97, 115, - 101, 16, 39, 0, 0, 0, 0, 0, 0, 18, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, - 108, 101, 110, 46, 98, 97, 115, 101, 48, 17, 0, 0, 0, 0, 0, 0, 25, 105, 110, 115, - 116, 114, 46, 118, 101, 99, 95, 105, 109, 109, 95, 98, 111, 114, 114, 111, 119, 46, 98, 97, - 115, 101, 200, 25, 0, 0, 0, 0, 0, 0, 25, 105, 110, 115, 116, 114, 46, 118, 101, 99, - 95, 109, 117, 116, 95, 98, 111, 114, 114, 111, 119, 46, 98, 97, 115, 101, 200, 25, 0, 0, - 0, 0, 0, 0, 24, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, 112, 117, 115, 104, 95, - 98, 97, 99, 107, 46, 98, 97, 115, 101, 176, 29, 0, 0, 0, 0, 0, 0, 23, 105, 110, - 115, 116, 114, 46, 118, 101, 99, 95, 112, 111, 112, 95, 98, 97, 99, 107, 46, 98, 97, 115, - 101, 80, 20, 0, 0, 0, 0, 0, 0, 19, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, - 115, 119, 97, 112, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 19, 105, 110, - 115, 116, 114, 46, 118, 101, 99, 95, 112, 97, 99, 107, 46, 98, 97, 115, 101, 224, 46, 0, - 0, 0, 0, 0, 0, 23, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, 112, 97, 99, 107, - 46, 112, 101, 114, 95, 101, 108, 101, 109, 32, 3, 0, 0, 0, 0, 0, 0, 21, 105, 110, - 115, 116, 114, 46, 118, 101, 99, 95, 117, 110, 112, 97, 99, 107, 46, 98, 97, 115, 101, 16, - 39, 0, 0, 0, 0, 0, 0, 34, 105, 110, 115, 116, 114, 46, 118, 101, 99, 95, 117, 110, - 112, 97, 99, 107, 46, 112, 101, 114, 95, 101, 120, 112, 101, 99, 116, 101, 100, 95, 101, 108, - 101, 109, 32, 3, 0, 0, 0, 0, 0, 0, 29, 116, 120, 110, 46, 109, 105, 110, 95, 116, - 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 103, 97, 115, 95, 117, 110, 105, 116, 115, - 96, 227, 22, 0, 0, 0, 0, 0, 28, 116, 120, 110, 46, 108, 97, 114, 103, 101, 95, 116, - 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 99, 117, 116, 111, 102, 102, 88, 2, 0, - 0, 0, 0, 0, 0, 26, 116, 120, 110, 46, 105, 110, 116, 114, 105, 110, 115, 105, 99, 95, - 103, 97, 115, 95, 112, 101, 114, 95, 98, 121, 116, 101, 208, 7, 0, 0, 0, 0, 0, 0, - 31, 116, 120, 110, 46, 109, 97, 120, 105, 109, 117, 109, 95, 110, 117, 109, 98, 101, 114, 95, - 111, 102, 95, 103, 97, 115, 95, 117, 110, 105, 116, 115, 128, 132, 30, 0, 0, 0, 0, 0, - 26, 116, 120, 110, 46, 109, 105, 110, 95, 112, 114, 105, 99, 101, 95, 112, 101, 114, 95, 103, - 97, 115, 95, 117, 110, 105, 116, 100, 0, 0, 0, 0, 0, 0, 0, 26, 116, 120, 110, 46, - 109, 97, 120, 95, 112, 114, 105, 99, 101, 95, 112, 101, 114, 95, 103, 97, 115, 95, 117, 110, - 105, 116, 16, 39, 0, 0, 0, 0, 0, 0, 33, 116, 120, 110, 46, 109, 97, 120, 95, 116, - 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 115, 105, 122, 101, 95, 105, 110, 95, 98, - 121, 116, 101, 115, 0, 0, 1, 0, 0, 0, 0, 0, 27, 116, 120, 110, 46, 103, 97, 115, - 95, 117, 110, 105, 116, 95, 115, 99, 97, 108, 105, 110, 103, 95, 102, 97, 99, 116, 111, 114, - 16, 39, 0, 0, 0, 0, 0, 0, 18, 116, 120, 110, 46, 108, 111, 97, 100, 95, 100, 97, - 116, 97, 46, 98, 97, 115, 101, 128, 62, 0, 0, 0, 0, 0, 0, 22, 116, 120, 110, 46, - 108, 111, 97, 100, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 98, 121, 116, 101, 232, 3, - 0, 0, 0, 0, 0, 0, 21, 116, 120, 110, 46, 108, 111, 97, 100, 95, 100, 97, 116, 97, - 46, 102, 97, 105, 108, 117, 114, 101, 0, 0, 0, 0, 0, 0, 0, 0, 21, 116, 120, 110, - 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 111, 112, 0, 113, - 2, 0, 0, 0, 0, 0, 23, 116, 120, 110, 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, - 97, 46, 110, 101, 119, 95, 105, 116, 101, 109, 0, 136, 19, 0, 0, 0, 0, 0, 30, 116, - 120, 110, 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 98, 121, - 116, 101, 95, 105, 110, 95, 107, 101, 121, 16, 39, 0, 0, 0, 0, 0, 0, 30, 116, 120, - 110, 46, 119, 114, 105, 116, 101, 95, 100, 97, 116, 97, 46, 112, 101, 114, 95, 98, 121, 116, - 101, 95, 105, 110, 95, 118, 97, 108, 16, 39, 0, 0, 0, 0, 0, 0, 16, 116, 120, 110, - 46, 109, 101, 109, 111, 114, 121, 95, 113, 117, 111, 116, 97, 128, 150, 152, 0, 0, 0, 0, - 0, 44, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 98, 99, 115, 46, 116, 111, - 95, 98, 121, 116, 101, 115, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 115, 101, 114, 105, - 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, 0, 32, 109, 111, 118, 101, 95, - 115, 116, 100, 108, 105, 98, 46, 98, 99, 115, 46, 116, 111, 95, 98, 121, 116, 101, 115, 46, - 102, 97, 105, 108, 117, 114, 101, 32, 78, 0, 0, 0, 0, 0, 0, 30, 109, 111, 118, 101, - 95, 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 50, 95, 50, 53, - 54, 46, 98, 97, 115, 101, 96, 234, 0, 0, 0, 0, 0, 0, 34, 109, 111, 118, 101, 95, - 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 50, 95, 50, 53, 54, - 46, 112, 101, 114, 95, 98, 121, 116, 101, 232, 3, 0, 0, 0, 0, 0, 0, 30, 109, 111, - 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 51, 95, - 50, 53, 54, 46, 98, 97, 115, 101, 128, 56, 1, 0, 0, 0, 0, 0, 34, 109, 111, 118, - 101, 95, 115, 116, 100, 108, 105, 98, 46, 104, 97, 115, 104, 46, 115, 104, 97, 51, 95, 50, - 53, 54, 46, 112, 101, 114, 95, 98, 121, 116, 101, 132, 3, 0, 0, 0, 0, 0, 0, 38, - 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 105, 103, 110, 101, 114, 46, 98, - 111, 114, 114, 111, 119, 95, 97, 100, 100, 114, 101, 115, 115, 46, 98, 97, 115, 101, 160, 15, - 0, 0, 0, 0, 0, 0, 34, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, - 116, 114, 105, 110, 103, 46, 99, 104, 101, 99, 107, 95, 117, 116, 102, 56, 46, 98, 97, 115, - 101, 112, 23, 0, 0, 0, 0, 0, 0, 38, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, - 98, 46, 115, 116, 114, 105, 110, 103, 46, 99, 104, 101, 99, 107, 95, 117, 116, 102, 56, 46, - 112, 101, 114, 95, 98, 121, 116, 101, 160, 0, 0, 0, 0, 0, 0, 0, 40, 109, 111, 118, - 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 115, 95, 99, - 104, 97, 114, 95, 98, 111, 117, 110, 100, 97, 114, 121, 46, 98, 97, 115, 101, 112, 23, 0, - 0, 0, 0, 0, 0, 34, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, - 114, 105, 110, 103, 46, 115, 117, 98, 95, 115, 116, 114, 105, 110, 103, 46, 98, 97, 115, 101, - 64, 31, 0, 0, 0, 0, 0, 0, 38, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, 98, - 46, 115, 116, 114, 105, 110, 103, 46, 115, 117, 98, 95, 115, 116, 114, 105, 110, 103, 46, 112, - 101, 114, 95, 98, 121, 116, 101, 60, 0, 0, 0, 0, 0, 0, 0, 32, 109, 111, 118, 101, - 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 110, 100, 101, 120, - 95, 111, 102, 46, 98, 97, 115, 101, 64, 31, 0, 0, 0, 0, 0, 0, 44, 109, 111, 118, - 101, 95, 115, 116, 100, 108, 105, 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 110, 100, 101, - 120, 95, 111, 102, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 112, 97, 116, 116, 101, 114, - 110, 144, 1, 0, 0, 0, 0, 0, 0, 45, 109, 111, 118, 101, 95, 115, 116, 100, 108, 105, - 98, 46, 115, 116, 114, 105, 110, 103, 46, 105, 110, 100, 101, 120, 95, 111, 102, 46, 112, 101, - 114, 95, 98, 121, 116, 101, 95, 115, 101, 97, 114, 99, 104, 101, 100, 200, 0, 0, 0, 0, - 0, 0, 0, 43, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, - 97, 99, 99, 111, 117, 110, 116, 46, 99, 114, 101, 97, 116, 101, 95, 97, 100, 100, 114, 101, - 115, 115, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 42, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 99, 99, 111, 117, 110, 116, 46, - 99, 114, 101, 97, 116, 101, 95, 115, 105, 103, 110, 101, 114, 46, 98, 97, 115, 101, 112, 23, - 0, 0, 0, 0, 0, 0, 29, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 98, 97, 115, 101, 184, 11, 0, 0, - 0, 0, 0, 0, 47, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, - 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, 117, 98, 107, 101, 121, - 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, 101, 160, 67, 33, 0, 0, 0, 0, 0, - 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, - 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, 117, 98, 107, 101, 121, 95, 97, 103, 103, - 114, 101, 103, 97, 116, 101, 32, 72, 1, 0, 0, 0, 0, 0, 50, 97, 112, 116, 111, 115, - 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, - 112, 101, 114, 95, 112, 117, 98, 107, 101, 121, 95, 115, 117, 98, 103, 114, 111, 117, 112, 95, - 99, 104, 101, 99, 107, 64, 234, 112, 0, 0, 0, 0, 0, 44, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, - 101, 114, 95, 115, 105, 103, 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, 101, 192, 191, - 67, 0, 0, 0, 0, 0, 42, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 115, 105, 103, 95, - 97, 103, 103, 114, 101, 103, 97, 116, 101, 40, 142, 3, 0, 0, 0, 0, 0, 47, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, - 56, 49, 46, 112, 101, 114, 95, 115, 105, 103, 95, 115, 117, 98, 103, 114, 111, 117, 112, 95, - 99, 104, 101, 99, 107, 144, 136, 140, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, - 101, 114, 95, 115, 105, 103, 95, 118, 101, 114, 105, 102, 121, 160, 106, 29, 10, 0, 0, 0, - 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, - 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, 111, 112, 95, 118, 101, 114, 105, 102, - 121, 128, 79, 71, 12, 0, 0, 0, 0, 36, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 112, - 97, 105, 114, 105, 110, 103, 160, 171, 200, 4, 0, 0, 0, 0, 40, 97, 112, 116, 111, 115, - 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 98, 108, 115, 49, 50, 51, 56, 49, 46, - 112, 101, 114, 95, 109, 115, 103, 95, 104, 97, 115, 104, 105, 110, 103, 128, 248, 213, 1, 0, - 0, 0, 0, 41, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, - 98, 108, 115, 49, 50, 51, 56, 49, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 104, 97, - 115, 104, 105, 110, 103, 232, 3, 0, 0, 0, 0, 0, 0, 30, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, - 98, 97, 115, 101, 184, 11, 0, 0, 0, 0, 0, 0, 48, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, - 101, 114, 95, 112, 117, 98, 107, 101, 121, 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, - 101, 192, 152, 11, 0, 0, 0, 0, 0, 54, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, 101, 114, 95, - 112, 117, 98, 107, 101, 121, 95, 115, 109, 97, 108, 108, 95, 111, 114, 100, 101, 114, 95, 99, - 104, 101, 99, 107, 24, 240, 1, 0, 0, 0, 0, 0, 45, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, - 101, 114, 95, 115, 105, 103, 95, 100, 101, 115, 101, 114, 105, 97, 108, 105, 122, 101, 76, 29, - 0, 0, 0, 0, 0, 0, 47, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 115, 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, 101, 114, 95, 115, 105, 103, - 95, 115, 116, 114, 105, 99, 116, 95, 118, 101, 114, 105, 102, 121, 96, 123, 81, 0, 0, 0, - 0, 0, 46, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, - 105, 103, 110, 97, 116, 117, 114, 101, 46, 112, 101, 114, 95, 109, 115, 103, 95, 104, 97, 115, - 104, 105, 110, 103, 95, 98, 97, 115, 101, 32, 253, 0, 0, 0, 0, 0, 0, 46, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 105, 103, 110, 97, 116, - 117, 114, 101, 46, 112, 101, 114, 95, 109, 115, 103, 95, 98, 121, 116, 101, 95, 104, 97, 115, - 104, 105, 110, 103, 176, 4, 0, 0, 0, 0, 0, 0, 30, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 115, 101, 99, 112, 50, 53, 54, 107, 49, 46, 98, - 97, 115, 101, 184, 11, 0, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, - 97, 109, 101, 119, 111, 114, 107, 46, 115, 101, 99, 112, 50, 53, 54, 107, 49, 46, 101, 99, - 100, 115, 97, 95, 114, 101, 99, 111, 118, 101, 114, 64, 85, 235, 1, 0, 0, 0, 0, 42, - 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, - 114, 101, 116, 116, 111, 50, 53, 53, 46, 98, 97, 115, 101, 112, 111, 105, 110, 116, 95, 109, - 117, 108, 0, 16, 39, 0, 0, 0, 0, 0, 49, 97, 112, 116, 111, 115, 95, 102, 114, 97, - 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, - 98, 97, 115, 101, 112, 111, 105, 110, 116, 95, 100, 111, 117, 98, 108, 101, 95, 109, 117, 108, - 0, 71, 134, 0, 0, 0, 0, 0, 38, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, - 105, 110, 116, 95, 97, 100, 100, 204, 166, 0, 0, 0, 0, 0, 0, 43, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, - 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 99, 111, 109, 112, 114, 101, 115, 115, 0, - 53, 12, 0, 0, 0, 0, 0, 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, - 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, 105, - 110, 116, 95, 100, 101, 99, 111, 109, 112, 114, 101, 115, 115, 16, 92, 12, 0, 0, 0, 0, - 0, 41, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, - 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 101, 113, 117, - 97, 108, 115, 176, 179, 0, 0, 0, 0, 0, 0, 56, 97, 112, 116, 111, 115, 95, 102, 114, - 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, - 46, 112, 111, 105, 110, 116, 95, 102, 114, 111, 109, 95, 54, 52, 95, 117, 110, 105, 102, 111, - 114, 109, 95, 98, 121, 116, 101, 115, 48, 223, 24, 0, 0, 0, 0, 0, 43, 97, 112, 116, - 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, - 116, 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 105, 100, 101, 110, 116, 105, 116, 121, - 184, 11, 0, 0, 0, 0, 0, 0, 38, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, - 105, 110, 116, 95, 109, 117, 108, 224, 188, 143, 0, 0, 0, 0, 0, 38, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, - 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 110, 101, 103, 32, 28, 0, 0, 0, 0, - 0, 0, 38, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, 111, 105, 110, 116, 95, 115, 117, - 98, 104, 166, 0, 0, 0, 0, 0, 0, 44, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 112, - 111, 105, 110, 116, 95, 112, 97, 114, 115, 101, 95, 97, 114, 103, 184, 11, 0, 0, 0, 0, - 0, 0, 51, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 115, - 104, 97, 53, 49, 50, 95, 112, 101, 114, 95, 98, 121, 116, 101, 176, 4, 0, 0, 0, 0, - 0, 0, 51, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 115, - 104, 97, 53, 49, 50, 95, 112, 101, 114, 95, 104, 97, 115, 104, 32, 253, 0, 0, 0, 0, - 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 97, - 100, 100, 40, 60, 0, 0, 0, 0, 0, 0, 57, 97, 112, 116, 111, 115, 95, 102, 114, 97, - 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, - 115, 99, 97, 108, 97, 114, 95, 114, 101, 100, 117, 99, 101, 100, 95, 102, 114, 111, 109, 95, - 51, 50, 95, 98, 121, 116, 101, 115, 120, 55, 0, 0, 0, 0, 0, 0, 57, 97, 112, 116, - 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, - 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 117, 110, 105, 102, 111, 114, 109, - 95, 102, 114, 111, 109, 95, 54, 52, 95, 98, 121, 116, 101, 115, 68, 97, 0, 0, 0, 0, - 0, 0, 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, - 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 102, - 114, 111, 109, 95, 117, 49, 50, 56, 172, 13, 0, 0, 0, 0, 0, 0, 44, 97, 112, 116, - 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, - 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 102, 114, 111, 109, 95, 117, 54, - 52, 172, 13, 0, 0, 0, 0, 0, 0, 42, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, - 99, 97, 108, 97, 114, 95, 105, 110, 118, 101, 114, 116, 192, 145, 33, 0, 0, 0, 0, 0, - 48, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, - 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 105, 115, 95, - 99, 97, 110, 111, 110, 105, 99, 97, 108, 216, 89, 0, 0, 0, 0, 0, 0, 39, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, - 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 109, 117, 108, 52, 83, 0, - 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, - 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, - 114, 95, 110, 101, 103, 164, 56, 0, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, - 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, 115, 116, 114, 101, 116, 116, 111, 50, - 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 115, 117, 98, 208, 82, 0, 0, 0, 0, 0, - 0, 45, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 114, 105, - 115, 116, 114, 101, 116, 116, 111, 50, 53, 53, 46, 115, 99, 97, 108, 97, 114, 95, 112, 97, - 114, 115, 101, 95, 97, 114, 103, 184, 11, 0, 0, 0, 0, 0, 0, 34, 97, 112, 116, 111, - 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 104, 97, 115, 104, 46, 115, 105, 112, - 95, 104, 97, 115, 104, 46, 98, 97, 115, 101, 32, 78, 0, 0, 0, 0, 0, 0, 38, 97, - 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 104, 97, 115, 104, 46, - 115, 105, 112, 95, 104, 97, 115, 104, 46, 112, 101, 114, 95, 98, 121, 116, 101, 144, 1, 0, - 0, 0, 0, 0, 0, 35, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, - 107, 46, 104, 97, 115, 104, 46, 107, 101, 99, 99, 97, 107, 50, 53, 54, 46, 98, 97, 115, - 101, 128, 56, 1, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 104, 97, 115, 104, 46, 107, 101, 99, 99, 97, 107, 50, 53, 54, - 46, 112, 101, 114, 95, 98, 121, 116, 101, 132, 3, 0, 0, 0, 0, 0, 0, 38, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 116, 121, 112, 101, 95, 105, - 110, 102, 111, 46, 116, 121, 112, 101, 95, 111, 102, 46, 98, 97, 115, 101, 112, 23, 0, 0, - 0, 0, 0, 0, 58, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, - 46, 116, 121, 112, 101, 95, 105, 110, 102, 111, 46, 116, 121, 112, 101, 95, 111, 102, 46, 112, - 101, 114, 95, 97, 98, 115, 116, 114, 97, 99, 116, 95, 109, 101, 109, 111, 114, 121, 95, 117, - 110, 105, 116, 100, 0, 0, 0, 0, 0, 0, 0, 40, 97, 112, 116, 111, 115, 95, 102, 114, - 97, 109, 101, 119, 111, 114, 107, 46, 116, 121, 112, 101, 95, 105, 110, 102, 111, 46, 116, 121, - 112, 101, 95, 110, 97, 109, 101, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, - 60, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 116, 121, 112, - 101, 95, 105, 110, 102, 111, 46, 116, 121, 112, 101, 95, 110, 97, 109, 101, 46, 112, 101, 114, - 95, 97, 98, 115, 116, 114, 97, 99, 116, 95, 109, 101, 109, 111, 114, 121, 95, 117, 110, 105, - 116, 100, 0, 0, 0, 0, 0, 0, 0, 36, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, - 101, 119, 111, 114, 107, 46, 117, 116, 105, 108, 46, 102, 114, 111, 109, 95, 98, 121, 116, 101, - 115, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 40, 97, 112, 116, 111, 115, - 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 117, 116, 105, 108, 46, 102, 114, 111, 109, - 95, 98, 121, 116, 101, 115, 46, 112, 101, 114, 95, 98, 121, 116, 101, 100, 0, 0, 0, 0, - 0, 0, 0, 56, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, - 116, 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 99, 111, 110, 116, 101, 120, 116, 46, - 103, 101, 116, 95, 115, 99, 114, 105, 112, 116, 95, 104, 97, 115, 104, 46, 98, 97, 115, 101, - 160, 15, 0, 0, 0, 0, 0, 0, 41, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 99, 111, 100, 101, 46, 114, 101, 113, 117, 101, 115, 116, 95, 112, 117, - 98, 108, 105, 115, 104, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 45, 97, - 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 99, 111, 100, 101, 46, - 114, 101, 113, 117, 101, 115, 116, 95, 112, 117, 98, 108, 105, 115, 104, 46, 112, 101, 114, 95, - 98, 121, 116, 101, 40, 0, 0, 0, 0, 0, 0, 0, 47, 97, 112, 116, 111, 115, 95, 102, - 114, 97, 109, 101, 119, 111, 114, 107, 46, 101, 118, 101, 110, 116, 46, 119, 114, 105, 116, 101, - 95, 116, 111, 95, 101, 118, 101, 110, 116, 95, 115, 116, 111, 114, 101, 46, 98, 97, 115, 101, - 32, 161, 7, 0, 0, 0, 0, 0, 67, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, - 119, 111, 114, 107, 46, 101, 118, 101, 110, 116, 46, 119, 114, 105, 116, 101, 95, 116, 111, 95, - 101, 118, 101, 110, 116, 95, 115, 116, 111, 114, 101, 46, 112, 101, 114, 95, 97, 98, 115, 116, - 114, 97, 99, 116, 95, 109, 101, 109, 111, 114, 121, 95, 117, 110, 105, 116, 136, 19, 0, 0, - 0, 0, 0, 0, 44, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, - 46, 115, 116, 97, 116, 101, 95, 115, 116, 111, 114, 97, 103, 101, 46, 103, 101, 116, 95, 117, - 115, 97, 103, 101, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 35, 97, 112, - 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 103, 103, 114, 101, 103, - 97, 116, 111, 114, 46, 97, 100, 100, 46, 98, 97, 115, 101, 112, 23, 0, 0, 0, 0, 0, - 0, 36, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 103, - 103, 114, 101, 103, 97, 116, 111, 114, 46, 114, 101, 97, 100, 46, 98, 97, 115, 101, 112, 23, - 0, 0, 0, 0, 0, 0, 35, 97, 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, - 114, 107, 46, 97, 103, 103, 114, 101, 103, 97, 116, 111, 114, 46, 115, 117, 98, 46, 98, 97, - 115, 101, 112, 23, 0, 0, 0, 0, 0, 0, 39, 97, 112, 116, 111, 115, 95, 102, 114, 97, - 109, 101, 119, 111, 114, 107, 46, 97, 103, 103, 114, 101, 103, 97, 116, 111, 114, 46, 100, 101, - 115, 116, 114, 111, 121, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, 0, 54, 97, - 112, 116, 111, 115, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 46, 97, 103, 103, 114, 101, - 103, 97, 116, 111, 114, 95, 102, 97, 99, 116, 111, 114, 121, 46, 110, 101, 119, 95, 97, 103, - 103, 114, 101, 103, 97, 116, 111, 114, 46, 98, 97, 115, 101, 16, 39, 0, 0, 0, 0, 0, - 0, 22, 116, 97, 98, 108, 101, 46, 99, 111, 109, 109, 111, 110, 46, 108, 111, 97, 100, 46, - 98, 97, 115, 101, 64, 31, 0, 0, 0, 0, 0, 0, 26, 116, 97, 98, 108, 101, 46, 99, - 111, 109, 109, 111, 110, 46, 108, 111, 97, 100, 46, 112, 101, 114, 95, 98, 121, 116, 101, 232, - 3, 0, 0, 0, 0, 0, 0, 25, 116, 97, 98, 108, 101, 46, 99, 111, 109, 109, 111, 110, - 46, 108, 111, 97, 100, 46, 102, 97, 105, 108, 117, 114, 101, 0, 0, 0, 0, 0, 0, 0, - 0, 27, 116, 97, 98, 108, 101, 46, 110, 101, 119, 95, 116, 97, 98, 108, 101, 95, 104, 97, - 110, 100, 108, 101, 46, 98, 97, 115, 101, 32, 78, 0, 0, 0, 0, 0, 0, 18, 116, 97, - 98, 108, 101, 46, 97, 100, 100, 95, 98, 111, 120, 46, 98, 97, 115, 101, 192, 93, 0, 0, - 0, 0, 0, 0, 33, 116, 97, 98, 108, 101, 46, 97, 100, 100, 95, 98, 111, 120, 46, 112, - 101, 114, 95, 98, 121, 116, 101, 95, 115, 101, 114, 105, 97, 108, 105, 122, 101, 100, 200, 0, - 0, 0, 0, 0, 0, 0, 21, 116, 97, 98, 108, 101, 46, 98, 111, 114, 114, 111, 119, 95, - 98, 111, 120, 46, 98, 97, 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 36, 116, 97, 98, - 108, 101, 46, 98, 111, 114, 114, 111, 119, 95, 98, 111, 120, 46, 112, 101, 114, 95, 98, 121, - 116, 101, 95, 115, 101, 114, 105, 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, - 0, 23, 116, 97, 98, 108, 101, 46, 99, 111, 110, 116, 97, 105, 110, 115, 95, 98, 111, 120, - 46, 98, 97, 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 38, 116, 97, 98, 108, 101, 46, - 99, 111, 110, 116, 97, 105, 110, 115, 95, 98, 111, 120, 46, 112, 101, 114, 95, 98, 121, 116, - 101, 95, 115, 101, 114, 105, 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, 0, - 21, 116, 97, 98, 108, 101, 46, 114, 101, 109, 111, 118, 101, 95, 98, 111, 120, 46, 98, 97, - 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 36, 116, 97, 98, 108, 101, 46, 114, 101, 109, - 111, 118, 101, 95, 98, 111, 120, 46, 112, 101, 114, 95, 98, 121, 116, 101, 95, 115, 101, 114, - 105, 97, 108, 105, 122, 101, 100, 200, 0, 0, 0, 0, 0, 0, 0, 28, 116, 97, 98, 108, - 101, 46, 100, 101, 115, 116, 114, 111, 121, 95, 101, 109, 112, 116, 121, 95, 98, 111, 120, 46, - 98, 97, 115, 101, 192, 93, 0, 0, 0, 0, 0, 0, 29, 116, 97, 98, 108, 101, 46, 100, - 114, 111, 112, 95, 117, 110, 99, 104, 101, 99, 107, 101, 100, 95, 98, 111, 120, 46, 98, 97, - 115, 101, 208, 7, 0, 0, 0, 0, 0, 0, 15, 109, 105, 115, 99, 46, 97, 98, 115, 95, - 118, 97, 108, 46, 117, 56, 40, 0, 0, 0, 0, 0, 0, 0, 16, 109, 105, 115, 99, 46, - 97, 98, 115, 95, 118, 97, 108, 46, 117, 54, 52, 40, 0, 0, 0, 0, 0, 0, 0, 17, - 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 117, 49, 50, 56, 40, 0, 0, - 0, 0, 0, 0, 0, 17, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 98, - 111, 111, 108, 40, 0, 0, 0, 0, 0, 0, 0, 20, 109, 105, 115, 99, 46, 97, 98, 115, - 95, 118, 97, 108, 46, 97, 100, 100, 114, 101, 115, 115, 40, 0, 0, 0, 0, 0, 0, 0, - 19, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 115, 116, 114, 117, 99, 116, - 40, 0, 0, 0, 0, 0, 0, 0, 19, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, - 108, 46, 118, 101, 99, 116, 111, 114, 40, 0, 0, 0, 0, 0, 0, 0, 22, 109, 105, 115, - 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 114, 101, 102, 101, 114, 101, 110, 99, 101, 40, - 0, 0, 0, 0, 0, 0, 0, 26, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, - 46, 112, 101, 114, 95, 117, 56, 95, 112, 97, 99, 107, 101, 100, 1, 0, 0, 0, 0, 0, - 0, 0, 27, 109, 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, - 117, 54, 52, 95, 112, 97, 99, 107, 101, 100, 8, 0, 0, 0, 0, 0, 0, 0, 28, 109, - 105, 115, 99, 46, 97, 98, 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, 117, 49, 50, 56, - 95, 112, 97, 99, 107, 101, 100, 16, 0, 0, 0, 0, 0, 0, 0, 28, 109, 105, 115, 99, - 46, 97, 98, 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, 98, 111, 111, 108, 95, 112, 97, - 99, 107, 101, 100, 1, 0, 0, 0, 0, 0, 0, 0, 31, 109, 105, 115, 99, 46, 97, 98, - 115, 95, 118, 97, 108, 46, 112, 101, 114, 95, 97, 100, 100, 114, 101, 115, 115, 95, 112, 97, - 99, 107, 101, 100, 32, 0, 0, 0, 0, 0, 0, 0, - ]; - - gas_schedule::set_gas_schedule(&framework_signer, gas_schedule_blob); - } -}