block_io 1.2.1 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/.appveyor.yml-disabled +26 -0
  3. data/.gitignore +2 -1
  4. data/.rspec +1 -0
  5. data/.travis.yml +14 -0
  6. data/LICENSE +1 -1
  7. data/README.md +24 -15
  8. data/block_io.gemspec +9 -7
  9. data/examples/basic.rb +32 -10
  10. data/examples/dtrust.rb +59 -42
  11. data/examples/proxy.rb +36 -0
  12. data/examples/sweeper.rb +24 -14
  13. data/lib/block_io.rb +16 -411
  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 +244 -0
  22. data/lib/block_io/extended_bitcoinrb.rb +127 -0
  23. data/lib/block_io/helper.rb +322 -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 +154 -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 +270 -44
  107. data/examples/change.rb +0 -117
@@ -0,0 +1,1804 @@
1
+ {
2
+ "status": "success",
3
+ "data": {
4
+ "network": "LTCTEST",
5
+ "tx_type": "dtrust",
6
+ "inputs": [
7
+ {
8
+ "input_index": 0,
9
+ "previous_txid": "1054f632bc68315fc7ba09bd3bd00fe2b01e9dbf47e1b9d8f72a5ed381f24d8f",
10
+ "previous_output_index": 2,
11
+ "input_value": "0.00123128",
12
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
13
+ },
14
+ {
15
+ "input_index": 1,
16
+ "previous_txid": "6229e6d99eacd1abedd30ab2bcfaed8d79c763028e03d28440d75bce787a5a85",
17
+ "previous_output_index": 2,
18
+ "input_value": "0.00172772",
19
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
20
+ },
21
+ {
22
+ "input_index": 2,
23
+ "previous_txid": "0082ed0262f28316d0591330dd7a470aac3d4df7f3f811f3bef0952199b39539",
24
+ "previous_output_index": 2,
25
+ "input_value": "0.00194967",
26
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
27
+ },
28
+ {
29
+ "input_index": 3,
30
+ "previous_txid": "1dd33642648309bdf8100397e0ad8f90d4c08e6f52ff6f91ab920d5e545b4a7c",
31
+ "previous_output_index": 2,
32
+ "input_value": "0.00121760",
33
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
34
+ },
35
+ {
36
+ "input_index": 4,
37
+ "previous_txid": "473952f262b5a88b98b0c2bc27263ef86b2d40612d0f29deb525ab5ecfd619f8",
38
+ "previous_output_index": 2,
39
+ "input_value": "0.00142107",
40
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
41
+ },
42
+ {
43
+ "input_index": 5,
44
+ "previous_txid": "e1fa21fdd85fc5c9626d56c85eca21b53147123c2ee0bfff0b767a02fd81bbc7",
45
+ "previous_output_index": 2,
46
+ "input_value": "0.00136078",
47
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
48
+ },
49
+ {
50
+ "input_index": 6,
51
+ "previous_txid": "b12175df0a698d5b374e21367ef11eed67a92844f4bd4970b4d806471130e37a",
52
+ "previous_output_index": 2,
53
+ "input_value": "0.00175484",
54
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
55
+ },
56
+ {
57
+ "input_index": 7,
58
+ "previous_txid": "07364a9705e26aa4d24a05875ef9392ce0dd7a1d5fd12ff6f662e78effa7a026",
59
+ "previous_output_index": 2,
60
+ "input_value": "0.00156894",
61
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
62
+ },
63
+ {
64
+ "input_index": 8,
65
+ "previous_txid": "066cd1cf7ccd8e6ee9c760cbbc6dacafcd0eda5920462c4b916ceeb1b92de7d6",
66
+ "previous_output_index": 2,
67
+ "input_value": "0.00190006",
68
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
69
+ },
70
+ {
71
+ "input_index": 9,
72
+ "previous_txid": "eac5db8c803484a878a810d26d95b1970b885d14650df31a775f06bdea2de314",
73
+ "previous_output_index": 2,
74
+ "input_value": "0.00192071",
75
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
76
+ },
77
+ {
78
+ "input_index": 10,
79
+ "previous_txid": "c4e2ac481485f502504aad21a4b5c9e89d22426c19079c239133cf02c8189748",
80
+ "previous_output_index": 2,
81
+ "input_value": "0.00122700",
82
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
83
+ },
84
+ {
85
+ "input_index": 11,
86
+ "previous_txid": "2b209df669e60dcd4336876bb96d423759f4b3fc140d44b3d36ef4b578f2c9d5",
87
+ "previous_output_index": 2,
88
+ "input_value": "0.00173605",
89
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
90
+ },
91
+ {
92
+ "input_index": 12,
93
+ "previous_txid": "15d18f3e43c2115d7c527a342365c91201b047caec6f17efa7c3666bad3abfef",
94
+ "previous_output_index": 2,
95
+ "input_value": "0.00126810",
96
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
97
+ },
98
+ {
99
+ "input_index": 13,
100
+ "previous_txid": "81d5a494e5ba8dffa25ab91f1f1fa8261343ee02f2fdfbeef1b483e747c6621e",
101
+ "previous_output_index": 2,
102
+ "input_value": "0.00144083",
103
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
104
+ },
105
+ {
106
+ "input_index": 14,
107
+ "previous_txid": "344b43d4f930c76c2a1cd5a685528716d9258c222ec28d30478de50744309da9",
108
+ "previous_output_index": 2,
109
+ "input_value": "0.00114008",
110
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
111
+ },
112
+ {
113
+ "input_index": 15,
114
+ "previous_txid": "e38fba81732cd6a5ba490586c76ff156bfc8b3bd9d25648d805e86ee11440237",
115
+ "previous_output_index": 2,
116
+ "input_value": "0.00191020",
117
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
118
+ },
119
+ {
120
+ "input_index": 16,
121
+ "previous_txid": "47ade2144ed8271df21624375a3117e235b6102a2f766d227038efc8a2f0a6eb",
122
+ "previous_output_index": 2,
123
+ "input_value": "0.00165000",
124
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
125
+ },
126
+ {
127
+ "input_index": 17,
128
+ "previous_txid": "dc4239ff04e07b7a16ffee5b770b1cec0592edf705cc17d9f5f18c7dde1bd8d6",
129
+ "previous_output_index": 2,
130
+ "input_value": "0.00156785",
131
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
132
+ },
133
+ {
134
+ "input_index": 18,
135
+ "previous_txid": "f7bc66e48b7b5d8f51a38e9452a6432317e41330c2e06e0c0e19e680e7f08b28",
136
+ "previous_output_index": 2,
137
+ "input_value": "0.00125084",
138
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
139
+ },
140
+ {
141
+ "input_index": 19,
142
+ "previous_txid": "cc33ae6ba299f867b2697f77349ef41d92071d4b72d2a8e3c6a957218db0a3c7",
143
+ "previous_output_index": 2,
144
+ "input_value": "0.00124611",
145
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
146
+ },
147
+ {
148
+ "input_index": 20,
149
+ "previous_txid": "8936c8921c98103bed0941e87f1f8510285b029a59cb659943b014c7d5146dcb",
150
+ "previous_output_index": 2,
151
+ "input_value": "0.00187061",
152
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
153
+ },
154
+ {
155
+ "input_index": 21,
156
+ "previous_txid": "4501c53bbf677a22ca30c7d4305ecd8936ad31c38248b23dbf14c6fb752ffc94",
157
+ "previous_output_index": 2,
158
+ "input_value": "0.00133820",
159
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
160
+ },
161
+ {
162
+ "input_index": 22,
163
+ "previous_txid": "2e284ed7896e214945447e189b48d37e6c4192f71f0411fc6b2111a765b44152",
164
+ "previous_output_index": 2,
165
+ "input_value": "0.00177370",
166
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
167
+ },
168
+ {
169
+ "input_index": 23,
170
+ "previous_txid": "6f5be30f2c33d3ff9961316cfb1db4e5f6bd6057c79f912e938f3ab59ccd0d34",
171
+ "previous_output_index": 2,
172
+ "input_value": "0.00128394",
173
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
174
+ },
175
+ {
176
+ "input_index": 24,
177
+ "previous_txid": "1605f75092ae038ac8b59399f05540e8c7ca10be60244f2f8a34a1d1d877344e",
178
+ "previous_output_index": 2,
179
+ "input_value": "0.00124555",
180
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
181
+ },
182
+ {
183
+ "input_index": 25,
184
+ "previous_txid": "7dc87a1a82b6c50468eb6d9ba6f03b9cf20a9ecd347134196ded3aa500d18680",
185
+ "previous_output_index": 2,
186
+ "input_value": "0.00118335",
187
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
188
+ },
189
+ {
190
+ "input_index": 26,
191
+ "previous_txid": "803452c2bdb901751816af971bf43d6ada1fa274f7968da6558bf5e063a283f7",
192
+ "previous_output_index": 2,
193
+ "input_value": "0.00122160",
194
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
195
+ },
196
+ {
197
+ "input_index": 27,
198
+ "previous_txid": "0ffd700d6e4495d867cdf1b5c0217947fb7e9f320de77245840b3b7fd1bf92fd",
199
+ "previous_output_index": 2,
200
+ "input_value": "0.00162632",
201
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
202
+ },
203
+ {
204
+ "input_index": 28,
205
+ "previous_txid": "1122db3488800a0890643ef91161c8b67cdbb31f62bd72d9f8096bf845f4cd5c",
206
+ "previous_output_index": 2,
207
+ "input_value": "0.00131810",
208
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
209
+ },
210
+ {
211
+ "input_index": 29,
212
+ "previous_txid": "8da12399aa9da9ed47a475325d6f0d2391c0b60d182c1c8c3d9deedf64181b19",
213
+ "previous_output_index": 2,
214
+ "input_value": "0.00179215",
215
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
216
+ },
217
+ {
218
+ "input_index": 30,
219
+ "previous_txid": "8a7e730c93aed08c494e00de50b74ca4692d466527d3a8b256f24ec89c5314ff",
220
+ "previous_output_index": 2,
221
+ "input_value": "0.00132336",
222
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
223
+ },
224
+ {
225
+ "input_index": 31,
226
+ "previous_txid": "c08b9b46380a8a02d4c7ea33d7e33fc6eea573d237d319db82136b0e8e72b3f8",
227
+ "previous_output_index": 2,
228
+ "input_value": "0.00178194",
229
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
230
+ },
231
+ {
232
+ "input_index": 32,
233
+ "previous_txid": "272e84b8fa2420776c61aa6943733873df866f086d25361d60ac0e1a7d000ceb",
234
+ "previous_output_index": 2,
235
+ "input_value": "0.00154710",
236
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
237
+ },
238
+ {
239
+ "input_index": 33,
240
+ "previous_txid": "f7a7c93e6d2e776fd27e358181ae47a2728162469c7fdf97faa6a485d597bb08",
241
+ "previous_output_index": 2,
242
+ "input_value": "0.00165710",
243
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
244
+ },
245
+ {
246
+ "input_index": 34,
247
+ "previous_txid": "164ec9649ddd73dfbe9405b327ecf31ca8d7927b09f5d657516386af583f341f",
248
+ "previous_output_index": 2,
249
+ "input_value": "0.00193922",
250
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
251
+ },
252
+ {
253
+ "input_index": 35,
254
+ "previous_txid": "cfb738390384ce1d1080a8b9a4fa1e9255a2075cb5cd0a9ceac80ede058754a9",
255
+ "previous_output_index": 2,
256
+ "input_value": "0.00118587",
257
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
258
+ },
259
+ {
260
+ "input_index": 36,
261
+ "previous_txid": "5de49fa34652339b9ad95834ead09f3c78976c03f52f83f2b66a36370d3e53a6",
262
+ "previous_output_index": 2,
263
+ "input_value": "0.00166190",
264
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
265
+ },
266
+ {
267
+ "input_index": 37,
268
+ "previous_txid": "9b95bb293920270a58c1997773bd67730e24320726714c6e54fd5509ff64e7a4",
269
+ "previous_output_index": 2,
270
+ "input_value": "0.00199080",
271
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
272
+ }
273
+ ],
274
+ "outputs": [
275
+ {
276
+ "output_index": 0,
277
+ "output_category": "user-specified",
278
+ "output_value": "0.00020000",
279
+ "receiving_address": "QN5PE7By2jcSRP8jvopt1BGKee3buQLsEt"
280
+ },
281
+ {
282
+ "output_index": 1,
283
+ "output_category": "user-specified",
284
+ "output_value": "0.00020000",
285
+ "receiving_address": "QiqNtekKWDMixM8NFWcqUXsA89CcxefmqA"
286
+ },
287
+ {
288
+ "output_index": 2,
289
+ "output_category": "user-specified",
290
+ "output_value": "0.00020000",
291
+ "receiving_address": "QdcJRtyGz41MYx2FB6KZEmXGW92Ehe4VMF"
292
+ },
293
+ {
294
+ "output_index": 3,
295
+ "output_category": "user-specified",
296
+ "output_value": "0.00020000",
297
+ "receiving_address": "QY84J21rpzjvRKNKyHWonN1Yj7ttKpsH3N"
298
+ },
299
+ {
300
+ "output_index": 4,
301
+ "output_category": "user-specified",
302
+ "output_value": "0.00020000",
303
+ "receiving_address": "QXKfKezUq7wJajQEmJaHiJe83THk13s4C6"
304
+ },
305
+ {
306
+ "output_index": 5,
307
+ "output_category": "user-specified",
308
+ "output_value": "0.00020000",
309
+ "receiving_address": "QUmqhJkDFybfrrHSjv3mPjhWBfWsHgwHMH"
310
+ },
311
+ {
312
+ "output_index": 6,
313
+ "output_category": "user-specified",
314
+ "output_value": "0.00020000",
315
+ "receiving_address": "QRB3ySpiS52yrfHG8YfrtJKWcN2Ng25jKp"
316
+ },
317
+ {
318
+ "output_index": 7,
319
+ "output_category": "user-specified",
320
+ "output_value": "0.00020000",
321
+ "receiving_address": "Qi8BSgR8yvFvdY7PcuEaXebpvyrJVfgNQW"
322
+ },
323
+ {
324
+ "output_index": 8,
325
+ "output_category": "user-specified",
326
+ "output_value": "0.00020000",
327
+ "receiving_address": "QfFvwsNjVS896SsY13YYcEmSUdvyLmMyx9"
328
+ },
329
+ {
330
+ "output_index": 9,
331
+ "output_category": "user-specified",
332
+ "output_value": "0.00020000",
333
+ "receiving_address": "QQ1sdrmg276Em8cdt576H54zZrfSk6rUsv"
334
+ },
335
+ {
336
+ "output_index": 10,
337
+ "output_category": "user-specified",
338
+ "output_value": "0.00020000",
339
+ "receiving_address": "QPNa9LQKWHjgBqE7BmCu7EWRQGRSEB9Bcs"
340
+ },
341
+ {
342
+ "output_index": 11,
343
+ "output_category": "user-specified",
344
+ "output_value": "0.00020000",
345
+ "receiving_address": "QjCzicdisVvuBdtD7iXqcZbX6nsDJbDAoB"
346
+ },
347
+ {
348
+ "output_index": 12,
349
+ "output_category": "user-specified",
350
+ "output_value": "0.00020000",
351
+ "receiving_address": "QQWzEioS4Q6qxcJrV19F3EED8TjqFH8kop"
352
+ },
353
+ {
354
+ "output_index": 13,
355
+ "output_category": "user-specified",
356
+ "output_value": "0.00020000",
357
+ "receiving_address": "QSc9s6Sfz8G9fPv5GWMdAGbxuohF9kDXoV"
358
+ },
359
+ {
360
+ "output_index": 14,
361
+ "output_category": "user-specified",
362
+ "output_value": "0.00020000",
363
+ "receiving_address": "QUdZGLnCG9NYT2wFek4VxUY2kvQTo3tU1P"
364
+ },
365
+ {
366
+ "output_index": 15,
367
+ "output_category": "user-specified",
368
+ "output_value": "0.00020000",
369
+ "receiving_address": "QLqmvTD6ouUzAxbmffC1e17WrgNSXirpoP"
370
+ },
371
+ {
372
+ "output_index": 16,
373
+ "output_category": "user-specified",
374
+ "output_value": "0.00020000",
375
+ "receiving_address": "QYtM8qGQReXn2MvFvDqvEGQ2Ei2m9Yqqc2"
376
+ },
377
+ {
378
+ "output_index": 17,
379
+ "output_category": "user-specified",
380
+ "output_value": "0.00020000",
381
+ "receiving_address": "QaFR283CBFsZFAnHT3DnMmp4PyKG9df7ss"
382
+ },
383
+ {
384
+ "output_index": 18,
385
+ "output_category": "user-specified",
386
+ "output_value": "0.00020000",
387
+ "receiving_address": "QYMuGA8QVXotbY7m8HwtgQkswZxJyKhPW1"
388
+ },
389
+ {
390
+ "output_index": 19,
391
+ "output_category": "user-specified",
392
+ "output_value": "0.00020000",
393
+ "receiving_address": "QjT4b1T2maD6QkTkWGpGCeq6x4DmrEW3t3"
394
+ },
395
+ {
396
+ "output_index": 20,
397
+ "output_category": "user-specified",
398
+ "output_value": "0.00020000",
399
+ "receiving_address": "QM5tNJ7yfyK3LB6zjttMo2hdAibSrZATpH"
400
+ },
401
+ {
402
+ "output_index": 21,
403
+ "output_category": "user-specified",
404
+ "output_value": "0.00020000",
405
+ "receiving_address": "QQMGydZEZkR2XSZsEqsogQKta2YFJZjLvV"
406
+ },
407
+ {
408
+ "output_index": 22,
409
+ "output_category": "user-specified",
410
+ "output_value": "0.00020000",
411
+ "receiving_address": "QYDY9DVdBroNVC6V6LYEgD9vHvmgweJVut"
412
+ },
413
+ {
414
+ "output_index": 23,
415
+ "output_category": "user-specified",
416
+ "output_value": "0.00020000",
417
+ "receiving_address": "QPVDmrYzANKw4JNEVSviPRAhL3rmvdbTdf"
418
+ },
419
+ {
420
+ "output_index": 24,
421
+ "output_category": "user-specified",
422
+ "output_value": "0.00020000",
423
+ "receiving_address": "QctjcJhW2gnwcEfLz1ywdntivY23aXYjwE"
424
+ },
425
+ {
426
+ "output_index": 25,
427
+ "output_category": "user-specified",
428
+ "output_value": "0.00020000",
429
+ "receiving_address": "QXsD9owTRf8VcsRPxHyB9Vy6pbEwmNvtRo"
430
+ },
431
+ {
432
+ "output_index": 26,
433
+ "output_category": "user-specified",
434
+ "output_value": "0.00020000",
435
+ "receiving_address": "QZ2BwALCHRGX2YZVfaqtbxmD8c5tXgTi2c"
436
+ },
437
+ {
438
+ "output_index": 27,
439
+ "output_category": "user-specified",
440
+ "output_value": "0.00020000",
441
+ "receiving_address": "Qewae26gVHhbxqwPhENpyFMPrwQaeC3PE7"
442
+ },
443
+ {
444
+ "output_index": 28,
445
+ "output_category": "user-specified",
446
+ "output_value": "0.00020000",
447
+ "receiving_address": "QRk6zFTbJvkBvHWMXtxHbW8g7aEgt7sSbD"
448
+ },
449
+ {
450
+ "output_index": 29,
451
+ "output_category": "user-specified",
452
+ "output_value": "0.00020000",
453
+ "receiving_address": "QYLH4i7vGrmaLedj4BdejjS33cQyjLKGRR"
454
+ },
455
+ {
456
+ "output_index": 30,
457
+ "output_category": "user-specified",
458
+ "output_value": "0.00020000",
459
+ "receiving_address": "QNmHPmbx4bFmBPXd2UonB41t33MZwXWZ8f"
460
+ },
461
+ {
462
+ "output_index": 31,
463
+ "output_category": "user-specified",
464
+ "output_value": "0.00020000",
465
+ "receiving_address": "QiX9BREWQN9kzNzb6XHFZHeRWr9iw4obUn"
466
+ },
467
+ {
468
+ "output_index": 32,
469
+ "output_category": "user-specified",
470
+ "output_value": "0.00020000",
471
+ "receiving_address": "QNdxhPNRujLA43XkMqUk19vYCpkz4Wt2Lc"
472
+ },
473
+ {
474
+ "output_index": 33,
475
+ "output_category": "user-specified",
476
+ "output_value": "0.00020000",
477
+ "receiving_address": "QNH9EWpfLkuPhEWAYSzVJYKBjndzvUJFJj"
478
+ },
479
+ {
480
+ "output_index": 34,
481
+ "output_category": "user-specified",
482
+ "output_value": "0.00020000",
483
+ "receiving_address": "QTbWErfAwUi6sma93rPWzSHXRv1rHzqLHh"
484
+ },
485
+ {
486
+ "output_index": 35,
487
+ "output_category": "user-specified",
488
+ "output_value": "0.00020000",
489
+ "receiving_address": "QV2jyHhNMn7yjY6HWwj7JcmT6uoy2nzWVk"
490
+ },
491
+ {
492
+ "output_index": 36,
493
+ "output_category": "user-specified",
494
+ "output_value": "0.00020000",
495
+ "receiving_address": "QPzEXRBTwnYWgM12mBHKv3Vpwmu9N5kyBo"
496
+ },
497
+ {
498
+ "output_index": 37,
499
+ "output_category": "user-specified",
500
+ "output_value": "0.00020000",
501
+ "receiving_address": "QSXvzfLSX1KS5vD2eaobotooSq1mhaNvFJ"
502
+ },
503
+ {
504
+ "output_index": 38,
505
+ "output_category": "user-specified",
506
+ "output_value": "0.00020000",
507
+ "receiving_address": "QjkhSdK935bg2A2emtr81ux91wXATwpZXv"
508
+ },
509
+ {
510
+ "output_index": 39,
511
+ "output_category": "user-specified",
512
+ "output_value": "0.00020000",
513
+ "receiving_address": "QSgrkrQG1M1WzKr82R1TVRikzKngGTkpNN"
514
+ },
515
+ {
516
+ "output_index": 40,
517
+ "output_category": "user-specified",
518
+ "output_value": "0.00020000",
519
+ "receiving_address": "QcZdXLPB5dH8jEVHrvYj8qBDSM92dJfAcB"
520
+ },
521
+ {
522
+ "output_index": 41,
523
+ "output_category": "user-specified",
524
+ "output_value": "0.00020000",
525
+ "receiving_address": "QWMUZpJEUKKxzeE12TP7VX73TtzsktNZfx"
526
+ },
527
+ {
528
+ "output_index": 42,
529
+ "output_category": "user-specified",
530
+ "output_value": "0.00020000",
531
+ "receiving_address": "Qi9hRWtx4aJLpDDMahZZSQMYm6WsXUguXG"
532
+ },
533
+ {
534
+ "output_index": 43,
535
+ "output_category": "user-specified",
536
+ "output_value": "0.00020000",
537
+ "receiving_address": "QbM89Kxm2Xw9TqQRGMAPuHHfsWLRpUnR4c"
538
+ },
539
+ {
540
+ "output_index": 44,
541
+ "output_category": "user-specified",
542
+ "output_value": "0.00020000",
543
+ "receiving_address": "Qe7f6cQfh9V14US1Q95GM9ZDopKbgssYgv"
544
+ },
545
+ {
546
+ "output_index": 45,
547
+ "output_category": "user-specified",
548
+ "output_value": "0.00020000",
549
+ "receiving_address": "Qe8DBEgEmHPWgBTBXNjZxisqQLWeBrMfvR"
550
+ },
551
+ {
552
+ "output_index": 46,
553
+ "output_category": "user-specified",
554
+ "output_value": "0.00020000",
555
+ "receiving_address": "QMWyA3TJE9afR6Xa4XZcKzvvZdgQZtQUYS"
556
+ },
557
+ {
558
+ "output_index": 47,
559
+ "output_category": "user-specified",
560
+ "output_value": "0.00020000",
561
+ "receiving_address": "QR11AvAKNK3tfvaknwUqkfjCqZt24jhoo3"
562
+ },
563
+ {
564
+ "output_index": 48,
565
+ "output_category": "user-specified",
566
+ "output_value": "0.00020000",
567
+ "receiving_address": "QXkhsyPEJMQ8YADm3BPARdHkAJYUrCcHAj"
568
+ },
569
+ {
570
+ "output_index": 49,
571
+ "output_category": "user-specified",
572
+ "output_value": "0.00020000",
573
+ "receiving_address": "QcFNQQUhMDUzjk6W38uyVQsESnPM5zKyiX"
574
+ },
575
+ {
576
+ "output_index": 50,
577
+ "output_category": "user-specified",
578
+ "output_value": "0.00020000",
579
+ "receiving_address": "QNS6muBZowQ69zLTTfFdvuMkbcn9Lr3b1Y"
580
+ },
581
+ {
582
+ "output_index": 51,
583
+ "output_category": "user-specified",
584
+ "output_value": "0.00020000",
585
+ "receiving_address": "QVFskehRkCbB3QH6gB5PjpGqPB7MuVA4Ky"
586
+ },
587
+ {
588
+ "output_index": 52,
589
+ "output_category": "user-specified",
590
+ "output_value": "0.00020000",
591
+ "receiving_address": "QbxsYy5VjugraCVE5t1RmGbeGoRFfGeMmZ"
592
+ },
593
+ {
594
+ "output_index": 53,
595
+ "output_category": "user-specified",
596
+ "output_value": "0.00020000",
597
+ "receiving_address": "QZR6JZNiwHrgptJYMKLJzWrMmcqkZEyiD5"
598
+ },
599
+ {
600
+ "output_index": 54,
601
+ "output_category": "user-specified",
602
+ "output_value": "0.00020000",
603
+ "receiving_address": "QSq2rtyJ7Sj6gtCrBRBnasw1rgQFcSwRMs"
604
+ },
605
+ {
606
+ "output_index": 55,
607
+ "output_category": "user-specified",
608
+ "output_value": "0.00020000",
609
+ "receiving_address": "QW6RnwUEVwgT2xwgsiGpcfvu2w88phjyMv"
610
+ },
611
+ {
612
+ "output_index": 56,
613
+ "output_category": "user-specified",
614
+ "output_value": "0.00020000",
615
+ "receiving_address": "QamAyK4HWkBD2Z4uVThoEx6Kt9UjXsnoR7"
616
+ },
617
+ {
618
+ "output_index": 57,
619
+ "output_category": "user-specified",
620
+ "output_value": "0.00020000",
621
+ "receiving_address": "QWg4P9LKPn4gg5e2cCmWTVJwbk9KwVtMjM"
622
+ },
623
+ {
624
+ "output_index": 58,
625
+ "output_category": "user-specified",
626
+ "output_value": "0.00020000",
627
+ "receiving_address": "QUVbMeS5rnU8MESdSyu4hXDsJq6zR5jkrw"
628
+ },
629
+ {
630
+ "output_index": 59,
631
+ "output_category": "user-specified",
632
+ "output_value": "0.00020000",
633
+ "receiving_address": "QViwFrdLtAcjrZNUmALLX6pkzZuLmRXwUt"
634
+ },
635
+ {
636
+ "output_index": 60,
637
+ "output_category": "user-specified",
638
+ "output_value": "0.00020000",
639
+ "receiving_address": "QXvRX3Lrxb9xaDW48iu1YqE8uaY8rhBg8T"
640
+ },
641
+ {
642
+ "output_index": 61,
643
+ "output_category": "user-specified",
644
+ "output_value": "0.00020000",
645
+ "receiving_address": "QdCJHYR2tUFQee8bZqHTfXE76WSR8h3GhE"
646
+ },
647
+ {
648
+ "output_index": 62,
649
+ "output_category": "user-specified",
650
+ "output_value": "0.00020000",
651
+ "receiving_address": "QhLapgoZ88mH9hQ2fhCPgKfkiF6qToDKUx"
652
+ },
653
+ {
654
+ "output_index": 63,
655
+ "output_category": "user-specified",
656
+ "output_value": "0.00020000",
657
+ "receiving_address": "QSwkWosJ94qjdKLsw9GzFsvQxdFMMtUjui"
658
+ },
659
+ {
660
+ "output_index": 64,
661
+ "output_category": "user-specified",
662
+ "output_value": "0.00020000",
663
+ "receiving_address": "QYaMUAzXNTGVKxkbtZLCo8ZjbQkCku6dH4"
664
+ },
665
+ {
666
+ "output_index": 65,
667
+ "output_category": "user-specified",
668
+ "output_value": "0.00020000",
669
+ "receiving_address": "QjwYM7Eha3jE7Nq9Gjzr8pvuNWXSr2qjg6"
670
+ },
671
+ {
672
+ "output_index": 66,
673
+ "output_category": "user-specified",
674
+ "output_value": "0.00020000",
675
+ "receiving_address": "QdCZeiR1QZMd2cesTYLPR5Z2oSKmLqnb4J"
676
+ },
677
+ {
678
+ "output_index": 67,
679
+ "output_category": "user-specified",
680
+ "output_value": "0.00020000",
681
+ "receiving_address": "QLtG1TSBBtCnhXZXScxDAyocGriTK941VL"
682
+ },
683
+ {
684
+ "output_index": 68,
685
+ "output_category": "user-specified",
686
+ "output_value": "0.00020000",
687
+ "receiving_address": "QPBP38cr18jwFG5ohs84HpwjRV9G75dtSm"
688
+ },
689
+ {
690
+ "output_index": 69,
691
+ "output_category": "user-specified",
692
+ "output_value": "0.00020000",
693
+ "receiving_address": "Qb1CfsQsPinuoUsFgo1m5gujAh5HxVDNME"
694
+ },
695
+ {
696
+ "output_index": 70,
697
+ "output_category": "user-specified",
698
+ "output_value": "0.00020000",
699
+ "receiving_address": "QPojN1hKicQh6RfL1riSanx1mWqATXwnMR"
700
+ },
701
+ {
702
+ "output_index": 71,
703
+ "output_category": "user-specified",
704
+ "output_value": "0.00020000",
705
+ "receiving_address": "QZHCk3RmDP6xVrvSJs5j5DF8whVWEXgkNn"
706
+ },
707
+ {
708
+ "output_index": 72,
709
+ "output_category": "user-specified",
710
+ "output_value": "0.00020000",
711
+ "receiving_address": "QNx1TUwQwiwMVyopQWqs6rT1ZUb4QtiQGL"
712
+ },
713
+ {
714
+ "output_index": 73,
715
+ "output_category": "user-specified",
716
+ "output_value": "0.00020000",
717
+ "receiving_address": "QcJ7RnNWWpDUimz9nwHNAaCWbnYnSPnQgy"
718
+ },
719
+ {
720
+ "output_index": 74,
721
+ "output_category": "user-specified",
722
+ "output_value": "0.00020000",
723
+ "receiving_address": "QSKbigoYWTWFfsSnzr7y2bxpmAvzG9LBJv"
724
+ },
725
+ {
726
+ "output_index": 75,
727
+ "output_category": "user-specified",
728
+ "output_value": "0.00020000",
729
+ "receiving_address": "QeCAYzFYxreKKAAJ1328B2kH28j2cSASr8"
730
+ },
731
+ {
732
+ "output_index": 76,
733
+ "output_category": "user-specified",
734
+ "output_value": "0.00020000",
735
+ "receiving_address": "QM9CvGkw8dtHZVYW3eyHWNTen2fthnNPE3"
736
+ },
737
+ {
738
+ "output_index": 77,
739
+ "output_category": "user-specified",
740
+ "output_value": "0.00020000",
741
+ "receiving_address": "QQmyuBe9wg7SzNeqPDM1r19LEhnGvpLnSk"
742
+ },
743
+ {
744
+ "output_index": 78,
745
+ "output_category": "user-specified",
746
+ "output_value": "0.00020000",
747
+ "receiving_address": "Qbgf7HrUz9BHt3CtuL6qVLRXsprXmsD1x2"
748
+ },
749
+ {
750
+ "output_index": 79,
751
+ "output_category": "user-specified",
752
+ "output_value": "0.00020000",
753
+ "receiving_address": "QRVWB1Y5uZ2wAmEs86WXqmDC2PiAiMbpeN"
754
+ },
755
+ {
756
+ "output_index": 80,
757
+ "output_category": "user-specified",
758
+ "output_value": "0.00020000",
759
+ "receiving_address": "QjsRzep63TpNRBdFEpZZJHc3KaDdXhjVZe"
760
+ },
761
+ {
762
+ "output_index": 81,
763
+ "output_category": "user-specified",
764
+ "output_value": "0.00020000",
765
+ "receiving_address": "QUqHNkUtLWi6RBqomSw7G2p8xfboP3v9sp"
766
+ },
767
+ {
768
+ "output_index": 82,
769
+ "output_category": "user-specified",
770
+ "output_value": "0.00020000",
771
+ "receiving_address": "QSiauPHjWLsvCBdJTzCBmKFx9Nn7c79gcd"
772
+ },
773
+ {
774
+ "output_index": 83,
775
+ "output_category": "user-specified",
776
+ "output_value": "0.00020000",
777
+ "receiving_address": "QfrptKJNVx81u9pnKrMc2saf7ReeCTHwmd"
778
+ },
779
+ {
780
+ "output_index": 84,
781
+ "output_category": "user-specified",
782
+ "output_value": "0.00020000",
783
+ "receiving_address": "QWe7T9iDZrtEH9FNc1hSjb34ykMLmEabCh"
784
+ },
785
+ {
786
+ "output_index": 85,
787
+ "output_category": "user-specified",
788
+ "output_value": "0.00020000",
789
+ "receiving_address": "QZJBMnkn6f2VJJtrcsYenhRVBjo4AohsRN"
790
+ },
791
+ {
792
+ "output_index": 86,
793
+ "output_category": "user-specified",
794
+ "output_value": "0.00020000",
795
+ "receiving_address": "QWizNPWwiiaQ7Lt5sdcFFyNcHmUAw9SQex"
796
+ },
797
+ {
798
+ "output_index": 87,
799
+ "output_category": "user-specified",
800
+ "output_value": "0.00020000",
801
+ "receiving_address": "QinWAub5fa4BGpvL9V7A7QneiQh8mZ7kLE"
802
+ },
803
+ {
804
+ "output_index": 88,
805
+ "output_category": "user-specified",
806
+ "output_value": "0.00020000",
807
+ "receiving_address": "QQzoEodRxjLknEAf3YJ2my7Jx2Gcm6a3E4"
808
+ },
809
+ {
810
+ "output_index": 89,
811
+ "output_category": "user-specified",
812
+ "output_value": "0.00020000",
813
+ "receiving_address": "QPEkXRzDnviKsXUAbDh2tAWXXCa5ZFb2Ng"
814
+ },
815
+ {
816
+ "output_index": 90,
817
+ "output_category": "user-specified",
818
+ "output_value": "0.00020000",
819
+ "receiving_address": "QiE9qWPBdmdXFjrMbnj52peVZ3y8Pg7Mgy"
820
+ },
821
+ {
822
+ "output_index": 91,
823
+ "output_category": "user-specified",
824
+ "output_value": "0.00020000",
825
+ "receiving_address": "QTtjwaQhfohYdjJdeomhN8VKgge96edrSh"
826
+ },
827
+ {
828
+ "output_index": 92,
829
+ "output_category": "user-specified",
830
+ "output_value": "0.00020000",
831
+ "receiving_address": "QjCv9wzy96QRshtZkxmR9YCjTvw3fovRqJ"
832
+ },
833
+ {
834
+ "output_index": 93,
835
+ "output_category": "user-specified",
836
+ "output_value": "0.00020000",
837
+ "receiving_address": "QTMMPHN7WP8zq9p1YUBz7pANPomwNXZt9S"
838
+ },
839
+ {
840
+ "output_index": 94,
841
+ "output_category": "user-specified",
842
+ "output_value": "0.00020000",
843
+ "receiving_address": "QhU2b3Hz7tQrovD8Q4gxaGcnfJ3UCbPV1z"
844
+ },
845
+ {
846
+ "output_index": 95,
847
+ "output_category": "user-specified",
848
+ "output_value": "0.00020000",
849
+ "receiving_address": "QN6nQbJxV46D6acJpvxotSu8N6XuSemqVs"
850
+ },
851
+ {
852
+ "output_index": 96,
853
+ "output_category": "user-specified",
854
+ "output_value": "0.00020000",
855
+ "receiving_address": "QPV2ewXRrjRpZ38brfUR2bxEY2XHB177Lt"
856
+ },
857
+ {
858
+ "output_index": 97,
859
+ "output_category": "user-specified",
860
+ "output_value": "0.00020000",
861
+ "receiving_address": "QRjfDgJCsafFXvHCJnyQEDeSiJ5kFL29wJ"
862
+ },
863
+ {
864
+ "output_index": 98,
865
+ "output_category": "user-specified",
866
+ "output_value": "0.00020000",
867
+ "receiving_address": "QgcuSwef9PnwX6M83Rq3zJ2Q3f263N4LFm"
868
+ },
869
+ {
870
+ "output_index": 99,
871
+ "output_category": "user-specified",
872
+ "output_value": "0.00020000",
873
+ "receiving_address": "QX1ZFVNJCga8YHAqdpYc7MXW9De7MhV8BT"
874
+ },
875
+ {
876
+ "output_index": 100,
877
+ "output_category": "user-specified",
878
+ "output_value": "0.00020000",
879
+ "receiving_address": "Qh33yeCTBDxiBQFkPYJ7RDPRV74StZJHUU"
880
+ },
881
+ {
882
+ "output_index": 101,
883
+ "output_category": "user-specified",
884
+ "output_value": "0.00020000",
885
+ "receiving_address": "QNNi7YCgb8h8Bo52w4oTznuHW6SrL9zVdY"
886
+ },
887
+ {
888
+ "output_index": 102,
889
+ "output_category": "user-specified",
890
+ "output_value": "0.00020000",
891
+ "receiving_address": "Qaf7Fac1qfBSt9xiJKwVsmUvaJemZRp3tB"
892
+ },
893
+ {
894
+ "output_index": 103,
895
+ "output_category": "user-specified",
896
+ "output_value": "0.00020000",
897
+ "receiving_address": "QZguKCGkH7RekteDX5g2VmkRaeyt7egw6o"
898
+ },
899
+ {
900
+ "output_index": 104,
901
+ "output_category": "user-specified",
902
+ "output_value": "0.00020000",
903
+ "receiving_address": "QWupdyabGC5v5wmkUW1NrfG6BER6qkucmG"
904
+ },
905
+ {
906
+ "output_index": 105,
907
+ "output_category": "user-specified",
908
+ "output_value": "0.00020000",
909
+ "receiving_address": "QXAUVUW2MTJPmqu5MfG3FhmqgiPxcUw5ak"
910
+ },
911
+ {
912
+ "output_index": 106,
913
+ "output_category": "user-specified",
914
+ "output_value": "0.00020000",
915
+ "receiving_address": "Qir1DCD4kRWTTJge3hfuFCZHPKDjiw6mpX"
916
+ },
917
+ {
918
+ "output_index": 107,
919
+ "output_category": "user-specified",
920
+ "output_value": "0.00020000",
921
+ "receiving_address": "Qh4AMu8MoS8wSu8vjc6Dn8VPktwh3NEKuZ"
922
+ },
923
+ {
924
+ "output_index": 108,
925
+ "output_category": "user-specified",
926
+ "output_value": "0.00020000",
927
+ "receiving_address": "QQRRwdNFeQMhpuWN4yzXeTQmW1xNZi3Yum"
928
+ },
929
+ {
930
+ "output_index": 109,
931
+ "output_category": "user-specified",
932
+ "output_value": "0.00020000",
933
+ "receiving_address": "QZsXfQ8CsC3uhdZjgKKAsgbKzpReRgUVvt"
934
+ },
935
+ {
936
+ "output_index": 110,
937
+ "output_category": "user-specified",
938
+ "output_value": "0.00020000",
939
+ "receiving_address": "QcRW25h4NGJ1jGJULqQDvTSze2eELPv8JJ"
940
+ },
941
+ {
942
+ "output_index": 111,
943
+ "output_category": "user-specified",
944
+ "output_value": "0.00020000",
945
+ "receiving_address": "QWX9Yv2aUGeNuNL13wCs1HyQEysyApB7Gw"
946
+ },
947
+ {
948
+ "output_index": 112,
949
+ "output_category": "user-specified",
950
+ "output_value": "0.00020000",
951
+ "receiving_address": "QaG9DyFKjk154pVjmA7LzQjP6oNNFtrF9Z"
952
+ },
953
+ {
954
+ "output_index": 113,
955
+ "output_category": "user-specified",
956
+ "output_value": "0.00020000",
957
+ "receiving_address": "Qb3jHtjsXaNeKaExvLQpSfE2dN3ao5esWk"
958
+ },
959
+ {
960
+ "output_index": 114,
961
+ "output_category": "user-specified",
962
+ "output_value": "0.00020000",
963
+ "receiving_address": "QiX1ed6scim7fV5Xv19vcMbb1P4pUzZvAq"
964
+ },
965
+ {
966
+ "output_index": 115,
967
+ "output_category": "user-specified",
968
+ "output_value": "0.00020000",
969
+ "receiving_address": "QMG768RsMbqL9dF2PQWTrGTBFAnjb2S8Rs"
970
+ },
971
+ {
972
+ "output_index": 116,
973
+ "output_category": "user-specified",
974
+ "output_value": "0.00020000",
975
+ "receiving_address": "QQN47RE1icLYf1Gvan9HDa8YiY9HXkneuj"
976
+ },
977
+ {
978
+ "output_index": 117,
979
+ "output_category": "user-specified",
980
+ "output_value": "0.00020000",
981
+ "receiving_address": "QiiVAqsyY3r7NMfuP4dp7fz5sdEHKMtiGL"
982
+ },
983
+ {
984
+ "output_index": 118,
985
+ "output_category": "user-specified",
986
+ "output_value": "0.00020000",
987
+ "receiving_address": "Qc4NyGTAQ4QHa4QZKXq6jBf2QkwgpUuesW"
988
+ },
989
+ {
990
+ "output_index": 119,
991
+ "output_category": "user-specified",
992
+ "output_value": "0.00020000",
993
+ "receiving_address": "QZ7FUsTP7bSVBhxc5dGRPn7wnjf1K3xiqC"
994
+ },
995
+ {
996
+ "output_index": 120,
997
+ "output_category": "user-specified",
998
+ "output_value": "0.00020000",
999
+ "receiving_address": "QUj1WDRfwQi8M4noTsr1ZDJaYQB1bsEPXH"
1000
+ },
1001
+ {
1002
+ "output_index": 121,
1003
+ "output_category": "user-specified",
1004
+ "output_value": "0.00020000",
1005
+ "receiving_address": "QXMPvr1hTKhV92RUb4e5NY48GYYoTRDFaW"
1006
+ },
1007
+ {
1008
+ "output_index": 122,
1009
+ "output_category": "user-specified",
1010
+ "output_value": "0.00020000",
1011
+ "receiving_address": "QhpqMf6g9pJ5AXUwgUBmJDCcyEVe8qRKpi"
1012
+ },
1013
+ {
1014
+ "output_index": 123,
1015
+ "output_category": "user-specified",
1016
+ "output_value": "0.00020000",
1017
+ "receiving_address": "QSEofrYTUVp99CSwVH9xuGQdNgrsr9q127"
1018
+ },
1019
+ {
1020
+ "output_index": 124,
1021
+ "output_category": "user-specified",
1022
+ "output_value": "0.00020000",
1023
+ "receiving_address": "QW1podgcjYowZWj9XRW1sYb1YVFFUkEeXB"
1024
+ },
1025
+ {
1026
+ "output_index": 125,
1027
+ "output_category": "user-specified",
1028
+ "output_value": "0.00020000",
1029
+ "receiving_address": "QWN2wcd2ME9b3ExytErrccS3uwFRwU7M6q"
1030
+ },
1031
+ {
1032
+ "output_index": 126,
1033
+ "output_category": "user-specified",
1034
+ "output_value": "0.00020000",
1035
+ "receiving_address": "QPTfPA79KSULPJXS4mEEHzLJoxVDqbnMj6"
1036
+ },
1037
+ {
1038
+ "output_index": 127,
1039
+ "output_category": "user-specified",
1040
+ "output_value": "0.00020000",
1041
+ "receiving_address": "QistSZ6wFrDvkB6hw772MFxDqfQUmDFwJE"
1042
+ },
1043
+ {
1044
+ "output_index": 128,
1045
+ "output_category": "user-specified",
1046
+ "output_value": "0.00020000",
1047
+ "receiving_address": "QeapSsPJ5ko6knS4wb1kw2E9ZHBF49yL9g"
1048
+ },
1049
+ {
1050
+ "output_index": 129,
1051
+ "output_category": "user-specified",
1052
+ "output_value": "0.00020000",
1053
+ "receiving_address": "QTBRVupPF6j6kNQQWT7rYRKFAdMVzCLkd6"
1054
+ },
1055
+ {
1056
+ "output_index": 130,
1057
+ "output_category": "user-specified",
1058
+ "output_value": "0.00020000",
1059
+ "receiving_address": "QR42uCX4UG6NpKfWaWAWnBPKWrQncXFgjc"
1060
+ },
1061
+ {
1062
+ "output_index": 131,
1063
+ "output_category": "user-specified",
1064
+ "output_value": "0.00020000",
1065
+ "receiving_address": "QToLefe2Mo6AvtGzfPzZek9af3z3WHPUq6"
1066
+ },
1067
+ {
1068
+ "output_index": 132,
1069
+ "output_category": "user-specified",
1070
+ "output_value": "0.00020000",
1071
+ "receiving_address": "QgvXt3N3bwwRYv8DUprjDKZSSfiJjpon8A"
1072
+ },
1073
+ {
1074
+ "output_index": 133,
1075
+ "output_category": "user-specified",
1076
+ "output_value": "0.00020000",
1077
+ "receiving_address": "QURok4vktTS3n94h28G28dPgCVKtnid6H2"
1078
+ },
1079
+ {
1080
+ "output_index": 134,
1081
+ "output_category": "user-specified",
1082
+ "output_value": "0.00020000",
1083
+ "receiving_address": "QSK2SGm296BP4yasbkyeA5hDQJ9WWKD238"
1084
+ },
1085
+ {
1086
+ "output_index": 135,
1087
+ "output_category": "user-specified",
1088
+ "output_value": "0.00020000",
1089
+ "receiving_address": "QNvvswCV25bGDZhadJsGxRL8GJYse3ERSx"
1090
+ },
1091
+ {
1092
+ "output_index": 136,
1093
+ "output_category": "user-specified",
1094
+ "output_value": "0.00020000",
1095
+ "receiving_address": "QY7dQWLbvXFCJQ62snc9dY5J8HQhD6woUZ"
1096
+ },
1097
+ {
1098
+ "output_index": 137,
1099
+ "output_category": "user-specified",
1100
+ "output_value": "0.00020000",
1101
+ "receiving_address": "QUJZNh7AqmT6UnZm9ciMxSHDD8fsGRG15U"
1102
+ },
1103
+ {
1104
+ "output_index": 138,
1105
+ "output_category": "user-specified",
1106
+ "output_value": "0.00020000",
1107
+ "receiving_address": "QY6WRbcekrtRhJNGZFm1YVr6ExU1SrqWwV"
1108
+ },
1109
+ {
1110
+ "output_index": 139,
1111
+ "output_category": "user-specified",
1112
+ "output_value": "0.00020000",
1113
+ "receiving_address": "QUv5CR11Z8oMq8FQu2hjVxRYgtdS55fbaf"
1114
+ },
1115
+ {
1116
+ "output_index": 140,
1117
+ "output_category": "user-specified",
1118
+ "output_value": "0.00020000",
1119
+ "receiving_address": "QS3ChnGg4EFzQWEN5Rn6sEvbNiqepBpTX4"
1120
+ },
1121
+ {
1122
+ "output_index": 141,
1123
+ "output_category": "user-specified",
1124
+ "output_value": "0.00020000",
1125
+ "receiving_address": "Qd53NEbsXYn8gRkempod8pW31YtpNd8288"
1126
+ },
1127
+ {
1128
+ "output_index": 142,
1129
+ "output_category": "user-specified",
1130
+ "output_value": "0.00020000",
1131
+ "receiving_address": "QZu93SxJ8YzPH7UTgCA5jbBhpPMacQMMHL"
1132
+ },
1133
+ {
1134
+ "output_index": 143,
1135
+ "output_category": "user-specified",
1136
+ "output_value": "0.00020000",
1137
+ "receiving_address": "QTbo5ryj9HLS1LzyAvhBMrZCTvg6mtppMH"
1138
+ },
1139
+ {
1140
+ "output_index": 144,
1141
+ "output_category": "user-specified",
1142
+ "output_value": "0.00020000",
1143
+ "receiving_address": "QjKvh4RW3mu8bmRV4MfEu5dWt3LK3ne5Jv"
1144
+ },
1145
+ {
1146
+ "output_index": 145,
1147
+ "output_category": "user-specified",
1148
+ "output_value": "0.00020000",
1149
+ "receiving_address": "QWKCChwx3Ecvw2YwBaUwwD6dDUuB6z1MtS"
1150
+ },
1151
+ {
1152
+ "output_index": 146,
1153
+ "output_category": "user-specified",
1154
+ "output_value": "0.00020000",
1155
+ "receiving_address": "QgiEZqjUowVnQ2C6M6A5LwkTBe55iino4x"
1156
+ },
1157
+ {
1158
+ "output_index": 147,
1159
+ "output_category": "user-specified",
1160
+ "output_value": "0.00020000",
1161
+ "receiving_address": "QUQPfYv5oXMUyy46TCxEogFJKfbGboDCt2"
1162
+ },
1163
+ {
1164
+ "output_index": 148,
1165
+ "output_category": "user-specified",
1166
+ "output_value": "0.00020000",
1167
+ "receiving_address": "QfrmSUeaoqNreHCC7LBXnqyKUrAerf7xYT"
1168
+ },
1169
+ {
1170
+ "output_index": 149,
1171
+ "output_category": "user-specified",
1172
+ "output_value": "0.00020000",
1173
+ "receiving_address": "QW8G3BHDXTD8ywdMrRfJ4BEZHK61pbfZGt"
1174
+ },
1175
+ {
1176
+ "output_index": 150,
1177
+ "output_category": "user-specified",
1178
+ "output_value": "0.00020000",
1179
+ "receiving_address": "QiuEp1Bd5LJLQpcGuNfHEEenjZ5TEcy2a6"
1180
+ },
1181
+ {
1182
+ "output_index": 151,
1183
+ "output_category": "user-specified",
1184
+ "output_value": "0.00020000",
1185
+ "receiving_address": "QgmP5ZGnmQEj6aNJLkSxsXeyi2nM7p7u8R"
1186
+ },
1187
+ {
1188
+ "output_index": 152,
1189
+ "output_category": "user-specified",
1190
+ "output_value": "0.00020000",
1191
+ "receiving_address": "QVSyA6qQuBjZw1SFYAAMRMMKHHzg6MYGuZ"
1192
+ },
1193
+ {
1194
+ "output_index": 153,
1195
+ "output_category": "user-specified",
1196
+ "output_value": "0.00020000",
1197
+ "receiving_address": "QedvpenUpZYQJ9v7ttiMPgNKib4316V1Zu"
1198
+ },
1199
+ {
1200
+ "output_index": 154,
1201
+ "output_category": "user-specified",
1202
+ "output_value": "0.00020000",
1203
+ "receiving_address": "QRcRcQxsrmiJjj2ekC13sMvVfbHeEkD3Ab"
1204
+ },
1205
+ {
1206
+ "output_index": 155,
1207
+ "output_category": "user-specified",
1208
+ "output_value": "0.00020000",
1209
+ "receiving_address": "QXWhAneEyu3jtNtX8nKHMPuSo366Y9ZA5L"
1210
+ },
1211
+ {
1212
+ "output_index": 156,
1213
+ "output_category": "user-specified",
1214
+ "output_value": "0.00020000",
1215
+ "receiving_address": "QjaLifmUmYJXoLs94h3fkMtUHXayTMSNmK"
1216
+ },
1217
+ {
1218
+ "output_index": 157,
1219
+ "output_category": "user-specified",
1220
+ "output_value": "0.00020000",
1221
+ "receiving_address": "QdEC4sXkxMg7NAxCFM12rCeqFiFds8h9K7"
1222
+ },
1223
+ {
1224
+ "output_index": 158,
1225
+ "output_category": "user-specified",
1226
+ "output_value": "0.00020000",
1227
+ "receiving_address": "QebJCsABHrFS1mSbBhc7BBURp6RWptVxo4"
1228
+ },
1229
+ {
1230
+ "output_index": 159,
1231
+ "output_category": "user-specified",
1232
+ "output_value": "0.00020000",
1233
+ "receiving_address": "QXtRY7oSNjJnzEMGf3kYpUAeHWf3iGdwoz"
1234
+ },
1235
+ {
1236
+ "output_index": 160,
1237
+ "output_category": "user-specified",
1238
+ "output_value": "0.00020000",
1239
+ "receiving_address": "QNMmjVKDLETDRNAsPtpuo1G1oepSe66kbZ"
1240
+ },
1241
+ {
1242
+ "output_index": 161,
1243
+ "output_category": "user-specified",
1244
+ "output_value": "0.00020000",
1245
+ "receiving_address": "QXhaq279thomyCgKTBefnC5JwTtmkbE6ky"
1246
+ },
1247
+ {
1248
+ "output_index": 162,
1249
+ "output_category": "user-specified",
1250
+ "output_value": "0.00020000",
1251
+ "receiving_address": "QUQnRy3DH8qVQPBXeqSqAibNgPZvSkCR4p"
1252
+ },
1253
+ {
1254
+ "output_index": 163,
1255
+ "output_category": "user-specified",
1256
+ "output_value": "0.00020000",
1257
+ "receiving_address": "QV1BsnYaEGjQfzFQMPZRM6urV2Bp4gH69x"
1258
+ },
1259
+ {
1260
+ "output_index": 164,
1261
+ "output_category": "user-specified",
1262
+ "output_value": "0.00020000",
1263
+ "receiving_address": "QNcRRZeawnh8AqbU7nj7Y7pJ9ZbYMYNWJX"
1264
+ },
1265
+ {
1266
+ "output_index": 165,
1267
+ "output_category": "user-specified",
1268
+ "output_value": "0.00020000",
1269
+ "receiving_address": "Qe5xWigh6ZbukGqLvv3rMggu8XLzNHZT7z"
1270
+ },
1271
+ {
1272
+ "output_index": 166,
1273
+ "output_category": "user-specified",
1274
+ "output_value": "0.00020000",
1275
+ "receiving_address": "QSGFVWgcNzfksoWiE5B4FZ2wK8PerGQN9g"
1276
+ },
1277
+ {
1278
+ "output_index": 167,
1279
+ "output_category": "user-specified",
1280
+ "output_value": "0.00020000",
1281
+ "receiving_address": "QeHkKhY7dFQPc6qzGqgPUAMUPUizPc6NP7"
1282
+ },
1283
+ {
1284
+ "output_index": 168,
1285
+ "output_category": "user-specified",
1286
+ "output_value": "0.00020000",
1287
+ "receiving_address": "QXz1jF6i9FGmBRKEjMR2XdSHmyeeZFMjTp"
1288
+ },
1289
+ {
1290
+ "output_index": 169,
1291
+ "output_category": "user-specified",
1292
+ "output_value": "0.00020000",
1293
+ "receiving_address": "QPhkk9wJ31LQNfD9DF7JHQPvpnC46ip6jj"
1294
+ },
1295
+ {
1296
+ "output_index": 170,
1297
+ "output_category": "user-specified",
1298
+ "output_value": "0.00020000",
1299
+ "receiving_address": "QepihTnxnhqfswf3NWAJD7urgoS5RBb2CJ"
1300
+ },
1301
+ {
1302
+ "output_index": 171,
1303
+ "output_category": "user-specified",
1304
+ "output_value": "0.00020000",
1305
+ "receiving_address": "QQfssFm9FHduEFe1kRw4mHjpWAJYxVnfd3"
1306
+ },
1307
+ {
1308
+ "output_index": 172,
1309
+ "output_category": "user-specified",
1310
+ "output_value": "0.00020000",
1311
+ "receiving_address": "QLkN2fjygzxpGK5sZZXWYGMVtuHrie73FF"
1312
+ },
1313
+ {
1314
+ "output_index": 173,
1315
+ "output_category": "user-specified",
1316
+ "output_value": "0.00020000",
1317
+ "receiving_address": "QUSg5ywrfwnn3mrs8B29k1KKkiTzH1cDQJ"
1318
+ },
1319
+ {
1320
+ "output_index": 174,
1321
+ "output_category": "user-specified",
1322
+ "output_value": "0.00020000",
1323
+ "receiving_address": "QgWH5MLhiSrsyAmbd91meJnVwjhPWm3a5f"
1324
+ },
1325
+ {
1326
+ "output_index": 175,
1327
+ "output_category": "user-specified",
1328
+ "output_value": "0.00020000",
1329
+ "receiving_address": "QSskK6zrmSo9ZELM8yv478C6sR1pp6xxdT"
1330
+ },
1331
+ {
1332
+ "output_index": 176,
1333
+ "output_category": "user-specified",
1334
+ "output_value": "0.00020000",
1335
+ "receiving_address": "QPZKeEk48bT3KkQ6pQoNqSBU1ftRgSKLgK"
1336
+ },
1337
+ {
1338
+ "output_index": 177,
1339
+ "output_category": "user-specified",
1340
+ "output_value": "0.00020000",
1341
+ "receiving_address": "QYxjejesuuvvALNykfEAeR2iAkCJtHggBZ"
1342
+ },
1343
+ {
1344
+ "output_index": 178,
1345
+ "output_category": "user-specified",
1346
+ "output_value": "0.00020000",
1347
+ "receiving_address": "QfkXqUzQcfHBHQfHq6FfAE2jtP4ein7QYk"
1348
+ },
1349
+ {
1350
+ "output_index": 179,
1351
+ "output_category": "user-specified",
1352
+ "output_value": "0.00020000",
1353
+ "receiving_address": "QWbTLnkSbNfb27YD4FVDfxCu3RdEaGCt94"
1354
+ },
1355
+ {
1356
+ "output_index": 180,
1357
+ "output_category": "user-specified",
1358
+ "output_value": "0.00020000",
1359
+ "receiving_address": "QQhxaC7ocjx6uwftcEbV5PPNP59kjFb97p"
1360
+ },
1361
+ {
1362
+ "output_index": 181,
1363
+ "output_category": "user-specified",
1364
+ "output_value": "0.00020000",
1365
+ "receiving_address": "Qds768auEug4Zx7HLuA9JwPCKcpf5KiaB3"
1366
+ },
1367
+ {
1368
+ "output_index": 182,
1369
+ "output_category": "user-specified",
1370
+ "output_value": "0.00020000",
1371
+ "receiving_address": "QQbWif5jChzJfFbj24f7eruXiKES7NUx8q"
1372
+ },
1373
+ {
1374
+ "output_index": 183,
1375
+ "output_category": "user-specified",
1376
+ "output_value": "0.00020000",
1377
+ "receiving_address": "QM99Kn1dnTnNWaUreEcdLuMRLLMTRF5AGu"
1378
+ },
1379
+ {
1380
+ "output_index": 184,
1381
+ "output_category": "user-specified",
1382
+ "output_value": "0.00020000",
1383
+ "receiving_address": "QTQJvNydKtapeWgAmZkikxpTTDANEKdwBd"
1384
+ },
1385
+ {
1386
+ "output_index": 185,
1387
+ "output_category": "user-specified",
1388
+ "output_value": "0.00020000",
1389
+ "receiving_address": "QVyzre6UbbYzm8wCSxUsqjPhK4EUBL7A9z"
1390
+ },
1391
+ {
1392
+ "output_index": 186,
1393
+ "output_category": "user-specified",
1394
+ "output_value": "0.00020000",
1395
+ "receiving_address": "QVjT21fy3XQHG5niTTydWghdQK5KmMGEZx"
1396
+ },
1397
+ {
1398
+ "output_index": 187,
1399
+ "output_category": "user-specified",
1400
+ "output_value": "0.00020000",
1401
+ "receiving_address": "QifcMQwShnKGjNn2Bak9dnDuAqEcJywpuY"
1402
+ },
1403
+ {
1404
+ "output_index": 188,
1405
+ "output_category": "user-specified",
1406
+ "output_value": "0.00020000",
1407
+ "receiving_address": "Qau4YxBZSEZtFgv2ws6YQ1x8xDbopFCsDQ"
1408
+ },
1409
+ {
1410
+ "output_index": 189,
1411
+ "output_category": "user-specified",
1412
+ "output_value": "0.00020000",
1413
+ "receiving_address": "QPmJrb5n2RE9ervjZCFrHD2TANzGAobmAH"
1414
+ },
1415
+ {
1416
+ "output_index": 190,
1417
+ "output_category": "user-specified",
1418
+ "output_value": "0.00020000",
1419
+ "receiving_address": "QfX5ATCsLrWcAJ4bBWcV3nbfZAbGx7R2Rg"
1420
+ },
1421
+ {
1422
+ "output_index": 191,
1423
+ "output_category": "user-specified",
1424
+ "output_value": "0.00020000",
1425
+ "receiving_address": "Qgs71T6RSFUbJmZ6qoQPYTQV9H4EgyaSzC"
1426
+ },
1427
+ {
1428
+ "output_index": 192,
1429
+ "output_category": "user-specified",
1430
+ "output_value": "0.00020000",
1431
+ "receiving_address": "QgpauJL4baSLmLuatJjobMZbfEvENwBdhv"
1432
+ },
1433
+ {
1434
+ "output_index": 193,
1435
+ "output_category": "user-specified",
1436
+ "output_value": "0.00020000",
1437
+ "receiving_address": "QjpoMwk8VbqDcaJTJ8cuPifKjL5YJdffCk"
1438
+ },
1439
+ {
1440
+ "output_index": 194,
1441
+ "output_category": "user-specified",
1442
+ "output_value": "0.00020000",
1443
+ "receiving_address": "QPJ8ySbuzq12tfWxz8h55s8v6QAFtsQe2b"
1444
+ },
1445
+ {
1446
+ "output_index": 195,
1447
+ "output_category": "user-specified",
1448
+ "output_value": "0.00020000",
1449
+ "receiving_address": "QbjLDZkQTKPQWUdPV39YZJwCuDJnP2ouZy"
1450
+ },
1451
+ {
1452
+ "output_index": 196,
1453
+ "output_category": "user-specified",
1454
+ "output_value": "0.00020000",
1455
+ "receiving_address": "QSZ6wL2E5mM6Gu977N1w7BojnBEGvEqVkV"
1456
+ },
1457
+ {
1458
+ "output_index": 197,
1459
+ "output_category": "user-specified",
1460
+ "output_value": "0.00020000",
1461
+ "receiving_address": "Qci9mmgqDSbDTjdxk2iwULhddDaQQvuQFY"
1462
+ },
1463
+ {
1464
+ "output_index": 198,
1465
+ "output_category": "user-specified",
1466
+ "output_value": "0.00020000",
1467
+ "receiving_address": "QMNJRYfPNmyX4V3JM77yZt12th7WqBaAcv"
1468
+ },
1469
+ {
1470
+ "output_index": 199,
1471
+ "output_category": "user-specified",
1472
+ "output_value": "0.00020000",
1473
+ "receiving_address": "QYk1FNEXkfuKgUb7KPxJPtHb8jTYFXhrym"
1474
+ },
1475
+ {
1476
+ "output_index": 200,
1477
+ "output_category": "user-specified",
1478
+ "output_value": "0.00020000",
1479
+ "receiving_address": "QWb7JVs63nP1UzuRLFkne65pUhRo6iKMYL"
1480
+ },
1481
+ {
1482
+ "output_index": 201,
1483
+ "output_category": "user-specified",
1484
+ "output_value": "0.00020000",
1485
+ "receiving_address": "QMuUPA7Y2qM3utF2txp2LW9qU5B4wFBeTk"
1486
+ },
1487
+ {
1488
+ "output_index": 202,
1489
+ "output_category": "user-specified",
1490
+ "output_value": "0.00020000",
1491
+ "receiving_address": "QNvAXnU2z1BnsL1S4tpG7KKJzwL9miEf2f"
1492
+ },
1493
+ {
1494
+ "output_index": 203,
1495
+ "output_category": "user-specified",
1496
+ "output_value": "0.00020000",
1497
+ "receiving_address": "QcKT4Dbu3WLMJp6T3KnYLyGFYgSsE6KTad"
1498
+ },
1499
+ {
1500
+ "output_index": 204,
1501
+ "output_category": "user-specified",
1502
+ "output_value": "0.00020000",
1503
+ "receiving_address": "QdwirP9WnaVMdkzTd8ddgP3ivGTmq4h1jJ"
1504
+ },
1505
+ {
1506
+ "output_index": 205,
1507
+ "output_category": "user-specified",
1508
+ "output_value": "0.00020000",
1509
+ "receiving_address": "QUW7jzJiy3s8vpqVJvRZ4hPPpdtJjM2cMD"
1510
+ },
1511
+ {
1512
+ "output_index": 206,
1513
+ "output_category": "user-specified",
1514
+ "output_value": "0.00020000",
1515
+ "receiving_address": "QSo45Krz5t7RZnn7xUsi34aXRp9as8YGo8"
1516
+ },
1517
+ {
1518
+ "output_index": 207,
1519
+ "output_category": "user-specified",
1520
+ "output_value": "0.00020000",
1521
+ "receiving_address": "QevB8FAuVDJUgqJvPALZWSPwxj4aq9V9S9"
1522
+ },
1523
+ {
1524
+ "output_index": 208,
1525
+ "output_category": "user-specified",
1526
+ "output_value": "0.00020000",
1527
+ "receiving_address": "QeFbr96qxk1o1EfeLUsADvXNLVtmrdEtVD"
1528
+ },
1529
+ {
1530
+ "output_index": 209,
1531
+ "output_category": "user-specified",
1532
+ "output_value": "0.00020000",
1533
+ "receiving_address": "QMBVNHiZwPCV8gkBbrxhdcaYNdzNATiTc9"
1534
+ },
1535
+ {
1536
+ "output_index": 210,
1537
+ "output_category": "user-specified",
1538
+ "output_value": "0.00020000",
1539
+ "receiving_address": "QT83sktDYsZMCnCCDi5smxpXcMYpZ6UqKz"
1540
+ },
1541
+ {
1542
+ "output_index": 211,
1543
+ "output_category": "user-specified",
1544
+ "output_value": "0.00020000",
1545
+ "receiving_address": "QabdUvWNmxZUMYsanxyZiQraaNT7b2PPGZ"
1546
+ },
1547
+ {
1548
+ "output_index": 212,
1549
+ "output_category": "user-specified",
1550
+ "output_value": "0.00020000",
1551
+ "receiving_address": "QM2HzsA4y64wa5SrEvVGHHJzLxTo2JmGDm"
1552
+ },
1553
+ {
1554
+ "output_index": 213,
1555
+ "output_category": "user-specified",
1556
+ "output_value": "0.00020000",
1557
+ "receiving_address": "QXn1xDrYGzkCcXdPFPGz2KqVPEGspGpCWa"
1558
+ },
1559
+ {
1560
+ "output_index": 214,
1561
+ "output_category": "user-specified",
1562
+ "output_value": "0.00020000",
1563
+ "receiving_address": "QUtV23pA5PYwUongPerdk8uWDmrQzWr3eg"
1564
+ },
1565
+ {
1566
+ "output_index": 215,
1567
+ "output_category": "user-specified",
1568
+ "output_value": "0.00020000",
1569
+ "receiving_address": "Qfk7oMqSidhzCAN6uPRXC2a7e7HER5kf2a"
1570
+ },
1571
+ {
1572
+ "output_index": 216,
1573
+ "output_category": "user-specified",
1574
+ "output_value": "0.00020000",
1575
+ "receiving_address": "QY5XUZTbYVjmcPrEKKo8T8tt3r3nbAbq3D"
1576
+ },
1577
+ {
1578
+ "output_index": 217,
1579
+ "output_category": "user-specified",
1580
+ "output_value": "0.00020000",
1581
+ "receiving_address": "QNNk1bTzDyswgQbLdRvwEcfndhY2mShVDu"
1582
+ },
1583
+ {
1584
+ "output_index": 218,
1585
+ "output_category": "user-specified",
1586
+ "output_value": "0.00020000",
1587
+ "receiving_address": "QSS1f1cRkJeLhbsvc1Wxvp67HvKsbNfr7v"
1588
+ },
1589
+ {
1590
+ "output_index": 219,
1591
+ "output_category": "user-specified",
1592
+ "output_value": "0.00020000",
1593
+ "receiving_address": "QVoUhMHfc1WCVbFuw3QhTpkwfFN7JK6cP6"
1594
+ },
1595
+ {
1596
+ "output_index": 220,
1597
+ "output_category": "user-specified",
1598
+ "output_value": "0.00020000",
1599
+ "receiving_address": "QgTNGEBEVDjaUxdgooZG4cX1SSC6rzAxX3"
1600
+ },
1601
+ {
1602
+ "output_index": 221,
1603
+ "output_category": "user-specified",
1604
+ "output_value": "0.00020000",
1605
+ "receiving_address": "QffCmz7ZuCbdrHW2z9ekC5t3ZGYyWYmDht"
1606
+ },
1607
+ {
1608
+ "output_index": 222,
1609
+ "output_category": "user-specified",
1610
+ "output_value": "0.00020000",
1611
+ "receiving_address": "QjVUSWhno4uC93K9wCdSXkY57CoGGyG7Kk"
1612
+ },
1613
+ {
1614
+ "output_index": 223,
1615
+ "output_category": "user-specified",
1616
+ "output_value": "0.00020000",
1617
+ "receiving_address": "QN1Vpdwnih8nRSm5XkTBePCH5EAbhCkJgg"
1618
+ },
1619
+ {
1620
+ "output_index": 224,
1621
+ "output_category": "user-specified",
1622
+ "output_value": "0.00020000",
1623
+ "receiving_address": "QPjNv2YB9H4N7Bqj3L3gaMz33g2mbpyn1d"
1624
+ },
1625
+ {
1626
+ "output_index": 225,
1627
+ "output_category": "user-specified",
1628
+ "output_value": "0.00020000",
1629
+ "receiving_address": "QcdNbKCmy5LEBZkUr6HasU495XdkYqBvRH"
1630
+ },
1631
+ {
1632
+ "output_index": 226,
1633
+ "output_category": "user-specified",
1634
+ "output_value": "0.00020000",
1635
+ "receiving_address": "QYCZATxxL7ReaAtspDysZ24Y6wt6dxt1Ra"
1636
+ },
1637
+ {
1638
+ "output_index": 227,
1639
+ "output_category": "user-specified",
1640
+ "output_value": "0.00020000",
1641
+ "receiving_address": "QSJrSVPq47X5BcUS6xEEgMhYEEnakQs5Dp"
1642
+ },
1643
+ {
1644
+ "output_index": 228,
1645
+ "output_category": "user-specified",
1646
+ "output_value": "0.00020000",
1647
+ "receiving_address": "QfGWHx6jEWJtoNM3NqmqrdW82BDYneu1dR"
1648
+ },
1649
+ {
1650
+ "output_index": 229,
1651
+ "output_category": "user-specified",
1652
+ "output_value": "0.00020000",
1653
+ "receiving_address": "QXWjJkkryQ9JBuUAiZP6Gew13v2mxXR3c5"
1654
+ },
1655
+ {
1656
+ "output_index": 230,
1657
+ "output_category": "user-specified",
1658
+ "output_value": "0.00020000",
1659
+ "receiving_address": "Qct5X3PuYTqqqQL7x5xp3xG9KzWmQPWzVs"
1660
+ },
1661
+ {
1662
+ "output_index": 231,
1663
+ "output_category": "user-specified",
1664
+ "output_value": "0.00020000",
1665
+ "receiving_address": "QYmN174DHwhNsGN14aicm3WUJGyuX8agyo"
1666
+ },
1667
+ {
1668
+ "output_index": 232,
1669
+ "output_category": "user-specified",
1670
+ "output_value": "0.00020000",
1671
+ "receiving_address": "QddHkTga88nLRbLotNxtj6sFTFWomE84Mq"
1672
+ },
1673
+ {
1674
+ "output_index": 233,
1675
+ "output_category": "user-specified",
1676
+ "output_value": "0.00020000",
1677
+ "receiving_address": "QW5ThkmCfrX8yybxceFuwNEkKrBi5LpJgX"
1678
+ },
1679
+ {
1680
+ "output_index": 234,
1681
+ "output_category": "user-specified",
1682
+ "output_value": "0.00020000",
1683
+ "receiving_address": "QZf7yAHyoNmcxTWetA67bguf6w4TfcN9cJ"
1684
+ },
1685
+ {
1686
+ "output_index": 235,
1687
+ "output_category": "user-specified",
1688
+ "output_value": "0.00020000",
1689
+ "receiving_address": "QV5dTC1Ab2gJf7mHzHgnAu5RSkszZpmHpy"
1690
+ },
1691
+ {
1692
+ "output_index": 236,
1693
+ "output_category": "user-specified",
1694
+ "output_value": "0.00020000",
1695
+ "receiving_address": "QUW7tCQk1KSNLyokXy18yTCnraezkxBrAc"
1696
+ },
1697
+ {
1698
+ "output_index": 237,
1699
+ "output_category": "user-specified",
1700
+ "output_value": "0.00020000",
1701
+ "receiving_address": "QfV6cMRiRkKxFtkh6eagqLhoLPaVjNtoi8"
1702
+ },
1703
+ {
1704
+ "output_index": 238,
1705
+ "output_category": "user-specified",
1706
+ "output_value": "0.00020000",
1707
+ "receiving_address": "QWRtoxUYxgx5Q4MhDwUwW2jPuKCpa9Z86f"
1708
+ },
1709
+ {
1710
+ "output_index": 239,
1711
+ "output_category": "user-specified",
1712
+ "output_value": "0.00020000",
1713
+ "receiving_address": "QXGWvxmsWpx9DimWAvRaqXqZ7YEZ4oFVw8"
1714
+ },
1715
+ {
1716
+ "output_index": 240,
1717
+ "output_category": "user-specified",
1718
+ "output_value": "0.00020000",
1719
+ "receiving_address": "QbMnVkmvKbL3oZ3nW3vRFPqyjFKikJLcL1"
1720
+ },
1721
+ {
1722
+ "output_index": 241,
1723
+ "output_category": "user-specified",
1724
+ "output_value": "0.00020000",
1725
+ "receiving_address": "QhFkoR4YdiNvMQm3Jh3T7veVgW7BWDe7Hu"
1726
+ },
1727
+ {
1728
+ "output_index": 242,
1729
+ "output_category": "user-specified",
1730
+ "output_value": "0.00020000",
1731
+ "receiving_address": "QdDURf3xFNBDrynotioouAV5SkUR5xeDPF"
1732
+ },
1733
+ {
1734
+ "output_index": 243,
1735
+ "output_category": "user-specified",
1736
+ "output_value": "0.00020000",
1737
+ "receiving_address": "QerzVFCcuRnKP4ZAtZZUijMLLKfiWSMgPt"
1738
+ },
1739
+ {
1740
+ "output_index": 244,
1741
+ "output_category": "user-specified",
1742
+ "output_value": "0.00020000",
1743
+ "receiving_address": "QcPMaLV56pRrUHopfZXavK2GKZBQBmRnRH"
1744
+ },
1745
+ {
1746
+ "output_index": 245,
1747
+ "output_category": "user-specified",
1748
+ "output_value": "0.00020000",
1749
+ "receiving_address": "QZKKrBNiQ7rzrffvNwPb1XEgSbwTqYk7Fr"
1750
+ },
1751
+ {
1752
+ "output_index": 246,
1753
+ "output_category": "user-specified",
1754
+ "output_value": "0.00020000",
1755
+ "receiving_address": "QWagX7xGLGnvZFHkPz1LuM6y9DheWXoZEE"
1756
+ },
1757
+ {
1758
+ "output_index": 247,
1759
+ "output_category": "user-specified",
1760
+ "output_value": "0.00020000",
1761
+ "receiving_address": "QRUbhQeRJXkzfBzCv7BV3cdRs25D9YsE3m"
1762
+ },
1763
+ {
1764
+ "output_index": 248,
1765
+ "output_category": "user-specified",
1766
+ "output_value": "0.00020000",
1767
+ "receiving_address": "QVG4wGpBqFxhadEAwkZpSwqv6NnwBTAJ9G"
1768
+ },
1769
+ {
1770
+ "output_index": 249,
1771
+ "output_category": "user-specified",
1772
+ "output_value": "0.00020000",
1773
+ "receiving_address": "QMMm7qeUU7jKvyCzRxvRyPmvLQ2ufhw6VQ"
1774
+ },
1775
+ {
1776
+ "output_index": 250,
1777
+ "output_category": "user-specified",
1778
+ "output_value": "0.00020000",
1779
+ "receiving_address": "QYnX6axuCr3i1bCd4775FKpDPVF6tTAz3a"
1780
+ },
1781
+ {
1782
+ "output_index": 251,
1783
+ "output_category": "user-specified",
1784
+ "output_value": "0.00020000",
1785
+ "receiving_address": "QbBFYXAjRP7YSusxWteukMErtStu9iYvTP"
1786
+ }
1787
+ ],
1788
+ "input_address_data": [
1789
+ {
1790
+ "required_signatures": 4,
1791
+ "public_keys": [
1792
+ "03974f49bffe0d5276fb04c1972372f9af676d71cdfe5c3b4192edb13d7a22d77b",
1793
+ "02510e29d51e9a4268e6a5253c1fbd8144857945b82acb0accfc235cc7ca36da11",
1794
+ "0201a819bf549c253c4397bdd1535374de39e9bc278f637afdc27642d52cf79139",
1795
+ "039e3aa9ea182ccdaff2d8d150010b27cc4765c1d55ce674e52631af7376354d62",
1796
+ "03ee980e6334142342fcd9e6facfecfa139981e2276584c91d6a9739d533ac99fc"
1797
+ ],
1798
+ "address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl",
1799
+ "address_type": "WITNESS_V0"
1800
+ }
1801
+ ],
1802
+ "estimated_tx_size": 14167
1803
+ }
1804
+ }