block_io 1.0.6 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +5 -5
  2. data/.appveyor.yml-disabled +26 -0
  3. data/.gitignore +5 -1
  4. data/.rspec +1 -0
  5. data/.travis.yml +14 -0
  6. data/LICENSE +1 -1
  7. data/README.md +22 -13
  8. data/block_io.gemspec +9 -8
  9. data/examples/basic.rb +38 -10
  10. data/examples/dtrust.rb +60 -42
  11. data/examples/proxy.rb +36 -0
  12. data/examples/sweeper.rb +24 -14
  13. data/lib/block_io.rb +16 -399
  14. data/lib/block_io/api_exception.rb +11 -0
  15. data/lib/block_io/chainparams/BTC.yml +8 -0
  16. data/lib/block_io/chainparams/BTCTEST.yml +8 -0
  17. data/lib/block_io/chainparams/DOGE.yml +8 -0
  18. data/lib/block_io/chainparams/DOGETEST.yml +8 -0
  19. data/lib/block_io/chainparams/LTC.yml +8 -0
  20. data/lib/block_io/chainparams/LTCTEST.yml +8 -0
  21. data/lib/block_io/client.rb +243 -0
  22. data/lib/block_io/extended_bitcoinrb.rb +127 -0
  23. data/lib/block_io/helper.rb +262 -0
  24. data/lib/block_io/key.rb +38 -0
  25. data/lib/block_io/version.rb +1 -1
  26. data/spec/client_misc_spec.rb +76 -0
  27. data/spec/client_spec.rb +68 -0
  28. data/spec/dtrust_spec.rb +167 -0
  29. data/spec/helper_spec.rb +44 -0
  30. data/spec/key_spec.rb +92 -0
  31. data/spec/larger_transaction_spec.rb +351 -0
  32. data/spec/spec_helper.rb +5 -0
  33. data/spec/sweep_spec.rb +115 -0
  34. data/spec/test-cases/.gitignore +2 -0
  35. data/spec/test-cases/LICENSE +21 -0
  36. data/spec/test-cases/README.md +2 -0
  37. data/spec/test-cases/json/create_and_sign_transaction_response.json +61 -0
  38. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json +1261 -0
  39. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json +1266 -0
  40. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json +1271 -0
  41. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json +3816 -0
  42. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2SH_3of5_195inputs.json +2931 -0
  43. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2SH_4of5_195inputs.json +5 -0
  44. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_251inputs.json +3771 -0
  45. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_252inputs.json +3786 -0
  46. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_253inputs.json +3801 -0
  47. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_251inputs.json +5 -0
  48. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_252inputs.json +5 -0
  49. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_253inputs.json +5 -0
  50. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_251inputs.json +3771 -0
  51. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_252inputs.json +3786 -0
  52. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_253inputs.json +3801 -0
  53. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_251inputs.json +5 -0
  54. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_252inputs.json +5 -0
  55. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_253inputs.json +5 -0
  56. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2sh_3_of_5_keys.json +21 -0
  57. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2sh_4_of_5_keys.json +5 -0
  58. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_3_of_5_keys.json +21 -0
  59. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_4_of_5_keys.json +5 -0
  60. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3_of_5_keys.json +36 -0
  61. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_251outputs.json +591 -0
  62. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_252outputs.json +576 -0
  63. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_253outputs.json +531 -0
  64. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4_of_5_keys.json +5 -0
  65. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_251outputs.json +5 -0
  66. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_252outputs.json +5 -0
  67. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_253outputs.json +5 -0
  68. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2pkh.json +5 -0
  69. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2wpkh.json +5 -0
  70. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2wpkh_over_p2sh.json +5 -0
  71. data/spec/test-cases/json/create_and_sign_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +21 -0
  72. data/spec/test-cases/json/get_balance_response.json +8 -0
  73. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2SH_3of5_195inputs.json +1397 -0
  74. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2SH_4of5_195inputs.json +1397 -0
  75. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_251inputs.json +1795 -0
  76. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_252inputs.json +1802 -0
  77. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_253inputs.json +1809 -0
  78. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_251inputs.json +1789 -0
  79. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_252inputs.json +1802 -0
  80. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_253inputs.json +1809 -0
  81. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_251inputs.json +1795 -0
  82. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_252inputs.json +1802 -0
  83. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_253inputs.json +1809 -0
  84. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_251inputs.json +1795 -0
  85. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_252inputs.json +1802 -0
  86. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_253inputs.json +1809 -0
  87. data/spec/test-cases/json/prepare_dtrust_transaction_response_p2sh.json +45 -0
  88. data/spec/test-cases/json/prepare_dtrust_transaction_response_p2wsh_over_p2sh.json +45 -0
  89. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0.json +52 -0
  90. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_251outputs.json +1805 -0
  91. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_252outputs.json +1804 -0
  92. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_253outputs.json +1789 -0
  93. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_251outputs.json +1805 -0
  94. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_252outputs.json +1804 -0
  95. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_253outputs.json +1789 -0
  96. data/spec/test-cases/json/prepare_sweep_transaction_response_p2pkh.json +35 -0
  97. data/spec/test-cases/json/prepare_sweep_transaction_response_p2wpkh.json +35 -0
  98. data/spec/test-cases/json/prepare_sweep_transaction_response_p2wpkh_over_p2sh.json +35 -0
  99. data/spec/test-cases/json/prepare_transaction_response.json +164 -0
  100. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json +1796 -0
  101. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json +1803 -0
  102. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json +1810 -0
  103. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json +5367 -0
  104. data/spec/test-cases/json/prepare_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +76 -0
  105. data/spec/test-cases/json/summarize_prepared_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +6 -0
  106. metadata +249 -43
