diff --git a/README.md b/README.md index c70fd175..fdb8d0e4 100644 --- a/README.md +++ b/README.md @@ -158,10 +158,11 @@ scarb run integration_tests tests/data/light_481823.json Re-generate integration test data: ```base -scarb run regenerate_tests +scarb run regenerate_tests --force ``` -* Files will be created in [tests/data/](https://github.com/keep-starknet-strange/raito/blob/main/tests/data) +* Without `--force` flag only non-existent files will be created +* Files are located in [tests/data/](https://github.com/keep-starknet-strange/raito/blob/main/tests/data) * If you want to add a new test case, edit [scripts/data/regenerate_tests.sh](https://github.com/keep-starknet-strange/raito/blob/main/scripts/data/regenerate_tests.sh) ## Build dependencies diff --git a/scripts/data/format_args.py b/scripts/data/format_args.py index 188f3fa8..baff5b81 100644 --- a/scripts/data/format_args.py +++ b/scripts/data/format_args.py @@ -13,7 +13,7 @@ def serialize(obj): dec string (0-9) -> (int, int) -> u256 = { lo: felt252, hi: felt252 } hex string (0-F), 64 len -> (int, int, int, int, int, int, int, int) -> Hash !reversed! hex string 0x prefixed -> ([int, ...], int, int) -> ByteArray - list -> [] + list -> tuple(len(list), *list) dict -> tuple(dict.values) """ if isinstance(obj, bool): @@ -23,7 +23,11 @@ def serialize(obj): assert(obj >= 0 and obj < 2 ** 252) return obj elif isinstance(obj, str): - if obj.isdigit(): + if obj == "0" * 64: + # special case - zero hash + return (0, 0, 0, 0, 0, 0, 0, 0) + elif obj.isdigit(): + # TODO: there might still be collisions with hashes # Try to cast to int and then to low/high parts num = int(obj) assert(num >= 0 and num < 2 ** 256) @@ -39,14 +43,15 @@ def serialize(obj): main = [int.from_bytes(src[i:i+31], 'big') for i in range(0, main_len, 31)] # TODO: check if this is how byte31 is implemented rem = int.from_bytes(src[main_len:].rjust(31, b'\x00'), 'big') - return (main, rem, rem_len) + return tuple([len(main)] + main + [rem, rem_len]) else: # Reversed hex string into 4-byte words then into BE u32 assert(len(obj) == 64) rev = list(reversed(bytes.fromhex(obj))) return tuple(int.from_bytes(rev[i:i+4], 'big') for i in range(0, 32, 4)) elif isinstance(obj, list): - return list(map(serialize, obj)) + arr = list(map(serialize, obj)) + return tuple([len(arr)] + arr) elif isinstance(obj, dict): return tuple(map(serialize, obj.values())) elif isinstance(obj, tuple): @@ -105,7 +110,7 @@ def format_args(): raise TypeError("Expected single argument") args = json.loads(Path(sys.argv[1]).read_text()) res = flatten_tuples(serialize(args)) - print(res) + print([res]) if __name__ == '__main__': diff --git a/scripts/data/generate_data.py b/scripts/data/generate_data.py index 400f86ef..4d6d1fbf 100755 --- a/scripts/data/generate_data.py +++ b/scripts/data/generate_data.py @@ -130,20 +130,20 @@ def fetch_block(block_hash: str): def resolve_transaction(transaction: dict): - """ + """Resolves transaction inputs and formats the content according to the Cairo type. """ return { "version": transaction['version'], # Skip the first 4 bytes (version) and take the next 4 bytes (marker + flag) "is_segwit": transaction["hex"][8:12] == "0001", - "lock_time": transaction['locktime'], "inputs": [resolve_input(input) for input in transaction['vin']], "outputs": [format_output(output) for output in transaction['vout']], + "lock_time": transaction['locktime'], } def resolve_input(input: dict): - """ + """Resolves referenced UTXO and formats the transaction inputs according to the Cairo type. """ if input.get('coinbase'): return format_coinbase_input(input) @@ -151,13 +151,14 @@ def resolve_input(input: dict): return { "script": f'0x{input["scriptSig"]["hex"]}', "sequence": input['sequence'], - "witness": [f'0x{item}' for item in input.get('txinwitness', [])], "previous_output": resolve_outpoint(input), + "witness": [f'0x{item}' for item in input.get('txinwitness', [])], } def resolve_outpoint(input: dict): - """ + """Fetches transaction and block header for the referenced output, + formats resulting outpoint according to the Cairo type. """ tx = request_rpc("getrawtransaction", [input['txid'], True]) block = request_rpc("getblockheader", [tx['blockhash']]) @@ -172,12 +173,11 @@ def resolve_outpoint(input: dict): def format_coinbase_input(input: dict): - """ + """Formats coinbase input according to the Cairo type. """ return { "script": f'0x{input["coinbase"]}', "sequence": input["sequence"], - "witness": [], "previous_output": { "txid": "0" * 64, "vout": 0xffffffff, @@ -190,17 +190,17 @@ def format_coinbase_input(input: dict): "block_time": 0, "is_coinbase": False, }, + "witness": [] } def format_output(output: dict): - """ + """Formats transaction output according to the Cairo type. """ return { "value": int(output["value"] * 100000000), "pk_script": f'0x{output["scriptPubKey"]["hex"]}', "cached": False, - # TODO: create a hash set of all inputs/outputs in the block and propagate down } diff --git a/scripts/data/integration_tests.sh b/scripts/data/integration_tests.sh index 4d410313..3b33380f 100755 --- a/scripts/data/integration_tests.sh +++ b/scripts/data/integration_tests.sh @@ -1,7 +1,6 @@ #!/usr/bin/env bash set -e; -set -o pipefail; GREEN='\033[0;32m' RED='\033[1;31m' @@ -13,11 +12,10 @@ num_ignored=0 failures=() test_files="tests/data"/* -# TODO: fix bugs ignored_files=( "tests/data/light_481823.json" "tests/data/light_709631.json" - "tests/data/full_169.json" + "tests/data/full_757738.json" ) ignored="${ignored_files[@]}" @@ -41,11 +39,16 @@ for test_file in $test_files; do if [[ "$output" == *"OK"* ]]; then echo -e "${GREEN} ok ${RESET}(gas usage est.: $gas_spent)" num_ok=$((num_ok + 1)) - else + elif [[ "$output" == *"FAIL"* ]]; then echo -e "${RED} fail ${RESET}(gas usage est.: $gas_spent)" num_fail=$((num_fail + 1)) error=$(echo $output | grep -o "error='[^']*'" | sed "s/error=//") failures+="\te2e:$test_file — Panicked with $error\n" + else + echo -e "${RED} fail ${RESET}(gas usage est.: 0)" + num_fail=$((num_fail + 1)) + error=$(echo "$output" | sed '1d') + failures+="\te2e:$test_file — $error\n" fi fi fi diff --git a/scripts/data/regenerate_tests.sh b/scripts/data/regenerate_tests.sh index 2e038896..50774d13 100755 --- a/scripts/data/regenerate_tests.sh +++ b/scripts/data/regenerate_tests.sh @@ -8,7 +8,13 @@ then export $(cat .env | xargs) fi -test_cases=( +force=0 + +if [[ "$1" == "--force" ]]; then + force=1 +fi + +light_test_cases=( 169 # Block containing first P2P tx to Hal Finney (170) 24834 # Block containing first off ramp tx from Martti Malmi (24835) 57042 # Block containing pizza tx (57043) @@ -25,13 +31,29 @@ test_cases=( 839999 # Fourth halving block (840000) ) +full_test_cases=( + 169 # Block containing first P2P tx to Hal Finney (170) + 757738 # Block with witness (757739) +) + mkdir tests/data || true -# Loop through the test cases and generate data -for test_case in "${test_cases[@]}"; do +# Generate test file if it does not exist yet or if "force" flag is set +generate_test() { + local mode=$1 + local height=$2 + test_file="tests/data/${mode}_${test_case}.json" + if [[ ! -f "$test_file" || $force -eq 1 ]]; then + python scripts/data/generate_data.py $mode $height 1 true $test_file + fi +} + +for test_case in "${light_test_cases[@]}"; do echo "Generating test data: light mode, chain state @ $test_case, single block" - python scripts/data/generate_data.py "light" $test_case 1 true tests/data/light_${test_case}.json + generate_test "light" $test_case done -# TODO: generate more full blocks -python scripts/data/generate_data.py "full" $test_case 1 true tests/data/full_169.json \ No newline at end of file +for test_case in "${full_test_cases[@]}"; do + echo "Generating test data: full mode, chain state @ $test_case, single block" + generate_test "full" $test_case +done \ No newline at end of file diff --git a/src/main.cairo b/src/main.cairo index fd4cf98e..714279e5 100644 --- a/src/main.cairo +++ b/src/main.cairo @@ -1,13 +1,25 @@ use crate::types::block::Block; use crate::types::chain_state::{ChainState, BlockValidator}; +/// Raito program arguments. +#[derive(Serde)] +struct Args { + /// Current (initial) chain state + chain_state: ChainState, + /// Batch of blocks that have to be applied to the current chain state + blocks: Array, +} + /// Raito program entrypoint. /// /// Receives current chain state and pending blocks, /// then validates and applies them one by one. /// Returns new chain state in case of succes, otherwise raises an error. -fn main(mut chain_state: ChainState, mut blocks: Array) -> ChainState { - while let Option::Some(block) = blocks.pop_front() { +fn main(mut arguments: Span) -> ChainState { + let Args { mut chain_state, blocks, } = Serde::deserialize(ref arguments) + .expect('Failed to deserialize'); + + for block in blocks { chain_state = chain_state.validate_and_apply(block).expect('Validation failed'); }; chain_state diff --git a/src/test.cairo b/src/test.cairo index 46bc53c7..da9f7d80 100644 --- a/src/test.cairo +++ b/src/test.cairo @@ -2,15 +2,29 @@ use crate::types::block::Block; use crate::types::chain_state::{ChainState, BlockValidator}; use core::testing::get_available_gas; +/// Integration testing program arguments. +#[derive(Serde)] +struct Args { + /// Current (initial) chain state + chain_state: ChainState, + /// Batch of blocks that have to be applied to the current chain state + blocks: Array, + /// Expected chain state (that we want to compare the result with) + expected_chain_state: ChainState, +} + /// Integration testing program entrypoint. /// -/// Receives current chain state, pending blocks, and expected result. -/// Validates and applies blocks one by one, exits on first failure. -fn test( - mut chain_state: ChainState, mut blocks: Array, mut expected_chain_state: ChainState -) { +/// Receives arguments in a serialized format (Cairo serde). +/// Panics in case of a validation error or chain state mismatch. +/// Prints result to the stdout. +fn test(mut arguments: Span) { + let Args { mut chain_state, blocks, expected_chain_state } = Serde::deserialize(ref arguments) + .expect('Failed to deserialize'); + let mut gas_before = get_available_gas(); - while let Option::Some(block) = blocks.pop_front() { + + for block in blocks { let height = chain_state.block_height + 1; match chain_state.validate_and_apply(block) { Result::Ok(new_chain_state) => { @@ -28,6 +42,7 @@ fn test( } } }; + if chain_state != expected_chain_state { println!( "FAIL: block={} error='expected state {:?}, actual {:?}'", diff --git a/src/types/block.cairo b/src/types/block.cairo index 4dd66dd0..be4765c4 100644 --- a/src/types/block.cairo +++ b/src/types/block.cairo @@ -8,7 +8,7 @@ use crate::utils::numeric::u32_byte_reverse; use super::transaction::Transaction; /// Represents a block in the blockchain. -#[derive(Drop, Copy, Debug, PartialEq, Default)] +#[derive(Drop, Copy, Debug, PartialEq, Default, Serde)] pub struct Block { /// Block header. pub header: Header, @@ -17,7 +17,7 @@ pub struct Block { } /// Represents block contents. -#[derive(Drop, Copy, Debug, PartialEq)] +#[derive(Drop, Copy, Debug, PartialEq, Serde)] pub enum TransactionData { /// Merkle root of all transactions in the block. /// This variant is used for header-only validation mode (light client). @@ -37,7 +37,7 @@ pub enum TransactionData { /// In order to do the calculation we just need data about the block that is strictly necessary, /// but not the data we can calculate like merkle root or data that we already have /// like previous_block_hash (in the previous chain state). -#[derive(Drop, Copy, Debug, PartialEq, Default)] +#[derive(Drop, Copy, Debug, PartialEq, Default, Serde)] pub struct Header { /// The version of the block. pub version: u32, diff --git a/src/types/chain_state.cairo b/src/types/chain_state.cairo index 2335cdc1..25010611 100644 --- a/src/types/chain_state.cairo +++ b/src/types/chain_state.cairo @@ -13,7 +13,7 @@ use crate::validation::{ use super::block::{BlockHash, Block, TransactionData}; /// Represents the state of the blockchain. -#[derive(Drop, Copy, Debug, PartialEq)] +#[derive(Drop, Copy, Debug, PartialEq, Serde)] pub struct ChainState { /// Height of the current block. pub block_height: u32, diff --git a/src/types/transaction.cairo b/src/types/transaction.cairo index b1a69039..5e68d3a2 100644 --- a/src/types/transaction.cairo +++ b/src/types/transaction.cairo @@ -8,7 +8,7 @@ use crate::codec::{Encode, TransactionCodec}; /// Represents a transaction. /// https://learnmeabitcoin.com/technical/transaction/ -#[derive(Drop, Copy, Debug, PartialEq)] +#[derive(Drop, Copy, Debug, PartialEq, Serde)] pub struct Transaction { /// The version of the transaction. pub version: u32, @@ -29,7 +29,7 @@ pub struct Transaction { /// Input of a transaction. /// https://learnmeabitcoin.com/technical/transaction/input/ -#[derive(Drop, Copy, Debug, PartialEq)] +#[derive(Drop, Copy, Debug, PartialEq, Serde)] pub struct TxIn { /// The signature script which satisfies the conditions placed in the txo pubkey script /// or coinbase script that contains block height (since 227,836) and miner nonce (optional). @@ -77,7 +77,7 @@ pub struct TxIn { /// one by one, first inputs then outputs. Output validation might put something to the /// cache while input validation might remove an item, thus it's important to maintain /// the order. -#[derive(Drop, Copy, Debug, PartialEq)] +#[derive(Drop, Copy, Debug, PartialEq, Serde)] pub struct OutPoint { /// The hash of the referenced transaction. pub txid: Hash, @@ -112,7 +112,7 @@ pub struct OutPoint { /// - Do nothing in case of a provably unspendable output /// /// Read more: https://en.bitcoin.it/wiki/Script#Provably_Unspendable/Prunable_Outputs -#[derive(Drop, Copy, Debug, PartialEq)] +#[derive(Drop, Copy, Debug, PartialEq, Serde)] pub struct TxOut { /// The value of the output in satoshis. /// Can be in range [0, 21_000_000] BTC (including both ends). @@ -125,6 +125,19 @@ pub struct TxOut { pub cached: bool, } +impl ByteArraySnapSerde of Serde<@ByteArray> { + fn serialize(self: @@ByteArray, ref output: Array) { + (*self).serialize(ref output); + } + + fn deserialize(ref serialized: Span) -> Option<@ByteArray> { + match Serde::deserialize(ref serialized) { + Option::Some(res) => Option::Some(@res), + Option::None => Option::None, + } + } +} + impl TxOutDefault of Default { fn default() -> TxOut { TxOut { value: 0, pk_script: @"", cached: false, } diff --git a/src/utils/hash.cairo b/src/utils/hash.cairo index 9542870a..d2e9278f 100644 --- a/src/utils/hash.cairo +++ b/src/utils/hash.cairo @@ -7,7 +7,7 @@ use super::bit_shifts::{shl, shr}; /// 256-bit hash digest. /// Represented as an array of 4-byte words. -#[derive(Copy, Drop, Debug, Default)] +#[derive(Copy, Drop, Debug, Default, Serde)] pub struct Hash { pub value: [u32; 8] } diff --git a/src/utils/numeric.cairo b/src/utils/numeric.cairo index 51992bd0..1ad6c817 100644 --- a/src/utils/numeric.cairo +++ b/src/utils/numeric.cairo @@ -10,7 +10,6 @@ pub fn u32_byte_reverse(word: u32) -> u32 { return byte0 + byte1 + byte2 + byte3; } - #[cfg(test)] mod tests { use super::u32_byte_reverse; diff --git a/src/validation/work.cairo b/src/validation/work.cairo index 67ee5371..fa7f5259 100644 --- a/src/validation/work.cairo +++ b/src/validation/work.cairo @@ -8,7 +8,11 @@ pub fn validate_proof_of_work(target: u256, block_hash: Hash) -> Result<(), Byte Result::Ok(()) } else { Result::Err( - "Insufficient proof of work. Expected block hash {chain_state.best_block_hash} to be less than or equal to {target}." + format!( + "Insufficient proof of work. Expected block hash {:?} to be less than or equal to {}.", + block_hash, + target + ) ) } } diff --git a/tests/data/full_169.json b/tests/data/full_169.json index 555bde63..0407f7a0 100644 --- a/tests/data/full_169.json +++ b/tests/data/full_169.json @@ -33,12 +33,10 @@ { "version": 1, "is_segwit": false, - "lock_time": 0, "inputs": [ { "script": "0x04ffff001d0102", "sequence": 4294967295, - "witness": [], "previous_output": { "txid": "0000000000000000000000000000000000000000000000000000000000000000", "vout": 4294967295, @@ -50,7 +48,8 @@ "block_height": 0, "block_time": 0, "is_coinbase": false - } + }, + "witness": [] } ], "outputs": [ @@ -59,17 +58,16 @@ "pk_script": "0x4104d46c4968bde02899d2aa0963367c7a6ce34eec332b32e42e5f3407e052d64ac625da6f0718e7b302140434bd725706957c092db53805b821a85b23a7ac61725bac", "cached": false } - ] + ], + "lock_time": 0 }, { "version": 1, "is_segwit": false, - "lock_time": 0, "inputs": [ { "script": "0x47304402204e45e16932b8af514961a1d3a1a25fdf3f4f7732e9d624c6c61548ab5fb8cd410220181522ec8eca07de4860a4acdd12909d831cc56cbbac4622082221a8768d1d0901", "sequence": 4294967295, - "witness": [], "previous_output": { "txid": "0437cd7f8525ceed2324359c2d0ba26006d92d856a9c20fa0241106ee5a597c9", "vout": 0, @@ -81,7 +79,8 @@ "block_height": 9, "block_time": 1231473279, "is_coinbase": true - } + }, + "witness": [] } ], "outputs": [ @@ -95,7 +94,8 @@ "pk_script": "0x410411db93e1dcdb8a016b49840f8c53bc1eb68a382e97b1482ecad7b148a6909a5cb2e0eaddfb84ccf9744464f82e160bfa9b8b64f9d4c03f999b8643f656b412a3ac", "cached": false } - ] + ], + "lock_time": 0 } ] } diff --git a/tests/data/full_757738.json b/tests/data/full_757738.json new file mode 100644 index 00000000..52c19636 --- /dev/null +++ b/tests/data/full_757738.json @@ -0,0 +1,3136 @@ +{ + "chain_state": { + "block_height": 757738, + "total_work": "16927818163357589032909741096", + "best_block_hash": "00000000000000000001c4ffa847267d4f7a6842421cba3f1ec195062ea1057e", + "current_target": "859664032087861081904916640712713969859737457373741056", + "epoch_start_time": 1664333794, + "prev_timestamps": [ + 1665245428, + 1665245458, + 1665245937, + 1665247316, + 1665248544, + 1665248564, + 1665248868, + 1665249416, + 1665249581, + 1665249850, + 1665249935 + ] + }, + "blocks": [ + { + "header": { + "version": 607625220, + "time": 1665249955, + "bits": 386464174, + "nonce": 1249847859 + }, + "data": { + "variant_id": 1, + "transactions": [ + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x03eb8f0b2cfabe6d6d3d9dcc85dcc9e3b3a6327338fc9694e26302274bb3199d278d4e1aa254070ec710000000f09f909f092f4632506f6f6c2f6b0000000000000000000000000000000000000000000000000000000000000000000000050001000000", + "sequence": 0, + "previous_output": { + "txid": "0000000000000000000000000000000000000000000000000000000000000000", + "vout": 4294967295, + "data": { + "value": 0, + "pk_script": "0x", + "cached": false + }, + "block_height": 0, + "block_time": 0, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 625107042, + "pk_script": "0x76a914c825a1ecf2a6830c4401620c3a16f1995057c2ab88ac", + "cached": false + }, + { + "value": 0, + "pk_script": "0x6a24aa21a9ed094244774ccb6e1a9bac5e18c64362f993ef10b1fab0be29a73556d71dc2ea19", + "cached": false + }, + { + "value": 0, + "pk_script": "0x6a2448617468ae41c8710f96dc968af15e40e2c63e9b6ce113772e1270e70a9e98b8af205c77", + "cached": false + }, + { + "value": 0, + "pk_script": "0x6a4c2952534b424c4f434b3a768e42517d490172d22f10d04ac31c1869f299ffaa5d760c1e65d1270047bfc6", + "cached": false + } + ], + "lock_time": 1024381681 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "0790f492b6df84396870f107b3a5de666ce0465b60386ad167f9e955bf7cdcba", + "vout": 1, + "data": { + "value": 23200675, + "pk_script": "0x002044709e063fb66d783831a1237a60471d7b2a3de03a41000f4ed9e1d1afa15904", + "cached": false + }, + "block_height": 757660, + "block_time": 1665213186, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3045022100b5da1129b825b9656ce00073d54ccb23bc1a5c5ffacf14cbc5aa05cf88fef07f02200e545c3b144eec86b7f296d216eefddf9cdf9ed5bda3c8e0afa03b2a330dacc301", + "0x304402202d488b5f90951f372587e4ce66e2369fb2872bc7d6a501ec9d441ef6d58eac5d02203d22d524f5c76cdb2057e1306441f8f7d43a8945326edb327309b03d5632c2d101", + "0x522102082e5e469ef875ec63bf52b8471e78367e561a23f39c052488c020f7bd933bd82102eb9e7ad083c76bfb6beb504a67a346c2b0b67075758a70d8f7be868fc731ff17210374f3e239bf6a0b988d6bbd1798fa32829ceec30f4d345b4be172190d9e805ece53ae" + ] + } + ], + "outputs": [ + { + "value": 583994, + "pk_script": "0x76a91407c3e1c0aefbc8373f56346727bb8d317eb6f43888ac", + "cached": false + }, + { + "value": 22597480, + "pk_script": "0x002044709e063fb66d783831a1237a60471d7b2a3de03a41000f4ed9e1d1afa15904", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "bfc161461f421b3f26df00ec85cc926e41b949ec5d0f6cd6db252ccb6060468c", + "vout": 1, + "data": { + "value": 27756003, + "pk_script": "0x0020e8c919a22e5fc0c47c068b1b607dcf6fa4550198e85a2cd87041d050c6eccd39", + "cached": false + }, + "block_height": 757699, + "block_time": 1665235449, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3044022050cf62a0393ae1b425999680999c36f9bce902501ba4e6889661652e5172d7ca0220578a78155e98b47f40fca437e833ae57f19dbb47fb913df392cd00609eca91a101", + "0x3045022100c85f42e7e5ac7f9e48f622ef5ffd8dee77eb617915a9a91ecc19ea4ac097522a022020e46b8d752f4f354a10abd6f93835c94965ef1901034ff35a687dea7424f0c901", + "0x522103522f48da32df8881f8886da53d817ce311df251455747c233b1aaee2066e33352103552a0b1c0465a14754c3298d5dd3bbbdb74f54ba75493e08f556e64ac1dbab7c210374f3e239bf6a0b988d6bbd1798fa32829ceec30f4d345b4be172190d9e805ece53ae" + ] + } + ], + "outputs": [ + { + "value": 709557, + "pk_script": "0x001442cc25dc6b4cfeeb93379cb64da7af4741a8b827", + "cached": false + }, + { + "value": 9007749, + "pk_script": "0x0020e8c919a22e5fc0c47c068b1b607dcf6fa4550198e85a2cd87041d050c6eccd39", + "cached": false + }, + { + "value": 18015496, + "pk_script": "0x0020e8c919a22e5fc0c47c068b1b607dcf6fa4550198e85a2cd87041d050c6eccd39", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100b2f97b56cbf8d08820f2d669a5cf2dd2f85cf7cb739d8af358c05ec746c1ed7c0220171202fcbf5cf12d5db8d58e985a73eb6deea3e98106ddc6b0cc8593d429ce900121036f8edac3f33486257b028f15d3d9409ee157ffb8137794c78e42e7cb2a8afd47", + "sequence": 4294967295, + "previous_output": { + "txid": "5a3748b60cd712d3f6e8438d9c0429e6ab727669c958c80f4d5c2b65c0ecfc10", + "vout": 1, + "data": { + "value": 7773997, + "pk_script": "0x76a914a8da15e1b8a2a3fe71ada229143fd5f614656a4e88ac", + "cached": false + }, + "block_height": 756675, + "block_time": 1664696271, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 0, + "pk_script": "0x6a2e99c4e47fd219ecf8f6fccfd0db2d5db7339699b946acf5038125ecff9e40867c6a426fb472a80237365f129dd2cc", + "cached": false + }, + { + "value": 7763997, + "pk_script": "0x76a914a8da15e1b8a2a3fe71ada229143fd5f614656a4e88ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100d0268db92d802e682df63efdcc7fc2357f77e0ce4321714ed447fa20cb5664370220071a148751937d2f40f38bcbecd3422bbc935f553b10f721f16883375771820601210394b1c94ce637509dc81b9f7ff943b7cf74a00b2bfef6e6ef1dafa516ef362be1", + "sequence": 4294967295, + "previous_output": { + "txid": "fd233cf930a8f2d93a9562725af87c1efbf30c84ef4e72f49cdae3f74740fb0b", + "vout": 1, + "data": { + "value": 147888, + "pk_script": "0x76a91439398b5572a34b16e5c1051b930cdedc59cd4b4488ac", + "cached": false + }, + "block_height": 757589, + "block_time": 1665179059, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 128200, + "pk_script": "0xa914b8dc66f42dd719779b0dce4341c57ef6b3f0daa487", + "cached": false + }, + { + "value": 13640, + "pk_script": "0x76a91438767c76896728884df6ed8ca01ac15c76d7731488ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100c95be2398422c9e2e2758dee921b4856679a6cb15ebc3da20df990a87d242f6002203b31f63fd8cb515214ec0097302d1bcbb3b8a536e5fd40fb882fca975286ff5f012103c6304a6440e5d0dcc8b5d40bb8337b85de3f7ca935e9f5d5cb20d4413b2418cb", + "sequence": 4294967295, + "previous_output": { + "txid": "2fc704cb2ca9605a3ff3100688a58108075c845c25848f9df92018597481486e", + "vout": 39, + "data": { + "value": 2304900, + "pk_script": "0x76a9144fc520fd6541feb49bf8764197015fd104130c4488ac", + "cached": false + }, + "block_height": 757688, + "block_time": 1665230030, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 1538383, + "pk_script": "0x76a914d62eb6f5d053ccb2b1dd29a1b6cbfdf18c563a8b88ac", + "cached": false + }, + { + "value": 762431, + "pk_script": "0xa9141b36948661779ffcc7e751e89626ba3ac108f41e87", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x2200200a10af875584ca75227367c5b59d9cbeef75c13b233ebcfade5a76d483acfd54", + "sequence": 4294967295, + "previous_output": { + "txid": "118ea07e62c6e2176276da32f29f25be73f67d76159f433fc7de7ac06a89dd5c", + "vout": 2, + "data": { + "value": 179473776, + "pk_script": "0xa914ad61e432763c7b97befb092143cfefdee732745987", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x304402207bdae480c39215fbe7aee7b194d561462ea7175e36439fd3315ec1cbdafbc34c02202f71a9b4dcc96ac102181c920ae30089961d0986fd7d72a2e2a4ccf58941cf6501", + "0x304402202b32e51f0de5d9843bd8fe544a7495dc39d34b7ffd77472239028e95a8e7010302206c5a4399b9a6ba0be0273ae93cc9694c5f23d8cddeed8da4f6bf933cd475954101", + "0x5221035b1986262eae5c87cba1d666d67f3431b07df4b6872516bcbdb714420533bfdc210313078deae653b5294bb6a907cee2f1f6ab5efe47f6bd1c070f95043c4d4fec1b52ae" + ] + } + ], + "outputs": [ + { + "value": 227292, + "pk_script": "0xa9145618a38882b9183c70aced626b2762cd1fbefc7d87", + "cached": false + }, + { + "value": 3463252, + "pk_script": "0x00140a7d4c37950e5c2017d49a491940d1253961cdc0", + "cached": false + }, + { + "value": 3244165, + "pk_script": "0x76a91492953624999258111399827206da1b25951ea12b88ac", + "cached": false + }, + { + "value": 172536085, + "pk_script": "0xa914ad61e432763c7b97befb092143cfefdee732745987", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "7610dfe3a5dde5b982af9dd3c6a389ee7ac990c73b04b3378253b24d7aea7a4d", + "vout": 135, + "data": { + "value": 14389748, + "pk_script": "0x001415d1e061eaa8f8d5e11c5f336a16be272bc356c0", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x3044022031ca6166476f98341afc9ce5a320a4f9ff202980b9daece19c39cf54a19e08ae02202180a49b94d1d81c1afd34e37eeff01821961dc3a35c7aa3ea3e39b2f22bd50501", + "0x02490ac82fe09d4a58ef4e2d0e036f5b2599e3159273a8a7070e8c7c5097a42eb6" + ] + }, + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "c740ed30c534acfd8d1707dc57ddd26d7de696fd538d014279a891c2926699cd", + "vout": 1, + "data": { + "value": 18645200, + "pk_script": "0x0014ad284c3f64b4c67fb0c92f659a6327d61a43c4a4", + "cached": false + }, + "block_height": 757701, + "block_time": 1665236549, + "is_coinbase": false + }, + "witness": [ + "0x304402201db8021a84ac2a6fc20b5ee8cea19d3309fc6f681a31f9950b1663df44c4ba2702203d031ba946d03b4173edddcfbac6c5a13196718bf3b23d89b4cacb7f2490648801", + "0x02dd53cdd9e1ffbd318aabbd326ad3f019fabde84c24c3a9942cc246abb395f713" + ] + } + ], + "outputs": [ + { + "value": 10459160, + "pk_script": "0x0014efbdc8bc5443d7b88353727a1d189be211befd61", + "cached": false + }, + { + "value": 22573669, + "pk_script": "0x76a9147785dbc679f35eb873b08e6aba4e6e44f437a03188ac", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "a92a8206165b3bb39431f252426aede76b51a128960daf155599d522e5a5a1d4", + "vout": 1, + "data": { + "value": 14020803, + "pk_script": "0x00144a93ec2dffcca4a6dd45e29184a8c05c9005594d", + "cached": false + }, + "block_height": 757445, + "block_time": 1665105449, + "is_coinbase": false + }, + "witness": [ + "0x3045022100f82f07dc5147dcf446bad47eaa2624af561320a457d8c8f84429d9bd751ca0560220243522ce006766b57497981fee4c68913c991868b80037eb8d1fb065943c2aaa01", + "0x026dcd314b96ca39a166fdbcbcd75f329da6708ab40911b13c3e8cee212728415e" + ] + } + ], + "outputs": [ + { + "value": 1809579, + "pk_script": "0xa914b8d1750c2f062807a1c98c674393c26ee53ca5aa87", + "cached": false + }, + { + "value": 12209803, + "pk_script": "0x00144a93ec2dffcca4a6dd45e29184a8c05c9005594d", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "ef3c60cdb62be2ece50c5c20941f7df15a774eb479fb802e514211ff2e194c67", + "vout": 1, + "data": { + "value": 1825852230, + "pk_script": "0x0020ff020da2d6e6b8dafc303f8ad16c52cd8a270d35c84be7d15413fbe357489616", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x304402202f09a2e07660a10fdee494c03cbd9762c5e9d860ec928f0c39e892b7e8bbea61022064674d807499e0d15ba7ce7e3011d30bcecf0b120f4e8365599dbee8fb7c0a7901", + "0x3045022100b1601ec1b55e7fd393848d7a5b81a443c50d5dd016530d7035d0864457e49c5302200761995b19589023dfebab8d9ec7172b751ac42016e23673d32b0765effb056701", + "0x3045022100939fe4fb160d7ee6820dc9d6a15a3e5fe9189c3f1bdc0efa51db69409b3defea02205611339026cac018c48f2ad470aead9cfa3d29bc58d450ec15d6894de00ef4d701", + "0x532102415d8420d3a15fd87800ea6e15f86e33efd419f6a640e22e74875d868858612221029a78f304deb308d5b009ea6a2d644af056b6fbb99d34c5067545bdf6a154390821034e6733ac0b7e79f3eb26954f48ec1201b9b369d118a27cf968c5f36db3f663a42103b7ef6a282379693726febf21a608008ec0f6b996b1671e6aea82c31ed771bb2854ae" + ] + } + ], + "outputs": [ + { + "value": 256400, + "pk_script": "0x0014f9c3b298d224e123f770e99963480b4db9809f30", + "cached": false + }, + { + "value": 1825594462, + "pk_script": "0x0020e728f6bc6012576302efdfe30bf8e380ead17266de85aaead540bf03d3574428", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x160014516aac5451d69f5daa0a1936678be04d41933e87", + "sequence": 4294967293, + "previous_output": { + "txid": "1a4dbbec10317ba5aa3e8c507cefbcaafbe14b4ec1ad3de75219ee20dbae5b5d", + "vout": 33, + "data": { + "value": 885731, + "pk_script": "0xa914cf9fd38d1b6835e896ceac457f8bb03779873a5e87", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x3044022061e3d93fcf07e2b8f41e2969217f92372f2dcf25019705a9a91bc627619521a3022057052956cee4a14377e15051b9b51251d32e957a38a35b9c6d11032962a0cd2101", + "0x020d299720575e12bec78595418d65c5e89dedab8b26945665d88f91b7478061c9" + ] + } + ], + "outputs": [ + { + "value": 865731, + "pk_script": "0x00144fdf798f12fa3826affe94cca4984bbea8c16159", + "cached": false + }, + { + "value": 19000, + "pk_script": "0x76a9147a55d9d5e8b967bbfa9fd9c72c9b68dc41d232d988ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x160014cb54e3733a60d5457e1560f2a700424d77ce1e06", + "sequence": 4294967293, + "previous_output": { + "txid": "c62732beddb10bb55030e7bf09b1d452101a097838fe622e3be152938f86f3da", + "vout": 0, + "data": { + "value": 544248, + "pk_script": "0xa91496ac6867c3c27ae9ffcffa480dc473bf15d6b6f787", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x30440220383e825e8b8a50f802e2476e356b5d61c7941734d878d857993ef3b596832d1c022067c49cd476f066800e7cc68dd18eeacf3949a06e5ea4474ab296cf8c325b844e01", + "0x025b3137b6c55072a32e5895637fc8853509e948433559eab046674ff33046dafc" + ] + } + ], + "outputs": [ + { + "value": 524248, + "pk_script": "0x00144fdf798f12fa3826affe94cca4984bbea8c16159", + "cached": false + }, + { + "value": 19000, + "pk_script": "0x76a9147a55d9d5e8b967bbfa9fd9c72c9b68dc41d232d988ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "b9485b18852bb1bb4f4da710dd2093e5e2e94fc2973252b42ec20e8acb25d58b", + "vout": 4, + "data": { + "value": 183463429, + "pk_script": "0x00207250d91085a77a4568fa4cfd5bebb59f0b9cb3530f8154cd4fab6d28abd548fe", + "cached": false + }, + "block_height": 757395, + "block_time": 1665080032, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3044022039718a62e32b595bf6a75db606113697b3dbdbb13bc887319fea66db01b1edc002206d43e5e4adb4a407c2c866a6c3615994cd08300b16421c85019b0b4a925e46b901", + "0x304402205a5d77fd6dcf9df091704ba3957cefd201bf16ea81f2bd203648224ecd62424a022064d644cde359f95e44b0ace20a78bf068e52ab951968e3133182a60e6b60bbda01", + "0x5221030fac04165b606dea3b8f81ada5eb66ca181d5215c873fcf46623ea7cf8e98b1b2102b7836a2a9d3ff095415383cb23a5f4f1badd75e44adb17537962eafe3ded3b602102f8cb472df1ae03cfa6b65b013add7862c7d3ac3684a8a92a44192faace228aee53ae" + ] + } + ], + "outputs": [ + { + "value": 182056964, + "pk_script": "0x00207250d91085a77a4568fa4cfd5bebb59f0b9cb3530f8154cd4fab6d28abd548fe", + "cached": false + }, + { + "value": 1355131, + "pk_script": "0x001452135e57f873871a43ee6ca2cd0e1d9df2c0e2f3", + "cached": false + }, + { + "value": 50002, + "pk_script": "0x76a9140aa2eadc4137ee95a2e0d5fc9aab25beddf6aaf488ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "ac5089626afecfe3a862a9097fd46888564f558506e119ccbce80a70576c81a3", + "vout": 1, + "data": { + "value": 84127507, + "pk_script": "0x0014b15300c4943ed0cacc8d1ace259c1bd1647c5a7e", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x304402205c7be856f5c00566b69362fc91b6b95503002bec1cad5b963431c9c7b1b39ed6022069e675d2b21042b0b383c81ec4fcc0d8757c8ccf03aa4e76a63a945c866257a501", + "0x02259ae7e15f9c20b656fe18a57f27f437660ef5bd56a44af0629b2d218d13e566" + ] + } + ], + "outputs": [ + { + "value": 265657, + "pk_script": "0xa914879a9559b261053f8dd7a5ff30615e43acb2ce4f87", + "cached": false + }, + { + "value": 83861095, + "pk_script": "0x0014b15300c4943ed0cacc8d1ace259c1bd1647c5a7e", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "18dda6d74d063c7a519bdfe0cc1842337f1eef595b1124b94788b77a12f0eb8c", + "vout": 4, + "data": { + "value": 28321752, + "pk_script": "0x00140c53e64f7c954323052cb313e20a7dc16e51d3a3", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [ + "0x304402206ac579bd3be514ca52ba375685b4c1024cbe119a384620dbe330e62b334e7013022028f81a5b982c8f5155dd198ee4609a519ea51d3ed092f44542c07272fbbe23f401", + "0x02e83973f57bae5ac01da67e7fe955822d43fecfc637e38db71a787184a1ecdf27" + ] + } + ], + "outputs": [ + { + "value": 49832, + "pk_script": "0x76a914c72b4d06df88ef8357cfc4405a03c2a7e19e5e6288ac", + "cached": false + }, + { + "value": 54418, + "pk_script": "0xa9148fbb577dbc0d358170ffbc4a522a3fed490267c387", + "cached": false + }, + { + "value": 91934, + "pk_script": "0x00203be483e6af76f25f38685d378dd7094c17479bf525639476d9ddc4df3e80ec7c", + "cached": false + }, + { + "value": 1820980, + "pk_script": "0xa9147464287c5a0f4e0da4d5ef8cca92607605d13e5b87", + "cached": false + }, + { + "value": 2134387, + "pk_script": "0x76a914484cbfb72bb2fd01b1c9bbda8433f1278312f07a88ac", + "cached": false + }, + { + "value": 49500, + "pk_script": "0xa914b38f1b97f5b8668107897e80bff7e4310dbec29a87", + "cached": false + }, + { + "value": 100530, + "pk_script": "0x0014fb7e8e0dbc2a87691e45130f4a03648a27ec49bd", + "cached": false + }, + { + "value": 519500, + "pk_script": "0x76a914b4c4126bf3244753fac38edbdffc57d6b03b5a2f88ac", + "cached": false + }, + { + "value": 999500, + "pk_script": "0xa9146fd9fbef94a4f1ab12676c5a9cb330473a898e3287", + "cached": false + }, + { + "value": 452043, + "pk_script": "0x76a91474a5273974608e9d822603713c5f5fb9ed4835f088ac", + "cached": false + }, + { + "value": 792769, + "pk_script": "0x0014be5739bf1eb2d00bdda01bc1b9b6f6395ebeaf06", + "cached": false + }, + { + "value": 399500, + "pk_script": "0x76a9144b7876d78b50589bf4419c2d4be86de773b260cb88ac", + "cached": false + }, + { + "value": 50887, + "pk_script": "0xa914455493f01c68ce710f6ce41a9f02d85338931c7487", + "cached": false + }, + { + "value": 20803087, + "pk_script": "0x00140c53e64f7c954323052cb313e20a7dc16e51d3a3", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "dc285bf897d2f5050d99d2e38d132e0261d350c2dfccfb7aeb30b563d9b9e1ba", + "vout": 4, + "data": { + "value": 1216576, + "pk_script": "0x00141bafc04db6875f0372680088646832c8f8cc4c21", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x3045022100ba570d791bc8bf39a9d0d486a3b044120df1ae4af4a1853d6b9e65680629001c022063de99253111c778370f38624f55a82f9be4c510c1cd87d364407c2f1e5e1b1001", + "0x022e1e1b3604cb70fb65ef3a5b9b81703ddef030a815894d2db4a97b5df8a7cf26" + ] + } + ], + "outputs": [ + { + "value": 1216000, + "pk_script": "0xa914f0e1bce0535fcc1529f99bd3cd2100fe3d72bb9487", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "4e998c40e1f4b25bf9a2cfcf3a9e7e4f892f35b475a97da3fcd55b259713401f", + "vout": 2, + "data": { + "value": 29283990, + "pk_script": "0x00204bb6c5b9fd253342cfcba46a1920c71489d21734c8c5ebceaee2c983a3359c64", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x30440220452cbe7a95d527482991732ada2ff53f0e77e13e5cd88a99acc621b3079996130220225d96d4c4c78edf96fa3a902c38665e89f9fed9e003df7483e1b32a5afa3b7101", + "0x304402201bfd14ebf40060f3a6e9cab769242458eed459b7333afd3cb261dccc2ef106a2022036d49abc9b77c31cc17570f3e9168f266d65dc9db327defa8d236753b05f567601", + "0x52210219fb31b2737982af5c696af8bfc1a2c450e10a8c8fbd7e1a6f8f7d52d110f193210376c41ddfff6f7ee6749b78b4bd7d56cb64d7fa68fa84bc568a0fe6b1dc55f78852ae" + ] + } + ], + "outputs": [ + { + "value": 205295, + "pk_script": "0x0014eb1781db8a1658c49534e25a6498910ba55bfa25", + "cached": false + }, + { + "value": 197051, + "pk_script": "0x0014d51eb49b6f34ed6759fc48e904ab70d013a51114", + "cached": false + }, + { + "value": 189630, + "pk_script": "0x00146738f64084e2782298443f8270ed153ac82f6001", + "cached": false + }, + { + "value": 28690800, + "pk_script": "0x00204bb6c5b9fd253342cfcba46a1920c71489d21734c8c5ebceaee2c983a3359c64", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x22002004d40687646b8eb261224c18b93ee0828aa41f32e0432613171bfb44d6148b4d", + "sequence": 4294967295, + "previous_output": { + "txid": "3a1285dfce389be8e2b8bd66251b1e8b70bbd5a90cb039af76913ae4a0803e30", + "vout": 16, + "data": { + "value": 81013, + "pk_script": "0xa9140bdc3cf8a413c4823c3a41995108116f36b9085a87", + "cached": false + }, + "block_height": 757410, + "block_time": 1665085349, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x304402204da574859dd31a749d89413ed4fbd3cfb8cdc51e8113a127bd5ddf6da9d858a002201f06973c3ee25352e9684a1c6a37ff524d1c90071e6b06ed7a49013ee3c996c801", + "0x304402204ad91e512a960da8ccbb69fe861026ef9d4b8711a7f1e378ab16182008c047560220723a114668717d36dd24e0a2509f2c93507b58d0caa7467510d24aa50c7f2c4701", + "0x522103864e960165b49a91d9889dcb04f670360725c3252f64c08508602835b3002b172102c4e40bfa18abf230cd82225fd06016dada598d96b0df7dfd5f6cc775d0eb70c452ae" + ] + }, + { + "script": "0x22002004d40687646b8eb261224c18b93ee0828aa41f32e0432613171bfb44d6148b4d", + "sequence": 4294967295, + "previous_output": { + "txid": "3539758a6872a7d437236ea9b0b06e5ddfa017f700e9b9b1d61347de111c6f51", + "vout": 1, + "data": { + "value": 362235, + "pk_script": "0xa9140bdc3cf8a413c4823c3a41995108116f36b9085a87", + "cached": false + }, + "block_height": 757598, + "block_time": 1665183111, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3044022050a9f0110dc405d626269766d0984f3dfe646d3bfb72ff631fc9e6df0bc8d07302202ac5f5d1ef9e00293ea03509a63e04232b5004e9367b48c8faafaf0325cc000901", + "0x3045022100b5cec0fcf9500ca3afbfb9994307b58764fb1a3e0f2ed14d40150dc3ade88e6d0220019c6bc94b5857fe393a2f562728c9a6da47c3a85bf864e5ee21a6a45271851b01", + "0x522103864e960165b49a91d9889dcb04f670360725c3252f64c08508602835b3002b172102c4e40bfa18abf230cd82225fd06016dada598d96b0df7dfd5f6cc775d0eb70c452ae" + ] + }, + { + "script": "0x22002004d40687646b8eb261224c18b93ee0828aa41f32e0432613171bfb44d6148b4d", + "sequence": 4294967295, + "previous_output": { + "txid": "a995aab6eba4af4817d2a107b56ef0a4c47bbefc1aa3fc0672d36118206c21fc", + "vout": 19, + "data": { + "value": 83065, + "pk_script": "0xa9140bdc3cf8a413c4823c3a41995108116f36b9085a87", + "cached": false + }, + "block_height": 757598, + "block_time": 1665183111, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x304402201390e1e27060926438b9875af3f8225f87a70ae4fee588de35f02daaaa276b1702206c09d0e581b93e7f328947eb387ee40f3b3cbc02114ddad87e053c3b66cc010701", + "0x3045022100b6e4929991c9bc3dc819be913dc9bd85b92ab24efa6127aa427f26026bf2758e022063d1c8355ad086bc540cd311b2a2afba01dac7076b48de1797979019204dcc6601", + "0x522103864e960165b49a91d9889dcb04f670360725c3252f64c08508602835b3002b172102c4e40bfa18abf230cd82225fd06016dada598d96b0df7dfd5f6cc775d0eb70c452ae" + ] + }, + { + "script": "0x22002004d40687646b8eb261224c18b93ee0828aa41f32e0432613171bfb44d6148b4d", + "sequence": 4294967295, + "previous_output": { + "txid": "b57c3a240268d27d318a5730dc13ddc4aed4ea328260b64a6c2e3fc35f4cd2b6", + "vout": 1, + "data": { + "value": 4302088, + "pk_script": "0xa9140bdc3cf8a413c4823c3a41995108116f36b9085a87", + "cached": false + }, + "block_height": 757598, + "block_time": 1665183111, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3044022034c2a9213d10e2f803991ae2e2c15dd6e4b5b7bff86d6820c2e2ea2269f78157022011683464dbd048b9eb0746def5090d91708b4d165134d19961e1a4f4478c9b4801", + "0x30440220755b07cb0924cd759a70ff5d1d68ad2d5d6295e7a93c423c1f4bbc0bb6fa96240220597312de675faa298a043a04b83e4f5d0adede8ad171773509795c759387e49d01", + "0x522103864e960165b49a91d9889dcb04f670360725c3252f64c08508602835b3002b172102c4e40bfa18abf230cd82225fd06016dada598d96b0df7dfd5f6cc775d0eb70c452ae" + ] + } + ], + "outputs": [ + { + "value": 2331977, + "pk_script": "0xa914b6cbf6647c251dc9be9e370aab7c1752134c3d8087", + "cached": false + }, + { + "value": 2493429, + "pk_script": "0xa9140bdc3cf8a413c4823c3a41995108116f36b9085a87", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "8a3228a172a3aa7275ffb16f19332f7a6884ec2eaea259116d034b4376ea096f", + "vout": 18, + "data": { + "value": 585763, + "pk_script": "0x001447bfd4c95137738c1b9e131b6557b1dcae1a741d", + "cached": false + }, + "block_height": 756818, + "block_time": 1664773599, + "is_coinbase": false + }, + "witness": [ + "0x3044022063df1cc73c19b40dff390ab22fcd9decc15e49cc52696a99099418abafb666ec02205030e636b7764d2c835541f8d29d7a03b708e877cddf7cbd95b03b22e073214801", + "0x02924251f34dffabe3ec0a8991f5b639b01ccc73d68a240fcb5b13d2edfe46038d" + ] + }, + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "e3cfd7c03b1d6b115fbf937b82a87047d868e7c0103ea3eb26b455ee00fffc8b", + "vout": 1, + "data": { + "value": 360060, + "pk_script": "0x001447bfd4c95137738c1b9e131b6557b1dcae1a741d", + "cached": false + }, + "block_height": 757690, + "block_time": 1665231092, + "is_coinbase": false + }, + "witness": [ + "0x3045022100a712c0afc756ab8f36fced5288f709f759e6d2fdaf97b5a5fa67e1b4dacce97e02202bc5740a722bdfd24ca876338ecf6a6edaefafbf7a5f4b6ef9a78075e962d5ea01", + "0x02924251f34dffabe3ec0a8991f5b639b01ccc73d68a240fcb5b13d2edfe46038d" + ] + } + ], + "outputs": [ + { + "value": 181908, + "pk_script": "0x001447bfd4c95137738c1b9e131b6557b1dcae1a741d", + "cached": false + }, + { + "value": 763079, + "pk_script": "0x001476910407b4ae97f073e94bea3591ef2d6c8f02ed", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "5d6f9cc3bb1e74c5e28e3be2ffac5b1a58eca9d85526a078e22c09aeff0a178f", + "vout": 10, + "data": { + "value": 997692, + "pk_script": "0x00140b7389afc5745dccb1ae670e1af85166a58d490e", + "cached": false + }, + "block_height": 757688, + "block_time": 1665230030, + "is_coinbase": false + }, + "witness": [ + "0x3045022100eb3b0aee3d20ba7b098e2b5099f856f2af5250e92c00a740c8bbe594c9dcf94c022047cd868af3d1a0aaba3d53d76768b551cbb4dc375044b5cce31c7fbeeb5925f101", + "0x031edf39b3df71fd94f55c730e97a67af485faca25ff63787dbecfa533629e5bc0" + ] + }, + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "8a6901a4b776877380538aff8694be597a29502a4e1b22c27f8146ebd9ac7192", + "vout": 1, + "data": { + "value": 10258000, + "pk_script": "0x00140b7389afc5745dccb1ae670e1af85166a58d490e", + "cached": false + }, + "block_height": 757736, + "block_time": 1665249581, + "is_coinbase": false + }, + "witness": [ + "0x304402206d8c32d10da200ba9cae35a7859012019034e78d7e928d0743ea7e740f54f1dc022004e5df917e1856a9248f06faee939ea2591f3b9a005f85c38cb53e589e3145d601", + "0x031edf39b3df71fd94f55c730e97a67af485faca25ff63787dbecfa533629e5bc0" + ] + } + ], + "outputs": [ + { + "value": 11254971, + "pk_script": "0x76a9146e019bc83aa8e94a3158e171d537e376ac4b3d1688ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "392f24c24f50b18361a23c453ba82f7a1b8bb2c53cf4c2303a5c87599746592e", + "vout": 1, + "data": { + "value": 339446, + "pk_script": "0x001412df6ffbe342f41bdb6304aca93584a0cd411779", + "cached": false + }, + "block_height": 757713, + "block_time": 1665241142, + "is_coinbase": false + }, + "witness": [ + "0x3044022079ddba09197861264bfa43aa198c7c9a3993e6d35d2bef89fea7bc926795748c022039c2abddd8b9254cffa16c628b28b8e72997fd109f903b79e9d3ef044973d25301", + "0x03bd181226bea26591704b8da3715972724cfb8d546271ca247e24d3ad1c98876e" + ] + } + ], + "outputs": [ + { + "value": 90943, + "pk_script": "0x00141e5d2948fb5f3b999ea97d33223a445adbc70667", + "cached": false + }, + { + "value": 247940, + "pk_script": "0xa914b165bf797bdb6d63c424fb0066caa4af4f32d1c887", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "1c5b7df34cef47ad53020a7ae9bf87fc5f9e53a1698d307b5efef36812dee8e7", + "vout": 1, + "data": { + "value": 958817, + "pk_script": "0x00140b0fa4545711fe6761bd017a337416d7f793959a", + "cached": false + }, + "block_height": 757731, + "block_time": 1665247316, + "is_coinbase": false + }, + "witness": [ + "0x30440220501239573eb779e8069ff37c5d923bce0ae28c43b13a7a8c0376237d6cae8b7d022001402f05247982530dc265d5c75263d2e8bb8afd04153438090ed30b2077b52601", + "0x031cb4711b48e6df8b12ff5487a47fa6880f5143e861656e1130429d41e0e5195e" + ] + } + ], + "outputs": [ + { + "value": 512699, + "pk_script": "0x00144e0e08535dfbc18ec4a5fc0423861a7ca450ff98", + "cached": false + }, + { + "value": 445558, + "pk_script": "0x00142ab13e8633326313b007271eec0489bc9c4a1d47", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "cbc62eb465c21e71bf3d84b764ce7b3627b7931e0c4f847d8477c469d790e66b", + "vout": 1, + "data": { + "value": 3000300, + "pk_script": "0x0014c0da5d5d736d0b6a2731db0e2ac8754fd1d2dd0e", + "cached": false + }, + "block_height": 757738, + "block_time": 1665249935, + "is_coinbase": false + }, + "witness": [ + "0x30440220798d9f92264a4cb54dea61c5075f323fae8b832b1c87e07ee139056b612e574b022023332f14be4d082eb8a6ca5d596f5834c160c795e58bc7a17072b7f5773e0d0c01", + "0x02e8d743678059acd4e88e4e6df6050732ff2eab3fdf3b6278246b5b5efab2053f" + ] + } + ], + "outputs": [ + { + "value": 200000, + "pk_script": "0x0014c6b0f68522212ff05db2002e6d379be0148e96bf", + "cached": false + }, + { + "value": 2799800, + "pk_script": "0x0014cad6dfb0c928f916bf0cbd118aa944b4cf53eb8a", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "ed39960ee07c03c34f7025c9d5c8bbdb80106f0b54b181a40255a0b9226f60ce", + "vout": 1, + "data": { + "value": 5606, + "pk_script": "0x0020c10438f69200f8b41bf1efb719613fdd2cb858cd29bd87acef9413886259c332", + "cached": false + }, + "block_height": 757738, + "block_time": 1665249935, + "is_coinbase": false + }, + "witness": [ + "0xf879624918c0afcdd66e86fe1757e6fe0c8cd9ac43cda6c2be9ded2086ce63b7", + "0x304402206376b6859751fb47cd77f54e35efb13de05e0840925082a19c75ba86b369af5a02203265ef86e83f3e167e2d984ae9f70814a63799beaa7e468d293d2c07f5965ed201", + "0x30440220112e71ce6354d2cfaf876abd12317593cc6ff5b85a35ef7b1d0c96d316e992ea02204111615786ba4566b7898e2d4587b287b70c9c133d95a73a97ff8569f648210801", + "0x2102432494c6609614266626105503e09e16a6db63f745a68e36f3e9ad1bdd5df386ac6476a9140dadbb66be70301adbd50d2c2ca2220b8b18685088ad032a900bb167210351b0c709c423fdf8cb7823f3012883cbc4b1e9744d6c83da06d808272717c0f6ad82012088a9144e47ca77e5239987ca52e8b4b5d3ca7989179d918768" + ] + } + ], + "outputs": [ + { + "value": 5000, + "pk_script": "0x512067272f98205b1d3d48dfc8ba44e7a7b4a0b6471a9272e9ef72c0d96a42fb7fbb", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "c12c11fa5547a87e8bc0c60ee5c28f9a44076765a880f534e223ba8cdf070bca", + "vout": 1, + "data": { + "value": 2649100, + "pk_script": "0x0014a6ad7b283bdfd934b3b22800d761085ea76e5a94", + "cached": false + }, + "block_height": 757730, + "block_time": 1665245937, + "is_coinbase": false + }, + "witness": [ + "0x304402202c131682e6cb2c159c7bdb2d76e0c645f1af64df089fc203fe3d481844babc6c02206488f314c7bcb6adf8b65d362ced04b4a118f074fbd1ec4cc8faca2ce2c7a40a01", + "0x023fb1aa9fcd416cd3d1d0e874e48e87946c0c74ae1e41fe9932c4b743f7a92f7a" + ] + } + ], + "outputs": [ + { + "value": 600000, + "pk_script": "0xa914367c6be9202371deab60ce85718f24f137b9f41c87", + "cached": false + }, + { + "value": 2048600, + "pk_script": "0x00145d375afa872b67a1486b0247fd4d868e4b6c1837", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "38c27a00e38849cd940c76b86eaed2f84ff06a58f863691e7959d24d4e2430f1", + "vout": 1, + "data": { + "value": 405400, + "pk_script": "0x0014873b00eafc8bd6ec1b0c5a7c382b5c9887b28807", + "cached": false + }, + "block_height": 757714, + "block_time": 1665241693, + "is_coinbase": false + }, + "witness": [ + "0x3045022100b5cbb2c548e8ff6d20f2b3782df54edf88ae4f21e7c62fdea5e476fd2ccd211a0220495d98774be6edf8894e3089a7a73f28da72b201433faf5985cefe36b888fe5801", + "0x02e4f543606b0a35236bf2758723ee8f4e0982ced4383da23be0c8fe9289c3f238" + ] + } + ], + "outputs": [ + { + "value": 405015, + "pk_script": "0xa914e602b13cdea30673cabf3b2712d2942eea88868f87", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x4730440220060b8aa946da0fc238f65ed839c15e93a61bcf24bb3f1a9621a16cb46b6ac29e022079d79b4fd928575d904864a3f5c8c162b498cfad593075e5061403ef3dc57789012103a59313a5f06edc1d05679074590d3d2159e91816fde69bbd1b46a1db4cf61b18", + "sequence": 4294967295, + "previous_output": { + "txid": "6331a7ea2209c3ba8711c436e80aa1e9840cfe24bdf766aeac1419e77daf46dd", + "vout": 0, + "data": { + "value": 25813315, + "pk_script": "0x76a9141bf21ed0f5ac8282bfc844ccb5f3187884524fb088ac", + "cached": false + }, + "block_height": 757738, + "block_time": 1665249935, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x473044022012377a4b25028a4127b3d425385b9998cfb4c7c53442372124f80b6f5a7c394c022015956a47522bf8fc5159679dd8caddc10da908ad0afaf09583369fc4c2f8a89c01210324ce107453216582e19dae8890998d4e718b56429160567e950e621892a99c7f", + "sequence": 4294967295, + "previous_output": { + "txid": "f26f679cc91832ba11cac7c30ecb4711c0595b115bba21eefe82f195161a0e51", + "vout": 0, + "data": { + "value": 887, + "pk_script": "0x76a914a7b8c3f2c55a729832c057750d2f1568063552a088ac", + "cached": false + }, + "block_height": 757567, + "block_time": 1665166616, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 25813080, + "pk_script": "0x001459321838311012dad86ab93e0a3a4705f8e7371b", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "9b1d5881493bc8610cc73a0e656d9b085d9852d55640f5f180ffc60a58b8b712", + "vout": 37, + "data": { + "value": 1035129, + "pk_script": "0x001473540c3bd326dbf6cd66d9fa7bd2f11197382cd8", + "cached": false + }, + "block_height": 757731, + "block_time": 1665247316, + "is_coinbase": false + }, + "witness": [ + "0x304402205261307ec8a02f3184a054578ef8888629ac2d9872437c5efac3013c2164e75a0220364c5626313b0c29b6b3f0eaed7e9891c371d5cebdfd400b084de745612f81af01", + "0x03dfc15f67ffbf937dc4f2cc439ff4dfcfc87b926931d7aa2c0a5e5717ef593371" + ] + }, + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "a5cf50a824ef1d522b57e7dc6d5e63607d02baaedacf8a77bc4b99d0995a316a", + "vout": 1, + "data": { + "value": 125449, + "pk_script": "0x001473540c3bd326dbf6cd66d9fa7bd2f11197382cd8", + "cached": false + }, + "block_height": 757734, + "block_time": 1665248868, + "is_coinbase": false + }, + "witness": [ + "0x304402201495bd9ee1531d1bcec3998622c81d9089689a743cc1142a03244ff17c2f32a302204c6fbbe56b37fea2dd9ca0cf47d0094927b070cab28ff0202a262be8e098abc601", + "0x03dfc15f67ffbf937dc4f2cc439ff4dfcfc87b926931d7aa2c0a5e5717ef593371" + ] + } + ], + "outputs": [ + { + "value": 94080, + "pk_script": "0x0014c6caf3c7049476b8d91a97bfe3ef2c3538ce3453", + "cached": false + }, + { + "value": 1065839, + "pk_script": "0x0014d693dd86a1df8a31a5529674f769a630c8691da2", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "47158a82db2f2da2281fe971a5d3219d363fa194f2f7d608310f12a01a2fa67e", + "vout": 2, + "data": { + "value": 1186213, + "pk_script": "0x00146617c9f222186efdfa2ca6326426b72569c093fb", + "cached": false + }, + "block_height": 757663, + "block_time": 1665215093, + "is_coinbase": false + }, + "witness": [ + "0x3045022100e6787a24a83af969d209453d31458b3383cc527fafde65e5ea5da0e3b46c456e02207308d145ba203955c6b47d98b93ae439f7ca253d6dd36caa7381cd15dc2f9d5e01", + "0x02f81a282f2724735f5054fb917c74d2ebb8e32fa6a4f1c6b16f9204ccbfb958eb" + ] + } + ], + "outputs": [ + { + "value": 51910, + "pk_script": "0x76a9145ea182667d6f7401ee0b73ca46b71bec357b7a2d88ac", + "cached": false + }, + { + "value": 1133856, + "pk_script": "0x00143530818320c1ed7e614ae32d8b26f646c85f2f6a", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x4730440220366c8291ebff2f39043f0ecaf6766fca3c1bceadea9486e92413fee9da9f136802206d6fe1d7e85c1d621ca6ded30531c3bededabf7be22630dd80c47e135b62e80601210205639deb9315fb2089a656fb4bf7353aeee35e7c161e5480f68ec6d9346d3114", + "sequence": 4294967295, + "previous_output": { + "txid": "f94a1afdb499f7e0beda79de2138c415c5aab977122c93802bbf00b85b12c6a7", + "vout": 1, + "data": { + "value": 43292959, + "pk_script": "0x76a914ce35e804ab2f8db20e42a875bd6f56f83287dbbc88ac", + "cached": false + }, + "block_height": 757734, + "block_time": 1665248868, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 1538268, + "pk_script": "0xa9147c032f6d6d93b8204ed925d10cbe95ff99ed1ef587", + "cached": false + }, + { + "value": 41754019, + "pk_script": "0x76a914348657300cef4dd23398f6a2c738e769164d623488ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "a78d7dd39eb8a49a06118cbf214bc04ac4f78ec5ea16e705e54b19b1f08ab957", + "vout": 5, + "data": { + "value": 1216417, + "pk_script": "0x0014dc1691cacb0a7365a1ab492347bd25c939cc9b60", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x304402203a383a46bbd2a2eef4ee932c0cd377979c152eb022c0f3ecd4051f5ffd9f981d02201f577d830ade7d43d4a2b414bdb02f1002285bb8d83db544ae3906ce71262cc401", + "0x02dac00ce612abe15472fb550180c7fc1fa63eb3c1efbf218406a831d8f0da3504" + ] + }, + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "a78d7dd39eb8a49a06118cbf214bc04ac4f78ec5ea16e705e54b19b1f08ab957", + "vout": 8, + "data": { + "value": 847725, + "pk_script": "0x0014dc1691cacb0a7365a1ab492347bd25c939cc9b60", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x304402205db6d3a863be0aaf48dffec1e41f5460b06e0b54d08668ef8ae1f808b7c44b9102204646a104eeed3d9d269d1e15cf951ff21016f1801ebb8f3eb2360a397d51222501", + "0x02dac00ce612abe15472fb550180c7fc1fa63eb3c1efbf218406a831d8f0da3504" + ] + }, + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "a78d7dd39eb8a49a06118cbf214bc04ac4f78ec5ea16e705e54b19b1f08ab957", + "vout": 17, + "data": { + "value": 192535, + "pk_script": "0x0014dc1691cacb0a7365a1ab492347bd25c939cc9b60", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x3045022100c8198f3248f92cd6b6b0d05abe11019a76d360d47491d09871ad7efecb8c6684022068da1c7cfc35902b45baa551b172e9b5a5bc23db25e78fc057be02876819069701", + "0x02dac00ce612abe15472fb550180c7fc1fa63eb3c1efbf218406a831d8f0da3504" + ] + } + ], + "outputs": [ + { + "value": 2255930, + "pk_script": "0x76a914984b25876e7d8d0b6e930534f182b3633dbd378f88ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "7610dfe3a5dde5b982af9dd3c6a389ee7ac990c73b04b3378253b24d7aea7a4d", + "vout": 149, + "data": { + "value": 24138193, + "pk_script": "0x0014ca5ebb6ecf79994b90d4984c8ab273957e844c27", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x304402202c1aebbdc105c993840bf9e8ea75d2b9b6391c45f5100893ec4b11b23c323791022042f543899c4d0ca5a859c7aa6010eab8e58a5de3b542d8bed6632ac712d5f46f01", + "0x03022f042feda599cee51ae186bfabd1f5fbb6a4a48fa574c6607d33b281c4c153" + ] + } + ], + "outputs": [ + { + "value": 820642, + "pk_script": "0xa9148b2918901e4946752d9a84dccbe8d5705ef9700187", + "cached": false + }, + { + "value": 23317125, + "pk_script": "0x0014fefacc9edf2d70c80eb98467850ed159d30490e7", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "8b9ea1cfd6aabd3c5dded320bfeda9549fcf7162d4e87e79bff1b7b9816691cc", + "vout": 1, + "data": { + "value": 23613, + "pk_script": "0x001436fc88349cf8132c739f97e8ed440e035a14ad45", + "cached": false + }, + "block_height": 757407, + "block_time": 1665083853, + "is_coinbase": false + }, + "witness": [ + "0x3044022074e2658418acb38ae501c3630032953e2865061d6c57e0d119f537e3cb6ce7f9022031ec5c0cb300b1ebbad0aa41c3b047f69ffdef4c020446ea84f25f67b1ec573b01", + "0x02a9838a8d78bab650cc9ec7c45e1c6a72d93e009a8c63c521cf67f38ec8d77098" + ] + }, + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "78fb4f60c87b6a4310eab8e615487e0ee958b74bdf06da9739680c7354140326", + "vout": 191, + "data": { + "value": 1122567, + "pk_script": "0x001432b24316ee23f7388bdb07297eb50cc9ae37c200", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x3044022010201b78541fe21b8af91e8da7d16933f8f6ce88ee15333865d0395869ef810e02204e08de9a3752b8952a8a746cc86418ec810ce3d64fdc5bad289fced531637b4801", + "0x038052e3cdb7ab4d26ab031f7b7a1b91a4c954447553745e1aafd8bd4bd2625a5b" + ] + } + ], + "outputs": [ + { + "value": 1143321, + "pk_script": "0xa914e8b631e323e9a3cca8d5796616e258313a75250f87", + "cached": false + }, + { + "value": 2232, + "pk_script": "0x00144ad39d2562253f3877fb869c23c8b043355168ca", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "ec80ed3c5c31eae610da7619c595b9d43e396eb7ba92e7b7e63c204b09d8e4b2", + "vout": 12, + "data": { + "value": 194270, + "pk_script": "0x00146a15d006a9ce0b19f506a4f35b7a9d931e454ed0", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x3045022100bef709bf5504f4af04674d8d527b16bb1c8a2dd4e9f0ecd79ee227c3a353f391022044e110250179a43d850df19f55f019f7e288f298f6fd16a4de8fc11e59e7e12401", + "0x02b2be361bded1bba760dc32ec3188116379ee2fa15682eddcc4adfd87b4565da3" + ] + } + ], + "outputs": [ + { + "value": 193931, + "pk_script": "0x76a91493b6b7c65b439fe497b286dac0ed75f68fe8db2a88ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "5ba18a8f8df696f51ce948506f7bde576e913a19c9fa9806f1b260a63dbb5cfb", + "vout": 1, + "data": { + "value": 101954, + "pk_script": "0x0014c5d2786175a67a428f9f161b9bc66971310598a0", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x304402206cfdd8991b5670cd873df393ae89ab60205dec96c28888f27e03a7f43f142c620220466801e80feeba85bb9ac9be700e00188d310bd41f77aab552390cb02c8ccb3001", + "0x0381297feee6da629c63bec6c04d60df790f1ee84a45a919fdc6fbc1e5f70d6934" + ] + } + ], + "outputs": [ + { + "value": 51274, + "pk_script": "0x00146af5819d1435964733bb76eb18a0dac5833f2b7f", + "cached": false + }, + { + "value": 50257, + "pk_script": "0x0014c5d2786175a67a428f9f161b9bc66971310598a0", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "d420a2d39f66e57d6de999e44ec8f75772fcee277bcd1190333093d6e75cd1bd", + "vout": 2184, + "data": { + "value": 1000, + "pk_script": "0x0014ec5cc0512b2d7067ae2d314cd192fe2e9815f64f", + "cached": false + }, + "block_height": 756916, + "block_time": 1664829357, + "is_coinbase": false + }, + "witness": [ + "0x304402207981f4617e00f3eaf76bbc10ff477afda4e7c2fca0965e8591365a834bd59b5c022077365d7ba7d918af005e6d4b7011374df3ae83ec66312ac573d1203dd33e055801", + "0x025d76a561a5d629e0743d7e1c33029719a647eb324717afc9ef1939410172c0d1" + ] + } + ], + "outputs": [ + { + "value": 661, + "pk_script": "0x76a9146650a9aabde4562c1d9a5429e148e72708fb24d688ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967288, + "previous_output": { + "txid": "9369e7be2ccf2898c9c5a23e34e2da1a850f205d7c88356ecfabfc850454255d", + "vout": 0, + "data": { + "value": 527598, + "pk_script": "0x0014df419d00a2f54e4a49167a30653467002a3c355c", + "cached": false + }, + "block_height": 748467, + "block_time": 1659917583, + "is_coinbase": false + }, + "witness": [ + "0x3045022100bb78ac3d55eb1f5051e2112bb8a533f013f26c1c491e2877116592cbaf7fc4d702206f5d3811a980c0d7301b10fe42614450766c01724bb00d0a8a247d7ab368888601", + "0x036bbe058829647550e280171c4211a3d40d9cacdddb3b325cfdce15fd66b7edff" + ] + } + ], + "outputs": [ + { + "value": 256395, + "pk_script": "0x76a91436af417ce342155a0ab18c0730ad0d0b31e5d6eb88ac", + "cached": false + }, + { + "value": 270771, + "pk_script": "0x0014df419d00a2f54e4a49167a30653467002a3c355c", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x16001413c94961ca30178269547c47cb4820473ff606f1", + "sequence": 4294967295, + "previous_output": { + "txid": "0b971a4636f1b559dbd613e00f78bac456183f1c621750019ddd56a1a22fae15", + "vout": 160, + "data": { + "value": 2617782, + "pk_script": "0xa9147d5507948d35fddeb228e03a10e95e8e2cf0153887", + "cached": false + }, + "block_height": 755815, + "block_time": 1664213995, + "is_coinbase": false + }, + "witness": [ + "0x304402203aa9b53b4ffd5176eb08cdaa77ff9ddd437afb948f05c210ab701a98465cdaca0220375db1c0d99db07a659bab4fdf9c0e1b273b1d7c336d9f71541fc565db7ad96201", + "0x03b2476e981d7bcc0d807dc6cf258c1d3a6cb9062f8f00af582b2eabf88ed8b033" + ] + } + ], + "outputs": [ + { + "value": 20000, + "pk_script": "0x0014d417b5b03d81990745789e9382d9062acea135f3", + "cached": false + }, + { + "value": 512532, + "pk_script": "0x00144b071687a870b8b9f44f9bc16d1e054281ec7425", + "cached": false + }, + { + "value": 2084662, + "pk_script": "0xa914d59ee88def2db001be0e332a45c3cef0e54d97d287", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "ec80ed3c5c31eae610da7619c595b9d43e396eb7ba92e7b7e63c204b09d8e4b2", + "vout": 31, + "data": { + "value": 495000, + "pk_script": "0x001425c8eb18f8308afc61846578be9276a5cb2df3a6", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x3044022063f0a70fe965b21b3993cf48843462ef9135d2d028c147b3503f46d2ecd48cfa02204457a439c755d9e8b5fedf5030bbe4712bda44db058c95b1431eb59956d4df1301", + "0x038095b9ae1a36e03ae518dd701313b30307f87c97bdfe5b9b734d518c900ff6a9" + ] + }, + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "f32663e55ec0e4eae443d1a960c9dd0882b6e89c1502a9ca594f1de7dbc79d55", + "vout": 1, + "data": { + "value": 81592, + "pk_script": "0x001425c8eb18f8308afc61846578be9276a5cb2df3a6", + "cached": false + }, + "block_height": 757717, + "block_time": 1665243090, + "is_coinbase": false + }, + "witness": [ + "0x30450221009bad4d267f631202cc66c2fe5887d94918e46f42d165492f75429a2d8d3c4d3302207cded3ccd729703a6ca28c6282e256f89f0b760feca8893f6a3cfb812b77a4dd01", + "0x038095b9ae1a36e03ae518dd701313b30307f87c97bdfe5b9b734d518c900ff6a9" + ] + } + ], + "outputs": [ + { + "value": 576055, + "pk_script": "0xa914cacd805337fc27c550a1bdb22bce050ab58278f687", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "c5f799c93d1733b1d9e8d6c1db23b44352f67501b3519b70fa606d2a0af8d8d9", + "vout": 14, + "data": { + "value": 4969505, + "pk_script": "0x001492f38bab1075e5bb6e7d47238b3089861be7709c", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x304402203d6e31e8265e1939cac590ccd4bab7a44e1b20bb1f45c876b8fc28714a8ed63f022061d56e90549a58a8476ca1e87ebad98fcc336cdcc3d9a5fdee6856f70a05de5501", + "0x0271ad6939358a7acdc645f192d55caf3d54dbe4461d1a3a0d34ce69aec2425cbe" + ] + } + ], + "outputs": [ + { + "value": 4969166, + "pk_script": "0x76a9147934f32550d28c5a9e50044e6ec9501946d0603d88ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 0, + "previous_output": { + "txid": "c63f114d2ccb2ec2364b98502e2194dff5ff9e470b8f923652ebf1ae8a3da9fc", + "vout": 28, + "data": { + "value": 1692661, + "pk_script": "0x001472a1a5f786ea4a6d7623e36dcff6109fc2eb87c2", + "cached": false + }, + "block_height": 757712, + "block_time": 1665241008, + "is_coinbase": false + }, + "witness": [ + "0x3045022100cd5fbaf8041f1a29cabf5e50f0d63d00a694ee1448ace39957aeaf51ba5917cf02205ff2947f38eeb98a8286b9ef2915eccb90d64688de8ac58a81f2519e5d302e5301", + "0x035d62e1673b6ea7093450058e18fc6b1c207cedfffd6347a9178a2ecf534475a0" + ] + } + ], + "outputs": [ + { + "value": 1538372, + "pk_script": "0x76a9142d9171b795b24446082e36d34a00494c173b108488ac", + "cached": false + }, + { + "value": 153857, + "pk_script": "0x001472a1a5f786ea4a6d7623e36dcff6109fc2eb87c2", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967289, + "previous_output": { + "txid": "04e3711738ef8f1999d1a95438142f65623330dfc30e785bcfcb18f0df2a239f", + "vout": 1, + "data": { + "value": 54651, + "pk_script": "0x0014ce5709ae4c7aef429a8ca3350f2aa0ce85ba7ff7", + "cached": false + }, + "block_height": 757736, + "block_time": 1665249581, + "is_coinbase": false + }, + "witness": [ + "0x3045022100fff474d0d6929b5481fdae0b87fdabac93eb7fc13fe2af0f42e3f37ef85dd2d802203804ad66d1ee54cb9862a670428b3a17c541efff6c7cb29ba239e0ad8c99ec5701", + "0x03d9159f4fb76a668265da2c14bac096beaaa136fa9582ee50abc4b8c02461d9bb" + ] + } + ], + "outputs": [ + { + "value": 51274, + "pk_script": "0xa914b1623dedeba91e46a654d490730e47a404f5bbe087", + "cached": false + }, + { + "value": 2951, + "pk_script": "0x0014ce5709ae4c7aef429a8ca3350f2aa0ce85ba7ff7", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "68186d14a6f402a2520407725a42347cbc67f6d1fc70bcdd72430de7e8a1aed2", + "vout": 1, + "data": { + "value": 1747796, + "pk_script": "0x0014b39816a0ff03dbc4bb3614306fb341882e8f5dc4", + "cached": false + }, + "block_height": 757692, + "block_time": 1665233385, + "is_coinbase": false + }, + "witness": [ + "0x3045022100abb1ad2f6e7fa41992b278ec7535f4c7b8aa347bb8668338a1b71ed5715dfff4022064ed77579d28599a7914df60e8d9950e5bc03de0ceb0fd6c2a04af3c69176f1501", + "0x02f8d0203e8d5f2ef49db28b02ed088bb014e140675d250e39227464adf30e0ffb" + ] + } + ], + "outputs": [ + { + "value": 1743180, + "pk_script": "0x00140576b6cf740396d9d70ee8fc10c3f65d9bb7c055", + "cached": false + }, + { + "value": 4196, + "pk_script": "0x0014d126010e4203f1a81b377fdfed070bb31c2b4da0", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100c3d5ce7a18be00f86e6c0c6b1d454a9e100f237b9a98c7601baaa6a818057e4d02203059091d9266ad58475ea80de3658e7601a77012503ce1cdff746095dc195e08012102ac8814cf30674103f4d9e646403f940784a61ac2a382c161984cef152115d4b0", + "sequence": 4294967295, + "previous_output": { + "txid": "1768f65f2eaf5987013331730b2f8d9dfca3f17b8855f93cd823549bb21b8b7e", + "vout": 1, + "data": { + "value": 734, + "pk_script": "0x76a91425ceb7d5f6b1d9d15375037a8f44011b2e62b5dd88ac", + "cached": false + }, + "block_height": 757544, + "block_time": 1665156060, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x47304402202d92a390495aac88d39520b3fd02689fb83a7495093a925c3a0d454a69d90bee02205fb0d381747325ada5e80b63ad9be88a1b0d7c89febd41b56b939821f0c274bc01210205ab3dba3b222dbdb2247cb95d1878918497a0d17be5ab86fa00749d6910171c", + "sequence": 4294967295, + "previous_output": { + "txid": "eafc42d9e600d5d963c093b150f92b295aa815f106f9e79008f0c9961301fe51", + "vout": 1, + "data": { + "value": 808348, + "pk_script": "0x76a914fdb57509e8e4c78421f117981c74fac5f7a358ee88ac", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 808112, + "pk_script": "0xa91459ff589ef708063e322a5adeb91fbc3684433d2087", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "e68fa71ae7e1ccc46ac9bbd116e073b9038a05aa180ff711b0303ff44899a023", + "vout": 9, + "data": { + "value": 420011, + "pk_script": "0x00147b09664a87ccf2806a9b48f003384081d6aaaba5", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [ + "0x30440220622175a2e6b025b5bc04256c1e5ad8cedee33d1fa611f3d19dd0f220272a4c0b02203a7f8402d0445600e732e1a10cc0907786835e03fb397defc79e86b4319f1c3801", + "0x03f4745270ccec033a340f2dc8b13054c43ef92303983993e66c2aceaf5eca66a2" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "a1d5ecdb67dddcc25f5fb5ac92461cda9f4f7eb5484f1080f0d82a85c6e2d182", + "vout": 4, + "data": { + "value": 168787, + "pk_script": "0x00141636ab581f574bfcce6cd98223be82c17237a644", + "cached": false + }, + "block_height": 757703, + "block_time": 1665237620, + "is_coinbase": false + }, + "witness": [ + "0x304402202ffe1fad55eb9247520bc127fe556c35feab5a72ed8a762679c96dfaa3c79ded0220667fd42f3cda00849064c36475251fb29a84139444f15d0d6b11f2c9bd0a6eb901", + "0x0206d44d64e44735d42f848217dcd86ad2015aac995297203f88aa305de2805271" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "e01e782234b631e4e9743b92697642fe27d9afede796f4e0b474134861069cb3", + "vout": 12, + "data": { + "value": 411542, + "pk_script": "0x0014607aa0536a89b6dc823e31d1d7c64b094caccc3a", + "cached": false + }, + "block_height": 757730, + "block_time": 1665245937, + "is_coinbase": false + }, + "witness": [ + "0x3044022047c24d59e0a6befa15112900bb9850335c1e4571fd027eec21bbdfe89522244002207763a0b1cb7401701ea58117d2797ff50e81bd14bdea2b3ea5bf042ef04d15b301", + "0x03be021eb91bc0cf062f720a882cba0451ec3b4fc5ee0c86eae40b57e16c8f63ee" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "45ce2b1de1358171b067aa3106c4e53961444b6447f4685118e664d47075b91d", + "vout": 1, + "data": { + "value": 346482, + "pk_script": "0x00140b759b59baa8cc56c135614de4127798fdd57dab", + "cached": false + }, + "block_height": 757730, + "block_time": 1665245937, + "is_coinbase": false + }, + "witness": [ + "0x3044022042ac180b75a89de085d22cac99946d9577a9600a601bb5179219093a4376bbbe022052c25c61e90653d3ee3f3f28405f095eea991159b6789ddfb2448b00de46940101", + "0x03943098d69f3da3a87985e9e0f79c5b68f42176ca85dde2b40ca7734052961b6a" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "987955bbecbacbedc5f6b2fa21ae003fd3d7339e0a850942971c14a3346130f0", + "vout": 13, + "data": { + "value": 354575, + "pk_script": "0x00141f5604584c1a6243cbc2f1ab7c82697a1dddb72a", + "cached": false + }, + "block_height": 757731, + "block_time": 1665247316, + "is_coinbase": false + }, + "witness": [ + "0x304402202debcb3a7ddfef9f3e87b0de6c68fe5f0aaf153d5434b5cd73ce11385d71be8902202a48e8ccdbbe1062feb1bf8cf585c79c6d9993ec1b0b2c4169c5ba31d450baf501", + "0x02abef8d752ff76bfa01cc64ec42e387c9e9649f517837b28304872e528909107d" + ] + }, + { + "script": "0x1600149000d6cd1258dc4cf8394511566ea500947972fa", + "sequence": 4294967294, + "previous_output": { + "txid": "7cf002995dacfb2290b63c8130f5d2c586d5af9a1bd497d64f2ddd35092ac643", + "vout": 0, + "data": { + "value": 263115, + "pk_script": "0xa9143b22623fcfac967186714cb50a862f7383de8cf387", + "cached": false + }, + "block_height": 757731, + "block_time": 1665247316, + "is_coinbase": false + }, + "witness": [ + "0x304402201b2b5682057c0d789052ce73eefd3f6c72e4e99915f501fcb9c7cea4aa5c556e0220339a91bf5c19cb9a5c449a352d9edf64a51ca080e6ada457e7d96bf16420b85101", + "0x02dc1223c019b0d1282b84dea04d9eb4c91d590c9a0ec5aff6d76732c8f4ce10e8" + ] + } + ], + "outputs": [ + { + "value": 151580, + "pk_script": "0x00146484d1719e36ffff5f74e6ad1fbc6193ec9804c9", + "cached": false + }, + { + "value": 304180, + "pk_script": "0x0014713ebf8eedf15ae0108cbfb146b29c1c0a759196", + "cached": false + }, + { + "value": 149180, + "pk_script": "0x001444a5533a26d961af7e2909afbb66f4395130cbc3", + "cached": false + }, + { + "value": 99080, + "pk_script": "0x00142cb99247e832c2c2d8aba97f8a3cc939ea093c66", + "cached": false + }, + { + "value": 395180, + "pk_script": "0x00143d09c0259c4df440c7cecd5d2342dcd0b41e6a60", + "cached": false + }, + { + "value": 138280, + "pk_script": "0x00148c05356c98cd76c378c4e3f02fe47cf491049e37", + "cached": false + }, + { + "value": 144680, + "pk_script": "0x001499bfb00d64004176ca03acdd3e8d266c58764bf5", + "cached": false + }, + { + "value": 333980, + "pk_script": "0x0014d1c9f2ed07e34ba0426a6670af43aa9d15f15ef2", + "cached": false + }, + { + "value": 246680, + "pk_script": "0x76a914afa9fc1c55ca8ce0b2facd5c933d4c3b8ca7f88588ac", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "19ae224a772d515c9dd552631502f7a9a87ff31dc190ecc751f7828236b9b5be", + "vout": 0, + "data": { + "value": 200000, + "pk_script": "0x001434717e7661168643c31b031462aac7c615741747", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [ + "0x30440220272c2c30a1c7aa97d1ce5c22c218e58653afd964381bb0b6c70075c6c263cceb0220614ffc7180708ecad726d49a10fbfd481ea29cdb93e315eac9d05191f526443301", + "0x0204a9beae89de5da96f937b4d5afc8f84219afe595c71bb9b57fe5da81b8d8a79" + ] + } + ], + "outputs": [ + { + "value": 103052, + "pk_script": "0xa91419ee8bfb2ebe911b30e6959a9c535e96ac6ba30787", + "cached": false + }, + { + "value": 96618, + "pk_script": "0x0014df7e418d4b2bdd43b3b001e01b461c8ffc599fa6", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "765d4d85ad32ef8547e89ccff32b9c8d1074142c0d4609b069558e683bacf7ed", + "vout": 1, + "data": { + "value": 3195692, + "pk_script": "0x0014742ce48f673c79b7806ac1eec2de2fc92f0b84f8", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [ + "0x3045022100f35c4dd18bc2bdd95175207d3d2d90d01d1dc51d1d4d78119cffb7b4a415820f02200d0e4d292b6e695637c2e8ed0b0266be69197b95620466d96b98d6081e18c16d01", + "0x0331215cee65b02a73907ce20bef800a0d50e880b99e41c9c41db02d8d30d58aa0" + ] + } + ], + "outputs": [ + { + "value": 205106, + "pk_script": "0x0014a5d724f88e2f7ce610a05d5a8759bd47143ae023", + "cached": false + }, + { + "value": 2990259, + "pk_script": "0x0014f67235bfe0d8692c782533b9ca65449beaa0ca10", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "7cb586d77bf8a67a672039c490e89b87c242c1deb11fd51748376c7d421dd2b8", + "vout": 39, + "data": { + "value": 3993811, + "pk_script": "0x0014da586708cd6ea6a31ecf58aaa2d4a3a61df979c3", + "cached": false + }, + "block_height": 757607, + "block_time": 1665186534, + "is_coinbase": false + }, + "witness": [ + "0x30440220042b2c2b5fb52ad7297428be14e20c1a89ef9ab6d12244c3a5c4d9b17db9bf7c022055686889f51fc1e64a76a13966b956732722a90cbc23838e927a720cd55b7cd601", + "0x0323c44e1bfbdbb5957358a20f72649ec676e2f7080f0d2512f6e30386a191334f" + ] + } + ], + "outputs": [ + { + "value": 3993554, + "pk_script": "0xa914f3d97ce0d02c7877bab29b2f6c38ef339b9c601687", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x220020893d00431aad837f4fbecf95ed4072efee832a4b498bdff65d80df1ec5e84b9e", + "sequence": 4294967293, + "previous_output": { + "txid": "e5d88c1dfd82b42fbb32a67a0ae6a23a38824c8972f7f51805a2f8115fca5a2e", + "vout": 0, + "data": { + "value": 500299, + "pk_script": "0xa914bf1b8aa79d105a49d3de886210ac1c80357831df87", + "cached": false + }, + "block_height": 757154, + "block_time": 1664944982, + "is_coinbase": false + }, + "witness": [ + "0x304402200b600649cedbc882383827e9c3631402557cac77636f3cd5c4ba5160fdcad06002201f333eff2e34931368be1f1d48ff277eeca13d8bbec6628c6c15c9360f240afd01", + "0x02e4cf591025c6d31dea478dace36e8476f96f61d63d3deb82ff517ed902989bb0", + "0xf62ba8901d2cd4e967656112e43e578a583b8d281d3975bfb09cfebcf72ab851", + "0x01", + "0x76518763751479be5dd45c61c3795f8c19498d856831187d7fea143d5d36537fe7a14e6bc5059fe0db108d92185e686776528763751479be5dd45c61c3795f8c19498d856831187d7fea1410ad69a644e163d29248c795ab6232fc22cf201c67765387637514efc8c0906db5a8a6c5c67191d864b26a815ff9bb14b7254f78e88fa1fd0a1fae8cb5df257b9d2cd9e667548814efc8c0906db5a8a6c5c67191d864b26a815ff9bb14531b3d87975be90ab0d9a0a9d86f12030f9fc7606868687ba98878a988ac" + ] + }, + { + "script": "0x220020cc18f4933f0c692579b61553c93ce88ded9f3806304432a19296282218f9a0c2", + "sequence": 4294967293, + "previous_output": { + "txid": "67a7570f4f1c3a57acb725fe8f6e3f0a7bdab2fd79de1974ad1aeb08d3cce57b", + "vout": 0, + "data": { + "value": 449800, + "pk_script": "0xa914dc227094e287f6cec51c31f6cc610934503f28b987", + "cached": false + }, + "block_height": 757519, + "block_time": 1665146839, + "is_coinbase": false + }, + "witness": [ + "0x3044022018037c36b43337087a284bf839eae8b4052f4385d17d57cfee7a8cd9fcbbfa4d02203b2e2699d288f4eaf0c01014004c708b526b15884479229dd1d18a2505da389d01", + "0x031df2d8927c64cffed13fb1fbcce4e0a823fc7e92caff87eb99719b6b74a5ed4b", + "0x08ffab3e28cad2f4ce358928e03b21849f1228d5e7b32f000eb6f5d7b7fb75de", + "0x01", + "0x76518763751436ff48c0ca00e9808b94c00eac3c567c8ec6dd97145f69f70547884be65e783da8d30d3eaf4593f6056776528763751436ff48c0ca00e9808b94c00eac3c567c8ec6dd97144ea6a525cf2c35874c605984ac7f14ad78e7419a6776538763751453f3e58b0ed5394316230a6aa1aaf9cb0c2a058714d2355fa35844f4029273cf5b5dd8debb935e7ce26754881453f3e58b0ed5394316230a6aa1aaf9cb0c2a05871466085a15298858cec1ab9eb1066b2760a81984386868687ba98878a988ac" + ] + } + ], + "outputs": [ + { + "value": 500000, + "pk_script": "0x0014626e0864c0224e8f67c4c6bf7fb18e3048d104f9", + "cached": false + }, + { + "value": 449222, + "pk_script": "0xa914607bd0f02e3a109e0a8bede5cf4b2f2418193eba87", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100e724103fc5eb746d3a18b6a3bfdecb33302cb999fa65115a9b26bd990e4469b6022036d1f2fdec5791f8c327ae7b68db262b49df33f8abda631b1dd8c387f0c55fa50121035ff4e80189953e84fa014c67261f2cd1a950c22df9ea169d5835c733dc950dd1", + "sequence": 4294967295, + "previous_output": { + "txid": "8c8bd26ef29796867a8a15d5992dcb2b60f0cc713f6990e1aa2f781f780c715f", + "vout": 11, + "data": { + "value": 149000, + "pk_script": "0x76a9148b6f101c51e5a5d332985329a70da3071df2899888ac", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x483045022100cae06ddfab96623dbb0f70fe4d60d82513f1102462af05e0620a7a52b0017e2102203555c8d84dffb59c2de384f1d1816ea0f7bdb8f34617c852bb6b44582b5cb4f6012103f7118f6e6e91c74761d3182e00735938867b8603b16a09a5c03a889361fefeae", + "sequence": 4294967295, + "previous_output": { + "txid": "fa342eff76bbb6fab8b2f9c1d3a47ad753a9566dad366a4aa9eaa382e6d7d72f", + "vout": 1, + "data": { + "value": 1472473, + "pk_script": "0x76a914b783ebaf1e53aa8dd6f8bbd3c8622b0e08bcde3288ac", + "cached": false + }, + "block_height": 755835, + "block_time": 1664226763, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 1548497, + "pk_script": "0xa9140a2e63523dbb408554041979d2e102f4308eeaf887", + "cached": false + }, + { + "value": 72174, + "pk_script": "0x76a9149522c3d82f3d92717342b37a153722592d0ec38d88ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "8dd122f41ab4d174c22f8d0489f4d19e03074aca6ae43ed937f3f97b35c905eb", + "vout": 0, + "data": { + "value": 6264235, + "pk_script": "0x00140427b2dd010924a7d3747a79444f656978ec82c2", + "cached": false + }, + "block_height": 757703, + "block_time": 1665237620, + "is_coinbase": false + }, + "witness": [ + "0x3044022028962d7f71c03d2844bbedfb2db84ea71f5c10349c22791c5347e5392d88cbeb02206e829a21b8b3c35987d03c95aacab23cfa03d012440356332ff0ceaee601ae6101", + "0x020eff05c29e992db12bf197304575f626f82f2881fcad9dc6c7c09f13d4b858bf" + ] + } + ], + "outputs": [ + { + "value": 128105, + "pk_script": "0x76a91420cf09f1877e3100456722c067cf573abe9fa20588ac", + "cached": false + }, + { + "value": 6135827, + "pk_script": "0x00140427b2dd010924a7d3747a79444f656978ec82c2", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "b96d951f4dedea7218368f2e9942d514e5b459a30d75c61a5748bd2b8ab16b58", + "vout": 22, + "data": { + "value": 487318, + "pk_script": "0x0014f80fa4ca2ad41d2a338e228789042769797970ef", + "cached": false + }, + "block_height": 757659, + "block_time": 1665211847, + "is_coinbase": false + }, + "witness": [ + "0x3044022019744c1becfab8d4b24de2050a9ec4260f5ec64551f9e96f98835da92289e64302203e8bbfafb5e5a02b8b978b958a632527cb0df1b8d1f3240058eb4855ef5388a901", + "0x03e9e25fd21f2ef6e923ad1c508ff5b86a4d030622d8b6bf75f3b6f0a947f47177" + ] + }, + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "bb293704dd6d8f2f4a016c089a5389d0bc4f48df30fe849d69aa0ae5179f9819", + "vout": 22, + "data": { + "value": 227599, + "pk_script": "0x00145fa5093c5cc6f6d6cd6eb679995f51aead1ed5a0", + "cached": false + }, + "block_height": 757333, + "block_time": 1665042744, + "is_coinbase": false + }, + "witness": [ + "0x304402204cc30e8fd4caebeb70382c08e1023c2ec9e4083d6c8b506a59c5d64a98e8858302205df11d3ad8acaddaf26bcb1cd7ce23252a84f30d3f928e6aaaf502d0e327880001", + "0x02a1a28c17fd49604c1753d90169944c26901a239cf4c97c11a5d1a47157189fbd" + ] + } + ], + "outputs": [ + { + "value": 487138, + "pk_script": "0x00147a0dd5e986766f6a1a0269bd3aabf5e07950630c", + "cached": false + }, + { + "value": 227353, + "pk_script": "0x00148cc327b1b56ca2ab4261a8c1d8d45379d714a673", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "f3d8b0a2f586bba2824d2f5279241d4917080367e0bce2091ea16b13a1d76696", + "vout": 1, + "data": { + "value": 101224, + "pk_script": "0x0014317cb16153e35648d38123516c5bf076d2966b0d", + "cached": false + }, + "block_height": 756293, + "block_time": 1664503868, + "is_coinbase": false + }, + "witness": [ + "0x304402202db7613cd84085a30ce18609588e4ed6e3e8a1560f9bba06c7a6e3c205b74b7b022036f03709a6744400d1f48396fc43d6d07c6104abcab2a2fbd83adfaf39cffad201", + "0x02ad1fe4d16a652a1238fb92d7001ff8ff48b541d9b0f33ebb60c9cfb58eed9b27" + ] + } + ], + "outputs": [ + { + "value": 101000, + "pk_script": "0x0014fedb079dde38ea67a9fa533ea07d8b26dee36752", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "9b25ed3ce6e2b5cab1ae497f3e492842cf3612fd7971d5a02694233d13ef9275", + "vout": 0, + "data": { + "value": 210000, + "pk_script": "0x0014fba271901401d16d05e34a5cfdfa81ece6c7bf44", + "cached": false + }, + "block_height": 757548, + "block_time": 1665157906, + "is_coinbase": false + }, + "witness": [ + "0x304402203db3f3fe373a5f8eac7fbca3cc1e3dc99e8d2148694c1372c2b2a76a37226fb90220729523ce9ac41b1f430303e52753373d531e70c49a9327410fa0a85a39a1a34f01", + "0x030b9d657a70d77c6365d83fa3879a13c2a120990cf609d8a25cc407769db0c0ce" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "ca7e79258df11a76eaa42664f9ddfb47923a0372d1790f9d5277c33c0b04d4d1", + "vout": 1, + "data": { + "value": 1000112, + "pk_script": "0x00147ce283713da856414dca53a6143ac7239970a41a", + "cached": false + }, + "block_height": 757698, + "block_time": 1665234821, + "is_coinbase": false + }, + "witness": [ + "0x3044022038f1b02acc9c3a6374eb634763eed7fefe4839bd82efae92c75a2e76272f72050220505df60d650739424ef39ddde9ce7ebef7fbf2bf8ae3bca017a58424ba513c9901", + "0x0295d8421f38b444eef83c5deb59e6010239660ed633dafb6a981cf66c194b96cc" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "82d22204c0135c5fb2f76a2d7b891fef6ed53702b7c4943be9ee44c4be28c955", + "vout": 1, + "data": { + "value": 134224, + "pk_script": "0x001480514ba9270fbbeac3097cf439075811222b78ce", + "cached": false + }, + "block_height": 755893, + "block_time": 1664266866, + "is_coinbase": false + }, + "witness": [ + "0x3044022055f2699b4ecab7c932063888647b8c31fa8d5b5a434190e8f9f695d67ae97f3702204ad644469f5b8690ef99d155b5216a4f64f0b6243acdfa1fb9d9dba234ef8d8901", + "0x0321595b0492cde8b10cb6f552068754157ad7e14dc6a7d64753d2aef902429978" + ] + }, + { + "script": "0x", + "sequence": 4294967294, + "previous_output": { + "txid": "56d80fd08a62ede3c43d57992b6eb73c3a1d2fc9182a39161b6c4e24d66cb62c", + "vout": 1, + "data": { + "value": 417369, + "pk_script": "0x00143803b290cfbae268f1ae29408d548a92b486c363", + "cached": false + }, + "block_height": 757599, + "block_time": 1665183304, + "is_coinbase": false + }, + "witness": [ + "0x3044022072b1cc58dca914939b9c9a7b8cf4b7eb3d982e561cab8825467a4c247f6a254d0220601b24478c4ed1a22efafc2f3b6d2a272c79d06b23496840321fbc2d75666f1101", + "0x02690f7d8906166f6723e704f6e0ac2d87a53f4f71b415635fbf41ba966614a262" + ] + } + ], + "outputs": [ + { + "value": 970000, + "pk_script": "0x0014dabc7d68153ee8dce3c07a28c3f3c5c96fa35e06", + "cached": false + }, + { + "value": 791013, + "pk_script": "0x00143974696c13d12f5e6bdb1294fa6a1829a0447627", + "cached": false + } + ], + "lock_time": 757731 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "fb2d148eb647309ee7a4f7cb9c1284e4adc60cee3c4382f5616ad30cd025b59b", + "vout": 1, + "data": { + "value": 77559739, + "pk_script": "0x002037fda9847471fa78ea3d67179ee99d5da51c66c8c69252c0954f2e134ec7340d", + "cached": false + }, + "block_height": 757728, + "block_time": 1665245428, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3045022100d0e118f12484226ab43c4da22fcb6d6990286b591a9bc42fa2a0ed2d26d4193402203fefb0c87a2e3d17736f529dc1453eb27cd85b5e86bf0c15dcb4b3ddcda2c6f001", + "0x304402202627cf616c80cc30021b8429bf3e31e1e746f96c78231606a039dba612bb6fc402206c2081d7fa25d337f3f36730905eb3d2c4e22d58e6ed2d880301cac262aac4a601", + "0x522103a890ac0810b85baef9dd591198617e3e672d2012db49fccfb3a8a98353efd9662103d667c56eaba170fdd82ae4770a1130f5903c8d91a9dc16bf32b59103acedcf7b21025c9bbc6f7fa4adc15b8127b0e088f720a59d8aad71f3714585078e968b3e3dca53ae" + ] + } + ], + "outputs": [ + { + "value": 123433, + "pk_script": "0xa91445d950cd2faeff89dcd21f1801d5aa79dfc5b67187", + "cached": false + }, + { + "value": 77435924, + "pk_script": "0x0020891c7bbbb20e949ac70c1fdf26e3618c20f16072077ffa19c55f8395960e657b", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "81624ce98446eb16bb3ffcac73c500399d689c344be8e545b4766f0585331e4c", + "vout": 1, + "data": { + "value": 4972393, + "pk_script": "0x001489eff04c294fb6d3a46270134ec6013fb889ef16", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [ + "0x3044022075f4cf67759b5289fc976c6ff7c0ea18215395e1a297bf11f3cb06372f616344022058f076c46b1f6e80b88604af26261550d1015bae6e79013697f12dd6e1d6dec801", + "0x03001d86ef16f337398a76796d8d9e4e45d7a20e7ba8ab8a9a633bc6368d540cd9" + ] + } + ], + "outputs": [ + { + "value": 4959263, + "pk_script": "0x00145f6a404e64bb262c13290c64ddf239da0ee8f4e4", + "cached": false + }, + { + "value": 12823, + "pk_script": "0x00204b29c20e4cefcbf9351c345fe2a69309d3f4f5c6c1854054b9de35ffeab21248", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100d843fbeb07058ac35891c11b959bbdbbcf32dfe8388c88c22001bf04207d43e802206720b0e34344394fa6b30c65fb2b9ab38739b523a5b4c15dd02e4b630610d036012103fc1372763426baec85f0f0c848c283cb4a49f24128488e7bb4657175f56f59cb", + "sequence": 4294967295, + "previous_output": { + "txid": "5e532a60c61230620391b2ab9d54a3c881951c26a94752c728ab7a9f141313de", + "vout": 0, + "data": { + "value": 20161148, + "pk_script": "0x76a9147b904242a4c2ad57cddd3b9e2b7d2aed67244dad88ac", + "cached": false + }, + "block_height": 757738, + "block_time": 1665249935, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 6667288, + "pk_script": "0x76a914bb4cb66ea1f746109b712ca2a1166c1bd9294b4888ac", + "cached": false + }, + { + "value": 13493408, + "pk_script": "0x76a914651d8c34ff02485b9017e3926541e1a8452464ae88ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": false, + "inputs": [ + { + "script": "0x47304402202e940e5fead1a2fe1a271f5f1268629e75e71d2ae00db2ff090492f2f9dd54440220010c916544dce08321e2a87f6bbb15073204b96a6ca503b6f1543f1506836edb01410470584e87f314924f00c5ca78dd0d7147a3d125135f0a9f89eaf5615fcd1899f0cec436790e08c3947b07b36039bb36e6e1283e39459242d48249c4e5fbc6de7e", + "sequence": 4294967295, + "previous_output": { + "txid": "ff0b776479b3705472b98625082f63452835688f3c3d6489716e728d9f47a439", + "vout": 1, + "data": { + "value": 373528750, + "pk_script": "0x76a9147711eab6ffcc99e4376ac39f4022de413e1ea2a988ac", + "cached": false + }, + "block_height": 757735, + "block_time": 1665249416, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 145000, + "pk_script": "0xa9148740a1ab00c09b21532f8ed77856ad4cc804ef2287", + "cached": false + }, + { + "value": 373383250, + "pk_script": "0x76a9147711eab6ffcc99e4376ac39f4022de413e1ea2a988ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x483045022100f2f9d997d87c7ecc23bad86bc0042638a13ed43a4d8874f3bfcdcb2ad346790702203d57359c76e9155a52b34cd0631c1e93695a9e5071f248bec088e561af700a67012102783ea770a0fefa751179bc821ca97374d1f22c62e3a7827104c9bc7ceece8cfe", + "sequence": 4294967295, + "previous_output": { + "txid": "d6fd9005cef78b73dedf81faf31a4320db4492394c8e26641a43a152ffc45eb3", + "vout": 7, + "data": { + "value": 717436, + "pk_script": "0x76a9142e70364cfed8761914d5f91a923dc5c2b26dfce988ac", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x483045022100afc1801bb52041b31a50b27197efb29377ac78dcf8ee0f4d40562f370489fc8a022031f63b27eb4005a8a5cb8fa3ad37a702cfd711cbf3c7c56670335faa9badeacd01210223f7ae0b7ba8b12d9f2d44b90a79a3de9d8117082f55cab9a2ff69794112a58e", + "sequence": 4294967295, + "previous_output": { + "txid": "1f98b029fb03be9c2deb56c2e41ae777c46d24a1cc3f63ed1ef97718f32f5e4f", + "vout": 3, + "data": { + "value": 752624, + "pk_script": "0x76a914b4a789ce3b27f32fe0c5f443d01bf81ef5cf743988ac", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 1082509, + "pk_script": "0x76a91481a4302fd10782a7256cc3a6c198d7becf672b0a88ac", + "cached": false + }, + { + "value": 386893, + "pk_script": "0x76a914bf6fbe97d9d66de946b0e2109a9704a88a6ecff388ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "71a1fd7ce30223e6df4adade9b2d7b3ea891db1e44b009b2fd61bfd1458d8a68", + "vout": 117, + "data": { + "value": 2836775, + "pk_script": "0x0020ddc9efe2471c1ed3a002b02dd093d3da115d7ee48591461ae417dcb9c43d92d4", + "cached": false + }, + "block_height": 757731, + "block_time": 1665247316, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3044022053ecc7a9cc998723dce75d1211af2418601342dc4716a24a89b283fb23ed03f90220505c265fe5d02970e35bf66298777350f638bcdd1bef827b762f909c9afca00401", + "0x3045022100892578b6c46525ae60567bd927cad47a3a34cd844e6757526267b387ac1bdf4202203a5178757fe4bbfea05a9f1b4141c710190dc38e70b248cfd3f07c915c44fc2901", + "0x52210332a990746e8fc8e37e4346f5e8a9b4b5cbe2fbaf7e3dcb7b47fadcb852a8327d2102e6955baa4fa9faac067e868ca08ec1c0539f3af2503b7a459bb10eb7586d94bd52ae" + ] + }, + { + "script": "0x", + "sequence": 4294967295, + "previous_output": { + "txid": "fab3eb59277f9106479eed0133c7f2a08b138508a4c3359f0121ca995a3c0862", + "vout": 126, + "data": { + "value": 240466, + "pk_script": "0x0020ddc9efe2471c1ed3a002b02dd093d3da115d7ee48591461ae417dcb9c43d92d4", + "cached": false + }, + "block_height": 757732, + "block_time": 1665248544, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x304402203c076853f064126563699f278f9753d1765fd1884917051a831331f380f476d7022069f97e4a8e4d7c445ea41eedb764528861e7401ab93be5830e0f73213a684f1c01", + "0x30450221009e4dd9cef458c5f6981643e8664dc4b8308fc80aaaea32743df1b5e360cf3b3d02205e8bcbaff1924e20be78a7ab34d5428bc4aa58af88184178059872351ad8b1c901", + "0x52210332a990746e8fc8e37e4346f5e8a9b4b5cbe2fbaf7e3dcb7b47fadcb852a8327d2102e6955baa4fa9faac067e868ca08ec1c0539f3af2503b7a459bb10eb7586d94bd52ae" + ] + } + ], + "outputs": [ + { + "value": 3076888, + "pk_script": "0x76a914b71fc91c4e944b49d24647aa4934ae135f7eca4588ac", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 2, + "is_segwit": true, + "inputs": [ + { + "script": "0x", + "sequence": 4294967293, + "previous_output": { + "txid": "11fd52613860bb90f379ca48201e7ff047913187b904ad84973d111398f97863", + "vout": 1, + "data": { + "value": 233100, + "pk_script": "0x00208ee5855e25e952df928d06a69aa4846ec2995ffa6632794208e4f8b92f21bd62", + "cached": false + }, + "block_height": 725621, + "block_time": 1646245273, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x304402204ffb8f022395ffa1db04861d1ed7dac027bce723cccdd07d6699bf8beb2074da02204e14bdc8e330c15353466a36a634cccfd52cf10e05c61736bc9440779a7430ab01", + "0x304402200f6ca8c8db65a4c46551afa5c652bd7b9310c0b281bc419591ab113a0df5fa1c0220127df7f3512bd33839b90c50496d623d78a44174b18068c3fda95b47f621d97901", + "0x522102319fbd33936babe38379dd634822fc99c4e43dbef2cc94736e8fb0858d6d03f621027fece5ffd0677408e6d6e0693f0203cfb6b00040dfbe733bcc6d89fd645ed8fd2102a55334b12ef838a6c7efcf48f99051c93d6e97c5df32880b25e440a49b7fcd7153ae" + ] + } + ], + "outputs": [ + { + "value": 111670, + "pk_script": "0x0014ac408439ee059437041c469afdef5cc24ef208a4", + "cached": false + }, + { + "value": 121220, + "pk_script": "0x0020b7f122e601dd5c446f9af07621ceaafda92a5245611411841492a09e6504d77e", + "cached": false + } + ], + "lock_time": 757737 + }, + { + "version": 1, + "is_segwit": false, + "inputs": [ + { + "script": "0x004830450221008e734012c2af9c1db3a0d3e6ee558c2aebcb4d88cc43366b501a60fc6144754002200a3f3f9eb737448cbc0be30e69e08c38c86074dd929997625be6d8c17c4f6bb701473044022027070cc688b9f455acc27a4f6c63fff488cd096c146ef653e94ca37ad8ea4a6302206ee436ac9cd8c2303641bbc00112048b4e77cca8afd8596e3fb447914cbec52f014c69522102c6da6bd0e6a775d8a80157ed35a233f91a827535ad9dc0d7acf2ffe09adc3ada2103ec2fb8583db2e6fd0e01f400710ccf47de641e0c5231e6ab867f3323233d13282103750a46f3ed6ed4c468fbbb022b9683d5e9a7c984aa837e88f6952bfc48aebef053ae", + "sequence": 4294967295, + "previous_output": { + "txid": "4da79a432e1b0b4e461ff9ba1b13c18c70604e5b62f06696b25ab4dc9e433579", + "vout": 92, + "data": { + "value": 398107, + "pk_script": "0xa914f500fe6addcb5f128592b27cc855b8d0614900d687", + "cached": false + }, + "block_height": 756789, + "block_time": 1664758496, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x00473044022069e3852c579db281ea01d9f0cca1ec1488e57d4b74944c324ab77982be936b3d02205d49c266d08cf3c8b2ffece668cb71ea2ebf77d378bdb5ca56e11033dcd5124c0147304402205c1d794b9d1eb6d3fd469dbed3bc2ad562d5432016c23bebdf3b2e81ce9ad3f90220479c52c3ca1c609fcb2d3913a3473ec93e74381f94ee1293711b1c04de08ab96014c69522102c6da6bd0e6a775d8a80157ed35a233f91a827535ad9dc0d7acf2ffe09adc3ada2103ec2fb8583db2e6fd0e01f400710ccf47de641e0c5231e6ab867f3323233d13282103750a46f3ed6ed4c468fbbb022b9683d5e9a7c984aa837e88f6952bfc48aebef053ae", + "sequence": 4294967295, + "previous_output": { + "txid": "699446f44205b5d5aee99d2df64a1cb72acf086ab686a9aa55d4ed8debef2737", + "vout": 168, + "data": { + "value": 135419, + "pk_script": "0xa914f500fe6addcb5f128592b27cc855b8d0614900d687", + "cached": false + }, + "block_height": 757435, + "block_time": 1665099208, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x004730440220636e4501ad3e6eacf5baea71a22be0d1e33e9ec073e683d39028d26ad7531cb902207849e4967628c93242535a5f7b2f168dfb06644e2f6cc331e09c49be0c63ab510147304402207ec831bacae4180aa10215e8f2665324ebc0f8785102c181367c0bee20fc6785022033a3bd78f1ebe078bf4c7a6b097678ebbcad7c061b1e1699373d235ffcb486fc014c69522102c6da6bd0e6a775d8a80157ed35a233f91a827535ad9dc0d7acf2ffe09adc3ada2103ec2fb8583db2e6fd0e01f400710ccf47de641e0c5231e6ab867f3323233d13282103750a46f3ed6ed4c468fbbb022b9683d5e9a7c984aa837e88f6952bfc48aebef053ae", + "sequence": 4294967295, + "previous_output": { + "txid": "a38bde17ce6a9f5f205d3b3a38fbb4add1ab9a707b3544dc6be910a0d584270f", + "vout": 36, + "data": { + "value": 296235, + "pk_script": "0xa914f500fe6addcb5f128592b27cc855b8d0614900d687", + "cached": false + }, + "block_height": 756797, + "block_time": 1664763456, + "is_coinbase": false + }, + "witness": [] + }, + { + "script": "0x00483045022100e3f885fc58c2370bc7c73d2ffb990bd11941d28a8ebb97b43c48bfc42cbc2f720220605acebded05fdc0f070231c6944b7e6ce2c590a6671bf35e187913ac3503c780147304402204786bbdf6294799b10aa5bbc304034556a284ec36f106dff803333c84f4aa03902204cb3e653d10432d9e86a2b31b16c84e7d4ea1b3b7e0c2c52b15d06b2ca0a7139014c69522102c6da6bd0e6a775d8a80157ed35a233f91a827535ad9dc0d7acf2ffe09adc3ada2103ec2fb8583db2e6fd0e01f400710ccf47de641e0c5231e6ab867f3323233d13282103750a46f3ed6ed4c468fbbb022b9683d5e9a7c984aa837e88f6952bfc48aebef053ae", + "sequence": 4294967295, + "previous_output": { + "txid": "bb298013187e4d12f12923562fb007fdb01b1baed0f5ff5b0759f6eedcadaee1", + "vout": 8, + "data": { + "value": 266736, + "pk_script": "0xa914f500fe6addcb5f128592b27cc855b8d0614900d687", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [] + } + ], + "outputs": [ + { + "value": 1095234, + "pk_script": "0xa914350c4a5875535bcfae8e8fa5c78fe8d31851e60e87", + "cached": false + } + ], + "lock_time": 0 + }, + { + "version": 1, + "is_segwit": true, + "inputs": [ + { + "script": "0x220020931ef8d40289817e493e3ea769b773b03643f65eea56dcfbe43c3d3724fa76eb", + "sequence": 4294967295, + "previous_output": { + "txid": "e7fb98109c89311e721a5dbce6715f85d11e8a0a5aa21a0197bd1c982c5193c7", + "vout": 1, + "data": { + "value": 999999, + "pk_script": "0xa914418adb947b13edb7e7bdb7f0dbeeabcde60c3e3087", + "cached": false + }, + "block_height": 757737, + "block_time": 1665249850, + "is_coinbase": false + }, + "witness": [ + "0x", + "0x3045022100e09f340ac506a0aa8fb66f70c912864be324d84b70be419bef85ccab679f013f022066110828581a085e8b1e70b93f67ba3def4acc47cdcd21f641ef9351e929ebe101", + "0x3044022045949aaeb2e4484d73e1303703d6a3fc6b8cc421ca71c49236ec763531f0ca2502204a657aa219efc02317f1b2a0f716b552f363509d73a6d23d87c051b20e62cc9901", + "0x52210363db89d33491aee5d7c2ee87f133872f5b33bca2c41425b8b0147848e1770a5e2103a72c08c9919b182be34e34ee9e32c84d0f030ffea5832e12b1a33ff7f26b6b9c2102248c4289d9a2d23c823efadc4a49e6f1e2563579ead1cfe85c2146e8cc27f84c53ae" + ] + } + ], + "outputs": [ + { + "value": 999810, + "pk_script": "0xa914350c4a5875535bcfae8e8fa5c78fe8d31851e60e87", + "cached": false + } + ], + "lock_time": 0 + } + ] + } + } + ], + "expected": { + "block_height": 757739, + "total_work": "16927952857941653568697532352", + "best_block_hash": "00000000000000000002601c74946371bd1bf00ad3154f011c20abad1cabd0ea", + "current_target": "859664032087861081904916640712713969859737457373741056", + "epoch_start_time": 1664333794, + "prev_timestamps": [ + 1665245458, + 1665245937, + 1665247316, + 1665248544, + 1665248564, + 1665248868, + 1665249416, + 1665249581, + 1665249850, + 1665249935, + 1665249955 + ] + } +} \ No newline at end of file