@@ -0,0 +1,1803 @@
1
+ {
2
+ "status": "success",
3
+ "data": {
4
+ "network": "LTCTEST",
5
+ "tx_type": "basic",
6
+ "inputs": [
7
+ {
8
+ "input_index": 0,
9
+ "previous_txid": "e52c368612ce1b02748d5f34637825f3d666702f209cbc1a3f1d385083ef4919",
10
+ "previous_output_index": 3,
11
+ "input_value": "0.00130855",
12
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
13
+ },
14
+ {
15
+ "input_index": 1,
16
+ "previous_txid": "d5d1f24d766e9d137fc22b1a3a8bddec69316f4e4a689d7c910d034dbd61919f",
17
+ "previous_output_index": 3,
18
+ "input_value": "0.00189070",
19
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
20
+ },
21
+ {
22
+ "input_index": 2,
23
+ "previous_txid": "6ae44e3da4c2db4fa2b1786cec7e73ad38da5c5923dd77f8eb142da2788b7097",
24
+ "previous_output_index": 3,
25
+ "input_value": "0.00188479",
26
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
27
+ },
28
+ {
29
+ "input_index": 3,
30
+ "previous_txid": "6608367ef7359dad7d6a1c0a77b1af628311fa6cb8a164e53ddfa6a0d4586252",
31
+ "previous_output_index": 3,
32
+ "input_value": "0.00155510",
33
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
34
+ },
35
+ {
36
+ "input_index": 4,
37
+ "previous_txid": "c89ea94d13d291904a56be07e9547c922908281c3c5cc09d1fd36fd11d4fc576",
38
+ "previous_output_index": 3,
39
+ "input_value": "0.00117795",
40
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
41
+ },
42
+ {
43
+ "input_index": 5,
44
+ "previous_txid": "6dbe7dd472cb593409c77a9d911275b0184eb43bef896d265fe075ff804a0e55",
45
+ "previous_output_index": 3,
46
+ "input_value": "0.00155565",
47
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
48
+ },
49
+ {
50
+ "input_index": 6,
51
+ "previous_txid": "81cabd532629b4ce2816293c584cb34ce72c5580ee6067d82cceb44280e05ce0",
52
+ "previous_output_index": 3,
53
+ "input_value": "0.00188985",
54
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
55
+ },
56
+ {
57
+ "input_index": 7,
58
+ "previous_txid": "c062dad99c44aab8c3edb05ef9e4771064b4cc413d451360c1ef77d4743cac31",
59
+ "previous_output_index": 3,
60
+ "input_value": "0.00167460",
61
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
62
+ },
63
+ {
64
+ "input_index": 8,
65
+ "previous_txid": "00e6423c83750b1cccea7e1d1c08a8b203b656968a1ba1fa95503470a13b5b53",
66
+ "previous_output_index": 3,
67
+ "input_value": "0.00139390",
68
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
69
+ },
70
+ {
71
+ "input_index": 9,
72
+ "previous_txid": "ef0a7ed61e1faf7fbd6d1cd6fbdf7693f7a7658e50fa4db06d614e13a6570108",
73
+ "previous_output_index": 3,
74
+ "input_value": "0.00185972",
75
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
76
+ },
77
+ {
78
+ "input_index": 10,
79
+ "previous_txid": "3e797cfa0776a0c9041626cbc50382cf46a12f2075c9ae06c29315b731e32e3c",
80
+ "previous_output_index": 3,
81
+ "input_value": "0.00141982",
82
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
83
+ },
84
+ {
85
+ "input_index": 11,
86
+ "previous_txid": "d5c503d0225d8d9176afdb1ad4bc425976c71dff6b7b720e75e17345ee190334",
87
+ "previous_output_index": 3,
88
+ "input_value": "0.00154700",
89
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
90
+ },
91
+ {
92
+ "input_index": 12,
93
+ "previous_txid": "71b3e632837ac429837154f2c6d48567ccc911495bfd35c88e1f2d1302fd388d",
94
+ "previous_output_index": 3,
95
+ "input_value": "0.00160288",
96
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
97
+ },
98
+ {
99
+ "input_index": 13,
100
+ "previous_txid": "05d24e88dc61cb4128040c9ffce6516d700a4e4570e1ac8b533cf9d0b1f79bbb",
101
+ "previous_output_index": 3,
102
+ "input_value": "0.00166384",
103
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
104
+ },
105
+ {
106
+ "input_index": 14,
107
+ "previous_txid": "2edaee62d00e1f9f272021a0d0768f18335aadfaaca303d949f4f2f4c9600434",
108
+ "previous_output_index": 3,
109
+ "input_value": "0.00136233",
110
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
111
+ },
112
+ {
113
+ "input_index": 15,
114
+ "previous_txid": "e0ab3f0f8015216850876e08d02b15d11b48e4bb76042de09dd221ee477f2b26",
115
+ "previous_output_index": 3,
116
+ "input_value": "0.00127620",
117
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
118
+ },
119
+ {
120
+ "input_index": 16,
121
+ "previous_txid": "0799db6a82bc696691b60eaccb8441c6ec8bc1d0ac017ba1aee26f7e121e3b66",
122
+ "previous_output_index": 3,
123
+ "input_value": "0.00149090",
124
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
125
+ },
126
+ {
127
+ "input_index": 17,
128
+ "previous_txid": "7eea558283cbc44a4a3f2450eed7a441633ab07d69a37f4a6490ccf3819b9257",
129
+ "previous_output_index": 3,
130
+ "input_value": "0.00110839",
131
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
132
+ },
133
+ {
134
+ "input_index": 18,
135
+ "previous_txid": "37a4b7543221096f4a7083ee8f510590e12f84dc48ce03ddf6eda1b1c06e8da3",
136
+ "previous_output_index": 3,
137
+ "input_value": "0.00130615",
138
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
139
+ },
140
+ {
141
+ "input_index": 19,
142
+ "previous_txid": "fa7a2d1312e63733590f96c2fb8050eaddcbcd28ca3e78df26213edaa93385ae",
143
+ "previous_output_index": 3,
144
+ "input_value": "0.00163516",
145
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
146
+ },
147
+ {
148
+ "input_index": 20,
149
+ "previous_txid": "ae8ac7816d7334e6e65954b0c10284cb32fb868d5464732add231b4907b68cc8",
150
+ "previous_output_index": 3,
151
+ "input_value": "0.00154650",
152
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
153
+ },
154
+ {
155
+ "input_index": 21,
156
+ "previous_txid": "ff09155bd6f05d43cb4947031fc3c70fd923638dd165b60de0682cb1dd625113",
157
+ "previous_output_index": 3,
158
+ "input_value": "0.00123996",
159
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
160
+ },
161
+ {
162
+ "input_index": 22,
163
+ "previous_txid": "a12e5bdd86302492e658943bf5f600d994efb6d888906bb87379619bc9632d5c",
164
+ "previous_output_index": 3,
165
+ "input_value": "0.00127253",
166
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
167
+ },
168
+ {
169
+ "input_index": 23,
170
+ "previous_txid": "f0533af46574b64e7bd41fc28bf63afaf3e85a0b2ef89e72ad5a108413d5cae8",
171
+ "previous_output_index": 3,
172
+ "input_value": "0.00187855",
173
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
174
+ },
175
+ {
176
+ "input_index": 24,
177
+ "previous_txid": "b46b07323d27b81757ba9714d849e1121a5815db5a82586545dbb410cf24d8be",
178
+ "previous_output_index": 3,
179
+ "input_value": "0.00150014",
180
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
181
+ },
182
+ {
183
+ "input_index": 25,
184
+ "previous_txid": "18d96710884e27fbcd76471fd3688ce8f7e60f7a02255e49d222aa85558341bc",
185
+ "previous_output_index": 3,
186
+ "input_value": "0.00198181",
187
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
188
+ },
189
+ {
190
+ "input_index": 26,
191
+ "previous_txid": "bcda02098ce131f8cc7af9e32e8acc29a0c8fa2b52c1e1f35d1176d8e97f9c78",
192
+ "previous_output_index": 3,
193
+ "input_value": "0.00164889",
194
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
195
+ },
196
+ {
197
+ "input_index": 27,
198
+ "previous_txid": "d3da23c6ddc112a190bd7a175862ebe7b4bbb360e5721717b1c850375902701b",
199
+ "previous_output_index": 3,
200
+ "input_value": "0.00124278",
201
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
202
+ },
203
+ {
204
+ "input_index": 28,
205
+ "previous_txid": "26a14b04b992b24eaa4f27ae5bc91763327f6a576960fc4a52e0b1eb54e59b73",
206
+ "previous_output_index": 3,
207
+ "input_value": "0.00184517",
208
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
209
+ },
210
+ {
211
+ "input_index": 29,
212
+ "previous_txid": "6c04067c34c403029e82e70d18823ed2ed7ccb070a0fcd8d9aa39cd59cd48c46",
213
+ "previous_output_index": 3,
214
+ "input_value": "0.00195827",
215
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
216
+ },
217
+ {
218
+ "input_index": 30,
219
+ "previous_txid": "c017fdcaabc88047a7e84ae5ff49fad4eebd54ea8e79cf3f5bc7e29676851bd6",
220
+ "previous_output_index": 3,
221
+ "input_value": "0.00146504",
222
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
223
+ },
224
+ {
225
+ "input_index": 31,
226
+ "previous_txid": "6c6f93f5dca09be87eb232616083ab9f89052d4d36abefef9e0f42e997ea046b",
227
+ "previous_output_index": 3,
228
+ "input_value": "0.00171190",
229
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
230
+ },
231
+ {
232
+ "input_index": 32,
233
+ "previous_txid": "37b4c3822dbd0faa829e4910184629547062829afb0697a7570085d7ceef9958",
234
+ "previous_output_index": 3,
235
+ "input_value": "0.00132411",
236
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
237
+ },
238
+ {
239
+ "input_index": 33,
240
+ "previous_txid": "cc09853a5d4148a3f2c8f9a2a7c1a15ad75b52aea381a79e9cc94fbec527e8e1",
241
+ "previous_output_index": 3,
242
+ "input_value": "0.00122317",
243
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
244
+ },
245
+ {
246
+ "input_index": 34,
247
+ "previous_txid": "0c85d592e772ee49b8df91c569aed8c80e4432f1b9838f5a0ed170b3a26c5837",
248
+ "previous_output_index": 3,
249
+ "input_value": "0.00139958",
250
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
251
+ },
252
+ {
253
+ "input_index": 35,
254
+ "previous_txid": "6719e3ef14e5eefb11bc4b9efde47c7296156a5db5a7788e5f53eb42949aec4f",
255
+ "previous_output_index": 3,
256
+ "input_value": "0.00153349",
257
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
258
+ },
259
+ {
260
+ "input_index": 36,
261
+ "previous_txid": "de2933d974da899391b9c3e8be66cda17a4ac088cbb6362500d2ac05d91c69aa",
262
+ "previous_output_index": 3,
263
+ "input_value": "0.00119841",
264
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
265
+ },
266
+ {
267
+ "input_index": 37,
268
+ "previous_txid": "844dac1b92e761d58b29c6075f5a78e6e0daad6fe966e75aef65ba7b363b70a0",
269
+ "previous_output_index": 3,
270
+ "input_value": "0.00193180",
271
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
272
+ },
273
+ {
274
+ "input_index": 38,
275
+ "previous_txid": "1cbb74ae67d35ce837deb64fa341c0643694de7e1b5ceaf5b4bd8c8e4ad83db1",
276
+ "previous_output_index": 3,
277
+ "input_value": "0.00186587",
278
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
279
+ },
280
+ {
281
+ "input_index": 39,
282
+ "previous_txid": "bbf3c3ccf32eabfd36c871a65271b52def120914c1e7842729b2cc0d77505b47",
283
+ "previous_output_index": 3,
284
+ "input_value": "0.00148646",
285
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
286
+ },
287
+ {
288
+ "input_index": 40,
289
+ "previous_txid": "5428ce53ba3502494050a0e7b88322d30b23649bdfb6ca0aa2779a87adc08c83",
290
+ "previous_output_index": 3,
291
+ "input_value": "0.00154970",
292
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
293
+ },
294
+ {
295
+ "input_index": 41,
296
+ "previous_txid": "3c133149d93994fae7d361d6a0f23edd0ccded289fa2b6d1bd27eb2d6273e6d6",
297
+ "previous_output_index": 3,
298
+ "input_value": "0.00118514",
299
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
300
+ },
301
+ {
302
+ "input_index": 42,
303
+ "previous_txid": "a6c4328550c3331879b3e1139cb2cd01628612352dbf2ff0c4b853d7cc24f859",
304
+ "previous_output_index": 3,
305
+ "input_value": "0.00149252",
306
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
307
+ },
308
+ {
309
+ "input_index": 43,
310
+ "previous_txid": "997087754c44a037dec2ca6301d775583e7b4aa8371ea00769c3464f7948a0d0",
311
+ "previous_output_index": 3,
312
+ "input_value": "0.00183423",
313
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
314
+ },
315
+ {
316
+ "input_index": 44,
317
+ "previous_txid": "2ee6e8c7a21f9fb528125d61835293ba7248d0592482851704656fd4f6d8df96",
318
+ "previous_output_index": 3,
319
+ "input_value": "0.00166180",
320
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
321
+ },
322
+ {
323
+ "input_index": 45,
324
+ "previous_txid": "9220dfa1f063961ce39101aa0513b6a666c5aaf618390019bdfd294f8039c67c",
325
+ "previous_output_index": 3,
326
+ "input_value": "0.00113394",
327
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
328
+ },
329
+ {
330
+ "input_index": 46,
331
+ "previous_txid": "cde2481bd6400b5853ddd30cdc6ee7411b33e6860f705fb281e0fe93aa7471ec",
332
+ "previous_output_index": 3,
333
+ "input_value": "0.00119210",
334
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
335
+ },
336
+ {
337
+ "input_index": 47,
338
+ "previous_txid": "88dc99476193e8d5ccfc373cfef9bdf905b903d64f74f20524fdc746afce23aa",
339
+ "previous_output_index": 3,
340
+ "input_value": "0.00198391",
341
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
342
+ },
343
+ {
344
+ "input_index": 48,
345
+ "previous_txid": "bf679bba92aa5a854b620463604705b5dd0bc6fcda3263095a925f844c9af605",
346
+ "previous_output_index": 3,
347
+ "input_value": "0.00158949",
348
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
349
+ },
350
+ {
351
+ "input_index": 49,
352
+ "previous_txid": "96fb654fc3302e76c8b1dfda83d98cf828b87332c42b21af40bfa77fc3757ca6",
353
+ "previous_output_index": 3,
354
+ "input_value": "0.00136325",
355
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
356
+ },
357
+ {
358
+ "input_index": 50,
359
+ "previous_txid": "ce85252c35a94cc808db829c35433573733575797714a2669f956d93328d0e9d",
360
+ "previous_output_index": 3,
361
+ "input_value": "0.00121629",
362
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
363
+ },
364
+ {
365
+ "input_index": 51,
366
+ "previous_txid": "dfffa60382ddabe6539a6fde8295a3111f197c397c93b10b8a6c607741dcdfc2",
367
+ "previous_output_index": 3,
368
+ "input_value": "0.00122483",
369
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
370
+ },
371
+ {
372
+ "input_index": 52,
373
+ "previous_txid": "20b4af8fb495a89e5dc15d1e575376a27234bb14c78efb775b5bce2f3d8f2093",
374
+ "previous_output_index": 3,
375
+ "input_value": "0.00130404",
376
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
377
+ },
378
+ {
379
+ "input_index": 53,
380
+ "previous_txid": "3599534070bdc951064ee24f544b38070088efa4cfe6862b451df41dd0cba76a",
381
+ "previous_output_index": 3,
382
+ "input_value": "0.00180347",
383
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
384
+ },
385
+ {
386
+ "input_index": 54,
387
+ "previous_txid": "f885179389eb989a4168f2be5258879a687fe4c9fad6bfca29058b49f708a36a",
388
+ "previous_output_index": 3,
389
+ "input_value": "0.00140530",
390
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
391
+ },
392
+ {
393
+ "input_index": 55,
394
+ "previous_txid": "5304c85c3e85f2f8c5eab4c7d9155511cd6fb1f39958ffb2986d1d32b1233e5f",
395
+ "previous_output_index": 3,
396
+ "input_value": "0.00147700",
397
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
398
+ },
399
+ {
400
+ "input_index": 56,
401
+ "previous_txid": "c4189167d3c9dde255bd870f0e07aaaafc3abfceaea60b053457bc72976d4394",
402
+ "previous_output_index": 3,
403
+ "input_value": "0.00152606",
404
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
405
+ },
406
+ {
407
+ "input_index": 57,
408
+ "previous_txid": "675bd2e826c78fdaa94b34e76968a289d75d79c81299333ba8c17db4b4052a69",
409
+ "previous_output_index": 3,
410
+ "input_value": "0.00164938",
411
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
412
+ },
413
+ {
414
+ "input_index": 58,
415
+ "previous_txid": "cf5a39836d547958b8449854ec8f6fd128ed6980b50d53d061203832daa176c4",
416
+ "previous_output_index": 3,
417
+ "input_value": "0.00197688",
418
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
419
+ },
420
+ {
421
+ "input_index": 59,
422
+ "previous_txid": "9c211da5665f0a032a4c6b0fb3491471709f0e0e24f66fb76d3eeb867708c1bd",
423
+ "previous_output_index": 3,
424
+ "input_value": "0.00122902",
425
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
426
+ },
427
+ {
428
+ "input_index": 60,
429
+ "previous_txid": "f8f01754e4474658356af73f1e45e67600bdf90325e144af6d0743a4df5a1009",
430
+ "previous_output_index": 3,
431
+ "input_value": "0.00127540",
432
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
433
+ },
434
+ {
435
+ "input_index": 61,
436
+ "previous_txid": "792cbc05db274e19772285decde959649f2181cd7101957850d5faabdf9ca1a3",
437
+ "previous_output_index": 3,
438
+ "input_value": "0.00176005",
439
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
440
+ },
441
+ {
442
+ "input_index": 62,
443
+ "previous_txid": "cbf9407d056956f5bf839632e6863592d74b12e930a6aaf059df5634b7765382",
444
+ "previous_output_index": 3,
445
+ "input_value": "0.00125655",
446
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
447
+ },
448
+ {
449
+ "input_index": 63,
450
+ "previous_txid": "471769727f0708b1ea6449bbb5e6426fd8691c7e98f51f9e8e1636c78e92977d",
451
+ "previous_output_index": 3,
452
+ "input_value": "0.00131730",
453
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
454
+ },
455
+ {
456
+ "input_index": 64,
457
+ "previous_txid": "b1293d18f7d4e738e610043802e8fde0ecbb1dda2f2bbde9c0d0c29a6bd2bbcd",
458
+ "previous_output_index": 3,
459
+ "input_value": "0.00152590",
460
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
461
+ },
462
+ {
463
+ "input_index": 65,
464
+ "previous_txid": "b1829bc4036f3689be1ef0736b12ea301617baf40c55ac8504231222676ee5aa",
465
+ "previous_output_index": 3,
466
+ "input_value": "0.00173716",
467
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
468
+ },
469
+ {
470
+ "input_index": 66,
471
+ "previous_txid": "e44706a70c117f91614105a1257a2a8b2e13c43d2f9b9a58f50fe5fa25d01a75",
472
+ "previous_output_index": 3,
473
+ "input_value": "0.00155749",
474
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
475
+ },
476
+ {
477
+ "input_index": 67,
478
+ "previous_txid": "ca076ab3d49bff25d8f4de2eaa012cab27c769cd9f7fc27556e0ca3262614da6",
479
+ "previous_output_index": 3,
480
+ "input_value": "0.00175751",
481
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
482
+ },
483
+ {
484
+ "input_index": 68,
485
+ "previous_txid": "e3d7181416397c6c272fd15b0651808fdd841bbf3c0e2853dfe2f4a9ed9363bf",
486
+ "previous_output_index": 3,
487
+ "input_value": "0.00175500",
488
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
489
+ },
490
+ {
491
+ "input_index": 69,
492
+ "previous_txid": "b50b305dcc15564e7c59b6c5ea25639193b425e1b90219b8948b3704c9e671e9",
493
+ "previous_output_index": 3,
494
+ "input_value": "0.00137981",
495
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
496
+ },
497
+ {
498
+ "input_index": 70,
499
+ "previous_txid": "6aed2808aa49d475e380ba2ce028d4742c2feb4c4c35d92521ac16c53678ee64",
500
+ "previous_output_index": 3,
501
+ "input_value": "0.00127360",
502
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
503
+ },
504
+ {
505
+ "input_index": 71,
506
+ "previous_txid": "aa3aefa98b40fdcb865558a9761427698970ad78f36e8c8cfb96d34281656edb",
507
+ "previous_output_index": 3,
508
+ "input_value": "0.00196682",
509
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
510
+ },
511
+ {
512
+ "input_index": 72,
513
+ "previous_txid": "8a52ae5805e3ec75106d657e4bfb00329f56397c91199027388cfbce14727e64",
514
+ "previous_output_index": 3,
515
+ "input_value": "0.00199270",
516
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
517
+ },
518
+ {
519
+ "input_index": 73,
520
+ "previous_txid": "89e23f4acc52f9c4994d448a4c7c03a186ab54b613180a862dc5b4beb79a98e5",
521
+ "previous_output_index": 3,
522
+ "input_value": "0.00174675",
523
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
524
+ },
525
+ {
526
+ "input_index": 74,
527
+ "previous_txid": "a22826ee0616adbe0c301ef6c17c8e1a433fffa00e0e3b3d3168a9bac0cf9485",
528
+ "previous_output_index": 3,
529
+ "input_value": "0.00114434",
530
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
531
+ },
532
+ {
533
+ "input_index": 75,
534
+ "previous_txid": "f1cc9a2e5fc858ddaf290cfb0e80a25c5458ef539d2c31f63a4ff2e00750a1c2",
535
+ "previous_output_index": 3,
536
+ "input_value": "0.00159694",
537
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
538
+ },
539
+ {
540
+ "input_index": 76,
541
+ "previous_txid": "d1c7b9a2301f32a633efaa76af71c24ae50c2e7b5bcd6b659014f42676e75adc",
542
+ "previous_output_index": 3,
543
+ "input_value": "0.00122106",
544
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
545
+ },
546
+ {
547
+ "input_index": 77,
548
+ "previous_txid": "f127ccfbce7d8636b6cde20697f02c12abdc959e9a5c8c1ea41721724402aded",
549
+ "previous_output_index": 3,
550
+ "input_value": "0.00124846",
551
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
552
+ },
553
+ {
554
+ "input_index": 78,
555
+ "previous_txid": "844dc1463d8a3660da62fe9e6513522327dde753fe9a017a9a7f5d8515e49209",
556
+ "previous_output_index": 3,
557
+ "input_value": "0.00192012",
558
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
559
+ },
560
+ {
561
+ "input_index": 79,
562
+ "previous_txid": "6d23cc0aa144a6a6328a810e51924a37e2284c8a27196505d4f684dbf62e8455",
563
+ "previous_output_index": 3,
564
+ "input_value": "0.00136067",
565
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
566
+ },
567
+ {
568
+ "input_index": 80,
569
+ "previous_txid": "2924536c15a1bdd5ef4ffb9282895d4070add0abaf624f8300a1b135ec0c623d",
570
+ "previous_output_index": 3,
571
+ "input_value": "0.00189597",
572
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
573
+ },
574
+ {
575
+ "input_index": 81,
576
+ "previous_txid": "af36a4b07d3fc4e60e7050f5cc45961a3e41b07461bb49f5fd52d5a5644f6d4e",
577
+ "previous_output_index": 3,
578
+ "input_value": "0.00196038",
579
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
580
+ },
581
+ {
582
+ "input_index": 82,
583
+ "previous_txid": "e09fdeb3b3d11faff35881fe1406218cb7091830e783d6b9d63b38535e0196ec",
584
+ "previous_output_index": 3,
585
+ "input_value": "0.00113421",
586
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
587
+ },
588
+ {
589
+ "input_index": 83,
590
+ "previous_txid": "d93a4b7c07f109f54f1df98ed25df5d5090f58b052c93c701d17b5baec5a5bc6",
591
+ "previous_output_index": 3,
592
+ "input_value": "0.00158252",
593
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
594
+ },
595
+ {
596
+ "input_index": 84,
597
+ "previous_txid": "b4e7d724b97d6904e37997e0d0067aa84aac3145928babd7557553670098a878",
598
+ "previous_output_index": 3,
599
+ "input_value": "0.00161027",
600
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
601
+ },
602
+ {
603
+ "input_index": 85,
604
+ "previous_txid": "a2ee07091d90bc396351f714d4d8e871ef650249ae15aecacf2230220e7ed5b4",
605
+ "previous_output_index": 3,
606
+ "input_value": "0.00184970",
607
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
608
+ },
609
+ {
610
+ "input_index": 86,
611
+ "previous_txid": "b2cfa81deac6c31632d58f38c3997c62cd2d7cefa6c58a66b203e13b695a1242",
612
+ "previous_output_index": 3,
613
+ "input_value": "0.00188259",
614
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
615
+ },
616
+ {
617
+ "input_index": 87,
618
+ "previous_txid": "99960982fb7ef04bb4c38c05fc4d184738533b13646fb5a3917569964f8fba49",
619
+ "previous_output_index": 3,
620
+ "input_value": "0.00154313",
621
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
622
+ },
623
+ {
624
+ "input_index": 88,
625
+ "previous_txid": "be03d9393db0a0d24ed0ed183e4162cd50fde4881cab2984a6e3ae8597f72d10",
626
+ "previous_output_index": 3,
627
+ "input_value": "0.00186213",
628
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
629
+ },
630
+ {
631
+ "input_index": 89,
632
+ "previous_txid": "9e222488e9547fb8e3e60bcd2b0535c10a1853f4a2b4788cf503c4252fb9633c",
633
+ "previous_output_index": 3,
634
+ "input_value": "0.00136510",
635
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
636
+ },
637
+ {
638
+ "input_index": 90,
639
+ "previous_txid": "5b7c799fbea2552b37c83a5cc0316402419cebaf8e1b6fe42ed8233712d66d75",
640
+ "previous_output_index": 3,
641
+ "input_value": "0.00185264",
642
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
643
+ },
644
+ {
645
+ "input_index": 91,
646
+ "previous_txid": "9e98a0dc0fa9fb17bd9989b8fd9230cc72d7054a5039626f6dab9d772ae9e84a",
647
+ "previous_output_index": 3,
648
+ "input_value": "0.00144383",
649
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
650
+ },
651
+ {
652
+ "input_index": 92,
653
+ "previous_txid": "ab69115df8cb2eb0f4aa52d2f008adafc0dafff6950891add103b07c5e3a5ed0",
654
+ "previous_output_index": 3,
655
+ "input_value": "0.00144939",
656
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
657
+ },
658
+ {
659
+ "input_index": 93,
660
+ "previous_txid": "612cc873c85cf8b719776b23dc1a33999791d20def50a3ebebb0dd3c4d711226",
661
+ "previous_output_index": 3,
662
+ "input_value": "0.00169424",
663
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
664
+ },
665
+ {
666
+ "input_index": 94,
667
+ "previous_txid": "1cca2c41ee650ab5e1f6f748744874abb0bda0dc6b298eee54889182136d9c4b",
668
+ "previous_output_index": 3,
669
+ "input_value": "0.00171288",
670
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
671
+ },
672
+ {
673
+ "input_index": 95,
674
+ "previous_txid": "b4a450219e851ddeb9c0b68680654ad5288f7f0d6c922e05cb7f9e0f465d1163",
675
+ "previous_output_index": 3,
676
+ "input_value": "0.00176273",
677
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
678
+ },
679
+ {
680
+ "input_index": 96,
681
+ "previous_txid": "fc4cfae6fcacd788cf38fac09fe1879696b571837da791ba682bcc81d5017067",
682
+ "previous_output_index": 3,
683
+ "input_value": "0.00180367",
684
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
685
+ },
686
+ {
687
+ "input_index": 97,
688
+ "previous_txid": "ea23fbc6b38bf970950123ad3f95470f8b601bea6571bca18ed0199b7f8c725d",
689
+ "previous_output_index": 3,
690
+ "input_value": "0.00184410",
691
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
692
+ },
693
+ {
694
+ "input_index": 98,
695
+ "previous_txid": "d25905a2dff27ddcf8fe942e32abffdd1d8dac8d55146a4b09ddf18fe55c4209",
696
+ "previous_output_index": 3,
697
+ "input_value": "0.00159694",
698
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
699
+ },
700
+ {
701
+ "input_index": 99,
702
+ "previous_txid": "a4bbc438813bbdfd095cbaf6b98a6ef06c08a13580c0071677a60abaf9bf54ef",
703
+ "previous_output_index": 3,
704
+ "input_value": "0.00110676",
705
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
706
+ },
707
+ {
708
+ "input_index": 100,
709
+ "previous_txid": "a34e3328bbb17c2b87886f4488836a4a8c2e0a288d661d6c56f4e41680fcc78a",
710
+ "previous_output_index": 3,
711
+ "input_value": "0.00143005",
712
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
713
+ },
714
+ {
715
+ "input_index": 101,
716
+ "previous_txid": "344a47237ace2bee5d26746d0b799255328e50326dc491fc08112c958b19bd3e",
717
+ "previous_output_index": 3,
718
+ "input_value": "0.00147687",
719
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
720
+ },
721
+ {
722
+ "input_index": 102,
723
+ "previous_txid": "1ecae23a83daefac0631dc9b458dc6acb57287d27711354376ef5279d44f9bc5",
724
+ "previous_output_index": 3,
725
+ "input_value": "0.00169034",
726
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
727
+ },
728
+ {
729
+ "input_index": 103,
730
+ "previous_txid": "a738629186d90e2c496f9f7f6bc1125d63bb25c71a4293233f26420379fa0ba0",
731
+ "previous_output_index": 3,
732
+ "input_value": "0.00137363",
733
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
734
+ },
735
+ {
736
+ "input_index": 104,
737
+ "previous_txid": "fd46833334870f9afa5beb594c7793ca5de4648926da422fd1baf8d2b96bbe3d",
738
+ "previous_output_index": 3,
739
+ "input_value": "0.00143637",
740
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
741
+ },
742
+ {
743
+ "input_index": 105,
744
+ "previous_txid": "77741701c16035b0924edbe1f05b3472a7318bfee828f6333cac8cf733689f37",
745
+ "previous_output_index": 3,
746
+ "input_value": "0.00130949",
747
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
748
+ },
749
+ {
750
+ "input_index": 106,
751
+ "previous_txid": "5e34c7ee71b47caf9f81dc3af30ee485ca46b997b7670a568c2ac378442b0e12",
752
+ "previous_output_index": 3,
753
+ "input_value": "0.00178521",
754
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
755
+ },
756
+ {
757
+ "input_index": 107,
758
+ "previous_txid": "424fa5a28f04f58fd4cae4bd0914ed8cb476752c2466051ac91f845e463483a1",
759
+ "previous_output_index": 3,
760
+ "input_value": "0.00148585",
761
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
762
+ },
763
+ {
764
+ "input_index": 108,
765
+ "previous_txid": "0d81ae1d257e90de20dd4aa85cc74bf4c33c2c4cf4b82a5214e5514ea7f3abf8",
766
+ "previous_output_index": 3,
767
+ "input_value": "0.00175121",
768
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
769
+ },
770
+ {
771
+ "input_index": 109,
772
+ "previous_txid": "95050771b3a4f36c7ffc0c0a38044296a825c2113a6ae347999244f2417709f0",
773
+ "previous_output_index": 3,
774
+ "input_value": "0.00195685",
775
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
776
+ },
777
+ {
778
+ "input_index": 110,
779
+ "previous_txid": "2ef30d84c92bacf0b0f00077eaeeecf5117e45ecd6863406074bccb59295b6bb",
780
+ "previous_output_index": 3,
781
+ "input_value": "0.00112689",
782
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
783
+ },
784
+ {
785
+ "input_index": 111,
786
+ "previous_txid": "52a9a47f33b7cc6ea718b3b5e1ed94dbbc2692f586256bac8177be47356ff181",
787
+ "previous_output_index": 3,
788
+ "input_value": "0.00191471",
789
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
790
+ },
791
+ {
792
+ "input_index": 112,
793
+ "previous_txid": "4b63d23ff885dff289c556c68f8eb177621831efb3e72335b5ad2a6f581e2f2d",
794
+ "previous_output_index": 3,
795
+ "input_value": "0.00169851",
796
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
797
+ },
798
+ {
799
+ "input_index": 113,
800
+ "previous_txid": "be9c7be09976ab139f044a684fc2705c2377b35244d0e7ae09aaeca6f733001b",
801
+ "previous_output_index": 3,
802
+ "input_value": "0.00171312",
803
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
804
+ },
805
+ {
806
+ "input_index": 114,
807
+ "previous_txid": "19d881355223ed1483ebe88f625b3dd21e6d9fcdc48d14a9ea6bc33fc176f1f0",
808
+ "previous_output_index": 3,
809
+ "input_value": "0.00125830",
810
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
811
+ },
812
+ {
813
+ "input_index": 115,
814
+ "previous_txid": "d1a218980562ba61d7384c140aca10c9edd8b68b8a30a556ae01a0a8cbdb83a7",
815
+ "previous_output_index": 3,
816
+ "input_value": "0.00151625",
817
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
818
+ },
819
+ {
820
+ "input_index": 116,
821
+ "previous_txid": "3346ebc5042ea65528d6c5594f6c1f9c4bfb0173976ba6b4a2e9ea380be28734",
822
+ "previous_output_index": 3,
823
+ "input_value": "0.00127195",
824
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
825
+ },
826
+ {
827
+ "input_index": 117,
828
+ "previous_txid": "e13b3c47bb16677e255b1216d5f6e18651c39b410333d944a82184ac5f8b186d",
829
+ "previous_output_index": 3,
830
+ "input_value": "0.00126212",
831
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
832
+ },
833
+ {
834
+ "input_index": 118,
835
+ "previous_txid": "2d4f84dc18a79988c8b8c4d2a0830e0b3bf6df385d494be6c859a2d486c8a987",
836
+ "previous_output_index": 3,
837
+ "input_value": "0.00193129",
838
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
839
+ },
840
+ {
841
+ "input_index": 119,
842
+ "previous_txid": "f105ad54496e372410aa9ffbc1016dd14459b22b9d22cb2c6410705c79c2d6ea",
843
+ "previous_output_index": 3,
844
+ "input_value": "0.00141659",
845
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
846
+ },
847
+ {
848
+ "input_index": 120,
849
+ "previous_txid": "0c6e0dba0d3980745980418e6cb69e37637d5d62a48176ceec324c2c83b4a8a0",
850
+ "previous_output_index": 3,
851
+ "input_value": "0.00180724",
852
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
853
+ },
854
+ {
855
+ "input_index": 121,
856
+ "previous_txid": "3cd4fc95ba7dc241cf9574b71efb829c4895d8d8c7fc5b4282eb522ad237721a",
857
+ "previous_output_index": 3,
858
+ "input_value": "0.00188503",
859
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
860
+ },
861
+ {
862
+ "input_index": 122,
863
+ "previous_txid": "c9c64c25dde84cfac33b90a01c5a270e3e3169d3860c0414e769c0a3ab937cea",
864
+ "previous_output_index": 3,
865
+ "input_value": "0.00132450",
866
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
867
+ },
868
+ {
869
+ "input_index": 123,
870
+ "previous_txid": "ed51122095e4082715a6db8b25970236ecfda58768296eb11f2c90ac1785f59d",
871
+ "previous_output_index": 3,
872
+ "input_value": "0.00152875",
873
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
874
+ },
875
+ {
876
+ "input_index": 124,
877
+ "previous_txid": "cde467ad8f4e0c493abbf52c3fe890ace1cee9e7d759b068d276a823a8f3bfdc",
878
+ "previous_output_index": 3,
879
+ "input_value": "0.00188323",
880
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
881
+ },
882
+ {
883
+ "input_index": 125,
884
+ "previous_txid": "fa5d7e98e737c7204f81eb10914911416e2510c12edbab368a9e860af7fb904e",
885
+ "previous_output_index": 3,
886
+ "input_value": "0.00176453",
887
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
888
+ },
889
+ {
890
+ "input_index": 126,
891
+ "previous_txid": "878d14e4b610f925475ff6e428c51942edddf8e06fc9103fd065a0d4e15b2a86",
892
+ "previous_output_index": 3,
893
+ "input_value": "0.00143624",
894
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
895
+ },
896
+ {
897
+ "input_index": 127,
898
+ "previous_txid": "b5a0a3a60007debfcd30603d8f237ac2b54334e56e59bd572690104940a1c429",
899
+ "previous_output_index": 3,
900
+ "input_value": "0.00152323",
901
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
902
+ },
903
+ {
904
+ "input_index": 128,
905
+ "previous_txid": "32058f3d1a6fb1fee5c87df29dbac7e6c8205eed3eb32f8c40c4b97d3a54bea8",
906
+ "previous_output_index": 3,
907
+ "input_value": "0.00176449",
908
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
909
+ },
910
+ {
911
+ "input_index": 129,
912
+ "previous_txid": "bc643006356fb04d4613bede6de38b07e74b12c22b3f8da5cca113aea4feb75e",
913
+ "previous_output_index": 3,
914
+ "input_value": "0.00168830",
915
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
916
+ },
917
+ {
918
+ "input_index": 130,
919
+ "previous_txid": "a5ce53ef2f4a0d6db4c85fc7c8701c1600afa72fa133673e497dbe8289159794",
920
+ "previous_output_index": 3,
921
+ "input_value": "0.00169350",
922
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
923
+ },
924
+ {
925
+ "input_index": 131,
926
+ "previous_txid": "017991fc584ed2e2a233e626c442868ba603f818d84fd984c847a775aab9c85c",
927
+ "previous_output_index": 3,
928
+ "input_value": "0.00158368",
929
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
930
+ },
931
+ {
932
+ "input_index": 132,
933
+ "previous_txid": "b179522a6125c33cf23c2437438a79f5b55f666926e1e028faf8b36c0104c797",
934
+ "previous_output_index": 3,
935
+ "input_value": "0.00184514",
936
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
937
+ },
938
+ {
939
+ "input_index": 133,
940
+ "previous_txid": "8ead1380b28348dfcea75724fa576c752187c47a33a6daec3bcd56342d5de239",
941
+ "previous_output_index": 3,
942
+ "input_value": "0.00179775",
943
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
944
+ },
945
+ {
946
+ "input_index": 134,
947
+ "previous_txid": "a3053601c1fd09d884bc1a64278d1391b63ddb0ee5a997751c1d608872a96212",
948
+ "previous_output_index": 3,
949
+ "input_value": "0.00144117",
950
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
951
+ },
952
+ {
953
+ "input_index": 135,
954
+ "previous_txid": "154057eaeb57c4facf855d2361ec506ca265fddb42efedbd2b62afff4296a95c",
955
+ "previous_output_index": 3,
956
+ "input_value": "0.00162873",
957
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
958
+ },
959
+ {
960
+ "input_index": 136,
961
+ "previous_txid": "d72c692d64026fa0c041a1578771d6cac26759261cdd8be4086d44a25ff33ab7",
962
+ "previous_output_index": 3,
963
+ "input_value": "0.00171655",
964
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
965
+ },
966
+ {
967
+ "input_index": 137,
968
+ "previous_txid": "e1c2d51877c8c31610899fe619ec96585f4b5ab25a4d4c8c4ea427f84c6db454",
969
+ "previous_output_index": 3,
970
+ "input_value": "0.00123987",
971
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
972
+ },
973
+ {
974
+ "input_index": 138,
975
+ "previous_txid": "ab6e07bf163c2e18467847a7b01c2f03cb50cbddd5b64105b3d8b3e744771db9",
976
+ "previous_output_index": 3,
977
+ "input_value": "0.00195136",
978
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
979
+ },
980
+ {
981
+ "input_index": 139,
982
+ "previous_txid": "a9d2301c0f73ebcaa446e509ceefdf6740e959518842a9036576ecc6d92c1008",
983
+ "previous_output_index": 3,
984
+ "input_value": "0.00121438",
985
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
986
+ },
987
+ {
988
+ "input_index": 140,
989
+ "previous_txid": "9b5fe9a1c816de7e04646cf89ad692a4b58076419c9121a6ed3aaaf4d0c69118",
990
+ "previous_output_index": 3,
991
+ "input_value": "0.00149513",
992
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
993
+ },
994
+ {
995
+ "input_index": 141,
996
+ "previous_txid": "9a066bb6675eac77a7560a941818f1a884923084c6db63a38130dd3b3d309102",
997
+ "previous_output_index": 3,
998
+ "input_value": "0.00161892",
999
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1000
+ },
1001
+ {
1002
+ "input_index": 142,
1003
+ "previous_txid": "d8c0016fd1e48c8622227f970cbec5befc6c4e0caade0e0cd828e0e4de26ecba",
1004
+ "previous_output_index": 3,
1005
+ "input_value": "0.00164466",
1006
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1007
+ },
1008
+ {
1009
+ "input_index": 143,
1010
+ "previous_txid": "8ff1b53d72d2a35f4be11afaab705e6658241effe89240592d18bed4c4b2247b",
1011
+ "previous_output_index": 3,
1012
+ "input_value": "0.00192790",
1013
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1014
+ },
1015
+ {
1016
+ "input_index": 144,
1017
+ "previous_txid": "22c368289965cac172dd048943ed38eaa17a5d4c9b0c8d77a1c46402b4e2c2bf",
1018
+ "previous_output_index": 3,
1019
+ "input_value": "0.00128436",
1020
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1021
+ },
1022
+ {
1023
+ "input_index": 145,
1024
+ "previous_txid": "d9ce02c7d0b10757ffe1ab2970cdafb6aa0e119c388df1bd1cbe7144a2c364e1",
1025
+ "previous_output_index": 3,
1026
+ "input_value": "0.00125424",
1027
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1028
+ },
1029
+ {
1030
+ "input_index": 146,
1031
+ "previous_txid": "3c2e50242f1c0501f4ced003cc23025c35b50d95bb7b5f59150a05130ee2f487",
1032
+ "previous_output_index": 3,
1033
+ "input_value": "0.00199864",
1034
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1035
+ },
1036
+ {
1037
+ "input_index": 147,
1038
+ "previous_txid": "8152ab6b94aeb4e054fc24ea24dae98ff0617407df4e0bc25beae3488923b797",
1039
+ "previous_output_index": 3,
1040
+ "input_value": "0.00145467",
1041
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1042
+ },
1043
+ {
1044
+ "input_index": 148,
1045
+ "previous_txid": "f149de2715cf4bedc7329b73ee12c2130d265ae3ecd38675d2ac4c74ef852ffb",
1046
+ "previous_output_index": 3,
1047
+ "input_value": "0.00125988",
1048
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1049
+ },
1050
+ {
1051
+ "input_index": 149,
1052
+ "previous_txid": "3936c964b2091364f71c89fce683ba42f8866f70823e0ca26b0ebca40cb17e6b",
1053
+ "previous_output_index": 3,
1054
+ "input_value": "0.00155635",
1055
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1056
+ },
1057
+ {
1058
+ "input_index": 150,
1059
+ "previous_txid": "d22497d36948d40745c396385ee311fa2a932d54908830eedc47dc414c8fbef9",
1060
+ "previous_output_index": 3,
1061
+ "input_value": "0.00118984",
1062
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1063
+ },
1064
+ {
1065
+ "input_index": 151,
1066
+ "previous_txid": "b811b1356b9d1d4d59a01c78664f8f2f4de7970087dbc5b0e4f517d6da963e44",
1067
+ "previous_output_index": 3,
1068
+ "input_value": "0.00188890",
1069
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1070
+ },
1071
+ {
1072
+ "input_index": 152,
1073
+ "previous_txid": "430e80f3d51af3e9caf0c6e86e23c76031c4434277946a1e9056976dc5fd1087",
1074
+ "previous_output_index": 3,
1075
+ "input_value": "0.00144109",
1076
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1077
+ },
1078
+ {
1079
+ "input_index": 153,
1080
+ "previous_txid": "50c900d42609ae932a6d18a79dda0848068ae213c101394c19a29227363a8828",
1081
+ "previous_output_index": 3,
1082
+ "input_value": "0.00168770",
1083
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1084
+ },
1085
+ {
1086
+ "input_index": 154,
1087
+ "previous_txid": "2bb9ec8ede140a99123af3203b5d51dc686c7055ea7e9876e583a343eefbfa93",
1088
+ "previous_output_index": 3,
1089
+ "input_value": "0.00194765",
1090
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1091
+ },
1092
+ {
1093
+ "input_index": 155,
1094
+ "previous_txid": "039e4bd4f26f6c67cbbaa1864e9dedc84d7c42d370553f4318f45b78cae3cc21",
1095
+ "previous_output_index": 3,
1096
+ "input_value": "0.00134585",
1097
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1098
+ },
1099
+ {
1100
+ "input_index": 156,
1101
+ "previous_txid": "589f73a866d576cb58210b31a8936a4e8f8ecd8ea9272643bbe208eb784d548b",
1102
+ "previous_output_index": 3,
1103
+ "input_value": "0.00175517",
1104
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1105
+ },
1106
+ {
1107
+ "input_index": 157,
1108
+ "previous_txid": "206b5b2fcff92b42ea36e3a87b9efcfee0ba502da4ead5bc78859330bb6bf88e",
1109
+ "previous_output_index": 3,
1110
+ "input_value": "0.00172865",
1111
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1112
+ },
1113
+ {
1114
+ "input_index": 158,
1115
+ "previous_txid": "2a61b690bbcb00c8646f3d9c1491f637f85a0d57eea6a5d5520e034b3b2f8c31",
1116
+ "previous_output_index": 3,
1117
+ "input_value": "0.00117640",
1118
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1119
+ },
1120
+ {
1121
+ "input_index": 159,
1122
+ "previous_txid": "808955f27e213cf5580add1ba883a1aa2b5698a0348a2c57417d8657c11be173",
1123
+ "previous_output_index": 3,
1124
+ "input_value": "0.00180357",
1125
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1126
+ },
1127
+ {
1128
+ "input_index": 160,
1129
+ "previous_txid": "0a4991bbe8f61c834e7b507145cc174fe671ee392f0a554c3222948669e673dc",
1130
+ "previous_output_index": 3,
1131
+ "input_value": "0.00116562",
1132
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1133
+ },
1134
+ {
1135
+ "input_index": 161,
1136
+ "previous_txid": "a62e4207b3ed957e18b8d25723114d71b0cc310a02eb177b99292fa4ac722433",
1137
+ "previous_output_index": 3,
1138
+ "input_value": "0.00185006",
1139
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1140
+ },
1141
+ {
1142
+ "input_index": 162,
1143
+ "previous_txid": "b44240d8f1eb24698a4b6b0fb3022bf889a1d10a63f5830969f04dace83f1d47",
1144
+ "previous_output_index": 3,
1145
+ "input_value": "0.00147643",
1146
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1147
+ },
1148
+ {
1149
+ "input_index": 163,
1150
+ "previous_txid": "40cade24bcb18995de2e7943d8b82c5da727d8c34d676269bbebfa8233326163",
1151
+ "previous_output_index": 3,
1152
+ "input_value": "0.00150140",
1153
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1154
+ },
1155
+ {
1156
+ "input_index": 164,
1157
+ "previous_txid": "9c7f46642077948badfeb878e1fa107cd93a0dd103965bf41f3944b8caff9fdb",
1158
+ "previous_output_index": 3,
1159
+ "input_value": "0.00187072",
1160
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1161
+ },
1162
+ {
1163
+ "input_index": 165,
1164
+ "previous_txid": "edf512e7be2953e0703abccc977bb37f5ee5f39f58b1f638e8bf4eab1ce9173e",
1165
+ "previous_output_index": 3,
1166
+ "input_value": "0.00155041",
1167
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1168
+ },
1169
+ {
1170
+ "input_index": 166,
1171
+ "previous_txid": "25f3d2ae3b8a24d2d16e0f819482c64435772d325060138ce84967ff8bd9f243",
1172
+ "previous_output_index": 3,
1173
+ "input_value": "0.00133390",
1174
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1175
+ },
1176
+ {
1177
+ "input_index": 167,
1178
+ "previous_txid": "1806cad461a850e88048bbbd120d3b496cdfe6279c5ef197564a637022a9e6d5",
1179
+ "previous_output_index": 3,
1180
+ "input_value": "0.00124643",
1181
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1182
+ },
1183
+ {
1184
+ "input_index": 168,
1185
+ "previous_txid": "b8adcae3ac12cf88d7bbe22d996ed2f2324f9834f166728c17444e0764fb1efd",
1186
+ "previous_output_index": 3,
1187
+ "input_value": "0.00153348",
1188
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1189
+ },
1190
+ {
1191
+ "input_index": 169,
1192
+ "previous_txid": "775143a7229f3edc4483c0256fa4b9329eeb91b6cb48755f9e83e83ae1a7e0e2",
1193
+ "previous_output_index": 3,
1194
+ "input_value": "0.00192735",
1195
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1196
+ },
1197
+ {
1198
+ "input_index": 170,
1199
+ "previous_txid": "0872d406c5c19df208dc2f3e81bc4dded70db76f2b10e23165b8e1c44f3aa151",
1200
+ "previous_output_index": 3,
1201
+ "input_value": "0.00145689",
1202
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1203
+ },
1204
+ {
1205
+ "input_index": 171,
1206
+ "previous_txid": "28ea73fdd7d4dfb9db9255c777c37d7c88715f143788c864b1d82875f9dcf244",
1207
+ "previous_output_index": 3,
1208
+ "input_value": "0.00161845",
1209
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1210
+ },
1211
+ {
1212
+ "input_index": 172,
1213
+ "previous_txid": "8818e2cdfe87ff1add00157aa3de3577b77e42b6bdf6f954f07c693d56fb3a56",
1214
+ "previous_output_index": 3,
1215
+ "input_value": "0.00189522",
1216
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1217
+ },
1218
+ {
1219
+ "input_index": 173,
1220
+ "previous_txid": "5be46747826436e5630e4fa12738df4b2f2f5f58f9ac11a260b7810321d27660",
1221
+ "previous_output_index": 3,
1222
+ "input_value": "0.00118413",
1223
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1224
+ },
1225
+ {
1226
+ "input_index": 174,
1227
+ "previous_txid": "c1c176cb96da6f4f8a60d880989dab4694fbb7485868d4d08c0c35ad399cd5a7",
1228
+ "previous_output_index": 3,
1229
+ "input_value": "0.00117183",
1230
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1231
+ },
1232
+ {
1233
+ "input_index": 175,
1234
+ "previous_txid": "a77e65d10a606a318b8e619c7423f4588bc058eee8e121310fe1496fb92c5c88",
1235
+ "previous_output_index": 3,
1236
+ "input_value": "0.00149942",
1237
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1238
+ },
1239
+ {
1240
+ "input_index": 176,
1241
+ "previous_txid": "e2a82ca0d5fad1dbad4077f4b59f768cd44eb7e1d325466bab68b0f29389187b",
1242
+ "previous_output_index": 3,
1243
+ "input_value": "0.00135356",
1244
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1245
+ },
1246
+ {
1247
+ "input_index": 177,
1248
+ "previous_txid": "8dcab960913d04231ac8d47aca73bace13bfff3ca9ec1cb04226993e31a2f299",
1249
+ "previous_output_index": 3,
1250
+ "input_value": "0.00192300",
1251
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1252
+ },
1253
+ {
1254
+ "input_index": 178,
1255
+ "previous_txid": "05d16cf4942b40937eb9a311861e680861c605468263afa8e1be1c18377857e8",
1256
+ "previous_output_index": 3,
1257
+ "input_value": "0.00170960",
1258
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1259
+ },
1260
+ {
1261
+ "input_index": 179,
1262
+ "previous_txid": "5b0fcdb3eb82e5d8f5bdac17a9b8cf9d6c87ac0c42cfca8b719feb5b7783887f",
1263
+ "previous_output_index": 3,
1264
+ "input_value": "0.00191467",
1265
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1266
+ },
1267
+ {
1268
+ "input_index": 180,
1269
+ "previous_txid": "c60c105af7dd1dbaef247bf2719a28b932bf1ac585caa5f9b74028d10fd3958e",
1270
+ "previous_output_index": 3,
1271
+ "input_value": "0.00110190",
1272
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1273
+ },
1274
+ {
1275
+ "input_index": 181,
1276
+ "previous_txid": "ba96ee3052f72cf2fb1bd4fee95381cdf559c48903c5d479d6c4d4d4782607ee",
1277
+ "previous_output_index": 3,
1278
+ "input_value": "0.00162833",
1279
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1280
+ },
1281
+ {
1282
+ "input_index": 182,
1283
+ "previous_txid": "0f37cdcb09ff7e2d83257a7486ec3dd30ff25d447db217afff42689ff184eb95",
1284
+ "previous_output_index": 3,
1285
+ "input_value": "0.00148610",
1286
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1287
+ },
1288
+ {
1289
+ "input_index": 183,
1290
+ "previous_txid": "0e2030c1830a4ed9cfb614fa4aa7998931c05d120e600319f802e549d18570a7",
1291
+ "previous_output_index": 3,
1292
+ "input_value": "0.00169858",
1293
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1294
+ },
1295
+ {
1296
+ "input_index": 184,
1297
+ "previous_txid": "02164cf70d917aafab6a055069d56442788e70dbca5a9902484a79f2a17d6f28",
1298
+ "previous_output_index": 3,
1299
+ "input_value": "0.00162585",
1300
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1301
+ },
1302
+ {
1303
+ "input_index": 185,
1304
+ "previous_txid": "b6ec6156a6fcbd6ad1a88d82afd21afc27a8383482c0c37ea5a4b27612ea0291",
1305
+ "previous_output_index": 3,
1306
+ "input_value": "0.00130810",
1307
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1308
+ },
1309
+ {
1310
+ "input_index": 186,
1311
+ "previous_txid": "7fb5d17cfa3e14e8efd3356035cbd0c3b742cf5a5d735877291c52dbe6404efc",
1312
+ "previous_output_index": 3,
1313
+ "input_value": "0.00166670",
1314
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1315
+ },
1316
+ {
1317
+ "input_index": 187,
1318
+ "previous_txid": "99c0fffb74a8b47fad70655eb75c069314ee641923d8642e31d13a8dd77a2017",
1319
+ "previous_output_index": 3,
1320
+ "input_value": "0.00157159",
1321
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1322
+ },
1323
+ {
1324
+ "input_index": 188,
1325
+ "previous_txid": "b5a815415413839907c4bf723a194786247ed0c8796dccf312254834d7ec345d",
1326
+ "previous_output_index": 3,
1327
+ "input_value": "0.00118561",
1328
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1329
+ },
1330
+ {
1331
+ "input_index": 189,
1332
+ "previous_txid": "e5ba29e5b3f59c7981787081eb120c175be9eb8a9338dcc6fc8b87965c8db3e7",
1333
+ "previous_output_index": 3,
1334
+ "input_value": "0.00112282",
1335
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1336
+ },
1337
+ {
1338
+ "input_index": 190,
1339
+ "previous_txid": "8351075d828ec5a28d9a8978074280ff564f7590daff4a12e8de8ad4a751db9e",
1340
+ "previous_output_index": 3,
1341
+ "input_value": "0.00141620",
1342
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1343
+ },
1344
+ {
1345
+ "input_index": 191,
1346
+ "previous_txid": "a51fff8d025073f26089bb26bb85f8f491f6ef1eb003e9a6d1bc6502cb08ca23",
1347
+ "previous_output_index": 3,
1348
+ "input_value": "0.00170352",
1349
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1350
+ },
1351
+ {
1352
+ "input_index": 192,
1353
+ "previous_txid": "2a64f6413cdeb7cf322f37d4294db7db6f853e87aae06fcb2b7b1a1eabe963f0",
1354
+ "previous_output_index": 3,
1355
+ "input_value": "0.00141580",
1356
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1357
+ },
1358
+ {
1359
+ "input_index": 193,
1360
+ "previous_txid": "3f0c4917fe86f11452387a8b552b06fe45a96ab1df6ccbcc29127cf250391a8f",
1361
+ "previous_output_index": 3,
1362
+ "input_value": "0.00169770",
1363
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1364
+ },
1365
+ {
1366
+ "input_index": 194,
1367
+ "previous_txid": "db1233426e189259e6aac9a4c0096adb990057003bf912049fafeafc543e0ad2",
1368
+ "previous_output_index": 3,
1369
+ "input_value": "0.00114597",
1370
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1371
+ },
1372
+ {
1373
+ "input_index": 195,
1374
+ "previous_txid": "b917bbf0fd48cb36d7dbb1bd4819e58424a0d9010d4f3200cc0e9d8655c8bfed",
1375
+ "previous_output_index": 3,
1376
+ "input_value": "0.00190830",
1377
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1378
+ },
1379
+ {
1380
+ "input_index": 196,
1381
+ "previous_txid": "7f75dee1ac4874c7a5cf774a652ade0f5b25b57e9a11164695b190c100dfe403",
1382
+ "previous_output_index": 3,
1383
+ "input_value": "0.00123323",
1384
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1385
+ },
1386
+ {
1387
+ "input_index": 197,
1388
+ "previous_txid": "94be7638748e964fcffd307f5766676e232264470059b75971a71c8f6b7ad51d",
1389
+ "previous_output_index": 3,
1390
+ "input_value": "0.00120406",
1391
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1392
+ },
1393
+ {
1394
+ "input_index": 198,
1395
+ "previous_txid": "2a4fca9914a51fa0748ababaf8ef3ea8da36817cc0ccdd45947aca9f52017bb7",
1396
+ "previous_output_index": 3,
1397
+ "input_value": "0.00150378",
1398
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1399
+ },
1400
+ {
1401
+ "input_index": 199,
1402
+ "previous_txid": "a2c1c61ba33a9e42a8ae7d7a6410f1b7bc4da4b0ec9b2c1ad0c71c51827f74f1",
1403
+ "previous_output_index": 3,
1404
+ "input_value": "0.00186181",
1405
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1406
+ },
1407
+ {
1408
+ "input_index": 200,
1409
+ "previous_txid": "2e085307fc1cdca54aaa33e14b4fbf9d546c3954de206321d3394a43c40dc807",
1410
+ "previous_output_index": 3,
1411
+ "input_value": "0.00123886",
1412
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1413
+ },
1414
+ {
1415
+ "input_index": 201,
1416
+ "previous_txid": "2658cdc0b83c92e72b58f8def9157cbdd6cdcf84ec24c90acd4c7dffcfecd36b",
1417
+ "previous_output_index": 3,
1418
+ "input_value": "0.00196370",
1419
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1420
+ },
1421
+ {
1422
+ "input_index": 202,
1423
+ "previous_txid": "5f262c51a17f5aad1afa5d414abcf69a884e207d2aafb2bd86205bcc11f4d315",
1424
+ "previous_output_index": 3,
1425
+ "input_value": "0.00188827",
1426
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1427
+ },
1428
+ {
1429
+ "input_index": 203,
1430
+ "previous_txid": "ded50f5a5f70870b878e8c6d71d57aad4b30ccc72d39fa2ed958bb4f2cf32f10",
1431
+ "previous_output_index": 3,
1432
+ "input_value": "0.00142939",
1433
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1434
+ },
1435
+ {
1436
+ "input_index": 204,
1437
+ "previous_txid": "15bdec17715279bd0f9d68532b9e9ee161d2e645b38a45a89b5fbd9ac43bcf6b",
1438
+ "previous_output_index": 3,
1439
+ "input_value": "0.00180960",
1440
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1441
+ },
1442
+ {
1443
+ "input_index": 205,
1444
+ "previous_txid": "f5de7e67207a0d58923a535e29f62513fcb4a7313ed72f5babd6b68ad5cf11f6",
1445
+ "previous_output_index": 3,
1446
+ "input_value": "0.00158972",
1447
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1448
+ },
1449
+ {
1450
+ "input_index": 206,
1451
+ "previous_txid": "a0ebf3398e618a29eca6571b7ee5d8214253a65def331140a409a4b8b0fa103f",
1452
+ "previous_output_index": 3,
1453
+ "input_value": "0.00170277",
1454
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1455
+ },
1456
+ {
1457
+ "input_index": 207,
1458
+ "previous_txid": "c4a312b6c46e537fb083d48a9e1a236cedfa0f56c70f77104299bc5b6b88762d",
1459
+ "previous_output_index": 3,
1460
+ "input_value": "0.00145505",
1461
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1462
+ },
1463
+ {
1464
+ "input_index": 208,
1465
+ "previous_txid": "042acdfc910d1be3f3163465d2802e72b90da7318c20189802427495e2d899e3",
1466
+ "previous_output_index": 3,
1467
+ "input_value": "0.00162397",
1468
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1469
+ },
1470
+ {
1471
+ "input_index": 209,
1472
+ "previous_txid": "a15786dd9054639fbe7a619efd6caad67de5122edb040b714cbb653e3a18b22d",
1473
+ "previous_output_index": 3,
1474
+ "input_value": "0.00196044",
1475
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1476
+ },
1477
+ {
1478
+ "input_index": 210,
1479
+ "previous_txid": "3ba51454f275dda88c9b90019f02fe2cc4ec0a411931db468f1f503a21742e9d",
1480
+ "previous_output_index": 3,
1481
+ "input_value": "0.00159560",
1482
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1483
+ },
1484
+ {
1485
+ "input_index": 211,
1486
+ "previous_txid": "6c7b2b4791bc2de12ce4e0a9e5593cfd54f1267daff7f557fc05f7859e804ef2",
1487
+ "previous_output_index": 3,
1488
+ "input_value": "0.00161357",
1489
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1490
+ },
1491
+ {
1492
+ "input_index": 212,
1493
+ "previous_txid": "cfbde47a0c627375f63a87f7aa4d4136d4ead034344bed46df78cc29e7df08a1",
1494
+ "previous_output_index": 3,
1495
+ "input_value": "0.00122570",
1496
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1497
+ },
1498
+ {
1499
+ "input_index": 213,
1500
+ "previous_txid": "fd3baec92744256faa6685184b083d0f931d2072fd19506cbbb23f6a12190d65",
1501
+ "previous_output_index": 3,
1502
+ "input_value": "0.00141070",
1503
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1504
+ },
1505
+ {
1506
+ "input_index": 214,
1507
+ "previous_txid": "6dcadd5daa4e9cfcad399fe0cda30060e46d6c9cecad04a3826c53dc739f1e83",
1508
+ "previous_output_index": 3,
1509
+ "input_value": "0.00180912",
1510
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1511
+ },
1512
+ {
1513
+ "input_index": 215,
1514
+ "previous_txid": "20900687df830590f67eedf8fcba973dee2598e8314c67df3dcbc06017b16513",
1515
+ "previous_output_index": 3,
1516
+ "input_value": "0.00154570",
1517
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1518
+ },
1519
+ {
1520
+ "input_index": 216,
1521
+ "previous_txid": "6b0f98d2f29c66f02a3053e6d0a0083390e6ef1caf38040ef0da5b569ab26c88",
1522
+ "previous_output_index": 3,
1523
+ "input_value": "0.00165798",
1524
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1525
+ },
1526
+ {
1527
+ "input_index": 217,
1528
+ "previous_txid": "48614c2ccee80596923e375eff21b8c95a11b11838970576e1bdd39108714a33",
1529
+ "previous_output_index": 3,
1530
+ "input_value": "0.00130725",
1531
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1532
+ },
1533
+ {
1534
+ "input_index": 218,
1535
+ "previous_txid": "1b0d980bbfee8e24c95aba6759a3bdd0d0365cd8b1ff6ef61dcacb319ee2afec",
1536
+ "previous_output_index": 3,
1537
+ "input_value": "0.00130248",
1538
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1539
+ },
1540
+ {
1541
+ "input_index": 219,
1542
+ "previous_txid": "45187219142aa2af41fcef059bee03cb39685882322db32391e26d37b2c5c1eb",
1543
+ "previous_output_index": 3,
1544
+ "input_value": "0.00130109",
1545
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1546
+ },
1547
+ {
1548
+ "input_index": 220,
1549
+ "previous_txid": "ec79d24adbb9484c64f157916041fb93de5b0c33277a6dfaa775069c700ea8ee",
1550
+ "previous_output_index": 3,
1551
+ "input_value": "0.00159172",
1552
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1553
+ },
1554
+ {
1555
+ "input_index": 221,
1556
+ "previous_txid": "f641140ddcb1a2c4c7a3d693eace3fdd66aa4f8aa3b28148c4713ed7c4066b27",
1557
+ "previous_output_index": 3,
1558
+ "input_value": "0.00132105",
1559
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1560
+ },
1561
+ {
1562
+ "input_index": 222,
1563
+ "previous_txid": "1f67d74e6bb746ae5c1970a0513d4ca16c0c4384c562c10eb2805e0c27d0bb0a",
1564
+ "previous_output_index": 3,
1565
+ "input_value": "0.00175826",
1566
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1567
+ },
1568
+ {
1569
+ "input_index": 223,
1570
+ "previous_txid": "4357678a91c5f9c50332044b6485e4b641b2e39cddfbbd37c041d67c93a8ee3d",
1571
+ "previous_output_index": 3,
1572
+ "input_value": "0.00116140",
1573
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1574
+ },
1575
+ {
1576
+ "input_index": 224,
1577
+ "previous_txid": "4024ce22a2fe9119980a44f3492d91a220463abc0ce9850010e5b3fa533ee99a",
1578
+ "previous_output_index": 3,
1579
+ "input_value": "0.00193659",
1580
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1581
+ },
1582
+ {
1583
+ "input_index": 225,
1584
+ "previous_txid": "701707d97d7c9009d728c29549b9c5a08af9a607e43022c15144a1b19a4402a3",
1585
+ "previous_output_index": 3,
1586
+ "input_value": "0.00148214",
1587
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1588
+ },
1589
+ {
1590
+ "input_index": 226,
1591
+ "previous_txid": "a04e6715da61106ca244582d8ba25f6aa14cee984b6f9b688429ce5e1698569b",
1592
+ "previous_output_index": 3,
1593
+ "input_value": "0.00174578",
1594
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1595
+ },
1596
+ {
1597
+ "input_index": 227,
1598
+ "previous_txid": "9ad2172b2271eb94516f922d79c77aef28d0f130ed1e051da5def13a33004f5d",
1599
+ "previous_output_index": 3,
1600
+ "input_value": "0.00187241",
1601
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1602
+ },
1603
+ {
1604
+ "input_index": 228,
1605
+ "previous_txid": "6c10830df8cdba6ce89f1877d80bd3e06d830741d120732dd317a1e96217e53d",
1606
+ "previous_output_index": 3,
1607
+ "input_value": "0.00133108",
1608
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1609
+ },
1610
+ {
1611
+ "input_index": 229,
1612
+ "previous_txid": "a4d4c615149660dec1d9b0b45acded5fa8a5edc23d398cb907ef803668e0d4d3",
1613
+ "previous_output_index": 3,
1614
+ "input_value": "0.00152096",
1615
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1616
+ },
1617
+ {
1618
+ "input_index": 230,
1619
+ "previous_txid": "dbc4b3dec67cd4bfc1bb9b0cb6b6bec54c750d05d966c1dc8f5c2ac8b0c45aa7",
1620
+ "previous_output_index": 3,
1621
+ "input_value": "0.00152291",
1622
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1623
+ },
1624
+ {
1625
+ "input_index": 231,
1626
+ "previous_txid": "9b8692eb4e29dcbf904417b51c3352bf9cb9ea3fc9f301794ce68a8c526166a4",
1627
+ "previous_output_index": 3,
1628
+ "input_value": "0.00180202",
1629
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1630
+ },
1631
+ {
1632
+ "input_index": 232,
1633
+ "previous_txid": "45d5954865da52e92d79280333e3381afab7f5f5e065fbd6d19d159e40e0ed47",
1634
+ "previous_output_index": 3,
1635
+ "input_value": "0.00112741",
1636
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1637
+ },
1638
+ {
1639
+ "input_index": 233,
1640
+ "previous_txid": "f683fc0dcdfa0e60fd4227ff2241665cd821d941a5ef11b1e8c45a5f175df4d0",
1641
+ "previous_output_index": 3,
1642
+ "input_value": "0.00140869",
1643
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1644
+ },
1645
+ {
1646
+ "input_index": 234,
1647
+ "previous_txid": "9ddc33e70de07b9aedc5dfa0ceab1f158ba7002a2ba96fc5a1c7e7821aeeee82",
1648
+ "previous_output_index": 3,
1649
+ "input_value": "0.00147177",
1650
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1651
+ },
1652
+ {
1653
+ "input_index": 235,
1654
+ "previous_txid": "36dbe929d3bfc7ff78544f8c91b55aadc5d860d198be65f85f0b4eb743b91db2",
1655
+ "previous_output_index": 3,
1656
+ "input_value": "0.00145060",
1657
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1658
+ },
1659
+ {
1660
+ "input_index": 236,
1661
+ "previous_txid": "37145ced60d13be67ead27ff82951169dadd81e220c6a8e39c641aceab7a4e84",
1662
+ "previous_output_index": 3,
1663
+ "input_value": "0.00140624",
1664
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1665
+ },
1666
+ {
1667
+ "input_index": 237,
1668
+ "previous_txid": "3e6f362643c9d23f3e757701889218a2890ac7ca21ede2cd7ad1a6d82a7bebab",
1669
+ "previous_output_index": 3,
1670
+ "input_value": "0.00133239",
1671
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1672
+ },
1673
+ {
1674
+ "input_index": 238,
1675
+ "previous_txid": "7cb497bccb67aa9b9009460a36f46b6a52c6cefb1679bc382e2ff2c452e82c72",
1676
+ "previous_output_index": 3,
1677
+ "input_value": "0.00198670",
1678
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1679
+ },
1680
+ {
1681
+ "input_index": 239,
1682
+ "previous_txid": "14ac9856dee7b138d3c7dcb5af4cce54737c0674a27761b7afc42635eede3899",
1683
+ "previous_output_index": 3,
1684
+ "input_value": "0.00110010",
1685
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1686
+ },
1687
+ {
1688
+ "input_index": 240,
1689
+ "previous_txid": "698ad89c4ce903015a4e4d36c231ffd14d96903f17838e0f0314b806ccbb3eab",
1690
+ "previous_output_index": 3,
1691
+ "input_value": "0.00125836",
1692
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1693
+ },
1694
+ {
1695
+ "input_index": 241,
1696
+ "previous_txid": "fc834ed714323ab6b8d495edeb50e32a18f458d52c1646d71e2d2d9aed75d5f1",
1697
+ "previous_output_index": 3,
1698
+ "input_value": "0.00136466",
1699
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1700
+ },
1701
+ {
1702
+ "input_index": 242,
1703
+ "previous_txid": "dcb0e7c4f67d97f946649ac73588205fee3d7639a452d0f4bb83b15fc938adc8",
1704
+ "previous_output_index": 3,
1705
+ "input_value": "0.00163970",
1706
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1707
+ },
1708
+ {
1709
+ "input_index": 243,
1710
+ "previous_txid": "348c466eb9648d6ba1cea65716e72c403ff03536342a8c1fbe1fbe98ffd47b6d",
1711
+ "previous_output_index": 3,
1712
+ "input_value": "0.00199348",
1713
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1714
+ },
1715
+ {
1716
+ "input_index": 244,
1717
+ "previous_txid": "4d2ed5f143493ccb0a470fd7c358623cdfd5fcc5f13c5813e308a40a9c0c4152",
1718
+ "previous_output_index": 3,
1719
+ "input_value": "0.00194613",
1720
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1721
+ },
1722
+ {
1723
+ "input_index": 245,
1724
+ "previous_txid": "acda28eb2daad2a26b2a945c1a8b48dbda20255e2818f6a84c59540fa226ee01",
1725
+ "previous_output_index": 3,
1726
+ "input_value": "0.00121709",
1727
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1728
+ },
1729
+ {
1730
+ "input_index": 246,
1731
+ "previous_txid": "448f145d7bc9917fe17497cc07d8decc014ca86fa99a9c90666848fa7c3857ab",
1732
+ "previous_output_index": 3,
1733
+ "input_value": "0.00171141",
1734
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1735
+ },
1736
+ {
1737
+ "input_index": 247,
1738
+ "previous_txid": "7c9ff97a007d7123cf1fcca1a030a6d0f09043731992aa1904444fcfd1bfc340",
1739
+ "previous_output_index": 3,
1740
+ "input_value": "0.00194600",
1741
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1742
+ },
1743
+ {
1744
+ "input_index": 248,
1745
+ "previous_txid": "de72e45b1c7f23463e5aa1850285f1a816039bf6687d9f0bbb67ac068664660a",
1746
+ "previous_output_index": 3,
1747
+ "input_value": "0.00129232",
1748
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1749
+ },
1750
+ {
1751
+ "input_index": 249,
1752
+ "previous_txid": "ff88b9a797b6aef7869622d7e9128cc1aa12ddd646346b5042ee024971386678",
1753
+ "previous_output_index": 3,
1754
+ "input_value": "0.00141071",
1755
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1756
+ },
1757
+ {
1758
+ "input_index": 250,
1759
+ "previous_txid": "0667532ac9317a2ae1502bca727ba01a7c5520bd9e46182fa6699503a5c1e99f",
1760
+ "previous_output_index": 3,
1761
+ "input_value": "0.00149470",
1762
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1763
+ },
1764
+ {
1765
+ "input_index": 251,
1766
+ "previous_txid": "198d0423e1ddf76dcf617a27e4cf9e08a80bde63bca3a0e65f1b8a8b7249affb",
1767
+ "previous_output_index": 3,
1768
+ "input_value": "0.00159789",
1769
+ "spending_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1770
+ }
1771
+ ],
1772
+ "outputs": [
1773
+ {
1774
+ "output_index": 0,
1775
+ "output_category": "user-specified",
1776
+ "output_value": "0.37750000",
1777
+ "receiving_address": "QcyH5G5jr36pFvZy99eRi9iZsmSzEztLHn"
1778
+ },
1779
+ {
1780
+ "output_index": 1,
1781
+ "output_category": "change",
1782
+ "output_value": "0.00095326",
1783
+ "receiving_address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK"
1784
+ }
1785
+ ],
1786
+ "input_address_data": [
1787
+ {
1788
+ "required_signatures": 2,
1789
+ "public_keys": [
1790
+ "021fb32e91a58ee92a1aaa43f4f1a996514ae1aa9e748cb1e933a5366f68b4fb87",
1791
+ "0329863261dc88625ca2af2331f821281323bf9ee53f18dfe5c884cefad2cae3c5"
1792
+ ],
1793
+ "address": "QausUeMZ2jbAYTHs7jjEXDE4Zs1usEMBYK",
1794
+ "address_type": "P2WSH-over-P2SH"
1795
+ }
1796
+ ],
1797
+ "user_key": {
1798
+ "public_key": "0329863261dc88625ca2af2331f821281323bf9ee53f18dfe5c884cefad2cae3c5",
1799
+ "encrypted_passphrase": "hXebNfQy3MUd5l+Qlodq6myQ39yimKLDuJhuToIRZ48pSzWsXSuR06qxK0fd9NYb2Lf8+wIyFKVgesdIuoyoKH619gStN7mZEEar5Om2iPEpm4KUHoXc49Saq96ST/F8UQUKTws39v7rJUuTAJfKkncZ6i12oUoHxbhFzPiNewP9QioLnUJW5ZH1OkSdM849"
1800
+ },
1801
+ "estimated_tx_size": 33087
1802
+ }
1803
+ }