From 749ffb8688c7e5ca625581ad4c9f376b1ec3e9ba Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 15 Nov 2016 10:23:58 -0500 Subject: [PATCH 01/31] Don't make the core asset a bitasset --- libraries/chain/db_init.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/libraries/chain/db_init.cpp b/libraries/chain/db_init.cpp index 77a3e9fd..c1863e67 100644 --- a/libraries/chain/db_init.cpp +++ b/libraries/chain/db_init.cpp @@ -371,12 +371,6 @@ void database::init_genesis(const genesis_state_type& genesis_state) a.options.payout_interval = 7*24*60*60; a.dividend_distribution_account = TOURNAMENT_RAKE_FEE_ACCOUNT_ID; }); - const asset_bitasset_data_object& bit_asset = - create([&](asset_bitasset_data_object& a) { - a.current_feed.maintenance_collateral_ratio = 1750; - a.current_feed.maximum_short_squeeze_ratio = 1500; - a.current_feed_publication_time = genesis_state.initial_timestamp + fc::hours(1); - }); const asset_object& core_asset = create( [&]( asset_object& a ) { @@ -392,7 +386,6 @@ void database::init_genesis(const genesis_state_type& genesis_state) a.options.core_exchange_rate.quote.asset_id = asset_id_type(0); a.dynamic_asset_data_id = dyn_asset.id; a.dividend_data_id = div_asset.id; - a.bitasset_data_id = bit_asset.id; }); assert( asset_id_type(core_asset.id) == asset().asset_id ); assert( get_balance(account_id_type(), asset_id_type()) == asset(dyn_asset.current_supply) ); @@ -411,12 +404,6 @@ void database::init_genesis(const genesis_state_type& genesis_state) a.options.payout_interval = 7*24*60*60; a.dividend_distribution_account = TOURNAMENT_RAKE_FEE_ACCOUNT_ID; }); - const asset_bitasset_data_object& bit_asset1 = - create([&](asset_bitasset_data_object& a) { - a.current_feed.maintenance_collateral_ratio = 1750; - a.current_feed.maximum_short_squeeze_ratio = 1500; - a.current_feed_publication_time = genesis_state.initial_timestamp + fc::hours(1); - }); const asset_object& default_asset = create( [&]( asset_object& a ) { @@ -433,7 +420,6 @@ void database::init_genesis(const genesis_state_type& genesis_state) a.options.core_exchange_rate.quote.asset_id = asset_id_type(1); a.dynamic_asset_data_id = dyn_asset1.id; a.dividend_data_id = div_asset1.id; - a.bitasset_data_id = bit_asset1.id; }); assert( default_asset.id == asset_id_type(1) ); #endif From 6f164b718e4949b90be1662a08ab6a826cab641b Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 15 Nov 2016 15:36:47 -0500 Subject: [PATCH 02/31] Update timestamp in genesis file for latest testnet --- genesis.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genesis.json b/genesis.json index b3825d0a..f14018e3 100644 --- a/genesis.json +++ b/genesis.json @@ -1,5 +1,5 @@ { - "initial_timestamp": "2016-08-28T21:30:00", + "initial_timestamp": "2016-11-15T16:00:00", "max_core_supply": "100000000000", "initial_parameters": { "current_fees": { From 4ac87291ec79203aab3d6f93aba404cdd25f95b8 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Wed, 16 Nov 2016 15:08:31 -0500 Subject: [PATCH 03/31] Update fc --- libraries/fc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/fc b/libraries/fc index 15f0dfe5..c1f098e1 160000 --- a/libraries/fc +++ b/libraries/fc @@ -1 +1 @@ -Subproject commit 15f0dfe583b099955b1102555854e9a0e0925067 +Subproject commit c1f098e14a9f1d4e31b539b63265ffe575240d10 From 39b6bfd85e88eb0cee58f34b4018425a00c3c7c1 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Mon, 14 Nov 2016 20:18:44 +0100 Subject: [PATCH 04/31] fixing problem : tournament never ends if "bye" matches present adding tournaments' prize_pool to total balances --- libraries/chain/tournament_object.cpp | 97 ++++++++++++++++++++++++++- tests/common/database_fixture.cpp | 7 ++ 2 files changed, 101 insertions(+), 3 deletions(-) diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index ef4252fb..bc7130c1 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -179,6 +179,35 @@ namespace graphene { namespace chain { event.db.modify(tournament_details_obj, [&](tournament_details_object& tournament_details_obj){ tournament_details_obj.matches = matches; }); + + // OLEK + for (unsigned i = 0; i < num_matches_in_first_round; ++i) + { + const match_object& match = matches[i](event.db); + if (match.players.size() == 1) // is bye + { + unsigned tournament_num_matches = tournament_details_obj.matches.size(); + unsigned next_round_match_index = (i + tournament_num_matches + 1) / 2; + assert(next_round_match_index < tournament_num_matches); + const match_object& next_round_match = tournament_details_obj.matches[next_round_match_index](event.db); + event.db.modify(next_round_match, [&](match_object& next_match) { + next_match.players.emplace_back(match.players[0]); + if (next_match.players.size() > 1) // bye + bye + next_match.on_initiate_match(event.db); + + }); + } + } + + // OLEK + wdump((tournament_details_obj.matches[tournament_details_obj.matches.size() - 1])); + + for( match_id_type mid : tournament_details_obj.matches ) + { + wdump((mid(event.db))); + } + + } void on_entry(const match_completed& event, tournament_state_machine_& fsm) { @@ -213,15 +242,40 @@ namespace graphene { namespace chain { assert(event.match.match_winners.size() <= 1); event.db.modify(next_round_match, [&](match_object& next_match_obj) { - if (!event.match.match_winners.empty()) // if there is a winner + + // OLEK + wdump((event.match.get_state())); + wdump((event.match)); + wdump((other_match.get_state())); + wdump((other_match)); + + if (!event.match.match_winners.empty()) // if there is a winner { if (winner_index_in_next_match == 0) next_match_obj.players.insert(next_match_obj.players.begin(), *event.match.match_winners.begin()); else next_match_obj.players.push_back(*event.match.match_winners.begin()); } - if (other_match.get_state() == match_state::match_complete) + + //if (other_match.get_state() == match_state::match_complete) + // OLEK + if (!other_match.match_winners.empty()) + { +// // if other match was buy +// if (other_match.games.size() == 0 /*&& next_match_obj.players.size() < 2*/) +// { +// if (winner_index_in_next_match != 0) +// next_match_obj.players.insert(next_match_obj.players.begin(), *other_match.match_winners.begin()); +// else +// next_match_obj.players.push_back(*other_match.match_winners.begin()); +// } + // OLEK + wdump((next_match_obj.get_state())); + wdump((next_match_obj)); + next_match_obj.on_initiate_match(event.db); + } + }); } }; @@ -296,9 +350,45 @@ namespace graphene { namespace chain { fc_ilog(fc::logger::get("tournament"), "In was_final_match guard, returning ${value}", ("value", event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size()])); + + // OLEK + wdump((event.match.id)); + wdump((tournament_details_obj.matches[tournament_details_obj.matches.size() - 1])); + + for( match_id_type mid : tournament_details_obj.matches ) + { + wdump((mid(event.db))); + } + return event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size() - 1]; } - + +#if 0 + // OLEK + bool was_buy_match(const match_completed& event) + { + const tournament_details_object& tournament_details_obj = tournament_obj->tournament_details_id(event.db); + fc_ilog(fc::logger::get("tournament"), + "In was_buy_match guard, returning ${value}", + ("value", event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size()])); + + // OLEK + wdump((event.match.id)); + wdump((event.match)); + + /* + wdump((tournament_details_obj.matches[tournament_details_obj.matches.size() - 1])); + + for( match_id_type mid : tournament_details_obj.matches ) + { + wdump((mid(event.db))); + } + + return event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size() - 1]; + */ + return true; + } +#endif void register_player(const player_registered& event) { fc_ilog(fc::logger::get("tournament"), @@ -326,6 +416,7 @@ namespace graphene { namespace chain { _row < awaiting_start, start_time_arrived, in_progress >, // +---------------------------+-----------------------------+----------------------------+---------------------+----------------------+ _row < in_progress, match_completed, in_progress >, + //g_row < in_progress, match_completed, in_progress, &x::was_buy_match >, g_row < in_progress, match_completed, concluded, &x::was_final_match > // +---------------------------+-----------------------------+----------------------------+---------------------+----------------------+ > {}; diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index 0f717ecd..1bd48bc6 100644 --- a/tests/common/database_fixture.cpp +++ b/tests/common/database_fixture.cpp @@ -36,6 +36,7 @@ #include #include #include +#include #include @@ -154,11 +155,17 @@ void database_fixture::verify_asset_supplies( const database& db ) const simple_index& statistics_index = db.get_index_type>(); const auto& balance_index = db.get_index_type().indices(); const auto& settle_index = db.get_index_type().indices(); + const auto& tournaments_index = db.get_index_type().indices(); + map total_balances; map total_debts; share_type core_in_orders; share_type reported_core_in_orders; + for( const tournament_object& t : tournaments_index ) + if (t.get_state() != tournament_state::concluded) + total_balances[t.options.buy_in.asset_id] += t.prize_pool; + for( const account_balance_object& b : balance_index ) total_balances[b.asset_type] += b.balance; for( const force_settlement_object& s : settle_index ) From 0a6e25507e9dbab9315cd6a61b7481c5c8e9a004 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Wed, 16 Nov 2016 15:08:48 -0500 Subject: [PATCH 05/31] Fix compile warning --- tests/common/database_fixture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index 1bd48bc6..64400522 100644 --- a/tests/common/database_fixture.cpp +++ b/tests/common/database_fixture.cpp @@ -81,7 +81,7 @@ database_fixture::database_fixture() genesis_state.initial_timestamp = time_point_sec( GRAPHENE_TESTING_GENESIS_TIMESTAMP ); genesis_state.initial_active_witnesses = 10; - for( int i = 0; i < genesis_state.initial_active_witnesses; ++i ) + for( unsigned i = 0; i < genesis_state.initial_active_witnesses; ++i ) { auto name = "init"+fc::to_string(i); genesis_state.initial_accounts.emplace_back(name, From 935dac7ae67c1a254cbe6e1c36a0b2d5a00e1457 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Wed, 16 Nov 2016 15:57:11 -0500 Subject: [PATCH 06/31] Fix crash in logging when one player fails to reveal their move --- libraries/chain/game_object.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/chain/game_object.cpp b/libraries/chain/game_object.cpp index bc205f20..2bbcdd92 100644 --- a/libraries/chain/game_object.cpp +++ b/libraries/chain/game_object.cpp @@ -470,7 +470,8 @@ namespace graphene { namespace chain { { // we now know who played what, figure out if we have a winner const rock_paper_scissors_game_details& rps_game_details = game_details.get(); - if (rps_game_details.reveal_moves[0]->gesture == rps_game_details.reveal_moves[1]->gesture) + if (rps_game_details.reveal_moves[0] && rps_game_details.reveal_moves[1] && + rps_game_details.reveal_moves[0]->gesture == rps_game_details.reveal_moves[1]->gesture) ilog("The game was a tie, both players threw ${gesture}", ("gesture", rps_game_details.reveal_moves[0]->gesture)); else { From 1530f04882b1104e9d73b041fb1047bdf739df22 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Thu, 17 Nov 2016 18:04:32 +0100 Subject: [PATCH 07/31] added operation tournament_payout_operation --- libraries/app/impacted.cpp | 5 +++- .../graphene/chain/protocol/operations.hpp | 3 +- .../graphene/chain/protocol/tournament.hpp | 30 +++++++++++++++++++ 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/libraries/app/impacted.cpp b/libraries/app/impacted.cpp index 212ff67e..f160e8c7 100644 --- a/libraries/app/impacted.cpp +++ b/libraries/app/impacted.cpp @@ -222,7 +222,10 @@ struct get_impacted_account_visitor { _impacted.insert( op.player_account_id ); } - + void operator()( const tournament_payout_operation& op ) + { + _impacted.insert( op.winner_account_id ); + } }; void operation_get_impacted_accounts( const operation& op, flat_set& result ) diff --git a/libraries/chain/include/graphene/chain/protocol/operations.hpp b/libraries/chain/include/graphene/chain/protocol/operations.hpp index 6e8cd61b..f96f8658 100644 --- a/libraries/chain/include/graphene/chain/protocol/operations.hpp +++ b/libraries/chain/include/graphene/chain/protocol/operations.hpp @@ -97,7 +97,8 @@ namespace graphene { namespace chain { tournament_join_operation, game_move_operation, asset_update_dividend_operation, - asset_dividend_distribution_operation // VIRTUAL + asset_dividend_distribution_operation, // VIRTUAL + tournament_payout_operation // VIRTUAL > operation; /// @} // operations group diff --git a/libraries/chain/include/graphene/chain/protocol/tournament.hpp b/libraries/chain/include/graphene/chain/protocol/tournament.hpp index 6c5299d4..34f9ac29 100644 --- a/libraries/chain/include/graphene/chain/protocol/tournament.hpp +++ b/libraries/chain/include/graphene/chain/protocol/tournament.hpp @@ -163,6 +163,28 @@ namespace graphene { namespace chain { void validate()const; }; + struct tournament_payout_operation : public base_operation + { + struct fee_parameters_type {}; + + asset fee; + + /// The account of the the tournament winner + account_id_type winner_account_id; + + /// The won tournament + tournament_id_type tournament_id; + + /// The buy-in paid by the `payer_account_id` + asset won_prize; + + extensions_type extensions; + + account_id_type fee_payer()const { return winner_account_id; } + share_type calculate_fee(const fee_parameters_type&)const { return 0; } + void validate()const {} + }; + } } FC_REFLECT_TYPENAME( graphene::chain::game_specific_options ) @@ -196,7 +218,15 @@ FC_REFLECT( graphene::chain::game_move_operation, (player_account_id) (move) (extensions)) +FC_REFLECT( graphene::chain::tournament_payout_operation, + (fee) + (winner_account_id) + (tournament_id) + (won_prize) + (extensions)) + FC_REFLECT( graphene::chain::tournament_create_operation::fee_parameters_type, (fee) ) FC_REFLECT( graphene::chain::tournament_join_operation::fee_parameters_type, (fee) ) FC_REFLECT( graphene::chain::game_move_operation::fee_parameters_type, (fee) ) +FC_REFLECT( graphene::chain::tournament_payout_operation::fee_parameters_type, ) From b1a8a3e503a260c0fa8489c2c6c6ca5dc8812535 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Thu, 17 Nov 2016 19:04:14 +0100 Subject: [PATCH 08/31] cleaning unnecessary dumps and comments --- libraries/chain/tournament_object.cpp | 78 ++------------------------- 1 file changed, 5 insertions(+), 73 deletions(-) diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index bc7130c1..539f7f33 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -180,11 +180,11 @@ namespace graphene { namespace chain { tournament_details_obj.matches = matches; }); - // OLEK + // find "bye" matches, complete missing player in the next match for (unsigned i = 0; i < num_matches_in_first_round; ++i) { const match_object& match = matches[i](event.db); - if (match.players.size() == 1) // is bye + if (match.players.size() == 1) // is "bye" { unsigned tournament_num_matches = tournament_details_obj.matches.size(); unsigned next_round_match_index = (i + tournament_num_matches + 1) / 2; @@ -192,22 +192,13 @@ namespace graphene { namespace chain { const match_object& next_round_match = tournament_details_obj.matches[next_round_match_index](event.db); event.db.modify(next_round_match, [&](match_object& next_match) { next_match.players.emplace_back(match.players[0]); - if (next_match.players.size() > 1) // bye + bye + if (next_match.players.size() > 1) // both previous matches were "bye" next_match.on_initiate_match(event.db); }); } } - // OLEK - wdump((tournament_details_obj.matches[tournament_details_obj.matches.size() - 1])); - - for( match_id_type mid : tournament_details_obj.matches ) - { - wdump((mid(event.db))); - } - - } void on_entry(const match_completed& event, tournament_state_machine_& fsm) { @@ -243,13 +234,7 @@ namespace graphene { namespace chain { event.db.modify(next_round_match, [&](match_object& next_match_obj) { - // OLEK - wdump((event.match.get_state())); - wdump((event.match)); - wdump((other_match.get_state())); - wdump((other_match)); - - if (!event.match.match_winners.empty()) // if there is a winner + if (!event.match.match_winners.empty()) // if there is a winner { if (winner_index_in_next_match == 0) next_match_obj.players.insert(next_match_obj.players.begin(), *event.match.match_winners.begin()); @@ -257,24 +242,8 @@ namespace graphene { namespace chain { next_match_obj.players.push_back(*event.match.match_winners.begin()); } - //if (other_match.get_state() == match_state::match_complete) - // OLEK - if (!other_match.match_winners.empty()) - { -// // if other match was buy -// if (other_match.games.size() == 0 /*&& next_match_obj.players.size() < 2*/) -// { -// if (winner_index_in_next_match != 0) -// next_match_obj.players.insert(next_match_obj.players.begin(), *other_match.match_winners.begin()); -// else -// next_match_obj.players.push_back(*other_match.match_winners.begin()); -// } - // OLEK - wdump((next_match_obj.get_state())); - wdump((next_match_obj)); - + if (other_match.get_state() == match_state::match_complete) next_match_obj.on_initiate_match(event.db); - } }); } @@ -350,45 +319,9 @@ namespace graphene { namespace chain { fc_ilog(fc::logger::get("tournament"), "In was_final_match guard, returning ${value}", ("value", event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size()])); - - // OLEK - wdump((event.match.id)); - wdump((tournament_details_obj.matches[tournament_details_obj.matches.size() - 1])); - - for( match_id_type mid : tournament_details_obj.matches ) - { - wdump((mid(event.db))); - } - return event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size() - 1]; } -#if 0 - // OLEK - bool was_buy_match(const match_completed& event) - { - const tournament_details_object& tournament_details_obj = tournament_obj->tournament_details_id(event.db); - fc_ilog(fc::logger::get("tournament"), - "In was_buy_match guard, returning ${value}", - ("value", event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size()])); - - // OLEK - wdump((event.match.id)); - wdump((event.match)); - - /* - wdump((tournament_details_obj.matches[tournament_details_obj.matches.size() - 1])); - - for( match_id_type mid : tournament_details_obj.matches ) - { - wdump((mid(event.db))); - } - - return event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size() - 1]; - */ - return true; - } -#endif void register_player(const player_registered& event) { fc_ilog(fc::logger::get("tournament"), @@ -416,7 +349,6 @@ namespace graphene { namespace chain { _row < awaiting_start, start_time_arrived, in_progress >, // +---------------------------+-----------------------------+----------------------------+---------------------+----------------------+ _row < in_progress, match_completed, in_progress >, - //g_row < in_progress, match_completed, in_progress, &x::was_buy_match >, g_row < in_progress, match_completed, concluded, &x::was_final_match > // +---------------------------+-----------------------------+----------------------------+---------------------+----------------------+ > {}; From 740b07404ad9bd286519633272ccca094cc47048 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Fri, 18 Nov 2016 19:51:38 +0100 Subject: [PATCH 09/31] implementing tournament tests --- tests/CMakeLists.txt | 4 + tests/common/database_fixture.cpp | 3 +- tests/tournament/tournament_tests.cpp | 756 ++++++++++++++++++++++++++ 3 files changed, 762 insertions(+), 1 deletion(-) create mode 100644 tests/tournament/tournament_tests.cpp diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b03d58a8..c1eced4e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -17,6 +17,10 @@ file(GLOB PERFORMANCE_TESTS "performance/*.cpp") add_executable( performance_test ${PERFORMANCE_TESTS} ${COMMON_SOURCES} ) target_link_libraries( performance_test graphene_chain graphene_app graphene_account_history graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) +file(GLOB TOURNAMENT_TESTS "tournament/*.cpp") +add_executable( tournament_test ${TOURNAMENT_TESTS} ${COMMON_SOURCES} ) +target_link_libraries( tournament_test graphene_chain graphene_app graphene_account_history graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) + file(GLOB BENCH_MARKS "benchmarks/*.cpp") add_executable( chain_bench ${BENCH_MARKS} ${COMMON_SOURCES} ) target_link_libraries( chain_bench graphene_chain graphene_app graphene_account_history graphene_time graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index 64400522..cfa11ea1 100644 --- a/tests/common/database_fixture.cpp +++ b/tests/common/database_fixture.cpp @@ -72,6 +72,7 @@ database_fixture::database_fixture() if( arg == "--show-test-names" ) std::cout << "running test " << boost::unit_test::framework::current_test_case().p_name << std::endl; } + auto ahplugin = app.register_plugin(); auto mhplugin = app.register_plugin(); init_account_pub_key = init_account_priv_key.get_public_key(); @@ -81,7 +82,7 @@ database_fixture::database_fixture() genesis_state.initial_timestamp = time_point_sec( GRAPHENE_TESTING_GENESIS_TIMESTAMP ); genesis_state.initial_active_witnesses = 10; - for( unsigned i = 0; i < genesis_state.initial_active_witnesses; ++i ) + for( int i = 0; i < genesis_state.initial_active_witnesses; ++i ) { auto name = "init"+fc::to_string(i); genesis_state.initial_accounts.emplace_back(name, diff --git a/tests/tournament/tournament_tests.cpp b/tests/tournament/tournament_tests.cpp new file mode 100644 index 00000000..1b86d939 --- /dev/null +++ b/tests/tournament/tournament_tests.cpp @@ -0,0 +1,756 @@ +/* + * Copyright (c) 2015 Cryptonomex, Inc., and contributors. + * + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +#include +#include +#include + + +#include +#include +#include +#include "../common/database_fixture.hpp" +#include + +using namespace graphene::chain; + +// defined if "bye" matches fix available +#define BYE_MATCHES_FIXED + +BOOST_AUTO_TEST_SUITE(tournament_tests) + +// class performing operations necessary for creating tournaments, +// having players join the tournaments and playing tournaments to completion. +class tournaments_helper +{ +public: + + tournaments_helper(database_fixture& df) : df(df) + { + assets.insert(asset_id_type()); + players.insert(TOURNAMENT_RAKE_FEE_ACCOUNT_ID); + } + + const std::set& list_tournaments() + { + return tournaments; + } + + std::map> list_players_balances() + { + std::map> result; + for (account_id_type player_id: players) + { + for( asset_id_type asset_id: assets) + { + asset a = df.db.get_balance(player_id, asset_id); + result[player_id][a.asset_id] = a.amount; + } + } + return result; + } + + std::map> get_players_fees() + { + return players_fees; + } + + void reset_players_fees() + { + for (account_id_type player_id: players) + { + for( asset_id_type asset_id: assets) + { + players_fees[player_id][asset_id] = 0; + } + } + } + + const tournament_id_type create_tournament (const account_id_type& creator, + const fc::ecc::private_key& sig_priv_key, + asset buy_in, + uint32_t number_of_players = 2, + uint32_t time_per_commit_move = 3, + uint32_t time_per_reveal_move = 1, + uint32_t number_of_wins = 3, + uint32_t start_delay = 3, + uint32_t round_delay = 3, + bool insurance_enabled = false + ) + { + if (current_tournament_idx.valid()) + current_tournament_idx = *current_tournament_idx + 1; + else + current_tournament_idx = 0; + + graphene::chain::database& db = df.db; + const chain_parameters& params = db.get_global_properties().parameters; + signed_transaction trx; + tournament_options options; + tournament_create_operation op; + rock_paper_scissors_game_options& game_options = options.game_options.get(); + + game_options.number_of_gestures = 3; + game_options.time_per_commit_move = time_per_commit_move; + game_options.time_per_reveal_move = time_per_reveal_move; + game_options.insurance_enabled = insurance_enabled; + + options.registration_deadline = db.head_block_time() + fc::hours(1 + *current_tournament_idx); + options.buy_in = buy_in; + options.number_of_players = number_of_players; + options.start_delay = start_delay; + options.round_delay = round_delay; + options.number_of_wins = number_of_wins; + + op.creator = creator; + op.options = options; + trx.operations = {op}; + for( auto& op : trx.operations ) + db.current_fee_schedule().set_fee(op); + trx.validate(); + trx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(trx, sig_priv_key); + PUSH_TX(db, trx); + + tournament_id_type tournament_id = tournament_id_type(*current_tournament_idx); + tournaments.insert(tournament_id); + return tournament_id; + } + + void join_tournament(const tournament_id_type & tournament_id, + const account_id_type& player_id, + const account_id_type& payer_id, + const fc::ecc::private_key& sig_priv_key, + asset buy_in + ) + { + graphene::chain::database& db = df.db; + const chain_parameters& params = db.get_global_properties().parameters; + signed_transaction tx; + tournament_join_operation op; + + op.payer_account_id = payer_id; + op.buy_in = buy_in; + op.player_account_id = player_id; + op.tournament_id = tournament_id; + tx.operations = {op}; + for( auto& op : tx.operations ) + db.current_fee_schedule().set_fee(op); + tx.validate(); + tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(tx, sig_priv_key); + PUSH_TX(db, tx); + + players.insert(player_id); + players_keys[player_id] = sig_priv_key; + } + + // stolen from cli_wallet + void rps_throw(const game_id_type& game_id, + const account_id_type& player_id, + rock_paper_scissors_gesture gesture, + const fc::ecc::private_key& sig_priv_key + ) + { + + graphene::chain::database& db = df.db; + const chain_parameters& params = db.get_global_properties().parameters; + + // check whether the gesture is appropriate for the game we're playing + game_object game_obj = game_id(db); + match_object match_obj = game_obj.match_id(db); + tournament_object tournament_obj = match_obj.tournament_id(db); + rock_paper_scissors_game_options game_options = tournament_obj.options.game_options.get(); + assert((int)gesture < game_options.number_of_gestures); + + account_object player_account_obj = player_id(db); + + // construct the complete throw, the commit, and reveal + rock_paper_scissors_throw full_throw; + rand_bytes((char*)&full_throw.nonce1, sizeof(full_throw.nonce1)); + rand_bytes((char*)&full_throw.nonce2, sizeof(full_throw.nonce2)); + full_throw.gesture = gesture; + + rock_paper_scissors_throw_commit commit_throw; + commit_throw.nonce1 = full_throw.nonce1; + std::vector full_throw_packed(fc::raw::pack(full_throw)); + commit_throw.throw_hash = fc::sha256::hash(full_throw_packed.data(), full_throw_packed.size()); + + rock_paper_scissors_throw_reveal reveal_throw; + reveal_throw.nonce2 = full_throw.nonce2; + reveal_throw.gesture = full_throw.gesture; + + // store off the reveal for applying after both players commit + committed_game_moves[commit_throw] = reveal_throw; + + signed_transaction tx; + game_move_operation move_operation; + move_operation.game_id = game_id; + move_operation.player_account_id = player_account_obj.id; + move_operation.move = commit_throw; + tx.operations = {move_operation}; + for( operation& op : tx.operations ) + { + asset f = db.current_fee_schedule().set_fee(op); + players_fees[player_id][f.asset_id] -= f.amount; + } + tx.validate(); + tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(tx, sig_priv_key); + PUSH_TX(db, tx); + } + + // spaghetti programming + // walking through all tournaments, matches and games and throwing random moves + void play_games() + { + graphene::chain::database& db = df.db; + const chain_parameters& params = db.get_global_properties().parameters; + + for(const auto& tournament_id: tournaments) + { + const tournament_object& tournament = tournament_id(db); + const tournament_details_object& tournament_details = tournament.tournament_details_id(db); + rock_paper_scissors_game_options game_options = tournament.options.game_options.get(); + for(const auto& match_id: tournament_details.matches) + { + const match_object& match = match_id(db); + for(const auto& game_id: match.games ) + { + const game_object& game = game_id(db); + if (game.get_state() == game_state::expecting_commit_moves) + { + for(const auto& player_id: game.players) + { + if (players_keys.find(player_id) != players_keys.end()) + { + rps_throw(game_id, player_id, (rock_paper_scissors_gesture) (std::rand() % game_options.number_of_gestures), players_keys[player_id]); + } + } + } + else if (game.get_state() == game_state::expecting_reveal_moves) + { + const rock_paper_scissors_game_details& rps_details = game.game_details.get(); + + for (unsigned i = 0; i < 2; ++i) + { + if (rps_details.commit_moves.at(i) && + !rps_details.reveal_moves.at(i)) + { + const account_id_type& player_id = game.players[i]; + if (players_keys.find(player_id) != players_keys.end()) + { + { + auto iter = committed_game_moves.find(*rps_details.commit_moves.at(i)); + if (iter != committed_game_moves.end()) + { + const rock_paper_scissors_throw_reveal& reveal = iter->second; + + game_move_operation move_operation; + move_operation.game_id = game.id; + move_operation.player_account_id = player_id; + move_operation.move = reveal; + + signed_transaction tx; + tx.operations = {move_operation}; + for( auto& op : tx.operations ) + { + asset f = db.current_fee_schedule().set_fee(op); + players_fees[player_id][f.asset_id] -= f.amount; + } + tx.validate(); + tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(tx, players_keys[player_id]); + PUSH_TX(db, tx); + } + } + } + } + } + } + } + } + } + } + +private: + database_fixture& df; + // index of last created tournament + fc::optional current_tournament_idx; + // assets : core and maybe others + std::set assets; + // tournaments to be played + std::set tournaments; + // all players registered in tournaments + std::set players; + // players' private keys + std::map players_keys; + // total charges for moves made by every player + std::map> players_fees; + // store of commits and reveals + std::map committed_game_moves; + + // taken from rand.cpp + void rand_bytes(char* buf, int count) + { + fc::init_openssl(); + + int result = RAND_bytes((unsigned char*)buf, count); + if (result != 1) + FC_THROW("Error calling OpenSSL's RAND_bytes(): ${code}", ("code", (uint32_t)ERR_get_error())); + } +}; + +// Test of basic functionality creating two tournamenst, joinig players, +// playing tournaments to completion, distributing prize. +// Can be used to test of "bye" matches handling if "bye" matches fix available. +// Number of players 2+1 4+1 8+1 ... seem to be most critical for handling of "bye" matches. +// Moves are generated automatically. +BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) +{ + try + { +#ifdef BYE_MATCHES_FIXED + #define TEST1_NR_OF_PLAYERS_NUMBER 3 + #define TEST2_NR_OF_PLAYERS_NUMBER 5 +#else + #define TEST1_NR_OF_PLAYERS_NUMBER 2 + #define TEST2_NR_OF_PLAYERS_NUMBER 4 +#endif + BOOST_TEST_MESSAGE("Hello simple tournament test"); + ACTORS((nathan)(alice)(bob)(carol)(dave)(ed)(frank)(george)(harry)(ike)); + + tournaments_helper tournament_helper(*this); + fc::ecc::private_key nathan_priv_key = fc::ecc::private_key::regenerate(fc::sha256::hash(string("nathan"))); + + BOOST_TEST_MESSAGE( "Giving folks some money" ); + transfer(committee_account, nathan_id, asset(1000000000)); + transfer(committee_account, alice_id, asset(2000000)); + transfer(committee_account, bob_id, asset(3000000)); + transfer(committee_account, carol_id, asset(4000000)); + transfer(committee_account, dave_id, asset(5000000)); +#if TEST2_NR_OF_PLAYERS_NUMBER > 4 + transfer(committee_account, ed_id, asset(6000000)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 5 + transfer(committee_account, frank_id, asset(7000000)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 6 + transfer(committee_account, george_id, asset(8000000)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 7 + transfer(committee_account, harry_id, asset(9000000)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 8 + transfer(committee_account, ike_id, asset(1000000)); +#endif + + BOOST_TEST_MESSAGE( "Preparing nathan" ); + upgrade_to_lifetime_member(nathan); + BOOST_CHECK(nathan.is_lifetime_member()); + + uint16_t tournaments_to_complete = 0; + asset buy_in = asset(12000); + tournament_id_type tournament_id; + + BOOST_TEST_MESSAGE( "Preparing a tournament" ); + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, TEST1_NR_OF_PLAYERS_NUMBER); + BOOST_REQUIRE(tournament_id == tournament_id_type()); + + tournament_helper.join_tournament(tournament_id, alice_id, alice_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("alice"))), buy_in); + tournament_helper.join_tournament(tournament_id, bob_id, bob_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("bob"))), buy_in); +#if TEST1_NR_OF_PLAYERS_NUMBER > 2 + tournament_helper.join_tournament(tournament_id, carol_id, carol_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("carol"))), buy_in); +#endif + ++tournaments_to_complete; + + BOOST_TEST_MESSAGE( "Preparing another one" ); + buy_in = asset(13000); + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, TEST2_NR_OF_PLAYERS_NUMBER); + BOOST_REQUIRE(tournament_id == tournament_id_type(1)); + tournament_helper.join_tournament(tournament_id, alice_id, alice_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("alice"))), buy_in); + tournament_helper.join_tournament(tournament_id, bob_id, bob_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("bob"))), buy_in); + tournament_helper.join_tournament(tournament_id, carol_id, carol_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("carol"))), buy_in); + tournament_helper.join_tournament(tournament_id, dave_id, dave_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("dave"))), buy_in); +#if TEST2_NR_OF_PLAYERS_NUMBER > 4 + tournament_helper.join_tournament(tournament_id, ed_id, ed_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("ed"))), buy_in); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 5 + tournament_helper.join_tournament(tournament_id, frank_id, frank_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("frank"))), buy_in); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 6 + tournament_helper.join_tournament(tournament_id, george_id, george_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("george"))), buy_in); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 7 + tournament_helper.join_tournament(tournament_id, harry_id, harry_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("harry"))), buy_in); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 8 + tournament_helper.join_tournament(tournament_id, ike_id, ike_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("ike"))), buy_in); +#endif + ++tournaments_to_complete; + + auto abc = [&] (string s) + { +#if 0 + wlog(s); + auto a = db.get_balance(alice_id, asset_id_type()); wdump(("# alice's balance") (a)); + auto b = db.get_balance(bob_id, asset_id_type()); wdump(("# bob's balance") (b)); + auto c = db.get_balance(carol_id, asset_id_type()); wdump(("# carol's balance") (c)); + auto d = db.get_balance(dave_id, asset_id_type()); wdump(("# dave's balance") (d)); +#if TEST2_NR_OF_PLAYERS_NUMBER > 4 + auto e = db.get_balance(ed_id, asset_id_type()); wdump(("# ed's balance") (e)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 5 + auto f = db.get_balance(frank_id, asset_id_type()); wdump(("# frank's balance") (f)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 6 + auto g = db.get_balance(george_id, asset_id_type()); wdump(("# george's balance") (g)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 7 + auto h = db.get_balance(harry_id, asset_id_type()); wdump(("# harry's balance") (f)); +#endif +#if TEST2_NR_OF_PLAYERS_NUMBER > 8 + auto i = db.get_balance(ike_id, asset_id_type()); wdump(("# ike's balance") (i)); +#endif + + auto n = db.get_balance(nathan_id, asset_id_type()); wdump(("# nathan's balance") (n)); + auto r = db.get_balance(TOURNAMENT_RAKE_FEE_ACCOUNT_ID, asset_id_type()); wdump(("# rake's balance") (r)); +#endif + }; + +#if 0 + // trying to randomize automatic moves ? + auto n = std::rand() % 100; + for(int i = 0; i < n ; ++i) + db.get_random_bits(3); +#endif + abc("@ tournament awaiting start"); + BOOST_TEST_MESSAGE( "Generating blocks, waiting for tournaments' completion"); + generate_block(); + abc("@ after first generated block"); + std::set tournaments = tournament_helper.list_tournaments(); + std::map> players_balances = tournament_helper.list_players_balances(); + uint16_t rake_fee_percentage = db.get_global_properties().parameters.rake_fee_percentage; + + while(tournaments_to_complete > 0) + { + for(const auto& tournament_id: tournaments) + { + const tournament_object& tournament = tournament_id(db); + if (tournament.get_state() == tournament_state::concluded) { + const tournament_details_object& tournament_details = tournament.tournament_details_id(db); + const match_object& final_match = (tournament_details.matches[tournament_details.matches.size() - 1])(db); + + assert(final_match.match_winners.size() == 1); + const account_id_type& winner_id = *final_match.match_winners.begin(); + + const account_object winner = winner_id(db); + BOOST_TEST_MESSAGE( "The winner is " + winner.name ); + + share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + players_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; + + tournaments.erase(tournament_id); + --tournaments_to_complete; + break; + } + } + generate_block(); + sleep(1); + } + + abc("@ tournament concluded"); + // checking if prizes were distributed correctly + BOOST_CHECK(tournaments.size() == 0); + std::map> last_players_balances = tournament_helper.list_players_balances(); + for (auto a: last_players_balances) + { + BOOST_TEST_MESSAGE( "Checking " + a.first(db).name + "'s balance " + std::to_string((uint64_t)(a.second[asset_id_type()].value)) ); + BOOST_CHECK(a.second[asset_id_type()] == players_balances[a.first][asset_id_type()]); + } + BOOST_TEST_MESSAGE("Bye simple tournament test\n"); + + } + catch (fc::exception& e) + { + edump((e.to_detail_string())); + throw; + } +} + +// Test of concurrently played tournaments having +// 2, 4, 8 ... 64 players randomly registered from global pool +// generates random moves, +// checks prizes distribution and fees calculation, +// no "bye" matches. +BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) +{ + try + { + #define MIN_PLAYERS_NUMBER 2 + #define MAX_PLAYERS_NUMBER 64 + + BOOST_TEST_MESSAGE("Hello basic tournament test"); + + ACTORS((nathan)); + fc::ecc::private_key nathan_priv_key = fc::ecc::private_key::regenerate(fc::sha256::hash(string("nathan"))); + transfer(committee_account, nathan_id, asset(1000000000)); + upgrade_to_lifetime_member(nathan); + BOOST_CHECK(nathan.is_lifetime_member()); + + // creating random order of numbers of players joining tournaments + std::vector players; + for(unsigned i = MIN_PLAYERS_NUMBER; i <= MAX_PLAYERS_NUMBER; i*=2) + { + players.emplace_back(i); + } + for (unsigned i = players.size() - 1; i >= 1; --i) + { + if (std::rand() % 2 == 0) continue; + unsigned j = std::rand() % i; + std::swap(players[i], players[j]); + } + + // creating a pool of actors + std::vector> actors; + for(unsigned i = 0; i < 3 * MAX_PLAYERS_NUMBER; ++i) + { + std::string name = "account" + std::to_string(i); + auto priv_key = generate_private_key(name); + const auto& account = create_account(name, priv_key.get_public_key()); + actors.emplace_back(name, account.id, priv_key); + transfer(committee_account, account.id, asset((uint64_t)1000000000 * players.size() + 100000000 * (i+1))); + } +#if 0 + enable_fees(); + wdump((db.get_global_properties())); +#endif + // creating tournaments, registering players + tournaments_helper tournament_helper(*this); + for (unsigned i = 0; i < players.size(); ++i) + { + auto number_of_players = players[i]; + BOOST_TEST_MESSAGE( "Preparing tournament #" + std::to_string(i) + " with " + std::to_string(number_of_players) + " players"); + + asset buy_in = asset(1000 * number_of_players + 100 * i); + tournament_id_type tournament_id; + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, number_of_players, 30, 30); + + for (unsigned j = 0; j < actors.size() && number_of_players > 0; ++j) + { + if (number_of_players < actors.size() - j && std::rand() % 2 == 0) continue; + auto a = actors[j]; + --number_of_players; + tournament_helper.join_tournament(tournament_id, std::get<1>(a), std::get<1>(a), std::get<2>(a), buy_in); + } + } + + uint16_t tournaments_to_complete = players.size(); + std::set tournaments = tournament_helper.list_tournaments(); + std::map> players_initial_balances = tournament_helper.list_players_balances(); + tournament_helper.reset_players_fees(); + uint16_t rake_fee_percentage = db.get_global_properties().parameters.rake_fee_percentage; +#if 0 + wlog( "Prepared tournaments:"); + for(const tournament_id_type& tid: tournament_helper.list_tournaments()) + { + wlog(" # ${i}, players count ${c}", ("i", tid.instance) ("c", tid(db).registered_players)); + } + +#endif + BOOST_TEST_MESSAGE( "Generating blocks, waiting for tournaments' completion"); + tournament_helper.reset_players_fees(); + while(tournaments_to_complete > 0) + { + generate_block(); + enable_fees(); + tournament_helper.play_games(); + for(const auto& tournament_id: tournaments) + { + const tournament_object& tournament = tournament_id(db); + if (tournament.get_state() == tournament_state::concluded) { + const tournament_details_object& tournament_details = tournament.tournament_details_id(db); + const match_object& final_match = (tournament_details.matches[tournament_details.matches.size() - 1])(db); + + assert(final_match.match_winners.size() == 1); + const account_id_type& winner_id = *final_match.match_winners.begin(); + BOOST_TEST_MESSAGE( "The winner of " + std::string(object_id_type(tournament_id)) + " is " + winner_id(db).name + " " + std::string(object_id_type(winner_id))); + share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + players_initial_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + players_initial_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; + + tournaments.erase(tournament_id); + --tournaments_to_complete; + break; + } + } + sleep(1); + } + BOOST_CHECK(tournaments.size() == 0); + + // checking if prizes were distributed correctly and fees calculated properly + std::map> current_players_balances = tournament_helper.list_players_balances(); + std::map> players_paid_fees = tournament_helper.get_players_fees(); + for (auto a: current_players_balances) + { + BOOST_TEST_MESSAGE( "Checking " + a.first(db).name + "'s balance " + std::to_string((uint64_t)(a.second[asset_id_type()].value)) ); + BOOST_CHECK(a.second[asset_id_type()] == players_initial_balances[a.first][asset_id_type()] + players_paid_fees[a.first][asset_id_type()]); + } + + BOOST_TEST_MESSAGE("Bye basic tournament test\n"); + } + catch (fc::exception& e) + { + edump((e.to_detail_string())); + throw; + } + +} + +#ifdef BYE_MATCHES_FIXED +// Test of several concurrently played tournaments having +// randomized number of players registered from global pool, +// generates random moves, +// checks prizes distribution. +// "bye" matches fix required +BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) +{ + try + { + #define MIN_TOURNAMENTS_NUMBER 1 + #define MAX_TOURNAMENTS_NUMBER 10 + + #define MIN_PLAYERS_NUMBER 2 + #define MAX_PLAYERS_NUMBER 64 + + BOOST_TEST_MESSAGE("Hello massive tournament test"); + + ACTORS((nathan)); + fc::ecc::private_key nathan_priv_key = fc::ecc::private_key::regenerate(fc::sha256::hash(string("nathan"))); + transfer(committee_account, nathan_id, asset(1000000000)); + upgrade_to_lifetime_member(nathan); + BOOST_CHECK(nathan.is_lifetime_member()); + + // creating a pool of actors + std::vector> actors; + for(unsigned i = 0; i < 2 * MAX_PLAYERS_NUMBER; ++i) + { + std::string name = "account" + std::to_string(i); + auto priv_key = generate_private_key(name); + const auto& account = create_account(name, priv_key.get_public_key()); + actors.emplace_back(name, account.id, priv_key); + transfer(committee_account, account.id, asset((uint64_t)1000000 * MAX_TOURNAMENTS_NUMBER + 100000 * (i+1))); + } + + // creating tournaments, registering players + tournaments_helper tournament_helper(*this); + unsigned number_of_tournaments = std::rand() % (MAX_TOURNAMENTS_NUMBER - 1) + MIN_TOURNAMENTS_NUMBER; + for(unsigned i = 0; i < number_of_tournaments; ++i) + { + unsigned number_of_players = std::rand() % (MAX_PLAYERS_NUMBER - 1) + MIN_PLAYERS_NUMBER; + BOOST_TEST_MESSAGE( "Preparing tournament with " + std::to_string(number_of_players) + " players"); + + asset buy_in = asset(1000 * number_of_players + 100 * i); + tournament_id_type tournament_id; + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, number_of_players, 30, 30); + + for (unsigned j = 0; j < actors.size() && number_of_players > 0; ++j) + { + if (number_of_players < actors.size() - j && std::rand() % 2 == 0) continue; + auto a = actors[j]; + --number_of_players; + tournament_helper.join_tournament(tournament_id, std::get<1>(a), std::get<1>(a), std::get<2>(a), buy_in); + } + } + + uint16_t tournaments_to_complete = number_of_tournaments; + std::set tournaments = tournament_helper.list_tournaments(); + std::map> players_balances = tournament_helper.list_players_balances(); + uint16_t rake_fee_percentage = db.get_global_properties().parameters.rake_fee_percentage; + + BOOST_TEST_MESSAGE( "Generating blocks, waiting for tournaments' completion"); + while(tournaments_to_complete > 0) + { + generate_block(); + tournament_helper.play_games(); + for(const auto& tournament_id: tournaments) + { + const tournament_object& tournament = tournament_id(db); + if (tournament.get_state() == tournament_state::concluded) { + const tournament_details_object& tournament_details = tournament.tournament_details_id(db); + const match_object& final_match = (tournament_details.matches[tournament_details.matches.size() - 1])(db); + + assert(final_match.match_winners.size() == 1); + const account_id_type& winner_id = *final_match.match_winners.begin(); + BOOST_TEST_MESSAGE( "The winner of " + std::string(object_id_type(tournament_id)) + " is " + winner_id(db).name + " " + std::string(object_id_type(winner_id))); + share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + players_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; + + tournaments.erase(tournament_id); + --tournaments_to_complete; + break; + } + } + sleep(1); + } + BOOST_CHECK(tournaments.size() == 0); +#if 0 + wlog( "Performed tournaments:"); + for(const tournament_id_type& tid: tournament_helper.list_tournaments()) + { + const tournament_object tournament = tid(db); + wlog(" # ${i}, players count ${c}", ("i", tid.instance) ("c", tournament.registered_players)); + } +#endif + // checking if prizes were distributed correctly + std::map> last_players_balances = tournament_helper.list_players_balances(); + for (auto a: last_players_balances) + { + BOOST_TEST_MESSAGE( "Checking " + a.first(db).name + "'s balance " + std::to_string((uint64_t)(a.second[asset_id_type()].value)) ); + BOOST_CHECK(a.second[asset_id_type()] == players_balances[a.first][asset_id_type()]); + } + + BOOST_TEST_MESSAGE("Bye massive tournament test\n"); + } + catch (fc::exception& e) + { + edump((e.to_detail_string())); + throw; + } +} +#endif + +BOOST_AUTO_TEST_SUITE_END() + +//#define BOOST_TEST_MODULE "C++ Unit Tests for Graphene Blockchain Database" +#include +#include +#include + +boost::unit_test::test_suite* init_unit_test_suite(int argc, char* argv[]) { + std::srand(time(NULL)); + std::cout << "Random number generator seeded to " << time(NULL) << std::endl; + return nullptr; +} From 16e7104c8e763ad4fa04b9697769508dd127981f Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Sun, 20 Nov 2016 18:39:48 +0100 Subject: [PATCH 10/31] adding two assets tournaments test --- tests/tournament/tournament_tests.cpp | 161 +++++++++++++++++++++++++- 1 file changed, 156 insertions(+), 5 deletions(-) diff --git a/tests/tournament/tournament_tests.cpp b/tests/tournament/tournament_tests.cpp index 1b86d939..1135735d 100644 --- a/tests/tournament/tournament_tests.cpp +++ b/tests/tournament/tournament_tests.cpp @@ -48,6 +48,7 @@ public: tournaments_helper(database_fixture& df) : df(df) { assets.insert(asset_id_type()); + current_asset_idx = 0; players.insert(TOURNAMENT_RAKE_FEE_ACCOUNT_ID); } @@ -86,6 +87,33 @@ public: } } + void create_asset(const account_id_type& issuer_account_id, + const string& symbol, + uint8_t precision, + asset_options& common, + const fc::ecc::private_key& sig_priv_key) + { + graphene::chain::database& db = df.db; + const chain_parameters& params = db.get_global_properties().parameters; + signed_transaction tx; + asset_create_operation op; + op.issuer = issuer_account_id; + op.symbol = symbol; + op.precision = precision; + op.common_options = common; + + tx.operations = {op}; + for( auto& op : tx.operations ) + db.current_fee_schedule().set_fee(op); + tx.validate(); + tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(tx, sig_priv_key); + PUSH_TX(db, tx); + + assets.insert(asset_id_type(++current_asset_idx)); + + } + const tournament_id_type create_tournament (const account_id_type& creator, const fc::ecc::private_key& sig_priv_key, asset buy_in, @@ -297,6 +325,8 @@ private: database_fixture& df; // index of last created tournament fc::optional current_tournament_idx; + // index of last asset + uint64_t current_asset_idx; // assets : core and maybe others std::set assets; // tournaments to be played @@ -323,8 +353,8 @@ private: // Test of basic functionality creating two tournamenst, joinig players, // playing tournaments to completion, distributing prize. -// Can be used to test of "bye" matches handling if "bye" matches fix available. -// Number of players 2+1 4+1 8+1 ... seem to be most critical for handling of "bye" matches. +// Testing of "bye" matches handling can be performed if "bye" matches fix is available. +// Numbers of players 2+1 4+1 8+1 ... seem to be most critical for handling of "bye" matches. // Moves are generated automatically. BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) { @@ -499,11 +529,132 @@ BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) } } +// Test of few concurrently played tournaments having the same constant number of players. +// Tournament/s having even number use the core asset. +// Tournament/s having odd number use another asset. +// Moves are generated randomly. +// Checking prizes distribution for both assets is performed. +BOOST_FIXTURE_TEST_CASE( assets, database_fixture ) +{ + try + { + #define PLAYERS_NUMBER 8 + #define TOURNAMENTS_NUMBER 3 + #define DEF_SYMBOL "NEXT" + + BOOST_TEST_MESSAGE("Hello two assets tournament test"); + + ACTORS((nathan)); + fc::ecc::private_key nathan_priv_key = fc::ecc::private_key::regenerate(fc::sha256::hash(string("nathan"))); + transfer(committee_account, nathan_id, asset(1000000000)); + upgrade_to_lifetime_member(nathan); + BOOST_CHECK(nathan.is_lifetime_member()); + + tournaments_helper tournament_helper(*this); + // creating new asset + asset_options aoptions; + aoptions.max_market_fee = aoptions.max_supply = GRAPHENE_MAX_SHARE_SUPPLY; + aoptions.flags = 0; + aoptions.issuer_permissions = 79; + aoptions.core_exchange_rate.base.amount = 1; + aoptions.core_exchange_rate.base.asset_id = asset_id_type(0); + aoptions.core_exchange_rate.quote.amount = 1; + aoptions.core_exchange_rate.quote.asset_id = asset_id_type(1); + tournament_helper.create_asset(nathan_id, DEF_SYMBOL, 5, aoptions, nathan_priv_key); + issue_uia(nathan_id, asset(GRAPHENE_MAX_SHARE_SUPPLY/2, asset_id_type(1))); + +#if 0 + auto tas = get_asset(GRAPHENE_SYMBOL); wdump((tas)); + auto das = get_asset(DEF_SYMBOL); wdump((das)); + + auto nac = nathan_id(db); wdump(("# nathan's account") (nac)); + + auto nab0 = db.get_balance(nathan_id, asset_id_type(0)); wdump(("# nathans's balance 0") (nab0)); + auto nab1 = db.get_balance(nathan_id, asset_id_type(1)); wdump(("# nathans's balance 1") (nab1)); +#endif + + // creating actors + std::vector> actors; + for(unsigned i = 0; i < PLAYERS_NUMBER; ++i) + { + std::string name = "account" + std::to_string(i); + auto priv_key = generate_private_key(name); + const auto& account = create_account(name, priv_key.get_public_key()); + actors.emplace_back(name, account.id, priv_key); + transfer(committee_account, account.id, asset((uint64_t)100000000 * PLAYERS_NUMBER + 10000000 * (i+1))); + transfer(nathan_id, account.id, asset((uint64_t)200000000 * PLAYERS_NUMBER + 20000000 * (i+1), asset_id_type(1))); + } + + // creating tournaments, registering players + for(unsigned i = 0; i < TOURNAMENTS_NUMBER; ++i) + { + asset buy_in = asset(1000 * PLAYERS_NUMBER + 100 * i, asset_id_type(i%2)); + tournament_id_type tournament_id; + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, PLAYERS_NUMBER, 30, 30); + + for (unsigned j = 0; j < PLAYERS_NUMBER; ++j) + { + auto a = actors[j]; + tournament_helper.join_tournament(tournament_id, std::get<1>(a), std::get<1>(a), std::get<2>(a), buy_in); + } + } + + uint16_t tournaments_to_complete = TOURNAMENTS_NUMBER; + std::set tournaments = tournament_helper.list_tournaments(); + std::map> players_balances = tournament_helper.list_players_balances(); + uint16_t rake_fee_percentage = db.get_global_properties().parameters.rake_fee_percentage; + + BOOST_TEST_MESSAGE( "Generating blocks, waiting for tournaments' completion"); + while(tournaments_to_complete > 0) + { + generate_block(); + tournament_helper.play_games(); + for(const auto& tournament_id: tournaments) + { + const tournament_object& tournament = tournament_id(db); + if (tournament.get_state() == tournament_state::concluded) { + const tournament_details_object& tournament_details = tournament.tournament_details_id(db); + const match_object& final_match = (tournament_details.matches[tournament_details.matches.size() - 1])(db); + + assert(final_match.match_winners.size() == 1); + const account_id_type& winner_id = *final_match.match_winners.begin(); + BOOST_TEST_MESSAGE( "The winner of " + std::string(object_id_type(tournament_id)) + " is " + winner_id(db).name + " " + std::string(object_id_type(winner_id))); + share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + players_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; + + tournaments.erase(tournament_id); + --tournaments_to_complete; + break; + } + } + sleep(1); + } + BOOST_CHECK(tournaments.size() == 0); + // checking if prizes were distributed correctly + std::map> last_players_balances = tournament_helper.list_players_balances(); + for (auto a: last_players_balances) + { + BOOST_TEST_MESSAGE( "Checking " + a.first(db).name + "'s " + GRAPHENE_SYMBOL + " balance " + std::to_string((uint64_t) (a.second[asset_id_type()].value))); + BOOST_CHECK(a.second[asset_id_type()] == players_balances[a.first][asset_id_type()]); + BOOST_TEST_MESSAGE( "Checking " + a.first(db).name + "'s " + DEF_SYMBOL + " balance " + std::to_string((uint64_t) (a.second[asset_id_type(1)].value))); + BOOST_CHECK(a.second[asset_id_type(1)] == players_balances[a.first][asset_id_type(1)]); + } + + BOOST_TEST_MESSAGE("Bye two assets tournament test\n"); + } + catch (fc::exception& e) + { + edump((e.to_detail_string())); + throw; + } +} + // Test of concurrently played tournaments having // 2, 4, 8 ... 64 players randomly registered from global pool // generates random moves, -// checks prizes distribution and fees calculation, -// no "bye" matches. +// checks prizes distribution and fees calculation. +// No "bye" matches. BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) { try @@ -633,7 +784,7 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) // randomized number of players registered from global pool, // generates random moves, // checks prizes distribution. -// "bye" matches fix required +// "bye" matches fix is required. BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) { try From cf6f3a15fd7d56732276046b52dd325a158e0c94 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Mon, 21 Nov 2016 18:11:31 +0100 Subject: [PATCH 11/31] generating tournament payout operation --- libraries/chain/tournament_object.cpp | 27 ++++++++++++++++++--------- libraries/wallet/wallet.cpp | 8 ++++++++ 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index 539f7f33..5cab73de 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -198,7 +198,6 @@ namespace graphene { namespace chain { }); } } - } void on_entry(const match_completed& event, tournament_state_machine_& fsm) { @@ -243,7 +242,9 @@ namespace graphene { namespace chain { } if (other_match.get_state() == match_state::match_complete) + { next_match_obj.on_initiate_match(event.db); + } }); } @@ -274,29 +275,37 @@ namespace graphene { namespace chain { { void on_entry(const match_completed& event, tournament_state_machine_& fsm) { + tournament_object& tournament_obj = *fsm.tournament_obj; fc_ilog(fc::logger::get("tournament"), "Tournament ${id} is complete", - ("id", fsm.tournament_obj->id)); + ("id", tournament_obj.id)); // Distribute prize money when a tournament ends #ifndef NDEBUG - const tournament_details_object& details = fsm.tournament_obj->tournament_details_id(event.db); + const tournament_details_object& details = tournament_obj.tournament_details_id(event.db); share_type total_prize = 0; for (const auto& payer_pair : details.payers) { total_prize += payer_pair.second; } - assert(total_prize == fsm.tournament_obj->prize_pool); + assert(total_prize == tournament_obj.prize_pool); #endif assert(event.match.match_winners.size() == 1); const account_id_type& winner = *event.match.match_winners.begin(); uint16_t rake_fee_percentage = event.db.get_global_properties().parameters.rake_fee_percentage; - share_type rake_amount = (fc::uint128_t(fsm.tournament_obj->prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + share_type rake_amount = (fc::uint128_t(tournament_obj.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); event.db.adjust_balance(account_id_type(TOURNAMENT_RAKE_FEE_ACCOUNT_ID), - asset(rake_amount, fsm.tournament_obj->options.buy_in.asset_id)); - event.db.adjust_balance(winner, asset(fsm.tournament_obj->prize_pool - rake_amount, - fsm.tournament_obj->options.buy_in.asset_id)); - fsm.tournament_obj->end_time = event.db.head_block_time(); + asset(rake_amount, tournament_obj.options.buy_in.asset_id)); + asset won_prize(tournament_obj.prize_pool - rake_amount, tournament_obj.options.buy_in.asset_id); + event.db.adjust_balance(winner, won_prize); + tournament_obj.end_time = event.db.head_block_time(); + + // Generating a virtual operation that shows the payment + tournament_payout_operation op; + op.tournament_id = tournament_obj.id; + op.won_prize = won_prize; + op.winner_account_id = winner; + event.db.push_applied_operation(op); } }; diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index c31beed2..0b3e1060 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -134,6 +134,7 @@ public: std::string operator()(const account_update_operation& op)const; std::string operator()(const asset_create_operation& op)const; std::string operator()(const asset_dividend_distribution_operation& op)const; + std::string operator()(const tournament_payout_operation& op)const; }; template @@ -3205,6 +3206,13 @@ std::string operation_printer::operator()(const asset_dividend_distribution_oper return ""; } +std::string operation_printer::operator()(const tournament_payout_operation& op)const +{ + out << "Tournament Payout Account '" << wallet.get_account(op.winner_account_id).name + << "', Amount " << std::to_string(op.won_prize.amount.value) << " " << wallet.get_asset(op.won_prize.asset_id).symbol; + return ""; +} + std::string operation_result_printer::operator()(const void_result& x) const { return ""; From ac9c301092a3cd342177283c391f42e6fba29393 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Mon, 21 Nov 2016 20:38:49 +0100 Subject: [PATCH 12/31] tournaments tests - randomizing number of wins --- tests/tournament/tournament_tests.cpp | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/tests/tournament/tournament_tests.cpp b/tests/tournament/tournament_tests.cpp index 1135735d..672a1e15 100644 --- a/tests/tournament/tournament_tests.cpp +++ b/tests/tournament/tournament_tests.cpp @@ -652,6 +652,7 @@ BOOST_FIXTURE_TEST_CASE( assets, database_fixture ) // Test of concurrently played tournaments having // 2, 4, 8 ... 64 players randomly registered from global pool +// and randomized number of wins, // generates random moves, // checks prizes distribution and fees calculation. // No "bye" matches. @@ -662,6 +663,9 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) #define MIN_PLAYERS_NUMBER 2 #define MAX_PLAYERS_NUMBER 64 + #define MIN_WINS_NUMBER 2 + #define MAX_WINS_NUMBER 5 + BOOST_TEST_MESSAGE("Hello basic tournament test"); ACTORS((nathan)); @@ -702,11 +706,12 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) for (unsigned i = 0; i < players.size(); ++i) { auto number_of_players = players[i]; - BOOST_TEST_MESSAGE( "Preparing tournament #" + std::to_string(i) + " with " + std::to_string(number_of_players) + " players"); + auto number_of_wins = std::rand() % (MAX_WINS_NUMBER - 1) + MIN_WINS_NUMBER; + BOOST_TEST_MESSAGE( "Preparing tournament with " + std::to_string(number_of_players) + " players and " + std::to_string(number_of_wins) + " wins" ); asset buy_in = asset(1000 * number_of_players + 100 * i); tournament_id_type tournament_id; - tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, number_of_players, 30, 30); + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, number_of_players, 30, 30, number_of_wins); for (unsigned j = 0; j < actors.size() && number_of_players > 0; ++j) { @@ -726,7 +731,9 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) wlog( "Prepared tournaments:"); for(const tournament_id_type& tid: tournament_helper.list_tournaments()) { - wlog(" # ${i}, players count ${c}", ("i", tid.instance) ("c", tid(db).registered_players)); + const tournament_object tournament = tid(db); + //const tournament_details_object details = tournament.tournament_details_id(db); + wlog(" # ${i}, players count ${c}, wins number ${w}", ("i", tid.instance) ("c", tournament.registered_players) ("w", tournament.options.number_of_wins )); } #endif @@ -782,6 +789,7 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) #ifdef BYE_MATCHES_FIXED // Test of several concurrently played tournaments having // randomized number of players registered from global pool, +// and randomized number of wins, // generates random moves, // checks prizes distribution. // "bye" matches fix is required. @@ -795,6 +803,9 @@ BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) #define MIN_PLAYERS_NUMBER 2 #define MAX_PLAYERS_NUMBER 64 + #define MIN_WINS_NUMBER 2 + #define MAX_WINS_NUMBER 5 + BOOST_TEST_MESSAGE("Hello massive tournament test"); ACTORS((nathan)); @@ -820,11 +831,12 @@ BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) for(unsigned i = 0; i < number_of_tournaments; ++i) { unsigned number_of_players = std::rand() % (MAX_PLAYERS_NUMBER - 1) + MIN_PLAYERS_NUMBER; - BOOST_TEST_MESSAGE( "Preparing tournament with " + std::to_string(number_of_players) + " players"); + unsigned number_of_wins = std::rand() % (MAX_WINS_NUMBER - 1) + MIN_WINS_NUMBER; + BOOST_TEST_MESSAGE( "Preparing tournament with " + std::to_string(number_of_players) + " players and " + std::to_string(number_of_wins) + " wins" ); asset buy_in = asset(1000 * number_of_players + 100 * i); tournament_id_type tournament_id; - tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, number_of_players, 30, 30); + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, number_of_players, 30, 30, number_of_wins); for (unsigned j = 0; j < actors.size() && number_of_players > 0; ++j) { @@ -872,7 +884,8 @@ BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) for(const tournament_id_type& tid: tournament_helper.list_tournaments()) { const tournament_object tournament = tid(db); - wlog(" # ${i}, players count ${c}", ("i", tid.instance) ("c", tournament.registered_players)); + //const tournament_details_object details = tournament.tournament_details_id(db); + wlog(" # ${i}, players count ${c}, wins number ${w}", ("i", tid.instance) ("c", tournament.registered_players) ("w", tournament.options.number_of_wins )); } #endif // checking if prizes were distributed correctly From 2320be1f55304a40541b04894224620836953195 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Tue, 22 Nov 2016 20:30:19 +0100 Subject: [PATCH 13/31] tournaments tests - correcting max min calculations --- tests/tournament/tournament_tests.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/tournament/tournament_tests.cpp b/tests/tournament/tournament_tests.cpp index 672a1e15..760da7d9 100644 --- a/tests/tournament/tournament_tests.cpp +++ b/tests/tournament/tournament_tests.cpp @@ -37,6 +37,8 @@ using namespace graphene::chain; // defined if "bye" matches fix available #define BYE_MATCHES_FIXED +#define RAND_MAX_MIN(MAX, MIN) (std::rand() % ((MAX) - (MIN) + 1) + (MIN)) + BOOST_AUTO_TEST_SUITE(tournament_tests) // class performing operations necessary for creating tournaments, @@ -706,7 +708,7 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) for (unsigned i = 0; i < players.size(); ++i) { auto number_of_players = players[i]; - auto number_of_wins = std::rand() % (MAX_WINS_NUMBER - 1) + MIN_WINS_NUMBER; + auto number_of_wins = RAND_MAX_MIN(MAX_WINS_NUMBER, MIN_WINS_NUMBER); BOOST_TEST_MESSAGE( "Preparing tournament with " + std::to_string(number_of_players) + " players and " + std::to_string(number_of_wins) + " wins" ); asset buy_in = asset(1000 * number_of_players + 100 * i); @@ -827,11 +829,11 @@ BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) // creating tournaments, registering players tournaments_helper tournament_helper(*this); - unsigned number_of_tournaments = std::rand() % (MAX_TOURNAMENTS_NUMBER - 1) + MIN_TOURNAMENTS_NUMBER; + unsigned number_of_tournaments = RAND_MAX_MIN(MAX_TOURNAMENTS_NUMBER, MIN_TOURNAMENTS_NUMBER); for(unsigned i = 0; i < number_of_tournaments; ++i) { - unsigned number_of_players = std::rand() % (MAX_PLAYERS_NUMBER - 1) + MIN_PLAYERS_NUMBER; - unsigned number_of_wins = std::rand() % (MAX_WINS_NUMBER - 1) + MIN_WINS_NUMBER; + unsigned number_of_players = RAND_MAX_MIN(MAX_PLAYERS_NUMBER, MIN_PLAYERS_NUMBER); + unsigned number_of_wins = RAND_MAX_MIN(MAX_WINS_NUMBER, MIN_WINS_NUMBER); BOOST_TEST_MESSAGE( "Preparing tournament with " + std::to_string(number_of_players) + " players and " + std::to_string(number_of_wins) + " wins" ); asset buy_in = asset(1000 * number_of_players + 100 * i); From a00b6cc8a1e3032db8251ba79e1b0d13045fd3d2 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 22 Nov 2016 17:46:24 -0500 Subject: [PATCH 14/31] Disalbe excessive logging, fix a bug that was preventing a game from ending even after all reveal moves moves were made --- libraries/chain/db_maint.cpp | 2 +- libraries/chain/game_object.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/chain/db_maint.cpp b/libraries/chain/db_maint.cpp index 51f7041d..4bbd1b77 100644 --- a/libraries/chain/db_maint.cpp +++ b/libraries/chain/db_maint.cpp @@ -898,7 +898,7 @@ void schedule_pending_dividend_balances(database& db, fc::uint128_t amount_to_credit(delta_balance.value); amount_to_credit *= holder_balance_object.balance.value; amount_to_credit /= total_balance_of_dividend_asset.value; - wdump((delta_balance.value)(holder_balance_object.balance)(total_balance_of_dividend_asset)); + //wdump((delta_balance.value)(holder_balance_object.balance)(total_balance_of_dividend_asset)); share_type shares_to_credit((int64_t)amount_to_credit.to_uint64()); remaining_amount_to_distribute -= shares_to_credit; diff --git a/libraries/chain/game_object.cpp b/libraries/chain/game_object.cpp index 2bbcdd92..d43296ba 100644 --- a/libraries/chain/game_object.cpp +++ b/libraries/chain/game_object.cpp @@ -200,7 +200,7 @@ namespace graphene { namespace chain { const rock_paper_scissors_game_details& game_details = game_obj->game_details.get(); for (unsigned i = 0; i < game_details.commit_moves.size(); ++i) - if (!game_details.reveal_moves[i] && i != this_reveal_index) + if (game_details.commit_moves[i] && !game_details.reveal_moves[i] && i != this_reveal_index) return false; return true; } From 85914fb3b4085d91215bab80075a9e10a36a0730 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 22 Nov 2016 18:30:34 -0500 Subject: [PATCH 15/31] Remove code that was resetting the game timer each time a player made a move --- libraries/chain/game_object.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libraries/chain/game_object.cpp b/libraries/chain/game_object.cpp index d43296ba..30a646ad 100644 --- a/libraries/chain/game_object.cpp +++ b/libraries/chain/game_object.cpp @@ -106,7 +106,6 @@ namespace graphene { namespace chain { fc_ilog(fc::logger::get("tournament"), "game ${id} received a commit move, still expecting another commit move", ("id", game.id)); - set_next_timeout(event.db, game); } }; struct expecting_reveal_moves : public msm::front::state<> @@ -131,14 +130,16 @@ namespace graphene { namespace chain { game_object& game = *fsm.game_obj; if (event.move.move.which() == game_specific_moves::tag::value) + { fc_ilog(fc::logger::get("tournament"), "game ${id} received a commit move, now expecting reveal moves", ("id", game.id)); + set_next_timeout(event.db, game); + } else fc_ilog(fc::logger::get("tournament"), "game ${id} received a reveal move, still expecting reveal moves", ("id", game.id)); - set_next_timeout(event.db, game); } }; From a66af8b072337d045f55f5f2a51aa8fb70a30564 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Wed, 23 Nov 2016 11:33:24 +0100 Subject: [PATCH 16/31] enhancing tournament_payout operation according issues 8 9 --- libraries/app/impacted.cpp | 2 +- .../graphene/chain/protocol/tournament.hpp | 32 ++++++++++++++----- libraries/chain/tournament_object.cpp | 30 +++++++++++++---- libraries/wallet/wallet.cpp | 9 ++++-- 4 files changed, 56 insertions(+), 17 deletions(-) diff --git a/libraries/app/impacted.cpp b/libraries/app/impacted.cpp index f160e8c7..3974da10 100644 --- a/libraries/app/impacted.cpp +++ b/libraries/app/impacted.cpp @@ -224,7 +224,7 @@ struct get_impacted_account_visitor } void operator()( const tournament_payout_operation& op ) { - _impacted.insert( op.winner_account_id ); + _impacted.insert( op.payout_account_id ); } }; diff --git a/libraries/chain/include/graphene/chain/protocol/tournament.hpp b/libraries/chain/include/graphene/chain/protocol/tournament.hpp index 34f9ac29..b9a71523 100644 --- a/libraries/chain/include/graphene/chain/protocol/tournament.hpp +++ b/libraries/chain/include/graphene/chain/protocol/tournament.hpp @@ -36,6 +36,13 @@ namespace graphene { namespace chain { + enum class payout_type + { + prize_award, + buyin_refund, + rake_fee + }; + typedef fc::static_variant game_specific_options; /** @@ -169,24 +176,32 @@ namespace graphene { namespace chain { asset fee; - /// The account of the the tournament winner - account_id_type winner_account_id; + /// The account received payout + account_id_type payout_account_id; - /// The won tournament + /// The tournament generated payout tournament_id_type tournament_id; - /// The buy-in paid by the `payer_account_id` - asset won_prize; + /// The payout amount + asset payout_amount; + + payout_type type; extensions_type extensions; - account_id_type fee_payer()const { return winner_account_id; } + account_id_type fee_payer()const { return payout_account_id; } share_type calculate_fee(const fee_parameters_type&)const { return 0; } void validate()const {} }; } } +FC_REFLECT_ENUM(graphene::chain::payout_type, + (prize_award) + (buyin_refund) + (rake_fee) + ) + FC_REFLECT_TYPENAME( graphene::chain::game_specific_options ) FC_REFLECT_TYPENAME( graphene::chain::game_specific_moves ) FC_REFLECT( graphene::chain::tournament_options, @@ -220,9 +235,10 @@ FC_REFLECT( graphene::chain::game_move_operation, (extensions)) FC_REFLECT( graphene::chain::tournament_payout_operation, (fee) - (winner_account_id) + (payout_account_id) (tournament_id) - (won_prize) + (payout_amount) + (type) (extensions)) FC_REFLECT( graphene::chain::tournament_create_operation::fee_parameters_type, (fee) ) diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index 5cab73de..d8ca4618 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -198,6 +198,7 @@ namespace graphene { namespace chain { }); } } + } void on_entry(const match_completed& event, tournament_state_machine_& fsm) { @@ -266,7 +267,16 @@ namespace graphene { namespace chain { // for a period of time, not as a transfer back to the user; it doesn't matter // if they are currently authorized to transfer this asset, they never really // transferred it in the first place - event.db.adjust_balance(payer_pair.first, asset(payer_pair.second, fsm.tournament_obj->options.buy_in.asset_id)); + asset amount(payer_pair.second, fsm.tournament_obj->options.buy_in.asset_id); + event.db.adjust_balance(payer_pair.first, amount); + + // Generating a virtual operation that shows the payment + tournament_payout_operation op; + op.tournament_id = fsm.tournament_obj->id; + op.payout_amount = amount; + op.payout_account_id = payer_pair.first; + op.type = payout_type::buyin_refund; + event.db.push_applied_operation(op); } } }; @@ -294,17 +304,25 @@ namespace graphene { namespace chain { const account_id_type& winner = *event.match.match_winners.begin(); uint16_t rake_fee_percentage = event.db.get_global_properties().parameters.rake_fee_percentage; share_type rake_amount = (fc::uint128_t(tournament_obj.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); - event.db.adjust_balance(account_id_type(TOURNAMENT_RAKE_FEE_ACCOUNT_ID), - asset(rake_amount, tournament_obj.options.buy_in.asset_id)); + + asset rake(rake_amount, tournament_obj.options.buy_in.asset_id); + event.db.adjust_balance(account_id_type(TOURNAMENT_RAKE_FEE_ACCOUNT_ID), rake); + asset won_prize(tournament_obj.prize_pool - rake_amount, tournament_obj.options.buy_in.asset_id); event.db.adjust_balance(winner, won_prize); tournament_obj.end_time = event.db.head_block_time(); - // Generating a virtual operation that shows the payment + // Generating a virtual operations that show the payments tournament_payout_operation op; op.tournament_id = tournament_obj.id; - op.won_prize = won_prize; - op.winner_account_id = winner; + op.payout_amount = won_prize; + op.payout_account_id = winner; + op.type = payout_type::prize_award; + event.db.push_applied_operation(op); + + op.payout_amount = rake; + op.payout_account_id = TOURNAMENT_RAKE_FEE_ACCOUNT_ID; + op.type = payout_type::rake_fee; event.db.push_applied_operation(op); } }; diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 0b3e1060..c0caf4fa 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -3208,8 +3208,13 @@ std::string operation_printer::operator()(const asset_dividend_distribution_oper std::string operation_printer::operator()(const tournament_payout_operation& op)const { - out << "Tournament Payout Account '" << wallet.get_account(op.winner_account_id).name - << "', Amount " << std::to_string(op.won_prize.amount.value) << " " << wallet.get_asset(op.won_prize.asset_id).symbol; + asset_object payout_asset = wallet.get_asset(op.payout_amount.asset_id); + + out << "Tournament #" << std::string(object_id_type(op.tournament_id)) << " Payout : " + << "Account '" << wallet.get_account(op.payout_account_id).name + << "', Amount " << payout_asset.amount_to_pretty_string(op.payout_amount) << ", Type " + << (op.type == payout_type::buyin_refund ? "buyin refund" : (op.type == payout_type::rake_fee ? "rake fee" : "prize award")) + << "."; return ""; } From 85d7a30f876ff2e229c5f97de63074d83c916eba Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Thu, 24 Nov 2016 17:17:59 +0100 Subject: [PATCH 17/31] improving tournament prize distributing for assets other then core asset --- libraries/chain/tournament_object.cpp | 33 ++++++++++++++++++++------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index d8ca4618..5774d7b2 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -303,16 +303,22 @@ namespace graphene { namespace chain { assert(event.match.match_winners.size() == 1); const account_id_type& winner = *event.match.match_winners.begin(); uint16_t rake_fee_percentage = event.db.get_global_properties().parameters.rake_fee_percentage; - share_type rake_amount = (fc::uint128_t(tournament_obj.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + share_type rake_amount = 0; - asset rake(rake_amount, tournament_obj.options.buy_in.asset_id); - event.db.adjust_balance(account_id_type(TOURNAMENT_RAKE_FEE_ACCOUNT_ID), rake); + const asset_object & asset_obj = tournament_obj.options.buy_in.asset_id(event.db); + optional dividend_id = asset_obj.dividend_data_id; + if (dividend_id.valid()) + { + rake_amount = (fc::uint128_t(tournament_obj.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); + } + + // Adjusting balance of winner asset won_prize(tournament_obj.prize_pool - rake_amount, tournament_obj.options.buy_in.asset_id); event.db.adjust_balance(winner, won_prize); tournament_obj.end_time = event.db.head_block_time(); - // Generating a virtual operations that show the payments + // Generating a virtual operation that shows the payment tournament_payout_operation op; op.tournament_id = tournament_obj.id; op.payout_amount = won_prize; @@ -320,10 +326,21 @@ namespace graphene { namespace chain { op.type = payout_type::prize_award; event.db.push_applied_operation(op); - op.payout_amount = rake; - op.payout_account_id = TOURNAMENT_RAKE_FEE_ACCOUNT_ID; - op.type = payout_type::rake_fee; - event.db.push_applied_operation(op); + if (dividend_id.valid()) + { + // Adjusting balance of dividend_distribution_account + const asset_dividend_data_id_type& asset_dividend_data_id_= *dividend_id; + const asset_dividend_data_object& dividend_obj = asset_dividend_data_id_(event.db); + const account_id_type& rake_account_id = dividend_obj.dividend_distribution_account; + asset rake(rake_amount, tournament_obj.options.buy_in.asset_id); + event.db.adjust_balance(rake_account_id, rake); + + // Generating a virtual operation that shows the payment + op.payout_amount = rake; + op.payout_account_id = rake_account_id; + op.type = payout_type::rake_fee; + event.db.push_applied_operation(op); + } } }; From f2c0157bb7616ec6c2a928581ddfa4bad5b4fd88 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Fri, 25 Nov 2016 18:01:32 +0100 Subject: [PATCH 18/31] avoiding generating tournament payout operation if zero payout updating tournaments tests --- libraries/chain/tournament_object.cpp | 27 +++-- tests/common/database_fixture.cpp | 2 +- tests/tournament/tournament_tests.cpp | 154 ++++++++++++++++++++++++-- 3 files changed, 163 insertions(+), 20 deletions(-) diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index 5774d7b2..28b7b756 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -289,6 +289,7 @@ namespace graphene { namespace chain { fc_ilog(fc::logger::get("tournament"), "Tournament ${id} is complete", ("id", tournament_obj.id)); + tournament_obj.end_time = event.db.head_block_time(); // Distribute prize money when a tournament ends #ifndef NDEBUG @@ -312,21 +313,23 @@ namespace graphene { namespace chain { { rake_amount = (fc::uint128_t(tournament_obj.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); } - - // Adjusting balance of winner asset won_prize(tournament_obj.prize_pool - rake_amount, tournament_obj.options.buy_in.asset_id); - event.db.adjust_balance(winner, won_prize); - tournament_obj.end_time = event.db.head_block_time(); - - // Generating a virtual operation that shows the payment tournament_payout_operation op; - op.tournament_id = tournament_obj.id; - op.payout_amount = won_prize; - op.payout_account_id = winner; - op.type = payout_type::prize_award; - event.db.push_applied_operation(op); - if (dividend_id.valid()) + if (won_prize.amount.value) + { + // Adjusting balance of winner + event.db.adjust_balance(winner, won_prize); + + // Generating a virtual operation that shows the payment + op.tournament_id = tournament_obj.id; + op.payout_amount = won_prize; + op.payout_account_id = winner; + op.type = payout_type::prize_award; + event.db.push_applied_operation(op); + } + + if (dividend_id.valid() && rake_amount.value) { // Adjusting balance of dividend_distribution_account const asset_dividend_data_id_type& asset_dividend_data_id_= *dividend_id; diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index cfa11ea1..f4ae577b 100644 --- a/tests/common/database_fixture.cpp +++ b/tests/common/database_fixture.cpp @@ -164,7 +164,7 @@ void database_fixture::verify_asset_supplies( const database& db ) share_type reported_core_in_orders; for( const tournament_object& t : tournaments_index ) - if (t.get_state() != tournament_state::concluded) + if (t.get_state() != tournament_state::concluded && t.get_state() != tournament_state::registration_period_expired) total_balances[t.options.buy_in.asset_id] += t.prize_pool; for( const account_balance_object& b : balance_index ) diff --git a/tests/tournament/tournament_tests.cpp b/tests/tournament/tournament_tests.cpp index 760da7d9..63f17999 100644 --- a/tests/tournament/tournament_tests.cpp +++ b/tests/tournament/tournament_tests.cpp @@ -51,7 +51,9 @@ public: { assets.insert(asset_id_type()); current_asset_idx = 0; - players.insert(TOURNAMENT_RAKE_FEE_ACCOUNT_ID); + optional dividend_account = get_asset_dividend_account(asset_id_type()); + if (dividend_account.valid()) + players.insert(*dividend_account); } const std::set& list_tournaments() @@ -113,7 +115,46 @@ public: PUSH_TX(db, tx); assets.insert(asset_id_type(++current_asset_idx)); + } + void update_dividend_asset(const asset_id_type asset_to_update_id, + dividend_asset_options new_options, + const fc::ecc::private_key& sig_priv_key) + { + graphene::chain::database& db = df.db; + const chain_parameters& params = db.get_global_properties().parameters; + signed_transaction tx; + asset_update_dividend_operation update_op; + + update_op.issuer = asset_to_update_id(db).issuer; + update_op.asset_to_update = asset_to_update_id; + update_op.new_options = new_options; + + tx.operations = {update_op}; + for( auto& op : tx.operations ) + db.current_fee_schedule().set_fee(op); + tx.validate(); + tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(tx, sig_priv_key); + PUSH_TX(db, tx); + + optional dividend_account = get_asset_dividend_account(asset_to_update_id); + if (dividend_account.valid()) + players.insert(*dividend_account); + } + + optional get_asset_dividend_account(const asset_id_type& asset_id) + { + graphene::chain::database& db = df.db; + optional result; + const asset_object& asset_obj = asset_id(db); + + if (asset_obj.dividend_data_id.valid()) + { + const asset_dividend_data_object& dividend_data = (*asset_obj.dividend_data_id)(db); + result = dividend_data.dividend_distribution_account; + } + return result; } const tournament_id_type create_tournament (const account_id_type& creator, @@ -123,6 +164,7 @@ public: uint32_t time_per_commit_move = 3, uint32_t time_per_reveal_move = 1, uint32_t number_of_wins = 3, + uint32_t registration_deadline = 3600, uint32_t start_delay = 3, uint32_t round_delay = 3, bool insurance_enabled = false @@ -145,7 +187,7 @@ public: game_options.time_per_reveal_move = time_per_reveal_move; game_options.insurance_enabled = insurance_enabled; - options.registration_deadline = db.head_block_time() + fc::hours(1 + *current_tournament_idx); + options.registration_deadline = db.head_block_time() + fc::seconds(registration_deadline + *current_tournament_idx); options.buy_in = buy_in; options.number_of_players = number_of_players; options.start_delay = start_delay; @@ -500,7 +542,9 @@ BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) BOOST_TEST_MESSAGE( "The winner is " + winner.name ); share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); - players_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + optional dividend_account = tournament_helper.get_asset_dividend_account(tournament.options.buy_in.asset_id); + if (dividend_account.valid()) + players_balances[*dividend_account][tournament.options.buy_in.asset_id] += rake_amount; players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; tournaments.erase(tournament_id); @@ -531,6 +575,83 @@ BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) } } +// Test of canceled tournament +// Checking buyin refund. +BOOST_FIXTURE_TEST_CASE( canceled, database_fixture ) +{ + try + { + BOOST_TEST_MESSAGE("Hello canceled tournament test"); + ACTORS((nathan)(alice)(bob)); + + tournaments_helper tournament_helper(*this); + fc::ecc::private_key nathan_priv_key = fc::ecc::private_key::regenerate(fc::sha256::hash(string("nathan"))); + + BOOST_TEST_MESSAGE( "Giving folks some money" ); + transfer(committee_account, nathan_id, asset(1000000000)); + transfer(committee_account, alice_id, asset(2000000)); + transfer(committee_account, bob_id, asset(3000000)); + + BOOST_TEST_MESSAGE( "Preparing nathan" ); + upgrade_to_lifetime_member(nathan); + + uint16_t tournaments_to_complete = 0; + asset buy_in = asset(12340); + tournament_id_type tournament_id; + + BOOST_TEST_MESSAGE( "Preparing a tournament" ); + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, 3, 30, 30, 3, 5); + BOOST_REQUIRE(tournament_id == tournament_id_type()); + + tournament_helper.join_tournament(tournament_id, alice_id, alice_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("alice"))), buy_in); + tournament_helper.join_tournament(tournament_id, bob_id, bob_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("bob"))), buy_in); + ++tournaments_to_complete; + BOOST_TEST_MESSAGE( "Generating blocks, waiting for tournament's completion"); + std::set tournaments = tournament_helper.list_tournaments(); + std::map> players_balances = tournament_helper.list_players_balances(); + + while(tournaments_to_complete > 0) + { + for(const auto& tournament_id: tournaments) + { + const tournament_object& tournament = tournament_id(db); + BOOST_REQUIRE(tournament.get_state() != tournament_state::concluded); + + if (tournament.get_state() == tournament_state::registration_period_expired) { + + + const tournament_details_object& tournament_details = tournament.tournament_details_id(db); + for(auto payer : tournament_details.payers) + { + players_balances[payer.first][tournament.options.buy_in.asset_id] += payer.second; + } + + tournaments.erase(tournament_id); + --tournaments_to_complete; + break; + } + } + generate_block(); + sleep(1); + } + + // checking if buyins were refunded correctly + BOOST_CHECK(tournaments.size() == 0); + std::map> last_players_balances = tournament_helper.list_players_balances(); + for (auto a: last_players_balances) + { + BOOST_TEST_MESSAGE( "Checking " + a.first(db).name + "'s balance " + std::to_string((uint64_t)(a.second[asset_id_type()].value)) ); + BOOST_CHECK(a.second[asset_id_type()] == players_balances[a.first][asset_id_type()]); + } + BOOST_TEST_MESSAGE("Bye canceled tournament test\n"); + } + catch (fc::exception& e) + { + edump((e.to_detail_string())); + throw; + } +} + // Test of few concurrently played tournaments having the same constant number of players. // Tournament/s having even number use the core asset. // Tournament/s having odd number use another asset. @@ -563,12 +684,26 @@ BOOST_FIXTURE_TEST_CASE( assets, database_fixture ) aoptions.core_exchange_rate.quote.amount = 1; aoptions.core_exchange_rate.quote.asset_id = asset_id_type(1); tournament_helper.create_asset(nathan_id, DEF_SYMBOL, 5, aoptions, nathan_priv_key); + issue_uia(nathan_id, asset(GRAPHENE_MAX_SHARE_SUPPLY/2, asset_id_type(1))); + dividend_asset_options doptions; + doptions.minimum_distribution_interval = 3*24*60*60; + doptions.minimum_fee_percentage = 10*GRAPHENE_1_PERCENT; + doptions.next_payout_time = db.head_block_time() + fc::hours(1); + doptions.payout_interval = 7*24*60*60; + tournament_helper.update_dividend_asset(asset_id_type(1), doptions, nathan_priv_key); + #if 0 auto tas = get_asset(GRAPHENE_SYMBOL); wdump((tas)); auto das = get_asset(DEF_SYMBOL); wdump((das)); + if (das.dividend_data_id.valid()) + { + auto div = (*das.dividend_data_id)(db); wdump((div)); + auto dda = div.dividend_distribution_account(db); wdump((dda)); + } + auto nac = nathan_id(db); wdump(("# nathan's account") (nac)); auto nab0 = db.get_balance(nathan_id, asset_id_type(0)); wdump(("# nathans's balance 0") (nab0)); @@ -622,8 +757,9 @@ BOOST_FIXTURE_TEST_CASE( assets, database_fixture ) const account_id_type& winner_id = *final_match.match_winners.begin(); BOOST_TEST_MESSAGE( "The winner of " + std::string(object_id_type(tournament_id)) + " is " + winner_id(db).name + " " + std::string(object_id_type(winner_id))); share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); - players_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; - players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; + optional dividend_account = tournament_helper.get_asset_dividend_account(tournament.options.buy_in.asset_id); + if (dividend_account.valid()) + players_balances[*dividend_account][tournament.options.buy_in.asset_id] += rake_amount; players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; tournaments.erase(tournament_id); --tournaments_to_complete; @@ -757,7 +893,9 @@ BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) const account_id_type& winner_id = *final_match.match_winners.begin(); BOOST_TEST_MESSAGE( "The winner of " + std::string(object_id_type(tournament_id)) + " is " + winner_id(db).name + " " + std::string(object_id_type(winner_id))); share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); - players_initial_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + optional dividend_account = tournament_helper.get_asset_dividend_account(tournament.options.buy_in.asset_id); + if (dividend_account.valid()) + players_initial_balances[*dividend_account][tournament.options.buy_in.asset_id] += rake_amount; players_initial_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; tournaments.erase(tournament_id); @@ -870,7 +1008,9 @@ BOOST_FIXTURE_TEST_CASE( massive, database_fixture ) const account_id_type& winner_id = *final_match.match_winners.begin(); BOOST_TEST_MESSAGE( "The winner of " + std::string(object_id_type(tournament_id)) + " is " + winner_id(db).name + " " + std::string(object_id_type(winner_id))); share_type rake_amount = (fc::uint128_t(tournament.prize_pool.value) * rake_fee_percentage / GRAPHENE_1_PERCENT / 100).to_uint64(); - players_balances[TOURNAMENT_RAKE_FEE_ACCOUNT_ID][tournament.options.buy_in.asset_id] += rake_amount; + optional dividend_account = tournament_helper.get_asset_dividend_account(tournament.options.buy_in.asset_id); + if (dividend_account.valid()) + players_balances[*dividend_account][tournament.options.buy_in.asset_id] += rake_amount; players_balances[winner_id][tournament.options.buy_in.asset_id] += tournament.prize_pool - rake_amount; tournaments.erase(tournament_id); From 81c9e98d7b76854a48207f716f04d33be0f3feb3 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Fri, 25 Nov 2016 19:40:25 +0100 Subject: [PATCH 19/31] solution ...issues/#7 Allow vesting core tokens to vote and receive dividends --- libraries/chain/db_maint.cpp | 69 +++++++++++++++---- .../graphene/chain/vesting_balance_object.hpp | 21 +++++- 2 files changed, 76 insertions(+), 14 deletions(-) diff --git a/libraries/chain/db_maint.cpp b/libraries/chain/db_maint.cpp index 4bbd1b77..eccd40b9 100644 --- a/libraries/chain/db_maint.cpp +++ b/libraries/chain/db_maint.cpp @@ -727,14 +727,15 @@ void schedule_pending_dividend_balances(database& db, const asset_dividend_data_object& dividend_data, const fc::time_point_sec& current_head_block_time, const account_balance_index& balance_index, + const vesting_balance_index& vesting_index, const total_distributed_dividend_balance_object_index& distributed_dividend_balance_index, const pending_dividend_payout_balance_for_holder_object_index& pending_payout_balance_index) { - dlog("Processing dividend payments for dividend holder asset type ${holder_asset} at time ${t}", + dlog("Processing dividend payments for dividend holder asset type ${holder_asset} at time ${t}", ("holder_asset", dividend_holder_asset_obj.symbol)("t", db.head_block_time())); auto current_distribution_account_balance_range = balance_index.indices().get().equal_range(boost::make_tuple(dividend_data.dividend_distribution_account)); - auto previous_distribution_account_balance_range = + auto previous_distribution_account_balance_range = distributed_dividend_balance_index.indices().get().equal_range(boost::make_tuple(dividend_holder_asset_obj.id)); // the current range is now all current balances for the distribution account, sorted by asset_type // the previous range is now all previous balances for this account, sorted by asset type @@ -744,7 +745,7 @@ void schedule_pending_dividend_balances(database& db, // get the list of accounts that hold nonzero balances of the dividend asset auto holder_balances_begin = balance_index.indices().get().lower_bound(boost::make_tuple(dividend_holder_asset_obj.id)); - auto holder_balances_end = + auto holder_balances_end = balance_index.indices().get().upper_bound(boost::make_tuple(dividend_holder_asset_obj.id, share_type())); uint32_t holder_account_count = std::distance(holder_balances_begin, holder_balances_end); uint64_t distribution_base_fee = gpo.parameters.current_fees->get().distribution_base_fee; @@ -752,6 +753,20 @@ void schedule_pending_dividend_balances(database& db, // the fee, in BTS, for distributing each asset in the account uint64_t total_fee_per_asset_in_core = distribution_base_fee + holder_account_count * (uint64_t)distribution_fee_per_holder; + std::map vesting_amounts; + // get only once a collection of accounts that hold nonzero vesting balances of the dividend asset + auto vesting_balances_begin = + vesting_index.indices().get().lower_bound(boost::make_tuple(dividend_holder_asset_obj.id)); + auto vesting_balances_end = + vesting_index.indices().get().upper_bound(boost::make_tuple(dividend_holder_asset_obj.id, share_type())); + for (const vesting_balance_object& vesting_balance_obj : boost::make_iterator_range(vesting_balances_begin, vesting_balances_end)) + { + vesting_amounts[vesting_balance_obj.owner] += vesting_balance_obj.balance.amount; + dlog("Vesting balance for account: ${owner}, amount: ${amount}", + ("owner", vesting_balance_obj.owner(db).name) + ("amount", vesting_balance_obj.balance.amount)); + } + auto current_distribution_account_balance_iter = current_distribution_account_balance_range.first; auto previous_distribution_account_balance_iter = previous_distribution_account_balance_range.first; dlog("Current balances in distribution account: ${current}, Previous balances: ${previous}", @@ -764,9 +779,12 @@ void schedule_pending_dividend_balances(database& db, share_type total_balance_of_dividend_asset; for (const account_balance_object& holder_balance_object : boost::make_iterator_range(holder_balances_begin, holder_balances_end)) if (holder_balance_object.owner != dividend_data.dividend_distribution_account) + { total_balance_of_dividend_asset += holder_balance_object.balance; - - + auto itr = vesting_amounts.find(holder_balance_object.owner); + if (itr != vesting_amounts.end()) + total_balance_of_dividend_asset += itr->second; + } // loop through all of the assets currently or previously held in the distribution account while (current_distribution_account_balance_iter != current_distribution_account_balance_range.second || previous_distribution_account_balance_iter != previous_distribution_account_balance_range.second) @@ -892,13 +910,21 @@ void schedule_pending_dividend_balances(database& db, // credit each account with their portion, don't send any back to the dividend distribution account for (const account_balance_object& holder_balance_object : boost::make_iterator_range(holder_balances_begin, holder_balances_end)) - if (holder_balance_object.owner != dividend_data.dividend_distribution_account && - holder_balance_object.balance.value) + { + if (holder_balance_object.owner == dividend_data.dividend_distribution_account) continue; + + auto holder_balance = holder_balance_object.balance; + + auto itr = vesting_amounts.find(holder_balance_object.owner); + if (itr != vesting_amounts.end()) + holder_balance += itr->second; + + if (holder_balance.value) { - fc::uint128_t amount_to_credit(delta_balance.value); - amount_to_credit *= holder_balance_object.balance.value; + fc::uint128_t amount_to_credit(delta_balance.value); + amount_to_credit *= holder_balance.value; amount_to_credit /= total_balance_of_dividend_asset.value; - //wdump((delta_balance.value)(holder_balance_object.balance)(total_balance_of_dividend_asset)); + wdump((delta_balance.value)(holder_balance)(total_balance_of_dividend_asset)); share_type shares_to_credit((int64_t)amount_to_credit.to_uint64()); remaining_amount_to_distribute -= shares_to_credit; @@ -920,6 +946,7 @@ void schedule_pending_dividend_balances(database& db, pending_balance.pending_balance += shares_to_credit; }); } + } for (const auto& pending_payout : pending_payout_balance_index.indices()) dlog("Pending payout: ${account_name} -> ${amount}", @@ -928,7 +955,6 @@ void schedule_pending_dividend_balances(database& db, dlog("Remaining balance not paid out: ${amount}", ("amount", asset(remaining_amount_to_distribute, payout_asset_type))); - share_type distributed_amount = delta_balance - remaining_amount_to_distribute; if (previous_distribution_account_balance_iter == previous_distribution_account_balance_range.second || previous_distribution_account_balance_iter->dividend_payout_asset_type != payout_asset_type) @@ -1017,6 +1043,7 @@ void process_dividend_assets(database& db) ilog("In process_dividend_assets time ${time}", ("time", db.head_block_time())); const account_balance_index& balance_index = db.get_index_type(); + const vesting_balance_index& vbalance_index = db.get_index_type(); const total_distributed_dividend_balance_object_index& distributed_dividend_balance_index = db.get_index_type(); const pending_dividend_payout_balance_for_holder_object_index& pending_payout_balance_index = db.get_index_type(); @@ -1030,7 +1057,7 @@ void process_dividend_assets(database& db) fc::time_point_sec current_head_block_time = db.head_block_time(); schedule_pending_dividend_balances(db, dividend_holder_asset_obj, dividend_data, current_head_block_time, - balance_index, distributed_dividend_balance_index, pending_payout_balance_index); + balance_index, vbalance_index, distributed_dividend_balance_index, pending_payout_balance_index); if (dividend_data.options.next_payout_time && db.head_block_time() >= *dividend_data.options.next_payout_time) { @@ -1180,6 +1207,7 @@ void database::perform_chain_maintenance(const signed_block& next_block, const g struct vote_tally_helper { database& d; const global_property_object& props; + std::map vesting_amounts; vote_tally_helper(database& d, const global_property_object& gpo) : d(d), props(gpo) @@ -1188,6 +1216,19 @@ void database::perform_chain_maintenance(const signed_block& next_block, const g d._witness_count_histogram_buffer.resize(props.parameters.maximum_witness_count / 2 + 1); d._committee_count_histogram_buffer.resize(props.parameters.maximum_committee_count / 2 + 1); d._total_voting_stake = 0; + + const vesting_balance_index& vesting_index = d.get_index_type(); + auto vesting_balances_begin = + vesting_index.indices().get().lower_bound(boost::make_tuple(asset_id_type())); + auto vesting_balances_end = + vesting_index.indices().get().upper_bound(boost::make_tuple(asset_id_type(), share_type())); + for (const vesting_balance_object& vesting_balance_obj : boost::make_iterator_range(vesting_balances_begin, vesting_balances_end)) + { + vesting_amounts[vesting_balance_obj.owner] += vesting_balance_obj.balance.amount; + dlog("Vesting balance for account: ${owner}, amount: ${amount}", + ("owner", vesting_balance_obj.owner(d).name) + ("amount", vesting_balance_obj.balance.amount)); + } } void operator()(const account_object& stake_account) { @@ -1206,6 +1247,10 @@ void database::perform_chain_maintenance(const signed_block& next_block, const g + (stake_account.cashback_vb.valid() ? (*stake_account.cashback_vb)(d).balance.amount.value: 0) + d.get_balance(stake_account.get_id(), asset_id_type()).amount.value; + auto itr = vesting_amounts.find(stake_account.id); + if (itr != vesting_amounts.end()) + voting_stake += itr->second.value; + for( vote_id_type id : opinion_account.options.votes ) { uint32_t offset = id.instance(); diff --git a/libraries/chain/include/graphene/chain/vesting_balance_object.hpp b/libraries/chain/include/graphene/chain/vesting_balance_object.hpp index 210c6c58..49b3464c 100644 --- a/libraries/chain/include/graphene/chain/vesting_balance_object.hpp +++ b/libraries/chain/include/graphene/chain/vesting_balance_object.hpp @@ -31,8 +31,10 @@ #include #include +#include - +#define offset_d(i,f) (long(&(i)->f) - long(i)) +#define offset_s(t,f) offset_d((t*)1000, f) namespace graphene { namespace chain { using namespace graphene::db; @@ -171,13 +173,28 @@ namespace graphene { namespace chain { * @ingroup object_index */ struct by_account; + struct by_asset_balance; typedef multi_index_container< vesting_balance_object, indexed_by< ordered_unique< tag, member< object, object_id_type, &object::id > >, ordered_non_unique< tag, member - > + >, + ordered_unique< tag, + composite_key< + vesting_balance_object, + member_offset, + member_offset + //member + //member_offset + >, + composite_key_compare< + std::less< asset_id_type >, + std::greater< share_type > + //std::less< account_id_type > + > + > > > vesting_balance_multi_index_type; /** From eadbae0808c7d05f9ac360e2e104c896a7fd8ebf Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Sat, 26 Nov 2016 16:03:33 +0100 Subject: [PATCH 20/31] solution ...issues/#10 avoid generating dividend_payout virtual operations for zero-size payouts --- libraries/chain/db_maint.cpp | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/libraries/chain/db_maint.cpp b/libraries/chain/db_maint.cpp index eccd40b9..78307d37 100644 --- a/libraries/chain/db_maint.cpp +++ b/libraries/chain/db_maint.cpp @@ -949,9 +949,10 @@ void schedule_pending_dividend_balances(database& db, } for (const auto& pending_payout : pending_payout_balance_index.indices()) - dlog("Pending payout: ${account_name} -> ${amount}", - ("account_name", pending_payout.owner(db).name) - ("amount", asset(pending_payout.pending_balance, pending_payout.dividend_payout_asset_type))); + if (pending_payout.pending_balance.value) + dlog("Pending payout: ${account_name} -> ${amount}", + ("account_name", pending_payout.owner(db).name) + ("amount", asset(pending_payout.pending_balance, pending_payout.dividend_payout_asset_type))); dlog("Remaining balance not paid out: ${amount}", ("amount", asset(remaining_amount_to_distribute, payout_asset_type))); @@ -1103,7 +1104,7 @@ void process_dividend_assets(database& db) { const pending_dividend_payout_balance_for_holder_object& pending_balance_object = *pending_balance_object_iter; - if (last_holder_account_id && *last_holder_account_id != pending_balance_object.owner) + if (last_holder_account_id && *last_holder_account_id != pending_balance_object.owner && payouts_for_this_holder.size()) { // we've moved on to a new account, generate the dividend payment virtual op for the previous one db.push_applied_operation(asset_dividend_distribution_operation(dividend_holder_asset_obj.id, @@ -1115,14 +1116,15 @@ void process_dividend_assets(database& db) } - if (is_authorized_asset(db, pending_balance_object.owner(db), pending_balance_object.dividend_payout_asset_type(db)) && + if (pending_balance_object.pending_balance.value && + is_authorized_asset(db, pending_balance_object.owner(db), pending_balance_object.dividend_payout_asset_type(db)) && is_asset_approved_for_distribution_account(pending_balance_object.dividend_payout_asset_type)) { dlog("Processing payout of ${asset} to account ${account}", ("asset", asset(pending_balance_object.pending_balance, pending_balance_object.dividend_payout_asset_type)) ("account", pending_balance_object.owner(db).name)); - db.adjust_balance(pending_balance_object.owner, + db.adjust_balance(pending_balance_object.owner, asset(pending_balance_object.pending_balance, pending_balance_object.dividend_payout_asset_type)); payouts_for_this_holder.insert(asset(pending_balance_object.pending_balance, @@ -1138,7 +1140,7 @@ void process_dividend_assets(database& db) ++pending_balance_object_iter; } // we will always be left with the last holder's data, generate the virtual op for it now. - if (last_holder_account_id) + if (last_holder_account_id && payouts_for_this_holder.size()) { // we've moved on to a new account, generate the dividend payment virtual op for the previous one db.push_applied_operation(asset_dividend_distribution_operation(dividend_holder_asset_obj.id, From b9508c6da89182bf98343ffb17ad693003950275 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Mon, 28 Nov 2016 09:06:29 +0100 Subject: [PATCH 21/31] little correction for solution ...issues/#10 avoid generating dividend_payout virtual operations for zero-size payouts --- libraries/chain/db_maint.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/chain/db_maint.cpp b/libraries/chain/db_maint.cpp index 78307d37..6d733e70 100644 --- a/libraries/chain/db_maint.cpp +++ b/libraries/chain/db_maint.cpp @@ -919,13 +919,13 @@ void schedule_pending_dividend_balances(database& db, if (itr != vesting_amounts.end()) holder_balance += itr->second; - if (holder_balance.value) + fc::uint128_t amount_to_credit(delta_balance.value); + amount_to_credit *= holder_balance.value; + amount_to_credit /= total_balance_of_dividend_asset.value; + share_type shares_to_credit((int64_t)amount_to_credit.to_uint64()); + if (shares_to_credit.value) { - fc::uint128_t amount_to_credit(delta_balance.value); - amount_to_credit *= holder_balance.value; - amount_to_credit /= total_balance_of_dividend_asset.value; wdump((delta_balance.value)(holder_balance)(total_balance_of_dividend_asset)); - share_type shares_to_credit((int64_t)amount_to_credit.to_uint64()); remaining_amount_to_distribute -= shares_to_credit; From e16b9d0610254af5b6a80803b5e02f77b2940b76 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Tue, 29 Nov 2016 17:38:37 +0100 Subject: [PATCH 22/31] fxing #11 Fix operation of "insurance" parameter implementing #12 Add tournament rules to prevent a game from lasting too long due to ties --- libraries/chain/game_object.cpp | 42 ++++++++++++++++++--------- libraries/chain/match_object.cpp | 26 +++++++++++++++-- libraries/chain/tournament_object.cpp | 10 ++++--- 3 files changed, 59 insertions(+), 19 deletions(-) diff --git a/libraries/chain/game_object.cpp b/libraries/chain/game_object.cpp index 30a646ad..ea2ac76a 100644 --- a/libraries/chain/game_object.cpp +++ b/libraries/chain/game_object.cpp @@ -351,7 +351,7 @@ namespace graphene { namespace chain { void game_object::evaluate_move_operation(const database& db, const game_move_operation& op) const { - const match_object& match_obj = match_id(db); + //const match_object& match_obj = match_id(db); if (game_details.which() == game_specific_details::tag::value) { @@ -451,18 +451,31 @@ namespace graphene { namespace chain { const match_object& match_obj = match_id(db); const tournament_object& tournament_obj = match_obj.tournament_id(db); const rock_paper_scissors_game_options& game_options = tournament_obj.options.game_options.get(); - for (unsigned i = 0; i < 2; ++i) + if (!game_options.insurance_enabled) // no automatic moves { - if (!rps_game_details.commit_moves[i] || - no_player_has_reveal_move) - { - struct rock_paper_scissors_throw_reveal reveal; - reveal.nonce2 = 0; - reveal.gesture = (rock_paper_scissors_gesture)db.get_random_bits(game_options.number_of_gestures); - rps_game_details.reveal_moves[i] = reveal; - ilog("Player ${player} failed to commit a move, generating a random move for them: ${gesture}", - ("player", i)("gesture", reveal.gesture)); - } + struct rock_paper_scissors_throw_reveal reveal; + reveal.nonce2 = 0; + reveal.gesture = (rock_paper_scissors_gesture)db.get_random_bits(game_options.number_of_gestures); + rps_game_details.reveal_moves[0] = + rps_game_details.reveal_moves[1] = reveal; + ilog("Both players failed to commit a move, generating a random move for them: ${gesture}", + ("gesture", reveal.gesture)); + } + else + { + for (unsigned i = 0; i < 2; ++i) + { + if (!rps_game_details.commit_moves[i] || + no_player_has_reveal_move) + { + struct rock_paper_scissors_throw_reveal reveal; + reveal.nonce2 = 0; + reveal.gesture = (rock_paper_scissors_gesture)db.get_random_bits(game_options.number_of_gestures); + rps_game_details.reveal_moves[i] = reveal; + ilog("Player ${player} failed to commit a move, generating a random move for him: ${gesture}", + ("player", i)("gesture", reveal.gesture)); + } + } } } } @@ -501,8 +514,11 @@ namespace graphene { namespace chain { ilog("Player 0 didn't commit or reveal their move, player 1 wins"); winners.insert(players[1]); } - else if (rps_game_details.reveal_moves[1]) + else // if (rps_game_details.reveal_moves[1]) + { + // should never reach this point ? ilog("Neither player made a move, both players lose"); + } } diff --git a/libraries/chain/match_object.cpp b/libraries/chain/match_object.cpp index 3ea3d250..235037f5 100644 --- a/libraries/chain/match_object.cpp +++ b/libraries/chain/match_object.cpp @@ -94,22 +94,40 @@ namespace graphene { namespace chain { "Match ${id} is complete", ("id", match.id)); + optional last_game_winner; std::map scores_by_player; for (const flat_set& game_winners : match.game_winners) for (const account_id_type& account_id : game_winners) + { ++scores_by_player[account_id]; + last_game_winner = account_id; + } + bool all_scores_same = true; optional high_scoring_account; unsigned high_score = 0; for (const auto& value : scores_by_player) if (value.second > high_score) { + if (high_scoring_account) + all_scores_same = false; high_score = value.second; high_scoring_account = value.first; } if (high_scoring_account) - match.match_winners.insert(*high_scoring_account); + { + if (all_scores_same && last_game_winner) + match.match_winners.insert(*last_game_winner); + else + match.match_winners.insert(*high_scoring_account); + } + else + { + unsigned i = event.db.get_random_bits(match.players.size()-1); + match.match_winners.insert(match.players[i]); + } + match.end_time = event.db.head_block_time(); const tournament_object& tournament_obj = match.tournament_id(event.db); @@ -137,11 +155,15 @@ namespace graphene { namespace chain { typedef match_state_machine_ x; // makes transition table cleaner - // Guards bool was_final_game(const game_complete& event) { const tournament_object& tournament_obj = match_obj->tournament_id(event.db); + if (match_obj->games.size() >= tournament_obj.options.number_of_wins * 4) + { + return true; + } + for (unsigned i = 0; i < match_obj->players.size(); ++i) { // this guard is called before the winner of the current game factored in to our running totals, diff --git a/libraries/chain/tournament_object.cpp b/libraries/chain/tournament_object.cpp index 28b7b756..fa8830ee 100644 --- a/libraries/chain/tournament_object.cpp +++ b/libraries/chain/tournament_object.cpp @@ -234,7 +234,7 @@ namespace graphene { namespace chain { event.db.modify(next_round_match, [&](match_object& next_match_obj) { - if (!event.match.match_winners.empty()) // if there is a winner + if (!event.match.match_winners.empty()) // if there is a winner { if (winner_index_in_next_match == 0) next_match_obj.players.insert(next_match_obj.players.begin(), *event.match.match_winners.begin()); @@ -359,14 +359,16 @@ namespace graphene { namespace chain { ("value", tournament_obj->registered_players == tournament_obj->options.number_of_players - 1)); return tournament_obj->registered_players == tournament_obj->options.number_of_players - 1; } - + bool was_final_match(const match_completed& event) { const tournament_details_object& tournament_details_obj = tournament_obj->tournament_details_id(event.db); + auto final_match_id = tournament_details_obj.matches[tournament_details_obj.matches.size() - 1]; + bool was_final = event.match.id == final_match_id; fc_ilog(fc::logger::get("tournament"), "In was_final_match guard, returning ${value}", - ("value", event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size()])); - return event.match.id == tournament_details_obj.matches[tournament_details_obj.matches.size() - 1]; + ("value", was_final)); + return was_final; } void register_player(const player_registered& event) From d28d9e96a1d97efd04cc5ad80437a1ed229846be Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 29 Nov 2016 15:53:39 -0500 Subject: [PATCH 23/31] Remove BTS sharedrop --- genesis.json | 178331 +----------------------------------------------- 1 file changed, 5 insertions(+), 178326 deletions(-) diff --git a/genesis.json b/genesis.json index f14018e3..9769d982 100644 --- a/genesis.json +++ b/genesis.json @@ -1,5 +1,5 @@ { - "initial_timestamp": "2016-11-15T16:00:00", + "initial_timestamp": "2016-11-29T21:00:00", "max_core_supply": "100000000000", "initial_parameters": { "current_fees": { @@ -342,178334 +342,13 @@ "address_auths": [] }, "core_balance": 10000000000 - }, - { - "name": "bts-alexxy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J5x1ArwBR5JAEK5eXfYmcTZsCccv9LdwMAEarQfRTSEgnEm5N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J5x1ArwBR5JAEK5eXfYmcTZsCccv9LdwMAEarQfRTSEgnEm5N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3400092 - },{ - "name": "bts-almeida-tenreiro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MbHvBbKMndd9P2qwqfiLNaUaAqSSFyabS9aEDXGoXGYgYJfdS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MbHvBbKMndd9P2qwqfiLNaUaAqSSFyabS9aEDXGoXGYgYJfdS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 273132 - },{ - "name": "bts-arubi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KknruZBWTBQNfLsPaHx1W6Zte6fbaruC1cVUu5MJ58hCw7cWs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KknruZBWTBQNfLsPaHx1W6Zte6fbaruC1cVUu5MJ58hCw7cWs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2116004 - },{ - "name": "bts-ben", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5deGAz8QdeSWAE5xfms5kzsUH5R1Fyh39aWScEqYiPoKw3Aetk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5deGAz8QdeSWAE5xfms5kzsUH5R1Fyh39aWScEqYiPoKw3Aetk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7989 - },{ - "name": "bts-bitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D6RCok7uWXr1RfCG5nGXF2YUCem4Jj4LewZVTi9g4zzp7JuQo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D6RCok7uWXr1RfCG5nGXF2YUCem4Jj4LewZVTi9g4zzp7JuQo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7116337 - },{ - "name": "bts-bitcoin3d", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vVmdRxGniMcEPFGpoPgKxgbJcsNQB2QS6ZzoAvBHKwKyRortt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vVmdRxGniMcEPFGpoPgKxgbJcsNQB2QS6ZzoAvBHKwKyRortt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 220687 - },{ - "name": "bts-bitcrab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Pwt9PWY7wpeuS5uyz9MYJhksgLktsFKxgMKXzeUaDo4Ux6S3V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Pwt9PWY7wpeuS5uyz9MYJhksgLktsFKxgMKXzeUaDo4Ux6S3V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18992322 - },{ - "name": "bts-boombastic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xiTm7dzZ7nVCdhkEZoNCcdoATAt2pV7Q53yYtgfhMa3p24Qic", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xiTm7dzZ7nVCdhkEZoNCcdoATAt2pV7Q53yYtgfhMa3p24Qic", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2185378 - },{ - "name": "bts-calabiyau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EU8sAqbiXk9Xw8yidyrghhPUhAhyRZQRLG9LsdZRNHJrgKt2p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EU8sAqbiXk9Xw8yidyrghhPUhAhyRZQRLG9LsdZRNHJrgKt2p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 509925 - },{ - "name": "bts-canth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55fEYTU4pe9xw9fQnytSYZTGEATBVXnQDiJxf66bcG1BmRTfFM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55fEYTU4pe9xw9fQnytSYZTGEATBVXnQDiJxf66bcG1BmRTfFM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7947 - },{ - "name": "bts-cc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v7dzhsq3XgtEroNcpYV5ukxWvbQs1LwYXjLnfbqcasAm1JNrv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v7dzhsq3XgtEroNcpYV5ukxWvbQs1LwYXjLnfbqcasAm1JNrv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5397651 - },{ - "name": "bts-cctv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QtCEtrztgvJUoFj6igKgtVpvWf4WMFHUPdbaH5AvPi3UGULWp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QtCEtrztgvJUoFj6igKgtVpvWf4WMFHUPdbaH5AvPi3UGULWp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-codinat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Gy3FvEw3tyNB4M2KsBukL7ntghM3DGQ5aXBKfQGot3M8roSDn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Gy3FvEw3tyNB4M2KsBukL7ntghM3DGQ5aXBKfQGot3M8roSDn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74240 - },{ - "name": "bts-csaba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85neuJkJhncN2x3Ww2Mw52HpzNaRjYYRujWogm8mdWR6NgKt29", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85neuJkJhncN2x3Ww2Mw52HpzNaRjYYRujWogm8mdWR6NgKt29", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1113794 - },{ - "name": "bts-d", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A1fWHCLkoC6XP61QhSv8BrRjoPswvxbTHusqNex8w3uhkHjE5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A1fWHCLkoC6XP61QhSv8BrRjoPswvxbTHusqNex8w3uhkHjE5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 192959 - },{ - "name": "bts-diaobanxian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gp5Vc7nzmUwsRxoXYQuQv9hFkapE6VWMxt5eS3KJsxZGpwe6K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gp5Vc7nzmUwsRxoXYQuQv9hFkapE6VWMxt5eS3KJsxZGpwe6K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11946 - },{ - "name": "bts-domis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AiWZxgHsW6eBgR9ETD6WYWPvaQZFs9pPqrB7YFw2TYPeWab6L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AiWZxgHsW6eBgR9ETD6WYWPvaQZFs9pPqrB7YFw2TYPeWab6L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-e", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GaX9JXq7xvJJfbQiWvbaQ58LVpTXbRqKmPnwgrjpd1T7iXS5t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GaX9JXq7xvJJfbQiWvbaQ58LVpTXbRqKmPnwgrjpd1T7iXS5t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208538 - },{ - "name": "bts-eastside", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rHYgECkxc3rBxcHGymhFPYY5Sg5Cx5f6CxbbGs6N9cBkFaBs5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rHYgECkxc3rBxcHGymhFPYY5Sg5Cx5f6CxbbGs6N9cBkFaBs5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 251085 - },{ - "name": "bts-ebit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jey3qaDbUMs6wQTx6vbMdQBECYTivag2WbhbcXLfTajKF7PRC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jey3qaDbUMs6wQTx6vbMdQBECYTivag2WbhbcXLfTajKF7PRC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5485579 - },{ - "name": "bts-evan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CkhKJBks2KHQiLVszhyPNcuGVBoFgeTtf4iDHrKfEjcK2RhDH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CkhKJBks2KHQiLVszhyPNcuGVBoFgeTtf4iDHrKfEjcK2RhDH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45600056 - },{ - "name": "bts-fox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tb498vc8hCUqa8FnEhaztPPbUWysDsETZZjuAcLNs7Rch6MWc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tb498vc8hCUqa8FnEhaztPPbUWysDsETZZjuAcLNs7Rch6MWc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 96629 - },{ - "name": "bts-fundon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aux7bGBwWUt2NeLkJcUzcimrMgQBUsis9VQA6efjUPPHADeZb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aux7bGBwWUt2NeLkJcUzcimrMgQBUsis9VQA6efjUPPHADeZb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2562239 - },{ - "name": "bts-g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xq4KCpQbc6EZqDVRUPKKTcqPu1Wy4RGRKH8ALD8cMxgR8HF2i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xq4KCpQbc6EZqDVRUPKKTcqPu1Wy4RGRKH8ALD8cMxgR8HF2i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 140780 - },{ - "name": "bts-gulu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bSRdeakbB1g3M7HBChVQCiryckhNYwNZjyG18wKtJJWbTeWNT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bSRdeakbB1g3M7HBChVQCiryckhNYwNZjyG18wKtJJWbTeWNT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 118492 - },{ - "name": "bts-hackfisher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5e2PKLEkxZbbasVdKa92YjMk6b1SRJtXbNg7rYw1jvdf2XoGkY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5e2PKLEkxZbbasVdKa92YjMk6b1SRJtXbNg7rYw1jvdf2XoGkY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2018 - },{ - "name": "bts-harvey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59bpkMqq6TJ9Jwq8dz6XNUyLzNLzyPR319pyxrGirkLTraC81y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59bpkMqq6TJ9Jwq8dz6XNUyLzNLzyPR319pyxrGirkLTraC81y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15671424 - },{ - "name": "bts-hasher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dc9ejdw8vVoESvmVCHFwX8LCqodziLB3KUoGPGpZErb4vf5d9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dc9ejdw8vVoESvmVCHFwX8LCqodziLB3KUoGPGpZErb4vf5d9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 962 - },{ - "name": "bts-hexu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72WvuBpeqqBARgP6pdj46ExU9RsYrdgae9L6VZzxfg47zbLgZL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72WvuBpeqqBARgP6pdj46ExU9RsYrdgae9L6VZzxfg47zbLgZL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 722 - },{ - "name": "bts-hiquanta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GYQB9naaKMdNWaYfULzGnQTJVW7jCUfYiA8FdzMAptF9nwoeF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GYQB9naaKMdNWaYfULzGnQTJVW7jCUfYiA8FdzMAptF9nwoeF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6409 - },{ - "name": "bts-indominon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Uxi28zyM3MQuWQ3eU5k45FWPG5m94YdBrmU1DWrW5CwayCqyc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Uxi28zyM3MQuWQ3eU5k45FWPG5m94YdBrmU1DWrW5CwayCqyc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ivan-brightly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87mopaNqLDjT1BvzqQR3QjWzWSTgkWnMcwt5sqxHuavCBi1s3m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87mopaNqLDjT1BvzqQR3QjWzWSTgkWnMcwt5sqxHuavCBi1s3m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9473 - },{ - "name": "bts-jin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SEE8abZ7gNVPUYSpm9f3cUdfPV4BSssbbPuKqnXjZHRp59HQR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SEE8abZ7gNVPUYSpm9f3cUdfPV4BSssbbPuKqnXjZHRp59HQR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-john", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cTkAWcJs881Dq7K4KwCFUWxVfNafNfsXr16Li2AEH7BYrkJ8R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cTkAWcJs881Dq7K4KwCFUWxVfNafNfsXr16Li2AEH7BYrkJ8R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 126967 - },{ - "name": "bts-jose-higino", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W73zQHPmKuApHzzNzRVzq8FScdDd65UpMyVbxhoeYXGFiuZpc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W73zQHPmKuApHzzNzRVzq8FScdDd65UpMyVbxhoeYXGFiuZpc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 115781 - },{ - "name": "bts-ke", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T6s1uNTFjM7m1Z9dNESuXooXPEaLKwhZ2aAGKpqseCasshw1P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T6s1uNTFjM7m1Z9dNESuXooXPEaLKwhZ2aAGKpqseCasshw1P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18172 - },{ - "name": "bts-koocaa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x4m27tx9p5XDJR9ZgpnFVhj2YJmi2KL8aeooJdNRTMEwMNeU6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x4m27tx9p5XDJR9ZgpnFVhj2YJmi2KL8aeooJdNRTMEwMNeU6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12965777 - },{ - "name": "bts-littletreebts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AZFEYnE9DKEbGmRs2XiYXfhqYHX4uujv3PfX4rifoo27H4wQB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AZFEYnE9DKEbGmRs2XiYXfhqYHX4uujv3PfX4rifoo27H4wQB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3499504 - },{ - "name": "bts-logxing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i6N5BQ6DU9M4CRVr2jTqC4ZciQ6wia5cZoyfhF3PzNsscxg8y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i6N5BQ6DU9M4CRVr2jTqC4ZciQ6wia5cZoyfhF3PzNsscxg8y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3732 - },{ - "name": "bts-mb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GSC3RVUvCcmquDQdtLgPNoga3kNQysCSABkim6MDwty3snufg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GSC3RVUvCcmquDQdtLgPNoga3kNQysCSABkim6MDwty3snufg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 197570 - },{ - "name": "bts-mf-tzo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vbceVfSVyx1uRp1aA8ZVSMng4MAuZrBdYm611bX1qe1d64teu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vbceVfSVyx1uRp1aA8ZVSMng4MAuZrBdYm611bX1qe1d64teu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 779264 - },{ - "name": "bts-mike-primorac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56b6WTwGx8AfDupfioB5xEvrYADwPL164Z4idPBiZXadUVW5c3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56b6WTwGx8AfDupfioB5xEvrYADwPL164Z4idPBiZXadUVW5c3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13092254 - },{ - "name": "bts-mryang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RnTaM29Kur35FhYQkB5GmNBzGNt4HfkpxQWgtiCsd8pAQ7Agw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RnTaM29Kur35FhYQkB5GmNBzGNt4HfkpxQWgtiCsd8pAQ7Agw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293903 - },{ - "name": "bts-mudshark79", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bp3FPnjHjUMXQgV8x9YhaoyUmVng8p2rZHtML91cfhCPYUPJp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bp3FPnjHjUMXQgV8x9YhaoyUmVng8p2rZHtML91cfhCPYUPJp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1545309 - },{ - "name": "bts-nasdaq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G3ZHBKtRiz7Y8siw4be66zJn5gxKpvGtcHYbA5LBEjaUPVWjk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G3ZHBKtRiz7Y8siw4be66zJn5gxKpvGtcHYbA5LBEjaUPVWjk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-neuronics", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B5wyFSV28NoNwNZNC6FEMQiBVuHcZqxTpgcmKyEeYyYXZ78XP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B5wyFSV28NoNwNZNC6FEMQiBVuHcZqxTpgcmKyEeYyYXZ78XP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22319 - },{ - "name": "bts-nick-tsai810", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n1rsvvNVCWAuqVqdYF25BLjBnUzZtjW7CZffHNBNe5ucQvQ5s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n1rsvvNVCWAuqVqdYF25BLjBnUzZtjW7CZffHNBNe5ucQvQ5s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-nikolai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64FK8SjRMgXCo47xorLTJ8G5A3pvqnRFGXTEKYQjPj3R2ThM67", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64FK8SjRMgXCo47xorLTJ8G5A3pvqnRFGXTEKYQjPj3R2ThM67", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3296375 - },{ - "name": "bts-onceuponatime", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ae77UWtuXm71W8RsaF8yDhhxRme1ByiuEzWsprrB6mLzrmAYY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ae77UWtuXm71W8RsaF8yDhhxRme1ByiuEzWsprrB6mLzrmAYY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19987050 - },{ - "name": "bts-shawn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ffya73xHRdA79D9GgnLFb1SDimzfF5WVzuqabzLcsEwijBda4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ffya73xHRdA79D9GgnLFb1SDimzfF5WVzuqabzLcsEwijBda4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188868 - },{ - "name": "bts-sk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84wSBnPKCUGytmBqPDVgLxXxeBbcR5qC1wCupMVLUNgtL7Qgsk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84wSBnPKCUGytmBqPDVgLxXxeBbcR5qC1wCupMVLUNgtL7Qgsk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28582390 - },{ - "name": "bts-stan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W15NjWQNx1pkmPdwWdCLukR9wMk44PU6tDYdqQ5rQtgy3dwks", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W15NjWQNx1pkmPdwWdCLukR9wMk44PU6tDYdqQ5rQtgy3dwks", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15788154 - },{ - "name": "bts-sva-h4cky0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Kf4oDQo9abkHqGCxqv4XF7bwRDEw4NCnKV8mwJemM5hEDDwGc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Kf4oDQo9abkHqGCxqv4XF7bwRDEw4NCnKV8mwJemM5hEDDwGc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52796 - },{ - "name": "bts-talos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FUkJXNc4gY9sPT7pcheq16MHHXPxzBYZJWhj1ZAyNjHzQnANv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FUkJXNc4gY9sPT7pcheq16MHHXPxzBYZJWhj1ZAyNjHzQnANv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8171636 - },{ - "name": "bts-tao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YayXHaEhmtWLaDF8qMrkCXCJyceHf9i3mgA8jLfAExUuxp6fc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YayXHaEhmtWLaDF8qMrkCXCJyceHf9i3mgA8jLfAExUuxp6fc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80 - },{ - "name": "bts-testz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5agwjNMa4mQHWaPFt4EdmagUHkB5Jg8RJDA7beuLfhFAYUFYjL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5agwjNMa4mQHWaPFt4EdmagUHkB5Jg8RJDA7beuLfhFAYUFYjL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6420835 - },{ - "name": "bts-troglodactyl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cMZ3Was5orWHpkkjDnEjvVmcj16Ekpj4Decb164hY3hrw44Qm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cMZ3Was5orWHpkkjDnEjvVmcj16Ekpj4Decb164hY3hrw44Qm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 655262 - },{ - "name": "bts-trytinysmart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MZKHUAp5C2z6ZtU5twJ6vTSVH8gAv9UEPpr1tQGbpsmTGZJuT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MZKHUAp5C2z6ZtU5twJ6vTSVH8gAv9UEPpr1tQGbpsmTGZJuT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 168659 - },{ - "name": "bts-us-in", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yV4byydu1H5mALPs5P3que1kAYEGJgJYmYrDVdr3QsMq7u1Ph", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yV4byydu1H5mALPs5P3que1kAYEGJgJYmYrDVdr3QsMq7u1Ph", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33294 - },{ - "name": "bts-v", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ucdmzx5TCduvkdAdh85NefQtp8qtov7YH67etXYZULnfW9VG6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ucdmzx5TCduvkdAdh85NefQtp8qtov7YH67etXYZULnfW9VG6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 238981 - },{ - "name": "bts-wackou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SCY7ZFAK72uL1jQjWtchDRvf3nz1m7rkDeEn818WRdZiqEo5f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SCY7ZFAK72uL1jQjWtchDRvf3nz1m7rkDeEn818WRdZiqEo5f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1446091 - },{ - "name": "bts-xeroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WaszCsqVN9hDkXZPMyiUib3dyrEA4yd5kSMgu28Wz47B3wUqa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TPTziKkLexhVKsQKtSpo4bAv5RnB8oXcG4sMHEwCcTf3r7dqE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2474924 - },{ - "name": "bts-xor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hb3u6BoX4ztG5S77pZXQQSgW3ds7VwJo2b7R34hKqJWWJtwDt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hb3u6BoX4ztG5S77pZXQQSgW3ds7VwJo2b7R34hKqJWWJtwDt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188143 - },{ - "name": "bts-yao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wZYLeKZfR3VbkucPUPyDhYpbTN8w1AiPwF252oa3eW6b7gXKt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HesBMEhwT1SHDmbgBDH3ytHW2FhUZEwpBozDqbrqmQxzPVXsj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3707364 - },{ - "name": "bts-bitsuperlab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eajtsk7QHkgxB7kNjX9EYiqhfEvdLBdfF98WVJyRVJKLo3TdG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eajtsk7QHkgxB7kNjX9EYiqhfEvdLBdfF98WVJyRVJKLo3TdG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165763 - },{ - "name": "bts-nathan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T2swLv3QqBAzP1hByB5khUjNFEahtp1fYEHL2GFubMvNGVXyG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T2swLv3QqBAzP1hByB5khUjNFEahtp1fYEHL2GFubMvNGVXyG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10001866 - },{ - "name": "bts-delegated-proof-of-steak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hMfwJNXbr99JA8cBW8ynS8pPHCoKD5rWhT3yHpgEFzWhsW1EV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hMfwJNXbr99JA8cBW8ynS8pPHCoKD5rWhT3yHpgEFzWhsW1EV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3511880 - },{ - "name": "bts-ak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rgpx5qmo5TnUUAAhnQMq1BrpMbbfzn9Wajogg4qsgqNpWkbK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rgpx5qmo5TnUUAAhnQMq1BrpMbbfzn9Wajogg4qsgqNpWkbK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 260470 - },{ - "name": "bts-dan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JvEXv853AzosCgJEpHLDreNG3pDwr9uxYeA86cL587ooKLmJG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JvEXv853AzosCgJEpHLDreNG3pDwr9uxYeA86cL587ooKLmJG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1036013 - },{ - "name": "bts-bytemaster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g1AUJpyD7bMer8RfQ8R1D5BkgUUVRyuLqGWQsXuXvp9C7tERz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g1AUJpyD7bMer8RfQ8R1D5BkgUUVRyuLqGWQsXuXvp9C7tERz", - 1 - ],[ - "TEST7akonwLi8oMFRf3vQHSAQh9MW5CRX58x7r3L65d3tPk4UG1H3u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-jabbajabba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X9joebNDHaoZKB5psoDyhXyvnGLqSpyQ2AqYohBnTSkTdsNWv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X9joebNDHaoZKB5psoDyhXyvnGLqSpyQ2AqYohBnTSkTdsNWv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1523958 - },{ - "name": "bts-jabbajabba2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PC4fDnG6ZiqreBoze23FgJHinVyTByoibNTawxVgS8EsQkW4t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PC4fDnG6ZiqreBoze23FgJHinVyTByoibNTawxVgS8EsQkW4t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-pptall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LiXFSUZoozoFiBzTban9XJxkHSHGBn5KA95hRqYaYnnAU9RKj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LiXFSUZoozoFiBzTban9XJxkHSHGBn5KA95hRqYaYnnAU9RKj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21438 - },{ - "name": "bts-chinese", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST719HCdZTf5je1xLdDYLSNtrYoKukJZYuc5kAUPGGKv6RgTjHdb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST719HCdZTf5je1xLdDYLSNtrYoKukJZYuc5kAUPGGKv6RgTjHdb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 796787 - },{ - "name": "bts-spartako", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mgup8evDqMnT86L7scVebRYDC2fwAWmygPEUL43LjstQegYCC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mgup8evDqMnT86L7scVebRYDC2fwAWmygPEUL43LjstQegYCC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5975 - },{ - "name": "bts-spartako2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64P4Tij8F4CEvAiS9bheNs9vGoUESjKT61Va6cdoHGVsBMtN1H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64P4Tij8F4CEvAiS9bheNs9vGoUESjKT61Va6cdoHGVsBMtN1H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 101 - },{ - "name": "bts-spartako1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ar4j53kFWuEZQ9XhxbAja4YXMPJ2EnUg5QcrdeMFYUNMMNJbe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ar4j53kFWuEZQ9XhxbAja4YXMPJ2EnUg5QcrdeMFYUNMMNJbe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1877932 - },{ - "name": "bts-zhujunchao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aMtzpZbsUoBB33hbz7bwKiucVTTAw2YDb5Zw27o8KvfqC4VV6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aMtzpZbsUoBB33hbz7bwKiucVTTAw2YDb5Zw27o8KvfqC4VV6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-bitshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63BjJBsUxmiqT1xt5KKeuVZ9MuJUEdevAhji7Gz8Y4WowuJnDG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63BjJBsUxmiqT1xt5KKeuVZ9MuJUEdevAhji7Gz8Y4WowuJnDG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11044 - },{ - "name": "bts-mhd91314", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MZCwJAwyV8xHv5KJaRXrYZsZQoT7NP3whxVpLv1wU8uKHhzWR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MZCwJAwyV8xHv5KJaRXrYZsZQoT7NP3whxVpLv1wU8uKHhzWR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 140367 - },{ - "name": "bts-znuf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fxTM5N9CVVudpWagJ9hTRUgxwZNhv9BcM3mNXtQFbDRACgC7m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fxTM5N9CVVudpWagJ9hTRUgxwZNhv9BcM3mNXtQFbDRACgC7m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 107371 - },{ - "name": "bts-free", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mr4yAggpNtfGD8rv45o34xbeiMkwutgPLgjFTjfkxhFcgVLVz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mr4yAggpNtfGD8rv45o34xbeiMkwutgPLgjFTjfkxhFcgVLVz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185131 - },{ - "name": "bts-liondani", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zT2XD7YXJpAPyRKq8Najz4R5ut3tVMEfK8hqUdLBbBRjTjjKy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zT2XD7YXJpAPyRKq8Najz4R5ut3tVMEfK8hqUdLBbBRjTjjKy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1375507 - },{ - "name": "bts-heyd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FBotyWBhso4NAh99srCw1dt4b5VYZUBHVpNo5zasGf8q55xe4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FBotyWBhso4NAh99srCw1dt4b5VYZUBHVpNo5zasGf8q55xe4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 231 - },{ - "name": "bts-titan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DCTGXhmkEtwk41HU5fHywwccyt9dQ46Y2NL9cFxT8fYCcTcUF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DCTGXhmkEtwk41HU5fHywwccyt9dQ46Y2NL9cFxT8fYCcTcUF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2339998 - },{ - "name": "bts-metalallen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qpAQM3pV13T3mJVFDJooiqsb8PHc1jVCnZR2wQx8RkSTxsmC1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qpAQM3pV13T3mJVFDJooiqsb8PHc1jVCnZR2wQx8RkSTxsmC1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5293972 - },{ - "name": "bts-abc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87TTQytpjMcMNEe8zy9BAB3KXsLYQnmEkPYWhDRdMU6wY9BHro", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87TTQytpjMcMNEe8zy9BAB3KXsLYQnmEkPYWhDRdMU6wY9BHro", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ags", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74XDqoJkRHiaboB5tzbHKd2NXZPVJ5AQWDGw1QSWGtys1nkt5F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74XDqoJkRHiaboB5tzbHKd2NXZPVJ5AQWDGw1QSWGtys1nkt5F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11844879 - },{ - "name": "bts-malcolmjmr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qCajhHXVctntQE6g9KhLj42VN1ndLijvczrnZFH9Q1dndFBZm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qCajhHXVctntQE6g9KhLj42VN1ndLijvczrnZFH9Q1dndFBZm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EE7yGUokM6LZHM1HciPrJS8zEJMpqtCNDqNx1juGDHBqdbtA1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EE7yGUokM6LZHM1HciPrJS8zEJMpqtCNDqNx1juGDHBqdbtA1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-yangsbo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5arJiEaNos6EgJeQGqDAEVP7tZX3X5j1GsD6Kc2tsgwaFghXpG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5arJiEaNos6EgJeQGqDAEVP7tZX3X5j1GsD6Kc2tsgwaFghXpG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23731 - },{ - "name": "bts-state-grid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vDztNNx8y9GLTvbA4T3CXKgS6LDRLPiRCScT1QUVMeGXqd3xd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vDztNNx8y9GLTvbA4T3CXKgS6LDRLPiRCScT1QUVMeGXqd3xd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 146 - },{ - "name": "bts-clout", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ALVNzTBEKRpWWDPs2fS39q8ZWigj7fLaKabpr5E1YAecCKSyu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ALVNzTBEKRpWWDPs2fS39q8ZWigj7fLaKabpr5E1YAecCKSyu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83iZCgyEafDSEmxfRS9NtSVc3YgkGVgX1YaPVR61hEsN1xnQHk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83iZCgyEafDSEmxfRS9NtSVc3YgkGVgX1YaPVR61hEsN1xnQHk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1767308 - },{ - "name": "bts-iii", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54B1VvmaxBpxZ9N1XNXY5a5gnom9chRKFAC5LgsfGpfDkDyYTQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54B1VvmaxBpxZ9N1XNXY5a5gnom9chRKFAC5LgsfGpfDkDyYTQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 703 - },{ - "name": "bts-anonymous", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pPHHco8xRsT2WaHWZDeuwQxo7MAJ9PkygySk6VxacZyqdediP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jq78886qKkpVrXWNwcZuCf23BUcoGYud3abZDPCVn4FWiVkDD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22435060 - },{ - "name": "bts-coldstorage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST884N6UapZNK2whbrvg4FfUYDdzJPimGP6NFXBUtM2sYbfGQxEB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST562CGUuma8q4vVqKjoQUKFoG9vsn6qNDAEmDrBuwoMUuqBBWJ2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-ok", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Akt43Dt6LBPQuX8kbJ34QpR6FS4gFAzqAHDqpgERyz1Dsp7Tg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Akt43Dt6LBPQuX8kbJ34QpR6FS4gFAzqAHDqpgERyz1Dsp7Tg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-bitasset", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jNiwRjULseR8di5Zy4qs148USziNt1RJXhqRLMj2t21wsuiD6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jNiwRjULseR8di5Zy4qs148USziNt1RJXhqRLMj2t21wsuiD6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-xeldal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RYcutQ5eZdTFL4a9unumbauoVzAa5XSgiQWXucPVn9C2sm7dM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RYcutQ5eZdTFL4a9unumbauoVzAa5XSgiQWXucPVn9C2sm7dM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2136722 - },{ - "name": "bts-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rtZeoD6ixo4RK8FPhnXs9eVK8DDnWS8NNmAkbamoobjV8hf9P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rtZeoD6ixo4RK8FPhnXs9eVK8DDnWS8NNmAkbamoobjV8hf9P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4209387 - },{ - "name": "bts-king", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i6QoriXehzRHvNCLsThd15MkyHrJwS1PHRpbpoNtM4zYGmFhu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i6QoriXehzRHvNCLsThd15MkyHrJwS1PHRpbpoNtM4zYGmFhu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-chinesecommunity", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WTmJMfVmpoAjA98MSEsfwB9QPSNVauVexqqRKrNyMSxuGHhQs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WTmJMfVmpoAjA98MSEsfwB9QPSNVauVexqqRKrNyMSxuGHhQs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1849760 - },{ - "name": "bts-xxx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eEGtV7rtd9ZiVtXRgXfpXdacYdYgiW6UfbRXGcnmbNTRV5hdF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eEGtV7rtd9ZiVtXRgXfpXdacYdYgiW6UfbRXGcnmbNTRV5hdF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-tim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7okHzLQJjFRzYg1BAZALAPAn3mmwf4UQbk9pBTH8YjY8q8sxvo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7okHzLQJjFRzYg1BAZALAPAn3mmwf4UQbk9pBTH8YjY8q8sxvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1305 - },{ - "name": "bts-minervato", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jG43wZcDrPGxtEV7PWzFZKTzZt96AZL579RyzzgSHvKrGcycx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jG43wZcDrPGxtEV7PWzFZKTzZt96AZL579RyzzgSHvKrGcycx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 857012 - },{ - "name": "bts-fbi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nXTT2feSn6zr5XfLbbjWRygt6d77bfXMsdkuvBBHUWC9urtRD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nXTT2feSn6zr5XfLbbjWRygt6d77bfXMsdkuvBBHUWC9urtRD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7700 - },{ - "name": "bts-gold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z7DF2biRVFZXtStskLwYk3uf5Dadpk9RFSimFyaHHX5o1tGja", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z7DF2biRVFZXtStskLwYk3uf5Dadpk9RFSimFyaHHX5o1tGja", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43020 - },{ - "name": "bts-freedom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56BZw1YNwHSRhQyiggf6fRwrAHSxQpc6ki8QeZumVfpWQgEoqw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56BZw1YNwHSRhQyiggf6fRwrAHSxQpc6ki8QeZumVfpWQgEoqw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6670470 - },{ - "name": "bts-manutd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yeJJKpU3qhS26uQXo4nN4HoZcQWJnFZZZvrGtQcsW7tPxsJYs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yeJJKpU3qhS26uQXo4nN4HoZcQWJnFZZZvrGtQcsW7tPxsJYs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1016113 - },{ - "name": "bts-dacs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68NmWbKLxNSdz3Cwhgh9ruPVhg1XSdub3Td4LyXXbsxkqJWsDS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68NmWbKLxNSdz3Cwhgh9ruPVhg1XSdub3Td4LyXXbsxkqJWsDS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4900 - },{ - "name": "bts-tao-bao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-xiaoshan", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-xiaoshan", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 2573 - },{ - "name": "bts-guru", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CWJ7G5uEC4rZsWKCGkWcbFdrQNA4G1TGrj6wiFMLSvPcf6fwz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CWJ7G5uEC4rZsWKCGkWcbFdrQNA4G1TGrj6wiFMLSvPcf6fwz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1049695 - },{ - "name": "bts-coin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57TNhZUC8aen7ZdJGnzs2douGC63QK795F6W8nXbyH3UnZiq49", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57TNhZUC8aen7ZdJGnzs2douGC63QK795F6W8nXbyH3UnZiq49", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-norge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WD8kNdLe9x7P6cQcpHM7VZa4xN1BmPdd79sLjhEWmE6yV9W2L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WD8kNdLe9x7P6cQcpHM7VZa4xN1BmPdd79sLjhEWmE6yV9W2L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-coolspeed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86DZY1DMiZxNVdWThpDNGDy6U5HB3T4fMhB6TcxBJWy7fS43py", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86DZY1DMiZxNVdWThpDNGDy6U5HB3T4fMhB6TcxBJWy7fS43py", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1869956 - },{ - "name": "bts-riverhead", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BJYGHftujnbttFFKX6YacnvsMd4sbJrbucg682GiU4vmXHTik", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BJYGHftujnbttFFKX6YacnvsMd4sbJrbucg682GiU4vmXHTik", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10011696 - },{ - "name": "bts-assets", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L8C4h3qhBJjLMS6tkHsXydKWyRzcDsaZzeVgWMeHZz4QgSUXF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L8C4h3qhBJjLMS6tkHsXydKWyRzcDsaZzeVgWMeHZz4QgSUXF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12105168 - },{ - "name": "bts-bitcoiners", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rq5GS4q1a3TRMMekFtTf9DkKfA8urJTQPuk7Dje9HvkCALfUB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rq5GS4q1a3TRMMekFtTf9DkKfA8urJTQPuk7Dje9HvkCALfUB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33828 - },{ - "name": "bts-fabian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cbJFGWWsuF29vKNKRNeZ2uhhztFca6cKynRiKe58VJ8AavHw1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PwSe9nuCyFfwjirh2wawpd9aBivECsg7zLjGBc3yK45NDkhVL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 210693 - },{ - "name": "bts-bits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Hy75qhvPLNfSmW78eUtBrr1XTbfW67A6H5PvUHj1wgiU21KNL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Hy75qhvPLNfSmW78eUtBrr1XTbfW67A6H5PvUHj1wgiU21KNL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61 - },{ - "name": "bts-ie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NBXx3CPADgxLQ3M3PGRuLDMrhg71W417T9ZwBCk6bjoJ2ieMP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NBXx3CPADgxLQ3M3PGRuLDMrhg71W417T9ZwBCk6bjoJ2ieMP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 340 - },{ - "name": "bts-forex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LhDwztENZNLjDEfcy3qjxc1zJRkc9PQH6gBwP9ZYSBUQw9bnN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LhDwztENZNLjDEfcy3qjxc1zJRkc9PQH6gBwP9ZYSBUQw9bnN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10924 - },{ - "name": "bts-hyperetas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5arfRPsihjaUz1zbYM9rGd2VG4RtPJ6517BCdefCoRbvo5yFh9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5arfRPsihjaUz1zbYM9rGd2VG4RtPJ6517BCdefCoRbvo5yFh9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-tuckfheman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jy1BhsFf6xnYucV147DpTksdAn8YuLr45umYYD95brC4e8Bmn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jy1BhsFf6xnYucV147DpTksdAn8YuLr45umYYD95brC4e8Bmn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-cryptomoon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L9cGUTsxEB72r49TmhzSvs1ZjfYsmo4omfRDTUU9WP8TCHyT6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L9cGUTsxEB72r49TmhzSvs1ZjfYsmo4omfRDTUU9WP8TCHyT6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-jerryliu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UVrZtPBxzYgeRcybHys7vGUahoQG2RBmcQULoSKFYrn1DjnMP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UVrZtPBxzYgeRcybHys7vGUahoQG2RBmcQULoSKFYrn1DjnMP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-spring", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L8e3S1rvC9q4RXTTEUK3YAitkG33EVBiiHSXdfqGDX7KwAtjS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L8e3S1rvC9q4RXTTEUK3YAitkG33EVBiiHSXdfqGDX7KwAtjS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14758343 - },{ - "name": "bts-nsn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74N3YJJMyv7qNgRAFqWadp32s6CWewHzwvkoS3QS7jhr6vnmnC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74N3YJJMyv7qNgRAFqWadp32s6CWewHzwvkoS3QS7jhr6vnmnC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4178 - },{ - "name": "bts-angel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hC5RAxkenTAfaBncgyH4RNJKtkPJURXnuCabqCf7iu5QYL3ZW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bytemaster", - 1 - ],[ - "bts-stan", - 1 - ] - ], - "key_auths": [[ - "TEST7W15NjWQNx1pkmPdwWdCLukR9wMk44PU6tDYdqQ5rQtgy3dwks", - 1 - ],[ - "TEST7hC5RAxkenTAfaBncgyH4RNJKtkPJURXnuCabqCf7iu5QYL3ZW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32607262 - },{ - "name": "bts-mark", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LPUmGqkGyUjKtBbN3PpMKNrEo9b9JXfbhvfmEdN5G9KBG1rLC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LPUmGqkGyUjKtBbN3PpMKNrEo9b9JXfbhvfmEdN5G9KBG1rLC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-code", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bVW8fbJwCqAatEPQyGUUrUpMbvXVTEkMkkLbdLnUFjfzMf2Cu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bVW8fbJwCqAatEPQyGUUrUpMbvXVTEkMkkLbdLnUFjfzMf2Cu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36312440 - },{ - "name": "bts-block", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r2tALGeo35517xiMYSeB21qpm6JkfBuwz6AnVzvQzRTAG1ZyA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r2tALGeo35517xiMYSeB21qpm6JkfBuwz6AnVzvQzRTAG1ZyA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17868 - },{ - "name": "bts-aaaa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6myVaDaj5XsUvBkyU594W1hy22evsn18gwixkU3KWcHgWHVFcW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6myVaDaj5XsUvBkyU594W1hy22evsn18gwixkU3KWcHgWHVFcW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-dele-puppy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dPJTkzrFesdMSSrghi1rNoKae7KU9neFGnycEC9amydS86ALi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75xxKG4ZeztPpnhmFch99smunUWMvDy9mB6Le497vpAA3XUXaD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 935059 - },{ - "name": "bts-kfc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Psu121GrAr5KxVeKq6Hju4CVGZBkz77jm6dvmku52ozZ6eQ3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Psu121GrAr5KxVeKq6Hju4CVGZBkz77jm6dvmku52ozZ6eQ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-enki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k4imfxnj6c9zkGHd2PhJHDtLmuPNJeoTNxN54FVye58qPihWo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k4imfxnj6c9zkGHd2PhJHDtLmuPNJeoTNxN54FVye58qPihWo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40753796 - },{ - "name": "bts-a0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bKqTfHohbnmgRDWVKJZkdQp5WQByMbeej7BC5PDwAR9BpLo94", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bKqTfHohbnmgRDWVKJZkdQp5WQByMbeej7BC5PDwAR9BpLo94", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21604 - },{ - "name": "bts-acs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fwsJyCXhXcZx3s8ME5tP6igwKgWbTw1CqkLQh7fY5humXajQS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fwsJyCXhXcZx3s8ME5tP6igwKgWbTw1CqkLQh7fY5humXajQS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-focus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GsM5HXwbRK3Xb9THVuyobLUXmrHKbqMJQRREu4zwoPqD53aHG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GsM5HXwbRK3Xb9THVuyobLUXmrHKbqMJQRREu4zwoPqD53aHG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-skystone0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XbGmgnaZVmq3LKU8PGGCQFUdj8TfDenne7Y58nNiqCAFuVxY4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XbGmgnaZVmq3LKU8PGGCQFUdj8TfDenne7Y58nNiqCAFuVxY4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4934 - },{ - "name": "bts-skystone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U7UH9xhkrkj4aw9cWX5fXNZKWYvNLcBjsJkyvo7fArJt33sWp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U7UH9xhkrkj4aw9cWX5fXNZKWYvNLcBjsJkyvo7fArJt33sWp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20151 - },{ - "name": "bts-valkyr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ym3MBWRVfgB783CK2XKHUmRyoo3BQZqPurgFJrR6JkozQ7mQa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ym3MBWRVfgB783CK2XKHUmRyoo3BQZqPurgFJrR6JkozQ7mQa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-xiaoshu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vzv18uqJ4hjeZTQTqT8ERTozYHVJF9yVeiuqSvm9c4qxZFMUM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vzv18uqJ4hjeZTQTqT8ERTozYHVJF9yVeiuqSvm9c4qxZFMUM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-stone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Uj63ZZrZrEmrYKXW6sg3u2QMEXBZkoewRumiJ5RnBUeaD2Kfa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Uj63ZZrZrEmrYKXW6sg3u2QMEXBZkoewRumiJ5RnBUeaD2Kfa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18874 - },{ - "name": "bts-aab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YTkZoSMdSYr3WqqBiRQDEWswmKueYuqSFrVbGgimc4DMQ7Ajr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YTkZoSMdSYr3WqqBiRQDEWswmKueYuqSFrVbGgimc4DMQ7Ajr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8654 - },{ - "name": "bts-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v5NPgGofM53F7HV4eNAkjyBVKUEQEb2gQKiERYgUWs4EFPcXR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v5NPgGofM53F7HV4eNAkjyBVKUEQEb2gQKiERYgUWs4EFPcXR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 249 - },{ - "name": "bts-a5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iLEVkALqMDkfSPgPMgpR7KHqGRmcpTjoHUbPReQYguAuYE3pX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iLEVkALqMDkfSPgPMgpR7KHqGRmcpTjoHUbPReQYguAuYE3pX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-fuzhou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GTSi8fx5mkmVKx3PtgwPqrbMhJd8hijbMJthZuB8bfTFhbaxx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GTSi8fx5mkmVKx3PtgwPqrbMhJd8hijbMJthZuB8bfTFhbaxx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3687 - },{ - "name": "bts-ray", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hHqSFMFaNkpKUPgLwzKi2McFC4zSNDcMnKkv87oDEFreEQuaQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hHqSFMFaNkpKUPgLwzKi2McFC4zSNDcMnKkv87oDEFreEQuaQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111620 - },{ - "name": "bts-radi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bDhN2VntcfFNnDVF8PX7BkE9Rvmmx56efuYBm6FKo5bTtExxG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bDhN2VntcfFNnDVF8PX7BkE9Rvmmx56efuYBm6FKo5bTtExxG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1476193 - },{ - "name": "bts-caren", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xV9rSk3bAtBc3Kci4c7stYLdgJRbEfVBWNdQtPf4WYozx5Qi1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xV9rSk3bAtBc3Kci4c7stYLdgJRbEfVBWNdQtPf4WYozx5Qi1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1888 - },{ - "name": "bts-yinchg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KvNKRvWpYaydKvsrgYgAcHqiVgT2FAZvFyq9bgnUZivp32BSj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KvNKRvWpYaydKvsrgYgAcHqiVgT2FAZvFyq9bgnUZivp32BSj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8740929 - },{ - "name": "bts-bet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sgcRhhD7XRP3r6DquoB7ZxTq12AcTXAn9gYM5raCRfuPehowd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sgcRhhD7XRP3r6DquoB7ZxTq12AcTXAn9gYM5raCRfuPehowd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-lighthouse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71TEGNJ2tVJS1oSSRkhSmFj2rb8RciEQMHjVJ25umgPLD4gnww", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71TEGNJ2tVJS1oSSRkhSmFj2rb8RciEQMHjVJ25umgPLD4gnww", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136 - },{ - "name": "bts-buckfankers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U345G45pbp4r4aCTzwvXm1GHJA9mFst6Pws3tNAk6DTt8dFxY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U345G45pbp4r4aCTzwvXm1GHJA9mFst6Pws3tNAk6DTt8dFxY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-tuckfheman-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tbhGheKhNNPuJ8HbQ83scaZAd3yi32mvUnc5y7PMTMgwrGsBq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tbhGheKhNNPuJ8HbQ83scaZAd3yi32mvUnc5y7PMTMgwrGsBq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-zara", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cHRtoKPskKFLRR4AoF4zRzvXfJVKJjVMpA8yS9TuALPVLPDxQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cHRtoKPskKFLRR4AoF4zRzvXfJVKJjVMpA8yS9TuALPVLPDxQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-mac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i6Cz8KYo351oMBSQkxW8hMvFc2mNHcjv9Q1Ax9G4oA5NFPwJj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i6Cz8KYo351oMBSQkxW8hMvFc2mNHcjv9Q1Ax9G4oA5NFPwJj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 189993 - },{ - "name": "bts-state-grid-of-china", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zqH7C99DkdttL5uvkzjT8bv9gszGQQPEE5gx1Gtg9uWEAGMB3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zqH7C99DkdttL5uvkzjT8bv9gszGQQPEE5gx1Gtg9uWEAGMB3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-mini", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66tnt4XNG7GDee1GYTPmRPpySDBJFGnmtUxW2enckEhDZrFB6u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66tnt4XNG7GDee1GYTPmRPpySDBJFGnmtUxW2enckEhDZrFB6u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188225 - },{ - "name": "bts-missu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v1YJVC7JeBdBskwycezPgy1Zj6XQtvC3AP3HEzJvKkEXDuxWX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v1YJVC7JeBdBskwycezPgy1Zj6XQtvC3AP3HEzJvKkEXDuxWX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 241493 - },{ - "name": "bts-rzshenwei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZdHZZWPaGWrDZvS6zZNHGNEvPmPKSLigyfuGqUyQwm9nLtQ7u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZdHZZWPaGWrDZvS6zZNHGNEvPmPKSLigyfuGqUyQwm9nLtQ7u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33256 - },{ - "name": "bts-rzshenwei01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Tj6XLD8uv7mUA6SNsj8oyEeHpQ246ri5xCYjskMFrJsRqzf8f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Tj6XLD8uv7mUA6SNsj8oyEeHpQ246ri5xCYjskMFrJsRqzf8f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1401627 - },{ - "name": "bts-ping", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AkvjA1Hh1kmNvwrizDHBdfqrgqibXrys3LWeQs5jwL8byKhJG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AkvjA1Hh1kmNvwrizDHBdfqrgqibXrys3LWeQs5jwL8byKhJG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-smartisan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jvhspFWWG1WPcp85CkimpSwQg7AxiF1HKPXoSQqq3Gt8jcEBM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jvhspFWWG1WPcp85CkimpSwQg7AxiF1HKPXoSQqq3Gt8jcEBM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-t6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xmd7aKXtE2X1KPNrkfpf9QgXerKCVEodfQXkVETEyETFnyyhF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xmd7aKXtE2X1KPNrkfpf9QgXerKCVEodfQXkVETEyETFnyyhF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-ali", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u9pBeY8Hnsh4QFhU4DaD39DEi8rMPdyrxNYeDzszFaseZuDxz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u9pBeY8Hnsh4QFhU4DaD39DEi8rMPdyrxNYeDzszFaseZuDxz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 381 - },{ - "name": "bts-zhifubao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ddYF4WZuQS8MQDxMSEC6yTzieYtjzGhf5Lu8R64sqPk92X9xj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ddYF4WZuQS8MQDxMSEC6yTzieYtjzGhf5Lu8R64sqPk92X9xj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-wal-mart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bBNJeJh6v7mEoAo67GKUBpPvNnM2pXschP3ZWHwMLpbe8mFt5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bBNJeJh6v7mEoAo67GKUBpPvNnM2pXschP3ZWHwMLpbe8mFt5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-avanty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EFLuiQPGGt5XxYgT5x7TkzMYRR2PRUMamwcC8ur36uZni5G26", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EFLuiQPGGt5XxYgT5x7TkzMYRR2PRUMamwcC8ur36uZni5G26", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 283371 - },{ - "name": "bts-wang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56wZDwVA1BRFdbMK8ajdf9Spup9q3AeYs5YxyCJfjdYeHYESPZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56wZDwVA1BRFdbMK8ajdf9Spup9q3AeYs5YxyCJfjdYeHYESPZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63511 - },{ - "name": "bts-volkswagen1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cYiRopYoxVYHyLbaK9aX7VkwgcBav6LTBobGc8LJSKpH3sd5G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cYiRopYoxVYHyLbaK9aX7VkwgcBav6LTBobGc8LJSKpH3sd5G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-toyotamoto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gmSt2vwWrB27cSPP68rQcnDTgeWgdFkBGv6zWb4ER6hsRNsCy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gmSt2vwWrB27cSPP68rQcnDTgeWgdFkBGv6zWb4ER6hsRNsCy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-total", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BEAR78F2nJUVB7nm46LZhP5h1Vgz61dZgX68vFydSoSACy3Gd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BEAR78F2nJUVB7nm46LZhP5h1Vgz61dZgX68vFydSoSACy3Gd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-retail", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54dkV2HbQfHWGpGhnDucXTtK8nasvFbbycQo5BNeYuorXYd7Ji", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54dkV2HbQfHWGpGhnDucXTtK8nasvFbbycQo5BNeYuorXYd7Ji", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-zhaodong1982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cNZVuoKcwncYJuP3WiyQByFnLBB3qXVtqMgWpo9grHKJUcqNn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cNZVuoKcwncYJuP3WiyQByFnLBB3qXVtqMgWpo9grHKJUcqNn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1661253 - },{ - "name": "bts-att", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TeCqjaD9hvN2zJwjq1p7Zihjy9nucPSwqD3t4n9DDpb5c1p6E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TeCqjaD9hvN2zJwjq1p7Zihjy9nucPSwqD3t4n9DDpb5c1p6E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-at-t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jfBrE4tJuqJ2puVxTP5x8b9absTkA9gLrCkj8ttBRzNeEjAu7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jfBrE4tJuqJ2puVxTP5x8b9absTkA9gLrCkj8ttBRzNeEjAu7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-jx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UnyNvK5QCwjmip3oGyneeEo1X6o4DBM8w7z7NthC1dnfRTJEH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UnyNvK5QCwjmip3oGyneeEo1X6o4DBM8w7z7NthC1dnfRTJEH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-statoil", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EdFmJHihexQEySgcKXgEiznH9K6QRHBJPaE6k8Fsg9QtwU3x3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EdFmJHihexQEySgcKXgEiznH9K6QRHBJPaE6k8Fsg9QtwU3x3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-jpmorgan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55oyFUCGdKuppCXbQENzSoZAvRzqYX98wTeu2qva6Z8BBdqqRQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55oyFUCGdKuppCXbQENzSoZAvRzqYX98wTeu2qva6Z8BBdqqRQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-costco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST863g3FE9858H9mdLpTLTWYNx7PctrtBgacGkYXH8DA2MuKxEgV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST863g3FE9858H9mdLpTLTWYNx7PctrtBgacGkYXH8DA2MuKxEgV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-starbucks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sxvpCrYi6rFZgfzZgkq2B8KyfZvCNdFXNRGMpJMkANzQEyzN4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sxvpCrYi6rFZgfzZgkq2B8KyfZvCNdFXNRGMpJMkANzQEyzN4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124 - },{ - "name": "bts-btsxchina", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WTmJMfVmpoAjA98MSEsfwB9QPSNVauVexqqRKrNyMSxuGHhQs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WTmJMfVmpoAjA98MSEsfwB9QPSNVauVexqqRKrNyMSxuGHhQs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 504758 - },{ - "name": "bts-starbuckspay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86dfQ8AuL6ZQDBQhyXvh7NgpGjMvHm3ezpHDCTpabaLDo9LAnp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86dfQ8AuL6ZQDBQhyXvh7NgpGjMvHm3ezpHDCTpabaLDo9LAnp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-aphrodite", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RjtE9F9CXjnRXewA38FFcvgvmDfbC17mjHZbd4uvgaPdNmcH6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RjtE9F9CXjnRXewA38FFcvgvmDfbC17mjHZbd4uvgaPdNmcH6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fortune", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B5zUVGzWAhGdD4W2fEc8tXbDgg6vefthcHq1io3ZhFiApMRhR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B5zUVGzWAhGdD4W2fEc8tXbDgg6vefthcHq1io3ZhFiApMRhR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161 - },{ - "name": "bts-yimin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ijY48mcQGWKWoEAj8D4pLXY2f4jhu1kTMegHPpN3rpLXThv3o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ijY48mcQGWKWoEAj8D4pLXY2f4jhu1kTMegHPpN3rpLXThv3o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-yiminjiayuan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sTmtRZLH2EzMDBwarEaz3xx8EMtMgCkqkBeuoDvLqEd65Pckj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sTmtRZLH2EzMDBwarEaz3xx8EMtMgCkqkBeuoDvLqEd65Pckj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-global", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83hHpjtmFW863zMcDYyV9fT52k5T6BdvNoF4iV5GBfLjfc1WxX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83hHpjtmFW863zMcDYyV9fT52k5T6BdvNoF4iV5GBfLjfc1WxX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86 - },{ - "name": "bts-laow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UZeRbWthzQhi3u7wxYUxPgzF791V9CgwsPA3bh49moSNABYWy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UZeRbWthzQhi3u7wxYUxPgzF791V9CgwsPA3bh49moSNABYWy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19031482 - },{ - "name": "bts-roje", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84cQT6Aij2q6PgMxDVxHvKPABcxcZ9ee18Y3ym1B35eLwcqNfg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84cQT6Aij2q6PgMxDVxHvKPABcxcZ9ee18Y3ym1B35eLwcqNfg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32260272 - },{ - "name": "bts-sanjiang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CYSQCg6HGfRRSPEoF97ynRrG38wpCHsHqom7zSmkUKV5dC9SY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CYSQCg6HGfRRSPEoF97ynRrG38wpCHsHqom7zSmkUKV5dC9SY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-oushang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VpgTB1xESrZzyVJjg6g68Din3BQ98pdf7t5RqRQVUtvEn7b4Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VpgTB1xESrZzyVJjg6g68Din3BQ98pdf7t5RqRQVUtvEn7b4Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-auchan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6spD2B5pX99XnVNuEiJZPG6MVzvbsKx6sLj2vv2gVLjwHSumwX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6spD2B5pX99XnVNuEiJZPG6MVzvbsKx6sLj2vv2gVLjwHSumwX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-bmw-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71VuvuSJbix8aZd6fMJUQeTtAnzjUXUWGo8pQp7XA7qxwrkJe4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71VuvuSJbix8aZd6fMJUQeTtAnzjUXUWGo8pQp7XA7qxwrkJe4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-ericgu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89yRyHJX67t6DdF3Xad4LHs4gN5DcVBdG5qhXMjnDTuXpqPDkT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89yRyHJX67t6DdF3Xad4LHs4gN5DcVBdG5qhXMjnDTuXpqPDkT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119 - },{ - "name": "bts-kinglaw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71TsAE4FQ3ipCeppzJtr92B7uq5t28mB64n59M1BGUY7nR1wrt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71TsAE4FQ3ipCeppzJtr92B7uq5t28mB64n59M1BGUY7nR1wrt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 574925 - },{ - "name": "bts-r3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZhGYz7Ker2TyRuBjkbeorjMYKWDoYdLUbrVffJw44dD4v6Awo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZhGYz7Ker2TyRuBjkbeorjMYKWDoYdLUbrVffJw44dD4v6Awo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2768 - },{ - "name": "bts-ppt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jXe84V2oYbTpN5BWeSuJVJ4EVRCQNg3ChNS4R9pzji3SjpFUx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jXe84V2oYbTpN5BWeSuJVJ4EVRCQNg3ChNS4R9pzji3SjpFUx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-ten-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KFgwof9LoUK1DPvjeqT6HuRK3n1STYhc7atjxgaUb1g8x7mmP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KFgwof9LoUK1DPvjeqT6HuRK3n1STYhc7atjxgaUb1g8x7mmP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-hacker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YjyCzVVYzKEvutKWmFsk38SZaVKzMYCoUjYy1iuu1wxTyzKVx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YjyCzVVYzKEvutKWmFsk38SZaVKzMYCoUjYy1iuu1wxTyzKVx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-dc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TL9VmdZwGQEywWGGh4RaTKbR7VdqxviouSwdnk116ijwsssdo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TL9VmdZwGQEywWGGh4RaTKbR7VdqxviouSwdnk116ijwsssdo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23911 - },{ - "name": "bts-dgex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XJ6hoTWhNcdjMDvJgzxP4mDB8gw1t3a2ttE2Y5ycin5EMEHbp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XJ6hoTWhNcdjMDvJgzxP4mDB8gw1t3a2ttE2Y5ycin5EMEHbp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-russia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Sw8hJpNTJ4vNTPBSeZeY2ZtE9Aacd5VgcbTwzdNCeVpNQ2SP1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Sw8hJpNTJ4vNTPBSeZeY2ZtE9Aacd5VgcbTwzdNCeVpNQ2SP1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-ganji", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mHMbkexZ9Ko7kLmP8MfccGK7nKot5XCAxeFiunw7iFLQFCXab", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mHMbkexZ9Ko7kLmP8MfccGK7nKot5XCAxeFiunw7iFLQFCXab", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 531 - },{ - "name": "bts-dexinwong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iqpytdx4ND8mDxiWqdTnR3CsVwu4VPx2DLKQ6kbTvJSoSdGtQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iqpytdx4ND8mDxiWqdTnR3CsVwu4VPx2DLKQ6kbTvJSoSdGtQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 496 - },{ - "name": "bts-pc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CX59zZSYWt12nMtsLDxD5zM95iev3bjDUp5Aj6orWpzCqyGSP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CX59zZSYWt12nMtsLDxD5zM95iev3bjDUp5Aj6orWpzCqyGSP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379242 - },{ - "name": "bts-pvkpgp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bZVLTnxz5wsFxtjHqe5oyCqi2oxauARJbdagxrYrtiwohnh98", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bZVLTnxz5wsFxtjHqe5oyCqi2oxauARJbdagxrYrtiwohnh98", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18533 - },{ - "name": "bts-banco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yEiUMkrY4bTMkdJ4e4uAhcNhZh9eKzx9H2t6FqhsSgxLYWkSN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yEiUMkrY4bTMkdJ4e4uAhcNhZh9eKzx9H2t6FqhsSgxLYWkSN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-pingan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Vn4iFr24JR8U6YXJPyQgGPLUZvoVeYbWuGuRthZeGKJor44Q9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Vn4iFr24JR8U6YXJPyQgGPLUZvoVeYbWuGuRthZeGKJor44Q9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 462 - },{ - "name": "bts-zju", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pX59MsWuaUEFVNaGLw3joL9seUvJkE76ujuniB14ck2m9fx4Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pX59MsWuaUEFVNaGLw3joL9seUvJkE76ujuniB14ck2m9fx4Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-zhejianguniversity", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xUinjjiovN3YEhnC5DgLEw8t7SLSYSoANjhJhgU6E5i5N4ELD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xUinjjiovN3YEhnC5DgLEw8t7SLSYSoANjhJhgU6E5i5N4ELD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-zhejiang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EjvUeDsdPsTNdr9AnG32TU1YvXHLcY1MgvqAeWpGYZksb589b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EjvUeDsdPsTNdr9AnG32TU1YvXHLcY1MgvqAeWpGYZksb589b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-wenzhou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bfxtGKDM9h7f5QcwRfyvFztQP3ui6G15ei7DE2Cj5y2ciVcqY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bfxtGKDM9h7f5QcwRfyvFztQP3ui6G15ei7DE2Cj5y2ciVcqY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-tokyo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h7ZPTqSQMCLwSJhML89LCtpqLjMRmvZofgykZmpbMsRmwVdof", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h7ZPTqSQMCLwSJhML89LCtpqLjMRmvZofgykZmpbMsRmwVdof", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-bhp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gz1h9iU5dezHsDoq3QjD4SkN3CQfRGR6SYpiA3yqfSpt7SY1Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gz1h9iU5dezHsDoq3QjD4SkN3CQfRGR6SYpiA3yqfSpt7SY1Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-younger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FmnMSwJN5Fc6c6TWazw8nkTkADFdPisV6Lgc1KWvCDkjgnYYD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FmnMSwJN5Fc6c6TWazw8nkTkADFdPisV6Lgc1KWvCDkjgnYYD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-bosch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y3SPFsX1iFT8p95LBRhcQbCw7mdRBndQqWyJ7wCzyXfMBCxTW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y3SPFsX1iFT8p95LBRhcQbCw7mdRBndQqWyJ7wCzyXfMBCxTW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-wesfarmers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CNNQcX5LKF3uxwuUAnGQPw5D6rL327YaE9M2qC1rUVcKwzMQM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CNNQcX5LKF3uxwuUAnGQPw5D6rL327YaE9M2qC1rUVcKwzMQM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-woolworths", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST874hBSUqRPMirWuycDvXgDksW5SvyP3fqswpKGeiwxgVESguiS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST874hBSUqRPMirWuycDvXgDksW5SvyP3fqswpKGeiwxgVESguiS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-post", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R6taHh5Jyy6qFTyLHMLqCc8quMD9vPVfMQLZmDrxD3RxVKRrY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R6taHh5Jyy6qFTyLHMLqCc8quMD9vPVfMQLZmDrxD3RxVKRrY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-dow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tke3uVy9F6NnzzhVE1qNvkNWAKWx58zevu6LniBu613pwvfPY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tke3uVy9F6NnzzhVE1qNvkNWAKWx58zevu6LniBu613pwvfPY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-bitcoinfan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86FhEc89nqAJkPXiV3B6mNrgkyzm5bYs9Y4uoLypcyd7xCAEky", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86FhEc89nqAJkPXiV3B6mNrgkyzm5bYs9Y4uoLypcyd7xCAEky", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-rio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59fAxCdCAvDs5PvL1uWZSCzFmw2QCmQrhVXnHZBFT5PYVKxmUG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59fAxCdCAvDs5PvL1uWZSCzFmw2QCmQrhVXnHZBFT5PYVKxmUG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-sabic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58DXNW65hk1Hcsg2Jr5Uw8GHiYwMSxinRgEkb2Q6b1VhCCseXW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58DXNW65hk1Hcsg2Jr5Uw8GHiYwMSxinRgEkb2Q6b1VhCCseXW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-vale", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74Zoowgtz329HXMfKvShpUyHeNc6EE38oDuZnak188u4bvWppz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74Zoowgtz329HXMfKvShpUyHeNc6EE38oDuZnak188u4bvWppz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-sncf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qvhs8YQFdkJwUnAaoBsgeoVkB3dKraxey7QFbjER2mwSbZJHZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qvhs8YQFdkJwUnAaoBsgeoVkB3dKraxey7QFbjER2mwSbZJHZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-safeway", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v2DxqtBUxKSiAYt2vneHSZSnd6xwahi3VBZNpBfoCsDdTFNaG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v2DxqtBUxKSiAYt2vneHSZSnd6xwahi3VBZNpBfoCsDdTFNaG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-lao1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jjH9N28EDCEdXZJv5n29Z73AV1tPBsL85odtbagwvP6pHSuEB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jjH9N28EDCEdXZJv5n29Z73AV1tPBsL85odtbagwvP6pHSuEB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188143 - },{ - "name": "bts-football", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YpM6ssM3pmBJ3GTWYPYVwS6K71PQcWzt35FMJ2KMnoZjFMs5t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YpM6ssM3pmBJ3GTWYPYVwS6K71PQcWzt35FMJ2KMnoZjFMs5t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 120 - },{ - "name": "bts-needforspeed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RGSRAw9GBdmKFNPE6utZsNUmAKeGibkEcANKgFJMd1YR5bQRC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RGSRAw9GBdmKFNPE6utZsNUmAKeGibkEcANKgFJMd1YR5bQRC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-diablo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53EdNVEybz5xqBytnf5CnEod2cw7rXTHFCHbnGhRcN8FsYNNxS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53EdNVEybz5xqBytnf5CnEod2cw7rXTHFCHbnGhRcN8FsYNNxS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-iwatch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74SzzKCz5Q5w4Ry4ABfok6eRAt2HfuAmFmz7fYX9qgCVvtTykQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74SzzKCz5Q5w4Ry4ABfok6eRAt2HfuAmFmz7fYX9qgCVvtTykQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-ipay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EE9wnFe9ksJsPXZqVFzQePFvEJogQoz9fiGaBdzrsy2GXf77U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EE9wnFe9ksJsPXZqVFzQePFvEJogQoz9fiGaBdzrsy2GXf77U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-baozi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EUcKLoARmJgivsTpwcUkSShPvg4g4xp5HL3qN1h3RWaLadgEG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EUcKLoARmJgivsTpwcUkSShPvg4g4xp5HL3qN1h3RWaLadgEG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5316067 - },{ - "name": "bts-ems", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ibFMnWJAJLahdLtQ61LkPYbC2kqN8iGzGUN1eof2ULZomVoz8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ibFMnWJAJLahdLtQ61LkPYbC2kqN8iGzGUN1eof2ULZomVoz8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32233120 - },{ - "name": "bts-canon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dk7fYksXVVDNj8kSL4FN4sr7RPugjci2FKMxtiv9FqvRhUogq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dk7fYksXVVDNj8kSL4FN4sr7RPugjci2FKMxtiv9FqvRhUogq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52 - },{ - "name": "bts-think", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YDEEqE7m6NY5yLe4ZF6SGJWJw4uwAUeztTnvtG4ophcbPf8Ge", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YDEEqE7m6NY5yLe4ZF6SGJWJw4uwAUeztTnvtG4ophcbPf8Ge", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-thinkdifferent", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vSLVAscNy2rhNbb6zvB7MrSS3r4zdx4VMjMvHJrDhTXSEtxtP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vSLVAscNy2rhNbb6zvB7MrSS3r4zdx4VMjMvHJrDhTXSEtxtP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-lys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wQyNcRpbnzaUhdAE5igEYJctR3EZ1nBsXL5kmLVgpFxFSg57b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wQyNcRpbnzaUhdAE5igEYJctR3EZ1nBsXL5kmLVgpFxFSg57b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25482 - },{ - "name": "bts-swiss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82XQj74H67xuCVkra2REAZJX9cRjggY4yvibvSnNvWpuB3zdoH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82XQj74H67xuCVkra2REAZJX9cRjggY4yvibvSnNvWpuB3zdoH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-waitingbar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xuobEgsYhVPQNctavLyWxFcJHKWaXayLMcbkog2DMHbKpdCKd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xuobEgsYhVPQNctavLyWxFcJHKWaXayLMcbkog2DMHbKpdCKd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3113987 - },{ - "name": "bts-unionpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MAFf522DdqYkasFVL7eqmXvXhS2AXhhwiLgmTap3ysLaqbVqt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MAFf522DdqYkasFVL7eqmXvXhS2AXhhwiLgmTap3ysLaqbVqt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-ali-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kubnkbx82CpVpVsxrt87AgdjcgWyKKwFPNubc3bkx2GkW3uJC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kubnkbx82CpVpVsxrt87AgdjcgWyKKwFPNubc3bkx2GkW3uJC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-tyson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5huPvNcKfJSHp2VUpgkiJ8j4JL32xzvWv3HcM99qJQNsRQMcXU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5huPvNcKfJSHp2VUpgkiJ8j4JL32xzvWv3HcM99qJQNsRQMcXU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-sumitomo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xa6bPbbFUrMf2pksn1bW8j4iPu7wqSc6J51JHsTSr3sShHfVH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xa6bPbbFUrMf2pksn1bW8j4iPu7wqSc6J51JHsTSr3sShHfVH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-sinopharm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8auPjLhguNm5v3tSktL2mHrpTJupSxcBXMdZr2DDt7x5ev8khe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8auPjLhguNm5v3tSktL2mHrpTJupSxcBXMdZr2DDt7x5ev8khe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-xinxing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cK3fTuhBJGMH2guXKP4HrwVZMTqyj9E5criWnMi8SaukirE4o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cK3fTuhBJGMH2guXKP4HrwVZMTqyj9E5criWnMi8SaukirE4o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-urbanpauper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R6XwrJfji5xu4paRAvVi4mqSuApFmUwNYM8v43sXnjJiDbaLQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R6XwrJfji5xu4paRAvVi4mqSuApFmUwNYM8v43sXnjJiDbaLQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6019 - },{ - "name": "bts-schneider", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F8XwPrgBMDgA1aWwZEoPz4EKeweqh9UgarjuHJxLSpCMjjAqw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F8XwPrgBMDgA1aWwZEoPz4EKeweqh9UgarjuHJxLSpCMjjAqw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-time-warner", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ghuvg36FBFDWJ8urRceMqnY4VidSJV1z9iGBviXPBDXkKzQ6r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ghuvg36FBFDWJ8urRceMqnY4VidSJV1z9iGBviXPBDXkKzQ6r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-suzuki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iMpXPH8TxojAMNMUjPHQGYuM8t2Z6pVbhrtGWM9UCjhPAasfG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iMpXPH8TxojAMNMUjPHQGYuM8t2Z6pVbhrtGWM9UCjhPAasfG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-sfbest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iEgzBLiSGqGjvnRAyxZvQNqDWR32uBTTjuNMu8gfjqoKXwzW7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iEgzBLiSGqGjvnRAyxZvQNqDWR32uBTTjuNMu8gfjqoKXwzW7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-sharp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PLASNhNbtoyz42qVXJtkShLoXJRLXtKBLmbK4UpwWohn57DHE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PLASNhNbtoyz42qVXJtkShLoXJRLXtKBLmbK4UpwWohn57DHE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97 - },{ - "name": "bts-paper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kNrhwuL127YQmUFStaryCBMH9oRsdgBRh8riroaq4KVbY8ydA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kNrhwuL127YQmUFStaryCBMH9oRsdgBRh8riroaq4KVbY8ydA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-costa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y1P7uMJARZcJXxF57ArApxyiSK3YJDW8Yu9V66EhHDribSq2v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y1P7uMJARZcJXxF57ArApxyiSK3YJDW8Yu9V66EhHDribSq2v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-telstra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W9AMdc1cxszVuba1NAWJwf9ugRoApTTmAFr255oghkLXCZD9V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W9AMdc1cxszVuba1NAWJwf9ugRoApTTmAFr255oghkLXCZD9V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-anta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NPrR7W6AEqoM5Em53fXDRcGBDc4zYKpfCjoDT7GNmwyrpsshi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NPrR7W6AEqoM5Em53fXDRcGBDc4zYKpfCjoDT7GNmwyrpsshi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-poloniex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vg6L2wiYmTcUn6JTbXkHV92ngLMFdhCn9KHqtaSdxp1fCqEsE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vg6L2wiYmTcUn6JTbXkHV92ngLMFdhCn9KHqtaSdxp1fCqEsE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7256657 - },{ - "name": "bts-bittrex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UaBrmxCoFLWHu174Lstr6z4UpypUcqx9AbwkyAZNbuCcNdj62", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UaBrmxCoFLWHu174Lstr6z4UpypUcqx9AbwkyAZNbuCcNdj62", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 383 - },{ - "name": "bts-dayzh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6efTQ81waxERf4cuxqBzuXFYmXhSMt5ekGqHnScz7WBBqQYCTo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6efTQ81waxERf4cuxqBzuXFYmXhSMt5ekGqHnScz7WBBqQYCTo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2227395 - },{ - "name": "bts-standard-chartered", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NXMBifL6zf8pz3WYuTosnQysehYJFCVg6xpgghQ17tb5guCKf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NXMBifL6zf8pz3WYuTosnQysehYJFCVg6xpgghQ17tb5guCKf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-tiramisu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CcudBAV9WM1BYXh3anzx2eVE64Yf1gg1xszBrcwzCr4NZ4YR2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CcudBAV9WM1BYXh3anzx2eVE64Yf1gg1xszBrcwzCr4NZ4YR2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 287697 - },{ - "name": "bts-double", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Au8pU3faMgYnMgKc7HwVGu76EWUw4CcCfaGUJqKoGRNXSBhTH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Au8pU3faMgYnMgKc7HwVGu76EWUw4CcCfaGUJqKoGRNXSBhTH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379148 - },{ - "name": "bts-tui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M5QpyHZEumZY7XLCbpbqb6NFYtKLSdc6XPvyhDRFmX9cDjh8d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M5QpyHZEumZY7XLCbpbqb6NFYtKLSdc6XPvyhDRFmX9cDjh8d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-mipay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84WxQg5swXd9NzQ1DKjctKw2VsDktL6m3cc7ky8xaAB2jBKUcR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84WxQg5swXd9NzQ1DKjctKw2VsDktL6m3cc7ky8xaAB2jBKUcR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-reader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eVuwrnJt11dvirC4BuQrA84br3hRvMxkCw9PE9hrJJR4En8sF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eVuwrnJt11dvirC4BuQrA84br3hRvMxkCw9PE9hrJJR4En8sF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-swift", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x2Q2RfAKhk2PXyLtCAFKWbAxgJEGEjbqo4oPbhwS4twGEsekR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x2Q2RfAKhk2PXyLtCAFKWbAxgJEGEjbqo4oPbhwS4twGEsekR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-disney", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BgqTjsxkN2rFgtFYCZj1tK5ZHURk3e6VvuJR4v5A7w3evd6wg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BgqTjsxkN2rFgtFYCZj1tK5ZHURk3e6VvuJR4v5A7w3evd6wg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-pairmike", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L7jzd7gJ14R1M4BwJU3kR5ivv2aKy5Z3w2EtfEhzsmveu2fZH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L7jzd7gJ14R1M4BwJU3kR5ivv2aKy5Z3w2EtfEhzsmveu2fZH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 415142 - },{ - "name": "bts-ticketmaster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wnhbq27pcsigGjf41sndiS7KJjyX2bf47cmD1Zd7WQGftf91i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wnhbq27pcsigGjf41sndiS7KJjyX2bf47cmD1Zd7WQGftf91i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-zappos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QQKctXigTqUpPwr1QSVXBTKR6PgvSWFru2jXMck7FBWpExDgA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QQKctXigTqUpPwr1QSVXBTKR6PgvSWFru2jXMck7FBWpExDgA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-victoriassecret", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B58zLQwbPRwTCUufTvy97rUxDZJuyok3DNvSoVjQ8hPgCeNpq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B58zLQwbPRwTCUufTvy97rUxDZJuyok3DNvSoVjQ8hPgCeNpq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-staples", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7svHtx2yhny2d6sR7VnfKqTCDQZL4eqHkAZ9P3A2AhtrxzNVzD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7svHtx2yhny2d6sR7VnfKqTCDQZL4eqHkAZ9P3A2AhtrxzNVzD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-hm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rZUoERWwGPy9gVyQ9JHULR43y2Bae3xwbUhCsjYSS4KKgRPeq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rZUoERWwGPy9gVyQ9JHULR43y2Bae3xwbUhCsjYSS4KKgRPeq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-k1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZZWgbVejSCaCage6uWjHHcCsT3AX7wuVgsrSkEdMZED127SGz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZZWgbVejSCaCage6uWjHHcCsT3AX7wuVgsrSkEdMZED127SGz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347301 - },{ - "name": "bts-cars", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DWciVxGQftYsabhqDVCppopJptqZudxj13t6nAY95jSZea7Tf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DWciVxGQftYsabhqDVCppopJptqZudxj13t6nAY95jSZea7Tf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-newtree", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58nHrwg1xpsCaLB1Mt811NwAVCfdTno9wHhfhXQALKT9s9oUK3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58nHrwg1xpsCaLB1Mt811NwAVCfdTno9wHhfhXQALKT9s9oUK3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 315283 - },{ - "name": "bts-neo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hQFWAVBzKmpTNHQeHKHFiCBc8ZyRwz2WiGCowXysNJmJND3VP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hQFWAVBzKmpTNHQeHKHFiCBc8ZyRwz2WiGCowXysNJmJND3VP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36681 - },{ - "name": "bts-wiley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Dcoofaux6RgYcXuqrjq8XKWMopWTpmwFvPQbNBf65h3CJ9J8g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Dcoofaux6RgYcXuqrjq8XKWMopWTpmwFvPQbNBf65h3CJ9J8g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-walgreens", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69FKwcJo2NWbnotDXDE5aw28Pse4Qm9gouD6HV4KY6SwBBhYmB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69FKwcJo2NWbnotDXDE5aw28Pse4Qm9gouD6HV4KY6SwBBhYmB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-shutterfly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NiCW7hyLpkVsbnAHArqktBSRf79hjYpS2yvkxRVMHQEVEGt5K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NiCW7hyLpkVsbnAHArqktBSRf79hjYpS2yvkxRVMHQEVEGt5K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-james9876", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GBjXJAm2X7ycx7q5fYqrmztCsiCMg2qiyFKJ4sMASSturh26S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GBjXJAm2X7ycx7q5fYqrmztCsiCMg2qiyFKJ4sMASSturh26S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90269 - },{ - "name": "bts-btsx500", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KKnGMR8zQ8KZs51f7w9aSEz5WcsSQjZjPqjc4f16Q8QaPEsov", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KKnGMR8zQ8KZs51f7w9aSEz5WcsSQjZjPqjc4f16Q8QaPEsov", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-versace", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z99L6HUeshH9QcU8Nu4hdKaYbc5uUzgYZyoNFwk1RFvTWdh4U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z99L6HUeshH9QcU8Nu4hdKaYbc5uUzgYZyoNFwk1RFvTWdh4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-zegna", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST649peDiCyP2ggU8o1jWsoDj86NwrNceQ2BQMPHpKaxZEWpddY2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST649peDiCyP2ggU8o1jWsoDj86NwrNceQ2BQMPHpKaxZEWpddY2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-cgh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EWgFHZ6zqUJAsN2mQVoP8o6E1ASRumhNLGy2EKrMfRwktrsNJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EWgFHZ6zqUJAsN2mQVoP8o6E1ASRumhNLGy2EKrMfRwktrsNJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1765606 - },{ - "name": "bts-a8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DwJrunfb7HCJTjna51si7r6eCudPonarwENfmCKSBQEXVU45D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DwJrunfb7HCJTjna51si7r6eCudPonarwENfmCKSBQEXVU45D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-a6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EJ9fcANtDnhKPxq9GFAJ3USwCP1GZDURiZkjTfymMswNYTfDd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EJ9fcANtDnhKPxq9GFAJ3USwCP1GZDURiZkjTfymMswNYTfDd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-a9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g7XWVp6VYDGtGmDNk4Jc2dXz7kSU5JWf1hLgDLFSccSYw9B9Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g7XWVp6VYDGtGmDNk4Jc2dXz7kSU5JWf1hLgDLFSccSYw9B9Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-shift", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r43ukEptRLyHLKGtfKxodu36mXQkM1M7YxYp3qjASkWYjC1sN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r43ukEptRLyHLKGtfKxodu36mXQkM1M7YxYp3qjASkWYjC1sN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 267 - },{ - "name": "bts-overthetop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UxF173qx5fRutXifSZ2LhPaVbriHD2RBzF6iVCGHBZMJLxEfh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UxF173qx5fRutXifSZ2LhPaVbriHD2RBzF6iVCGHBZMJLxEfh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1175804 - },{ - "name": "bts-zk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST837znT5DuB9m5NKGTzAB2Gxtmrx9HRvkS5GgR5u2CLLRw9GTDm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST837znT5DuB9m5NKGTzAB2Gxtmrx9HRvkS5GgR5u2CLLRw9GTDm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6109 - },{ - "name": "bts-verycd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CwPVYws3Wernax22YvTrJVYbeu8Xis5D8wqAhE4gPhp3VeogY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CwPVYws3Wernax22YvTrJVYbeu8Xis5D8wqAhE4gPhp3VeogY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 307 - },{ - "name": "bts-zjw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tkHe9WNfd23NBVpJLY5kvqUPjGJ2N6GS68BEHEPgWZHnuzeZg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tkHe9WNfd23NBVpJLY5kvqUPjGJ2N6GS68BEHEPgWZHnuzeZg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26956 - },{ - "name": "bts-bita", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jhxtLQwPxyUCHP4fbD9n9jB9pv68Ta1PjVwFMmkPyAvDyJjuu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jhxtLQwPxyUCHP4fbD9n9jB9pv68Ta1PjVwFMmkPyAvDyJjuu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 585 - },{ - "name": "bts-ppc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ueJkEVyHzkhjhyANaLHtcHBpmCLXM8Ht3HsALsdFTg4mwt4JV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ueJkEVyHzkhjhyANaLHtcHBpmCLXM8Ht3HsALsdFTg4mwt4JV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 608 - },{ - "name": "bts-xman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aCSNKm9TAD5UBEPh6MGFV1YUgQrFY5BqbEL6JmZynroS6tp2J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QiSvTN17rv2rNd9xu7B2JCGzzLMrwSxEsGXMPwGHWbAzGp8kA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29220 - },{ - "name": "bts-nice", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UzKdgGjRHhsRnPqEbqHV6vbDHeDmrnFhL5eN19sZxYVQw29je", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UzKdgGjRHhsRnPqEbqHV6vbDHeDmrnFhL5eN19sZxYVQw29je", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 312 - },{ - "name": "bts-bitshares-xts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewKkH4Te1nW6VpsJiqXodiKuHsh22nbrSXdB22y3pg7uMzMDt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewKkH4Te1nW6VpsJiqXodiKuHsh22nbrSXdB22y3pg7uMzMDt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-sinobiology", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JyHJNNZpgCVbZJCN5ou6uPoLYcgsCzZugPJ6z1sbq4EHryVph", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JyHJNNZpgCVbZJCN5ou6uPoLYcgsCzZugPJ6z1sbq4EHryVph", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3531022 - },{ - "name": "bts-bit-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MZaoGG2hpsfipcs97JkULhazWMS9o4L8icGSr5iWZduHyc8AU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MZaoGG2hpsfipcs97JkULhazWMS9o4L8icGSr5iWZduHyc8AU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 191519 - },{ - "name": "bts-day", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d7UJwtfcZw84mhZVuxTBaCcxPSC5MNHBvekzzjkhx5ABNRg7d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d7UJwtfcZw84mhZVuxTBaCcxPSC5MNHBvekzzjkhx5ABNRg7d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-mcl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5saXyFre5xHt48Rxtt9TDnHQVw4vMf84jp5o6Cn3D41fjTwDNu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5saXyFre5xHt48Rxtt9TDnHQVw4vMf84jp5o6Cn3D41fjTwDNu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-med", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7twF5bWun1gqcroRwc5o3GhUrXXVZDqs4mcMt1ytPN7XsGpt4S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7twF5bWun1gqcroRwc5o3GhUrXXVZDqs4mcMt1ytPN7XsGpt4S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 310 - },{ - "name": "bts-aero", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81czJJmrzPUNL9gDjedKnNpMQDySzsv44f8vdYfCEbTPXNZbBf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81czJJmrzPUNL9gDjedKnNpMQDySzsv44f8vdYfCEbTPXNZbBf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 142 - },{ - "name": "bts-fr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d81JdGCMpGPP588LpNRv2Zgofg7Gr6dVwnN42Jru1zJYt3pPE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d81JdGCMpGPP588LpNRv2Zgofg7Gr6dVwnN42Jru1zJYt3pPE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 343 - },{ - "name": "bts-os", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XnEvwo4m5ocVk93bSMGu91Q6qEPVvDqu6qMRtCFBg2Lj865Aw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XnEvwo4m5ocVk93bSMGu91Q6qEPVvDqu6qMRtCFBg2Lj865Aw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47997 - },{ - "name": "bts-cad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63b6WwxsGC8jr1LYG6tPX4cALfAUGz2WDt4ENAtTPpwV11AJFB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63b6WwxsGC8jr1LYG6tPX4cALfAUGz2WDt4ENAtTPpwV11AJFB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 276 - },{ - "name": "bts-head", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73XBWKF2jk55gMjjo16LXv3TDSm8aHh4jEZym31unZ8NHBoY31", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73XBWKF2jk55gMjjo16LXv3TDSm8aHh4jEZym31unZ8NHBoY31", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 953 - },{ - "name": "bts-base", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yyxyM6n4vr1N3bV88rG2vZerJASPZSkThaTHvb1hMhZRqqjVy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yyxyM6n4vr1N3bV88rG2vZerJASPZSkThaTHvb1hMhZRqqjVy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 675 - },{ - "name": "bts-client", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hUrKFhSqxYujKCh4ujC75ywM8C6KipHpFv79ukQvXKffbyg9G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hUrKFhSqxYujKCh4ujC75ywM8C6KipHpFv79ukQvXKffbyg9G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 232 - },{ - "name": "bts-js", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xHUgodXjkxtwTGbjuc87NmTRf5NkMLdN1wh33ZCEM5mmRweiM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xHUgodXjkxtwTGbjuc87NmTRf5NkMLdN1wh33ZCEM5mmRweiM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-sdb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jhCMtbLgPuMeSYfh3erKK67u48PqHzqkSHirayKLcaacj3iot", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jhCMtbLgPuMeSYfh3erKK67u48PqHzqkSHirayKLcaacj3iot", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2021 - },{ - "name": "bts-aboc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NUWcQ9nbgsCGeVQCX4c7jY1cgnsSyFZ8caZMxZsbKCAyTc9kL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NUWcQ9nbgsCGeVQCX4c7jY1cgnsSyFZ8caZMxZsbKCAyTc9kL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 200 - },{ - "name": "bts-ago", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewKkH4Te1nW6VpsJiqXodiKuHsh22nbrSXdB22y3pg7uMzMDt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewKkH4Te1nW6VpsJiqXodiKuHsh22nbrSXdB22y3pg7uMzMDt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-ic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P2PFCTDfDCR3iMLbQ9gogyLxcpZABtcj1AegSixp6dJ1bUH58", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P2PFCTDfDCR3iMLbQ9gogyLxcpZABtcj1AegSixp6dJ1bUH58", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1110487 - },{ - "name": "bts-a2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gsruRq3peqbdMRzt7k9A8pTa6RG2zvWcR3HfvUYpPgonMhhk6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gsruRq3peqbdMRzt7k9A8pTa6RG2zvWcR3HfvUYpPgonMhhk6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-dirnet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sH5gr2fFebZT4QUci1HbgGnH66Z5kN6hXRmwax4GyzrDRFz54", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sH5gr2fFebZT4QUci1HbgGnH66Z5kN6hXRmwax4GyzrDRFz54", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13191157 - },{ - "name": "bts-dicos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m1v8HR3LENWACNDosi94HboWkEBBy6EGhYtVSbbVDvfeTDozM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m1v8HR3LENWACNDosi94HboWkEBBy6EGhYtVSbbVDvfeTDozM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32253 - },{ - "name": "bts-emart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yvo21nMtjQ8MU6PztXF2sNsfT7u3mL6TfrDfQbt9NBvGybtT1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yvo21nMtjQ8MU6PztXF2sNsfT7u3mL6TfrDfQbt9NBvGybtT1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 629 - },{ - "name": "bts-aventador", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68eRtD2SEWqrkjxNobFzopDdBDwFtbMPRbbbo7qbbxLJAh8JQ4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68eRtD2SEWqrkjxNobFzopDdBDwFtbMPRbbbo7qbbxLJAh8JQ4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 435 - },{ - "name": "bts-ninja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dK8Tyg2MnPdKYDniHRoh4UunbmVefAkxPktvERiQmLoRhMDn3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dK8Tyg2MnPdKYDniHRoh4UunbmVefAkxPktvERiQmLoRhMDn3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 711397 - },{ - "name": "bts-niu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5paDhfLwYE87phyyZauwGJjA2GSVd7LjENEMWM7HE1vDLFAM9T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5paDhfLwYE87phyyZauwGJjA2GSVd7LjENEMWM7HE1vDLFAM9T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50277 - },{ - "name": "bts-netbee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Xj72SZVHDrWnTavoeDxGsQ2CLjmSozhRjKJsfZXo6sW5dMRU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Xj72SZVHDrWnTavoeDxGsQ2CLjmSozhRjKJsfZXo6sW5dMRU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1754517 - },{ - "name": "bts-wys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bV5bEhCcVjJNTfsY3HPVGuZXazqR27JnvxN2bQA3jmJi5JfyG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bV5bEhCcVjJNTfsY3HPVGuZXazqR27JnvxN2bQA3jmJi5JfyG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13945883 - },{ - "name": "bts-senling", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GYeFBdonHyaH8zWseh8ra6o1Z2Sq3WMBHeGPx2D3q6s5i1gTg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GYeFBdonHyaH8zWseh8ra6o1Z2Sq3WMBHeGPx2D3q6s5i1gTg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-dukong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LUskHXQHy8jhGMDYajNa3biPJuHAAhw7ex56nzQooeVsTZLyH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LUskHXQHy8jhGMDYajNa3biPJuHAAhw7ex56nzQooeVsTZLyH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 345112 - },{ - "name": "bts-mango", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kUxGwW8mmZC42RhkFqsfHCT6eCfEmN5rYW1eFhLP1toCjMysH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kUxGwW8mmZC42RhkFqsfHCT6eCfEmN5rYW1eFhLP1toCjMysH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3320634 - },{ - "name": "bts-helloworld", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-yinchg", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-yinchg", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 18183 - },{ - "name": "bts-puppies", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PKjbMysLsVmxgdJW5gDsMhn8F4bc32qNKrgMuJtRF9A8d6npL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PKjbMysLsVmxgdJW5gDsMhn8F4bc32qNKrgMuJtRF9A8d6npL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29094 - },{ - "name": "bts-dc-xxoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vnwtkx28b4dtrcU3XfE7b7E8MUWNFJ7VTRDK4RHkhxYdCsjdt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vnwtkx28b4dtrcU3XfE7b7E8MUWNFJ7VTRDK4RHkhxYdCsjdt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-harvey-xts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AKhUhx7da2ytHZE7NUzHi53wpNUBWMtJ7ZdFb5rN21Pufioa1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AKhUhx7da2ytHZE7NUzHi53wpNUBWMtJ7ZdFb5rN21Pufioa1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1156999 - },{ - "name": "bts-geyu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r5VsH4d6GSjKvDzFLgVHbT7LVJwSpp3FA5yxxYjunWjyofnCd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r5VsH4d6GSjKvDzFLgVHbT7LVJwSpp3FA5yxxYjunWjyofnCd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32220 - },{ - "name": "bts-linzheming", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TAfLEFknEmjYgJm7m9nutgrWRhKfc81ndguDsTkdWXTWqVMZU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TAfLEFknEmjYgJm7m9nutgrWRhKfc81ndguDsTkdWXTWqVMZU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-bear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hoEozm6a58sgqDt2XASpcboRhCYPnsC4VQRjgLABBmPg4eBHh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hoEozm6a58sgqDt2XASpcboRhCYPnsC4VQRjgLABBmPg4eBHh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 282 - },{ - "name": "bts-adsense", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dLBBy631agvqpMWyVLzpmoCPs8291d5dUbQDT9rgMLTsNkJKS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dLBBy631agvqpMWyVLzpmoCPs8291d5dUbQDT9rgMLTsNkJKS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 242 - },{ - "name": "bts-harrypotter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNQE5SBqzG7PgR692pB1V7MYweeDT8sqFSFpbfQfk92rQBVn4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNQE5SBqzG7PgR692pB1V7MYweeDT8sqFSFpbfQfk92rQBVn4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3217603 - },{ - "name": "bts-ak-47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KCupcVtwggVQgjKKRehT6R4bnR8SApeDfhayA6GSmCL8YHjqh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KCupcVtwggVQgjKKRehT6R4bnR8SApeDfhayA6GSmCL8YHjqh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 138 - },{ - "name": "bts-root", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63kjLcdUYJnCrpCq2SCgdvbJMz43qzBHP7YMeExEwDVdQZYYp2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63kjLcdUYJnCrpCq2SCgdvbJMz43qzBHP7YMeExEwDVdQZYYp2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6957276 - },{ - "name": "bts-zqzhao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uCPwwTzYfxPiYGJdDjhXJ3sSbwRvRviL2EsMfZ2Ss9p1EB3EB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uCPwwTzYfxPiYGJdDjhXJ3sSbwRvRviL2EsMfZ2Ss9p1EB3EB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14811 - },{ - "name": "bts-jw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cGjDzov5sM9TvFfirAy23DKHq4zJLg3StBBQaF4i7dgbNL871", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cGjDzov5sM9TvFfirAy23DKHq4zJLg3StBBQaF4i7dgbNL871", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 372481 - },{ - "name": "bts-a7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NxLQVetPz6RXQujzt5RTFUXB3Yufbc3N5YmMvVQkFgskySmyZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NxLQVetPz6RXQujzt5RTFUXB3Yufbc3N5YmMvVQkFgskySmyZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-muse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4udjBSt2bw1iW2GKUTPNsxTnai7SHJGZU8QHBD2EjFiE7Ck58Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4udjBSt2bw1iW2GKUTPNsxTnai7SHJGZU8QHBD2EjFiE7Ck58Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 292987 - },{ - "name": "bts-chmwandyq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tvYGC4SsLXo3N4MJD28w2jMPTa8wgUK6bU4akrVRqZdWfGJgG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tvYGC4SsLXo3N4MJD28w2jMPTa8wgUK6bU4akrVRqZdWfGJgG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29365 - },{ - "name": "bts-hxqxq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zQC4iQwR4o3NXp526nkaDdeE5uxof8pwciAt4KgDcZSQGBw3w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zQC4iQwR4o3NXp526nkaDdeE5uxof8pwciAt4KgDcZSQGBw3w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 514921 - },{ - "name": "bts-jasonlin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST651xrzkWaRGqyBbPXJys6AxB8R9N7TtF98NDt2wcdNEmicQeLV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST651xrzkWaRGqyBbPXJys6AxB8R9N7TtF98NDt2wcdNEmicQeLV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5451666 - },{ - "name": "bts-btshero", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bEdFWxxQWwxztCHT6q3pX5yKsCyHRy2rJQ18my7MyYJjUx2Vy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bEdFWxxQWwxztCHT6q3pX5yKsCyHRy2rJQ18my7MyYJjUx2Vy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2818056 - },{ - "name": "bts-dominic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z9o6c9DwovDxDrYe2isRQDrka29xzyVfxvNJZDoxzU2NrVNTF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z9o6c9DwovDxDrYe2isRQDrka29xzyVfxvNJZDoxzU2NrVNTF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376286 - },{ - "name": "bts-freehawk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RE2y9YgHEvqR3XGREZsrtZ3ChY9kWPS21fTdaRCv6Fi6WEff2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RE2y9YgHEvqR3XGREZsrtZ3ChY9kWPS21fTdaRCv6Fi6WEff2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14345016 - },{ - "name": "bts-sadie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wGDRNMMYZWTGKkTcg6DmXC53yqxBdnnr1quiN71RUudVyth2g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wGDRNMMYZWTGKkTcg6DmXC53yqxBdnnr1quiN71RUudVyth2g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376288 - },{ - "name": "bts-tianweifeng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VnL7oysTftTGexARL9sqEbyTxfrsBUpsWmwqx7S7BUoBQM1ZJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VnL7oysTftTGexARL9sqEbyTxfrsBUpsWmwqx7S7BUoBQM1ZJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356491 - },{ - "name": "bts-xiao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WoPcs3KDtLYChQtdDgbb8j3M4a5vDd8YjG2234iG2iuMEFye8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WoPcs3KDtLYChQtdDgbb8j3M4a5vDd8YjG2234iG2iuMEFye8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ChBrZ5ZEZzXBVMtfcrUZ4cY3vV7nHUb1seixbpTBfs4dNDHky", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ChBrZ5ZEZzXBVMtfcrUZ4cY3vV7nHUb1seixbpTBfs4dNDHky", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6049 - },{ - "name": "bts-virtual-exchange", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6onqKS7AU8gJWYSytBrEQ6BfK4NXrydhB6naps5tbKMkfsXcWn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6onqKS7AU8gJWYSytBrEQ6BfK4NXrydhB6naps5tbKMkfsXcWn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 611 - },{ - "name": "bts-ross", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61P9MRxpFi61yGuqor566pKQjN1c57okoD5e4dogZ8e8KRgZkD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61P9MRxpFi61yGuqor566pKQjN1c57okoD5e4dogZ8e8KRgZkD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8594332 - },{ - "name": "bts-abcde", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57Qk5ftrHaEV8msNxvUateGXcgdHuZXjiVpdjvGDiJ7upP9rRW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57Qk5ftrHaEV8msNxvUateGXcgdHuZXjiVpdjvGDiJ7upP9rRW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93382 - },{ - "name": "bts-lzr1900", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7phD51kXEsyu9bcvZzbRPafUJk1C3AwSf3xiqTjbiwmUfH5oW3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7phD51kXEsyu9bcvZzbRPafUJk1C3AwSf3xiqTjbiwmUfH5oW3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11860846 - },{ - "name": "bts-lzr1992", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8S9atYfHBM4eKv9gQH1unEJodWMbgXaxRd4TPV9fMeBLTQH53d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8S9atYfHBM4eKv9gQH1unEJodWMbgXaxRd4TPV9fMeBLTQH53d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41353 - },{ - "name": "bts-exchange-market", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LCh5WXvomk44EAECerMkJ9kzu9r6FwwChRbNZC3KoRXyKma6w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LCh5WXvomk44EAECerMkJ9kzu9r6FwwChRbNZC3KoRXyKma6w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 242 - },{ - "name": "bts-zhengzhou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rTeWWCs4bPhNpuKRkwXtekvHbT8D5uSEhxeVCTkRPUVg5sP71", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rTeWWCs4bPhNpuKRkwXtekvHbT8D5uSEhxeVCTkRPUVg5sP71", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-brown", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u5DydkCg4b88tDTMBRXHtaEJY1W4UtAhzqHi2Gh8agaSX6hoq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u5DydkCg4b88tDTMBRXHtaEJY1W4UtAhzqHi2Gh8agaSX6hoq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-andrew", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66HSSqT2itM6SZ3RLmjhcbnghuBuGFRWb1eSvD2DyekXNAvcMT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66HSSqT2itM6SZ3RLmjhcbnghuBuGFRWb1eSvD2DyekXNAvcMT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2939 - },{ - "name": "bts-eva", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZrTDy8MCRUm5iXNmghBiEjm2fDAy6J1qudkARaQDMGzbJnwRg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZrTDy8MCRUm5iXNmghBiEjm2fDAy6J1qudkARaQDMGzbJnwRg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-hadrian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ppCxED2e8zmg9iAcSciebf4RADyBRNh2BFFRdCibKoik5gmfo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ppCxED2e8zmg9iAcSciebf4RADyBRNh2BFFRdCibKoik5gmfo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1136 - },{ - "name": "bts-wall-e", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bwAs81RAeuCqb2PdUSy7yHPwfhCNZdqq6mHPuPqo8xaK3KTk5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bwAs81RAeuCqb2PdUSy7yHPwfhCNZdqq6mHPuPqo8xaK3KTk5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-amx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59S7JQj9Lk5nCoQeFq6Ce1qNYE3p64LeZnrmahVXuqkWuw8xkv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59S7JQj9Lk5nCoQeFq6Ce1qNYE3p64LeZnrmahVXuqkWuw8xkv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-dama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7un11mEYSY2G5HX6CpU5wMRWQzjZ1cK4ZqLQJYtqKxGaaYup6H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7un11mEYSY2G5HX6CpU5wMRWQzjZ1cK4ZqLQJYtqKxGaaYup6H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-luckybit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66BJDzgdK8Sap7eJ7LRugdL7AMURb5Ayn44s5vYCoEdCkSQpgL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66BJDzgdK8Sap7eJ7LRugdL7AMURb5Ayn44s5vYCoEdCkSQpgL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18843 - },{ - "name": "bts-deer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89QzkFGiZmj5zwzEfNhhoYmchghjL93usHdTK27wNrmJWcbovw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89QzkFGiZmj5zwzEfNhhoYmchghjL93usHdTK27wNrmJWcbovw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6597 - },{ - "name": "bts-worldcup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76LQABgSDYEHWX22s4fUfBA1SeYCXnya7WC2dWfRsksZL2QRwY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76LQABgSDYEHWX22s4fUfBA1SeYCXnya7WC2dWfRsksZL2QRwY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ming", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5op39jnNgmVtkwMQ6zZrXviFaGR28J4HG1r6vqXX2fhT3Mb8Bp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5op39jnNgmVtkwMQ6zZrXviFaGR28J4HG1r6vqXX2fhT3Mb8Bp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-graffenwalder", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iENuLaQpFicLqv41MPWn1czM1SbGNGYDhQHDygffuNxJjifTG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iENuLaQpFicLqv41MPWn1czM1SbGNGYDhQHDygffuNxJjifTG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7772 - },{ - "name": "bts-slavix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wUTYADbcrSLAbrhXRtb4G6Zmp3XXFGf2RTX9WDAYoifGnqwqc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wUTYADbcrSLAbrhXRtb4G6Zmp3XXFGf2RTX9WDAYoifGnqwqc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 193 - },{ - "name": "bts-maurits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LB3Q6S2VSV7UPJD1FtusLzoJNJnzqbnAg1CtqKoAGu9v1Ssz7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LB3Q6S2VSV7UPJD1FtusLzoJNJnzqbnAg1CtqKoAGu9v1Ssz7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 869236 - },{ - "name": "bts-youlonghun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8832stPDtKoHwi8RwP7VuMAKD16jeoiaMEWzm3PBpBKoaeSwdm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8832stPDtKoHwi8RwP7VuMAKD16jeoiaMEWzm3PBpBKoaeSwdm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28312 - },{ - "name": "bts-apollon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vFr2ood7QVyCSqopdkGSFZSJT4RLLmK4S4vwiPc7ypasfCJjf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vFr2ood7QVyCSqopdkGSFZSJT4RLLmK4S4vwiPc7ypasfCJjf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 202 - },{ - "name": "bts-btscamp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gjwYXRABGmEQAueuGpd996CciJPL9XwDFSZJ6Sn5774bCAqGA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gjwYXRABGmEQAueuGpd996CciJPL9XwDFSZJ6Sn5774bCAqGA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-happiness", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LYQqfbbjT98nDZQ7CQfj4Ecs553NiKLJs7YYyneyvDyqEms5W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LYQqfbbjT98nDZQ7CQfj4Ecs553NiKLJs7YYyneyvDyqEms5W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 693 - },{ - "name": "bts-nyzg-1958hfs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zPju87XUVec6RqpaXLTkgdZFh1NzDWtx5Zb7dRzkuSB7eN3Ty", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zPju87XUVec6RqpaXLTkgdZFh1NzDWtx5Zb7dRzkuSB7eN3Ty", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-j2j", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AtTwq4pMxKNeYwdFL7Ek1jr9b8ASeWS5NRumBmUWC3C6D9n5G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AtTwq4pMxKNeYwdFL7Ek1jr9b8ASeWS5NRumBmUWC3C6D9n5G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 215 - },{ - "name": "bts-noblecash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72SwrbaNagUUzYrCvcBgLDo5qtkVN2MMac4VDiZEBavsNc23qn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72SwrbaNagUUzYrCvcBgLDo5qtkVN2MMac4VDiZEBavsNc23qn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-bdnoble", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gxsc9VSVHfxgdzytL7yVD22ZtLJXMdRZ5AS9m63sKHsKexwZh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gxsc9VSVHfxgdzytL7yVD22ZtLJXMdRZ5AS9m63sKHsKexwZh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 295579 - },{ - "name": "bts-web1024", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xn8FwppRGwg8ndpWTZBF2A4AGbZXFWRgrP8yopCY1XL6phaGR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xn8FwppRGwg8ndpWTZBF2A4AGbZXFWRgrP8yopCY1XL6phaGR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4288943 - },{ - "name": "bts-abc123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SjirG3Sz5V1TcZa3gbm4KhC6kqPBJGZaC8KSQmvUVDRbmNSSK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SjirG3Sz5V1TcZa3gbm4KhC6kqPBJGZaC8KSQmvUVDRbmNSSK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2578 - },{ - "name": "bts-samka", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CgTRasGsQHXvrSgRZ42tYR1SgaxnWpfCycRz3kxeo7UVzneQA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CgTRasGsQHXvrSgRZ42tYR1SgaxnWpfCycRz3kxeo7UVzneQA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 339973 - },{ - "name": "bts-yaochen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kaBKPHSriY21sV2nn1Jn5YtnuaL6SocDXJd5xUiXzM1J4oc8u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kaBKPHSriY21sV2nn1Jn5YtnuaL6SocDXJd5xUiXzM1J4oc8u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-helo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53YTN3oGDbenxjYE1QmjdMUDJhtZnfbyhSx5gdcwciQcuuisYo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53YTN3oGDbenxjYE1QmjdMUDJhtZnfbyhSx5gdcwciQcuuisYo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49202 - },{ - "name": "bts-hjh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57LfEvfW76iHuBR8GRsnZ4PWDdHhWeP7kkLRGEz7Nirkd7v8U1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57LfEvfW76iHuBR8GRsnZ4PWDdHhWeP7kkLRGEz7Nirkd7v8U1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97 - },{ - "name": "bts-baozou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DLP1ThRGUcntxTWvTNWgzAn6MaDtuKWti4n6YRSCGBZJ2GfBe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DLP1ThRGUcntxTWvTNWgzAn6MaDtuKWti4n6YRSCGBZJ2GfBe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2196 - },{ - "name": "bts-futuredac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LWtLrbAAhA1GiCZHvXuZZJpFpYG5CmxgA3ZQ6cXzWATe2odgX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LWtLrbAAhA1GiCZHvXuZZJpFpYG5CmxgA3ZQ6cXzWATe2odgX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-kibing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83dQgfqPGMZaMVJbphbwxx6WQTkL2e37T3fUDswFYrFYbbfk7W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83dQgfqPGMZaMVJbphbwxx6WQTkL2e37T3fUDswFYrFYbbfk7W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 522561 - },{ - "name": "bts-jack007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EinjbY6GJb5sNZXC1w6qqe3BYhM8PYpt4mvVG7sHP49my6GyC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EinjbY6GJb5sNZXC1w6qqe3BYhM8PYpt4mvVG7sHP49my6GyC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-networker2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78J9YW5w7yAq4Twheu7mtTF9SrnP6L8ctkFuKMasCnGacwPJUZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78J9YW5w7yAq4Twheu7mtTF9SrnP6L8ctkFuKMasCnGacwPJUZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18947571 - },{ - "name": "bts-cass", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y5WCqafHYtLHrVdFNN1aCfHDcDzSAADTdXhjarkMJ8DYzwr4y", - 1 - ],[ - "TEST5Cej8Uqbj3w8VQTWNSPZ8LoKYn8g5qf2gYuyijqbxJB1xf7r2n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y5WCqafHYtLHrVdFNN1aCfHDcDzSAADTdXhjarkMJ8DYzwr4y", - 1 - ],[ - "TEST5Cej8Uqbj3w8VQTWNSPZ8LoKYn8g5qf2gYuyijqbxJB1xf7r2n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71714049 - },{ - "name": "bts-awoland", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n7c6KfdFAyoUbKy2fJ6yG2UaKAzPUmNnghHq8vTtSnm3qHu2g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n7c6KfdFAyoUbKy2fJ6yG2UaKAzPUmNnghHq8vTtSnm3qHu2g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31539 - },{ - "name": "bts-moby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5euFcxvGLE9wP5NXFd17rmTr6XTQQLq7PCVkyRHCRmfRKeJ8su", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5euFcxvGLE9wP5NXFd17rmTr6XTQQLq7PCVkyRHCRmfRKeJ8su", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47644 - },{ - "name": "bts-geneko", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XQyj2GMhG9euZsfwE3wN8tyLGrCgPPx3pBeqTbAreg29mMZp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XQyj2GMhG9euZsfwE3wN8tyLGrCgPPx3pBeqTbAreg29mMZp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8175939 - },{ - "name": "bts-geneko2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tw82S9mwfwomMkkbeqbyF8f3oJ6nhfiGUm65Z3sJ6jKBq6FWx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tw82S9mwfwomMkkbeqbyF8f3oJ6nhfiGUm65Z3sJ6jKBq6FWx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128875 - },{ - "name": "bts-ptschina", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TaC8tFgY3TKEXuhbJK5PNbfAmcTMFQRkEZ5L34no3hA1zsBmC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TaC8tFgY3TKEXuhbJK5PNbfAmcTMFQRkEZ5L34no3hA1zsBmC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11448348 - },{ - "name": "bts-orlander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xvyq8TyDWz3BZe11EkbUhBJbP8bRZmLdjtWXtjTZdWuLJSgPp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xvyq8TyDWz3BZe11EkbUhBJbP8bRZmLdjtWXtjTZdWuLJSgPp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293631 - },{ - "name": "bts-orion", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nibcEQitKH3gws5E3BUNbVe1Z2PxcZGTHWS7uqGMhUuPZvV8V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nibcEQitKH3gws5E3BUNbVe1Z2PxcZGTHWS7uqGMhUuPZvV8V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169589 - },{ - "name": "bts-john-galt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DhRUimGpKxvT2X7KqSEpsMBRCaajt7QvivKkeLxzGYaJDr3ve", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DhRUimGpKxvT2X7KqSEpsMBRCaajt7QvivKkeLxzGYaJDr3ve", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1409 - },{ - "name": "bts-prince", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BDFPbhufs62Ua9AZQFycg5GTjuiyps3LjeEo93HcE5AMJcxUt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BDFPbhufs62Ua9AZQFycg5GTjuiyps3LjeEo93HcE5AMJcxUt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-heaven", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XAZhAzRYqz69HknniefCtXtX43brHtcw2Zpu33PnYKn8ZSNMD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XAZhAzRYqz69HknniefCtXtX43brHtcw2Zpu33PnYKn8ZSNMD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12408 - },{ - "name": "bts-zuckerberg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oxgp4EeHWGLnJo8wZShtVNUH374GxdPoD2McEGPVfZGMxwop9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oxgp4EeHWGLnJo8wZShtVNUH374GxdPoD2McEGPVfZGMxwop9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1588 - },{ - "name": "bts-wwwtaobaocom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eA1Az979qG2VW2zR5RhRABhn9y1WcAZzfm9fwpyqrDYagqKGz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eA1Az979qG2VW2zR5RhRABhn9y1WcAZzfm9fwpyqrDYagqKGz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7797013 - },{ - "name": "bts-arhag", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51Q4nmrxoi2yCywKJ3HVcw4KV9o9Reev4CB6rD7PAMBuujimcH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51Q4nmrxoi2yCywKJ3HVcw4KV9o9Reev4CB6rD7PAMBuujimcH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28559 - },{ - "name": "bts-emski", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Cr1jeVwurfoDi2cfBnbLAEBe86bLZ25WkzuULuVrbuqk6UaBB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Cr1jeVwurfoDi2cfBnbLAEBe86bLZ25WkzuULuVrbuqk6UaBB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 710062 - },{ - "name": "bts-spartako-w", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pJhRtriWukon5ci1kXZV8AC1dv34iMFu45AVm4kQTgb3C3y8j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pJhRtriWukon5ci1kXZV8AC1dv34iMFu45AVm4kQTgb3C3y8j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 145 - },{ - "name": "bts-luca", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jhvBYjv6c5dzexJcGxEYLhDs3ZZreY1YepmGu1U3eVhZtgzzZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jhvBYjv6c5dzexJcGxEYLhDs3ZZreY1YepmGu1U3eVhZtgzzZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21439 - },{ - "name": "bts-ricky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62oYUrCkcMP3zZ5frjzuupi1SRuKhRMWUPT8fuC9LPw4PP9ZEi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62oYUrCkcMP3zZ5frjzuupi1SRuKhRMWUPT8fuC9LPw4PP9ZEi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1917354 - },{ - "name": "bts-jakethepanda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WrA9r7xpjhKyA9uoVhT1BxEr2X5sUHcPN3rWG4UWAHUh5jqCV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WrA9r7xpjhKyA9uoVhT1BxEr2X5sUHcPN3rWG4UWAHUh5jqCV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-emailtootradebot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4um9euT1sj2yNdD41wHwkJiDKWrRufoRirTKMkGG1PmiFLue5X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4um9euT1sj2yNdD41wHwkJiDKWrRufoRirTKMkGG1PmiFLue5X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1744556 - },{ - "name": "bts-sschechter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56p4Cuz8R7kFPkdCPnWCtu2RApiPCkg6MS5a8ps4fyM1KNKp6a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56p4Cuz8R7kFPkdCPnWCtu2RApiPCkg6MS5a8ps4fyM1KNKp6a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2316859 - },{ - "name": "bts-pollux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qKMek41Q9uY22YPhiy37C91sFCbe6Z6S7zCv9XVdpc994kfDj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qKMek41Q9uY22YPhiy37C91sFCbe6Z6S7zCv9XVdpc994kfDj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18756 - },{ - "name": "bts-tomliu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YcFXDxoGYPEBVM9kQPVbgP959ygSVhH72ebCjoNFfpj2wmfvx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YcFXDxoGYPEBVM9kQPVbgP959ygSVhH72ebCjoNFfpj2wmfvx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 622423 - },{ - "name": "bts-jwiz168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zSuoFEtorF6yyadCRjb9in4Qei4EwRue27n6zAs3swknVeric", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zSuoFEtorF6yyadCRjb9in4Qei4EwRue27n6zAs3swknVeric", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 494 - },{ - "name": "bts-pw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XahN9bBE9dWPfaa2Eh6VzmKxVfEEcGYvW5CSmNKYq7vPnEAXN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XahN9bBE9dWPfaa2Eh6VzmKxVfEEcGYvW5CSmNKYq7vPnEAXN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2257700 - },{ - "name": "bts-zhanghaoteng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hg1nnzAu78WvTaRP9y4TuknwGumqcYPzxqkZiii9KSQ26nBPY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hg1nnzAu78WvTaRP9y4TuknwGumqcYPzxqkZiii9KSQ26nBPY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-guiyuantianju", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zunKn8Vk7zqTTNYG9qSq7gyLrStsEyqaTuvadZWPoX5CegKDr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zunKn8Vk7zqTTNYG9qSq7gyLrStsEyqaTuvadZWPoX5CegKDr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-pheonike", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST783iYWHWt1ykgD8ZopfgESALQMSJvK3e4J4LctK2VDHHLmtFor", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST783iYWHWt1ykgD8ZopfgESALQMSJvK3e4J4LctK2VDHHLmtFor", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 468052 - },{ - "name": "bts-sunwukong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bxLg2pkr7qjToZ8L75Gjpy6CpXYcUUmKCJ7aK9qsWfFK4qMRK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bxLg2pkr7qjToZ8L75Gjpy6CpXYcUUmKCJ7aK9qsWfFK4qMRK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 773 - },{ - "name": "bts-xingkr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y5UNzDry4gpEet2da21koKMFkRssEYECyYt4smugzQQ59YKpv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y5UNzDry4gpEet2da21koKMFkRssEYECyYt4smugzQQ59YKpv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-btsbear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8G1BxkxE3BpX9N7szSSnWPKqU1s8wBHHFs7BWNhpJt4vDNmh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8G1BxkxE3BpX9N7szSSnWPKqU1s8wBHHFs7BWNhpJt4vDNmh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 95 - },{ - "name": "bts-sdivenwujc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dyPA3mTafXMWDvdSUL9Cy2miyMDxA8Dwnje4PGhz5sW1afED6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dyPA3mTafXMWDvdSUL9Cy2miyMDxA8Dwnje4PGhz5sW1afED6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-xihulongjing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57ftxtLbgk295yfzVkwh71tfFBjLVFtENLqQBkvBDTozsrrQUu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57ftxtLbgk295yfzVkwh71tfFBjLVFtENLqQBkvBDTozsrrQUu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-okpay123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X7bzpnx5fptCZGLpc7u1q2Xw5eDs96183gEqUnokiXSBcjqGn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X7bzpnx5fptCZGLpc7u1q2Xw5eDs96183gEqUnokiXSBcjqGn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-jichenwu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xWE6CCjSAL63JpmMHLVGC8s3o3quy44HuaLnj1qUcm1rFnamQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xWE6CCjSAL63JpmMHLVGC8s3o3quy44HuaLnj1qUcm1rFnamQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-benefit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KDusTJN47p37ETNnY4FXPKMsgqeybPBTSTNg9dswdB1itmyED", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KDusTJN47p37ETNnY4FXPKMsgqeybPBTSTNg9dswdB1itmyED", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 101 - },{ - "name": "bts-skyscraperfarms", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Zfr9Ez4V4DeN8iAMSEFWDxPL6pnTs7gsYK581qSbwuSVUw2bi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Zfr9Ez4V4DeN8iAMSEFWDxPL6pnTs7gsYK581qSbwuSVUw2bi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21706 - },{ - "name": "bts-philipli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6soN4autZU9UWbQUdNdpNAo98ewjruzuuPSuz18LCWbG6zY2pa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6soN4autZU9UWbQUdNdpNAo98ewjruzuuPSuz18LCWbG6zY2pa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 318 - },{ - "name": "bts-erky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LMvneaUg3sFL53DbXLEZonLmMMGYxHVUR2RYFUu4fxRg8EMgL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LMvneaUg3sFL53DbXLEZonLmMMGYxHVUR2RYFUu4fxRg8EMgL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-zhuws", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55qMTSAzQajB3UaUFhmGDNYayL6K7CvaexfP3Sjzg2WXnhgJCz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55qMTSAzQajB3UaUFhmGDNYayL6K7CvaexfP3Sjzg2WXnhgJCz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 840991 - },{ - "name": "bts-bang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FozLPharTc7HjypLxnSGGoBFxbVB4HW2RTUnGNG4N5F8u2QNk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FozLPharTc7HjypLxnSGGoBFxbVB4HW2RTUnGNG4N5F8u2QNk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5020541 - },{ - "name": "bts-hengheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jepS9EEkiiDzoB7rEN6fS51YuxKBdMyBgj5wD2tXtF61y8FdE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jepS9EEkiiDzoB7rEN6fS51YuxKBdMyBgj5wD2tXtF61y8FdE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-joel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81DPSFJUqsaC3DXKU5khu88w9Gux85FDdCtD5jsE4mGLjvRvjc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81DPSFJUqsaC3DXKU5khu88w9Gux85FDdCtD5jsE4mGLjvRvjc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150411 - },{ - "name": "bts-somawj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dLP9K96UkPhwDKVQfSvsGzktbdnsUKbkyW1ccsemtinUhLNMv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dLP9K96UkPhwDKVQfSvsGzktbdnsUKbkyW1ccsemtinUhLNMv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-knifes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HB862DHdJWPTNS5JUZw6ebH1R932Ugu1H5waDfyYeAhSqaYSk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HB862DHdJWPTNS5JUZw6ebH1R932Ugu1H5waDfyYeAhSqaYSk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 197871 - },{ - "name": "bts-lone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WPf67xeXXHHYdqghxtsWrH9ZciQxDKqiViftbsCqbkFzZBQu2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WPf67xeXXHHYdqghxtsWrH9ZciQxDKqiViftbsCqbkFzZBQu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 835446 - },{ - "name": "bts-dsj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d6Gc1ibHZHPs5GATUDdXni7JPvigLdtLsC2Tq3xvE54VtUy4h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d6Gc1ibHZHPs5GATUDdXni7JPvigLdtLsC2Tq3xvE54VtUy4h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-mybtsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WGX9EPfuSjHqfdjaa38aBczZiGbNBDUmP2sLgSm8APB6xRBaa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WGX9EPfuSjHqfdjaa38aBczZiGbNBDUmP2sLgSm8APB6xRBaa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3770524 - },{ - "name": "bts-betaxtrade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MdK4afYd8gAogtwYjuRWAHfSpsCYutfBvZ6y2AeZHLAtcYpY6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MdK4afYd8gAogtwYjuRWAHfSpsCYutfBvZ6y2AeZHLAtcYpY6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2316340 - },{ - "name": "bts-hanaac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81EJLGbFRFXxGV4js3c5yNhmyeB8kH4vafP3Bpu8HTCHpFVvPr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81EJLGbFRFXxGV4js3c5yNhmyeB8kH4vafP3Bpu8HTCHpFVvPr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2397345 - },{ - "name": "bts-betax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sFAk4sHMKdnmLYPm7Cj6Xd8EE6CnV7k6WidMKExTyVegNhBkC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sFAk4sHMKdnmLYPm7Cj6Xd8EE6CnV7k6WidMKExTyVegNhBkC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 85 - },{ - "name": "bts-btsx5051", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pj3xABNmp9PN1FLsN4hzihSDASjEVAC4C9kohEwQQQrUgKrnJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pj3xABNmp9PN1FLsN4hzihSDASjEVAC4C9kohEwQQQrUgKrnJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-ziggy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rd381WqcE9tKJDyxNACe7r8fxzp57aUahczjjBMGtbfYThM2v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rd381WqcE9tKJDyxNACe7r8fxzp57aUahczjjBMGtbfYThM2v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72357 - },{ - "name": "bts-wuyang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8juHGVQ6Hvedaz3XDuF1MsqsAKaf62Y2XQsw8Su7NigcdwVxXz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8juHGVQ6Hvedaz3XDuF1MsqsAKaf62Y2XQsw8Su7NigcdwVxXz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 174424 - },{ - "name": "bts-right", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ijru4AezpneUtUwbd1KbHoyPN1uyEWWaqajJn6fZEfVM1hwuu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ijru4AezpneUtUwbd1KbHoyPN1uyEWWaqajJn6fZEfVM1hwuu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 234727 - },{ - "name": "bts-address", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79g98129HTSr82BLjrjAUiquXMW7kyTc6SCvGKyepLmfBpMJsz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79g98129HTSr82BLjrjAUiquXMW7kyTc6SCvGKyepLmfBpMJsz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 493267 - },{ - "name": "bts-assert", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qgSTq3rg4eGc4Dp7Zgozbpa7UiXNJYw86irmQaD2UbxvVGypT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qgSTq3rg4eGc4Dp7Zgozbpa7UiXNJYw86irmQaD2UbxvVGypT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-unicef", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rQyhCUkfgZiCCtnpBRSpSUX8udKMCFS68GX7C2R71drfihyK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rQyhCUkfgZiCCtnpBRSpSUX8udKMCFS68GX7C2R71drfihyK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23773450 - },{ - "name": "bts-fabiux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xdz7F19f2uCESUjEh9UF9J5VdM5btqxCzdrxowoWB3rqjVa6P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xdz7F19f2uCESUjEh9UF9J5VdM5btqxCzdrxowoWB3rqjVa6P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1676 - },{ - "name": "bts-disneyland", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Nm3VXHwjXqAsioKtxJDXEZiTWDT5FRofGcrz4TFMVWCX6scCZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Nm3VXHwjXqAsioKtxJDXEZiTWDT5FRofGcrz4TFMVWCX6scCZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5229 - },{ - "name": "bts-genezhu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bQ7k4GmPXBu3qmpeK8oWsHBr3Tdit89q9famTnxcr4w4nVbcs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bQ7k4GmPXBu3qmpeK8oWsHBr3Tdit89q9famTnxcr4w4nVbcs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-coolong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vn9Jj2JrVo4vM7xmD6VKDDQo5JoS7gJ6BaLcBy72yQRtqpHMC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vn9Jj2JrVo4vM7xmD6VKDDQo5JoS7gJ6BaLcBy72yQRtqpHMC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-banca", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EDreSpMsLAtbSRWqiCrqt5QcQTfd7kJGqWPBetFKXu3PhF2Z5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EDreSpMsLAtbSRWqiCrqt5QcQTfd7kJGqWPBetFKXu3PhF2Z5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 528051 - },{ - "name": "bts-alwaysjh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uF6VPTwfA5cKn4w3r3b5LaLvN4LW3gWw4scUfGFY4wyv4JZQN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uF6VPTwfA5cKn4w3r3b5LaLvN4LW3gWw4scUfGFY4wyv4JZQN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3031127 - },{ - "name": "bts-bts2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cHa3rirqUKqmbpwYpgj3XW2qmKEQAvgXJEiMLwfNuWEaCapKm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cHa3rirqUKqmbpwYpgj3XW2qmKEQAvgXJEiMLwfNuWEaCapKm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-bitsharesworld", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TyhknXARuNHZbqZTs3xTjVFoEYkJbfdrsvRKoXDHzivmRezWq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TyhknXARuNHZbqZTs3xTjVFoEYkJbfdrsvRKoXDHzivmRezWq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-consultant", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dQXEqwgqcDxpDTLEyU7Rb3n33F14JYm7Sfv9EAxoAnXSLc1J7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dQXEqwgqcDxpDTLEyU7Rb3n33F14JYm7Sfv9EAxoAnXSLc1J7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2293159 - },{ - "name": "bts-paopao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F4ifgU1qcUD4bXkGcK2TuiPkp6d9M8DbQmxww7SHxu8KDuWQe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F4ifgU1qcUD4bXkGcK2TuiPkp6d9M8DbQmxww7SHxu8KDuWQe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2506167 - },{ - "name": "bts-icar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BJpifZxAQMLpPic5LwpTBw9XEmGN6fNfVEizVWVGjsyM5nt1e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BJpifZxAQMLpPic5LwpTBw9XEmGN6fNfVEizVWVGjsyM5nt1e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2895 - },{ - "name": "bts-rnixianren", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bmnCBkRZc6ndrwETj7ntgRHU8sJ7vRsG44me5YT69x3SfzXuS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bmnCBkRZc6ndrwETj7ntgRHU8sJ7vRsG44me5YT69x3SfzXuS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149 - },{ - "name": "bts-fei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F7jADzf6iXuRMf5vSTc13zwAc6KMqr3bDC6nsGQTzn4tNfCFo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F7jADzf6iXuRMf5vSTc13zwAc6KMqr3bDC6nsGQTzn4tNfCFo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-kylin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YirJwqGun71wAUpCwRiJ84XgbFtReW35worwjL9ZRjMsEJTtV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YirJwqGun71wAUpCwRiJ84XgbFtReW35worwjL9ZRjMsEJTtV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-slava", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nyeQWj4zHFjd8DAvpp66KQ35bbdCXgMhk56B2WztNinuG45Uq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nyeQWj4zHFjd8DAvpp66KQ35bbdCXgMhk56B2WztNinuG45Uq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-cmaje72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SweUepGQvDPAYoAKM4Pthys8pN71aZyGasWWgdMXVxzJw9XFv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SweUepGQvDPAYoAKM4Pthys8pN71aZyGasWWgdMXVxzJw9XFv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378004 - },{ - "name": "bts-maqifrnswa-safe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ywB6qvsQXXc8Bz16pnqx2yWC7ADz4EH4TeH1wUuMSJ4P3sPft", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ywB6qvsQXXc8Bz16pnqx2yWC7ADz4EH4TeH1wUuMSJ4P3sPft", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-weerdenburg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uraWABF1ejSUcH2h4p2F4H9gYq3a3bgJDV39szgCzzFV9qB3J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uraWABF1ejSUcH2h4p2F4H9gYq3a3bgJDV39szgCzzFV9qB3J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29328 - },{ - "name": "bts-winners", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UoZFxFKXmQXSfaxDaZ3396Jo7iiBWrTDSxctK6XEZfr4Nuc8k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UoZFxFKXmQXSfaxDaZ3396Jo7iiBWrTDSxctK6XEZfr4Nuc8k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-btsnow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PfhMkuPoh976TPF8bsSPn4pqZEYGfzbQmydC2Zs3M1M7xUuM7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PfhMkuPoh976TPF8bsSPn4pqZEYGfzbQmydC2Zs3M1M7xUuM7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3831920 - },{ - "name": "bts-mister", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MEuq1syB8vrawERGB9kAHCsFsg4bpA1caCeojTKrYLaCqN5md", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MEuq1syB8vrawERGB9kAHCsFsg4bpA1caCeojTKrYLaCqN5md", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10499 - },{ - "name": "bts-navis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j6qS7fVAjyyD7snxtvZEpt5nrxRTcY1ayzvZv9ugPJoLfuxE1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j6qS7fVAjyyD7snxtvZEpt5nrxRTcY1ayzvZv9ugPJoLfuxE1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46487 - },{ - "name": "bts-orangotango", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AEzcgmWSaAwtiqzLtkQfBJA2PzMHLS2r1GiLoYgDooG1hxxi9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AEzcgmWSaAwtiqzLtkQfBJA2PzMHLS2r1GiLoYgDooG1hxxi9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3073532 - },{ - "name": "bts-gamey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z9RPg7eNpUAuoyqS43FgDdLNvBV8jSwhiPxq1Ptvch8nVr9jm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z9RPg7eNpUAuoyqS43FgDdLNvBV8jSwhiPxq1Ptvch8nVr9jm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17496 - },{ - "name": "bts-bitpool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J9edtTCPsJPaMZQHRqNTf1H6fNjtWQmuvXxizDEGWNooQL5c8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J9edtTCPsJPaMZQHRqNTf1H6fNjtWQmuvXxizDEGWNooQL5c8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-lifeisgreat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m8LJbdHg1hhMxF8DEBNgyZPNKYC1sYDCjkDU6d7b3mHg9XNUW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m8LJbdHg1hhMxF8DEBNgyZPNKYC1sYDCjkDU6d7b3mHg9XNUW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-wildwex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nmxRqLFFGtwAfMCnK2ZY6U3t4uxdhAXUMTuV1Rmcbftn2B372", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nmxRqLFFGtwAfMCnK2ZY6U3t4uxdhAXUMTuV1Rmcbftn2B372", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69771 - },{ - "name": "bts-babel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yc777ZQs1YCbetNnV3mreQ8oAmPG7BmsWpB3E3kgyURdzF2JH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yc777ZQs1YCbetNnV3mreQ8oAmPG7BmsWpB3E3kgyURdzF2JH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-fortytwo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RKpBEi8LLPqWKEgPfm5indvXkon9bkcyVvRPZCt5YFMA4EJ3o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RKpBEi8LLPqWKEgPfm5indvXkon9bkcyVvRPZCt5YFMA4EJ3o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 785109 - },{ - "name": "bts-rzshenweidelegates", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DE8fj1PMEshPyrcVbCtE7YwS31AaCmfMW7m48d2GMLbSZVXjy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DE8fj1PMEshPyrcVbCtE7YwS31AaCmfMW7m48d2GMLbSZVXjy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7403 - },{ - "name": "bts-xbm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NsnXVwhh4TBcpd5LyBsLwr2roQd4qsTNBnGXm3TnosAeyPYHm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NsnXVwhh4TBcpd5LyBsLwr2roQd4qsTNBnGXm3TnosAeyPYHm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 390 - },{ - "name": "bts-busygin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J3DmhVp5LWkAqwkeq4ii6VXZNBfJmx7yA79vs1e9beheQTUrx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J3DmhVp5LWkAqwkeq4ii6VXZNBfJmx7yA79vs1e9beheQTUrx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-libaisan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K2XY7iVi2dEpL9pATAvtJ8nuTa6dwhWrDaMtwoQwyn4rfXKHZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K2XY7iVi2dEpL9pATAvtJ8nuTa6dwhWrDaMtwoQwyn4rfXKHZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28309 - },{ - "name": "bts-wbw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jBu8j6TkAKe8L49j7xegnC8k6m9MshYgGCBS9Wo2moJ79BYug", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jBu8j6TkAKe8L49j7xegnC8k6m9MshYgGCBS9Wo2moJ79BYug", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-senz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QtXDqPMn4dX4L96WMgz89rz1QDRAPEAqJLa5sr3Wv2eBqxUnL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QtXDqPMn4dX4L96WMgz89rz1QDRAPEAqJLa5sr3Wv2eBqxUnL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5946034 - },{ - "name": "bts-effatha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gTdPVLy3ixTcZG16ctHQjHhagnznVk9ZfuCtKGmDHB5jvxs7d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gTdPVLy3ixTcZG16ctHQjHhagnznVk9ZfuCtKGmDHB5jvxs7d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 933992 - },{ - "name": "bts-bitgod", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5167ikE6B9x4Y9o8PMXv7LgrPtmkSjTqNGN5D3rcm34NoSry3B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5167ikE6B9x4Y9o8PMXv7LgrPtmkSjTqNGN5D3rcm34NoSry3B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 220 - },{ - "name": "bts-don", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AY7StiUL8MGmDGttGHQaj7Lt4P4mMPtq8JJT6u5zdrvQJAwP3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AY7StiUL8MGmDGttGHQaj7Lt4P4mMPtq8JJT6u5zdrvQJAwP3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-americansilver", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k4M1r7h9mvPJrbU1VABhhRugo6zondCDdqdDJSWQepWRrMQo6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k4M1r7h9mvPJrbU1VABhhRugo6zondCDdqdDJSWQepWRrMQo6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3193110 - },{ - "name": "bts-tangxihua1973", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EfeA8w38YmyR8EYdVwnGCCtRVeoZ4puTwdcU5yqU4d3ETnwop", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EfeA8w38YmyR8EYdVwnGCCtRVeoZ4puTwdcU5yqU4d3ETnwop", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293 - },{ - "name": "bts-beyondbitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T7wXxyjHmPasmbAxVdwwRaM6VHPoEUGJYT7n7LqgvSrsjnj9q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T7wXxyjHmPasmbAxVdwwRaM6VHPoEUGJYT7n7LqgvSrsjnj9q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1599586 - },{ - "name": "bts-neuron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dKYgmFFvxV5379NvUPUQAdS4wPA85Bpv8eiPNsc79kUTRabNv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dKYgmFFvxV5379NvUPUQAdS4wPA85Bpv8eiPNsc79kUTRabNv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 278815 - },{ - "name": "bts-neuronwall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c8yHssXd2QKs3JP41i162eJyeiryPoij5fefDaVsJLNXe51i5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c8yHssXd2QKs3JP41i162eJyeiryPoij5fefDaVsJLNXe51i5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4475887 - },{ - "name": "bts-newstar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ScQCQkhT1KJ6GpC65TQoo6gF34ywHzoUfrTb4X8PEvs8jg4uT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ScQCQkhT1KJ6GpC65TQoo6gF34ywHzoUfrTb4X8PEvs8jg4uT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1531574 - },{ - "name": "bts-clayop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fzuewtdfrMtqSWQzLrnV4oqskBjGHy8WpzKVzqSVvCeGtjVR5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fzuewtdfrMtqSWQzLrnV4oqskBjGHy8WpzKVzqSVvCeGtjVR5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 252504 - },{ - "name": "bts-arkana", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aAx3YiJCScErpSm6mmQ9ZPTq8b6r4BQF994GhFk9vkYB3CX3U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aAx3YiJCScErpSm6mmQ9ZPTq8b6r4BQF994GhFk9vkYB3CX3U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6551 - },{ - "name": "bts-tetsz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69BZKF7UqLCwoA8XupzS69rESsRLLfNT3kRoAKaiZcVZ1jhuSo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69BZKF7UqLCwoA8XupzS69rESsRLLfNT3kRoAKaiZcVZ1jhuSo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28967 - },{ - "name": "bts-allcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EatJW15hj2J2pmhNmtJLYtQRA8Z876RFf7SMqABFSgEuRR5fh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EatJW15hj2J2pmhNmtJLYtQRA8Z876RFf7SMqABFSgEuRR5fh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1820033 - },{ - "name": "bts-automake", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U5S8bdegFohPNFn7PXnYZdYvadygm8guRi33y2mmWNEofc8VF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U5S8bdegFohPNFn7PXnYZdYvadygm8guRi33y2mmWNEofc8VF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-furball", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KhF2VeGPPGD6knH1nszS4XZkMcC5YoE5uUQDwExDJwF9AdpVu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KhF2VeGPPGD6knH1nszS4XZkMcC5YoE5uUQDwExDJwF9AdpVu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 449009 - },{ - "name": "bts-syslxg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H38rwt252TWg4h3qFVHVR6S3UTMvfKYdQuwzLayt1Laf7d9Cr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H38rwt252TWg4h3qFVHVR6S3UTMvfKYdQuwzLayt1Laf7d9Cr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1449500 - },{ - "name": "bts-bterdeposit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oJ5icgrbMRdzGSKau1NKQqxmYsMRa6rnHsZdxArjCVPWnvi3D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oJ5icgrbMRdzGSKau1NKQqxmYsMRa6rnHsZdxArjCVPWnvi3D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3811 - },{ - "name": "bts-payment", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WZHUxP5EM7X6Qqx5PWTt8xAnqCJuyd1t2LUR2oExd72oToLR4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WZHUxP5EM7X6Qqx5PWTt8xAnqCJuyd1t2LUR2oExd72oToLR4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1538 - },{ - "name": "bts-peterzhang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M38DzksEsZf7qdj8E4uFhED8xP9M1pbNdszitQyEVi6Ui3xgY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M38DzksEsZf7qdj8E4uFhED8xP9M1pbNdszitQyEVi6Ui3xgY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 392987 - },{ - "name": "bts-chen76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Pz7upzKUzK2Vb1nyiBqoB9YbgoZy49VBwLoDEcm71QeP1px1y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Pz7upzKUzK2Vb1nyiBqoB9YbgoZy49VBwLoDEcm71QeP1px1y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 114 - },{ - "name": "bts-bts88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Xnjc2Nhd3SY5PWrRNY3B3b5XPa3NdB5zRnGSVZ12joUW4xGs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Xnjc2Nhd3SY5PWrRNY3B3b5XPa3NdB5zRnGSVZ12joUW4xGs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17036501 - },{ - "name": "bts-shadow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nSEq4FePnGnUcFUaeccMvHwHXhSPbo8tUFPotz3Beg4caNu6e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nSEq4FePnGnUcFUaeccMvHwHXhSPbo8tUFPotz3Beg4caNu6e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-f8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LwvAi1SM9SqVtiRPUnSYiN2UZt4rRMGcLZNopGkRqhQ5gmfVo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LwvAi1SM9SqVtiRPUnSYiN2UZt4rRMGcLZNopGkRqhQ5gmfVo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38 - },{ - "name": "bts-minebitshares-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75UD7AtNSxGHkb8q3zJoehFjjGNayD5puCKcfPEr2QHrHgkuF6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75UD7AtNSxGHkb8q3zJoehFjjGNayD5puCKcfPEr2QHrHgkuF6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 85 - },{ - "name": "bts-luochao436", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TcNTPUfCAvvVmow7n8KszoBtUnmui2XMyPLTLEdAtyVXUw5rh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TcNTPUfCAvvVmow7n8KszoBtUnmui2XMyPLTLEdAtyVXUw5rh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75756 - },{ - "name": "bts-aiai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CJwtEm2gRbwJyzEXHSmRHjDHztiy6FyTPF4oQPrACEMCqMmyX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CJwtEm2gRbwJyzEXHSmRHjDHztiy6FyTPF4oQPrACEMCqMmyX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-ivy0330", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CPUs66j4mnYaETQvZgP3qJgwSWfz8VqrmfLqwVt8sNF5UUVin", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CPUs66j4mnYaETQvZgP3qJgwSWfz8VqrmfLqwVt8sNF5UUVin", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7824628 - },{ - "name": "bts-wangyu436", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63np17jJnmJZ29zdaVCCJfRRrCkBSdrjZCTHffmPEdMYtfFJsR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63np17jJnmJZ29zdaVCCJfRRrCkBSdrjZCTHffmPEdMYtfFJsR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3608 - },{ - "name": "bts-yidaidaxia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T8Kw7kykgV8MVw97RVDT9FKFWBBoa9t3BJFBAUxBxcYYd3Jgb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T8Kw7kykgV8MVw97RVDT9FKFWBBoa9t3BJFBAUxBxcYYd3Jgb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 269222 - },{ - "name": "bts-pub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57NDwp9oqr7kWYduMmeUQc4FGj7AhEjMGfVPxkxWjXNRweX3iU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57NDwp9oqr7kWYduMmeUQc4FGj7AhEjMGfVPxkxWjXNRweX3iU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338363 - },{ - "name": "bts-xiangxn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yEHsm6Vjx1LibFww21cucEKhPZ9xJd11dsvAXfDAFodjWveEP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yEHsm6Vjx1LibFww21cucEKhPZ9xJd11dsvAXfDAFodjWveEP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 159690 - },{ - "name": "bts-deer0913", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RnEiJNjsp3iT3eSuFSmh13BoeYn6TVwGH1hD3q7Y33wTHo2Zi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RnEiJNjsp3iT3eSuFSmh13BoeYn6TVwGH1hD3q7Y33wTHo2Zi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-bitdraw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MMzek58RCcSBdi14kLF7Pabj5XbS4gZucwchjj21a4tL11xXf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MMzek58RCcSBdi14kLF7Pabj5XbS4gZucwchjj21a4tL11xXf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 164638 - },{ - "name": "bts-wanlin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qwR3Gac5nXXwu1MUzQu4zQRTmRbWbeKhMkPwNnQXDGkhF4i1o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qwR3Gac5nXXwu1MUzQu4zQRTmRbWbeKhMkPwNnQXDGkhF4i1o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3249288 - },{ - "name": "bts-namjar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kmEf1T1PfgYeaJir4MCNsn4JwRcjkuyhzsxsU61RXG9G2Dt9d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kmEf1T1PfgYeaJir4MCNsn4JwRcjkuyhzsxsU61RXG9G2Dt9d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7578 - },{ - "name": "bts-werneo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VknizXMhBeYE4TfjfKUE9HjPs4Jfzzfueyh5bvZKfhUEoaCiZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VknizXMhBeYE4TfjfKUE9HjPs4Jfzzfueyh5bvZKfhUEoaCiZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 224894 - },{ - "name": "bts-shentist", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AedbWc73owy6aAK4C146tXM5pCWfuRJjLAYyD6UwsBQKn845R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AedbWc73owy6aAK4C146tXM5pCWfuRJjLAYyD6UwsBQKn845R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41939 - },{ - "name": "bts-channel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85yvbtveoNd9hbcUQ9RXs4L9qMgHFWN4eZUgiKcfyj8BXEtdNC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85yvbtveoNd9hbcUQ9RXs4L9qMgHFWN4eZUgiKcfyj8BXEtdNC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3993 - },{ - "name": "bts-beyondbitcoincon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HvSsVPiYHe55WDZifJTGNw7ykwnk5FUg5ZR8oi41zRG1PFaXn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HvSsVPiYHe55WDZifJTGNw7ykwnk5FUg5ZR8oi41zRG1PFaXn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-via", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dfdh2x6pnrZEF6i2cbNr2yePP3QwCv4v2SJzWspUbmzwn2MGa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dfdh2x6pnrZEF6i2cbNr2yePP3QwCv4v2SJzWspUbmzwn2MGa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2654 - },{ - "name": "bts-todo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZWho8LyzdaJGWQuZGaWGKSJUpCoyUHkXKkDf4mCdnFqVAXEdz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZWho8LyzdaJGWQuZGaWGKSJUpCoyUHkXKkDf4mCdnFqVAXEdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5403 - },{ - "name": "bts-fiesta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Z9kNkKc2iWdRP5XeE25KLupQD8sdD1MmbnwPqBZ4urePnKGb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Z9kNkKc2iWdRP5XeE25KLupQD8sdD1MmbnwPqBZ4urePnKGb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4070 - },{ - "name": "bts-moneros", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hcEm2v2kD3Qghs5V4Ta9yc6EXv9GL5HpDEt2TkEpKvoaxSiW5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hcEm2v2kD3Qghs5V4Ta9yc6EXv9GL5HpDEt2TkEpKvoaxSiW5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5364 - },{ - "name": "bts-botond", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lq8Zq2kd9ZbDMr6PX79Bj8AUwSucfQV8b1YVpWDPVv8r4ajzS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lq8Zq2kd9ZbDMr6PX79Bj8AUwSucfQV8b1YVpWDPVv8r4ajzS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 273969 - },{ - "name": "bts-atman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BPyNTZ6X5HEwTTJeg9EBKaRo463REYpXGYrroPANHq8ZD4SpX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BPyNTZ6X5HEwTTJeg9EBKaRo463REYpXGYrroPANHq8ZD4SpX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2108953 - },{ - "name": "bts-apex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ztwt4b2cLw2S27mfjmtW1Vk5Z98N4VFfkmYJxEyeLCdBmfwsy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ztwt4b2cLw2S27mfjmtW1Vk5Z98N4VFfkmYJxEyeLCdBmfwsy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16167 - },{ - "name": "bts-trust", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TWjshdiCPjFVr6h7Qwusw6fpXD5pTwEpbfxCWMf17a87BPTGF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-unknown", - 1 - ] - ], - "key_auths": [[ - "TEST8TWjshdiCPjFVr6h7Qwusw6fpXD5pTwEpbfxCWMf17a87BPTGF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-llc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8cDkG6wvziPaqhZ55XzqaeBNLtwyStuvriGWbdFDi2mJ7sCw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8cDkG6wvziPaqhZ55XzqaeBNLtwyStuvriGWbdFDi2mJ7sCw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-greggozzo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WzgYbcJCnxb633JnKVWEQvTNGvwx5tWBJrvt95QDdh1ys7LSX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WzgYbcJCnxb633JnKVWEQvTNGvwx5tWBJrvt95QDdh1ys7LSX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1386 - },{ - "name": "bts-bts888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kJA67focVzPqkDcQyBjkoamSZrywvMgyyXHYSBwXoz4qLdpBJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kJA67focVzPqkDcQyBjkoamSZrywvMgyyXHYSBwXoz4qLdpBJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wgf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54Q3E7q2Bb5KZUDxoQX5EzHQjzini6ggwnE7cHiVDyyEySwkma", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54Q3E7q2Bb5KZUDxoQX5EzHQjzini6ggwnE7cHiVDyyEySwkma", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-outman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NABUWQtkJAbLHD7xa4NamLi1bfWuvUS85PXrWxeA7h2jPy9Mp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NABUWQtkJAbLHD7xa4NamLi1bfWuvUS85PXrWxeA7h2jPy9Mp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-kslavik", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kutZ5kQdz2ArvMQ1v4bQ63tHnknkuRqdVZFVRQFEYGnN3C9U3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kutZ5kQdz2ArvMQ1v4bQ63tHnknkuRqdVZFVRQFEYGnN3C9U3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-sk2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64Rt9vSc2Qgcjewyszo7JY1iyRLg5E3k7tgPMw9R9ZLMsPMzrx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64Rt9vSc2Qgcjewyszo7JY1iyRLg5E3k7tgPMw9R9ZLMsPMzrx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-kok", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sgeCRVcivuUk1wNCPvBMCEaiEK4WD4j8jEtkqPThVt5w44u8a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sgeCRVcivuUk1wNCPvBMCEaiEK4WD4j8jEtkqPThVt5w44u8a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fengqingyang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GT2HUZYeCbzVtwH9q6Ri9DTsdUmQagQRyeKUFLHNdpRwzAGTm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GT2HUZYeCbzVtwH9q6Ri9DTsdUmQagQRyeKUFLHNdpRwzAGTm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1413730 - },{ - "name": "bts-hexhyuqi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73MzBUg6iqyX9kCi8qX5jBuwPuFgrQY386pEBex7C8cUcphHUc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73MzBUg6iqyX9kCi8qX5jBuwPuFgrQY386pEBex7C8cUcphHUc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 154424 - },{ - "name": "bts-bao99002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uekKCTdogMBvpJ6zxstiC45NCNyAWYQ7GK2sWisq6oXuJXSYS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uekKCTdogMBvpJ6zxstiC45NCNyAWYQ7GK2sWisq6oXuJXSYS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7294 - },{ - "name": "bts-rsi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eErFTtVDg3uJQfT4t9SQaiepSeB9zXWwzMwNAAogNqCiKJRwa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eErFTtVDg3uJQfT4t9SQaiepSeB9zXWwzMwNAAogNqCiKJRwa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1462 - },{ - "name": "bts-emski.bitdelegate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cTF31oEE2zUFuUf4bFt9GW86TKMtDFkPs7tEmo7venHHYyXXS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cTF31oEE2zUFuUf4bFt9GW86TKMtDFkPs7tEmo7venHHYyXXS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208885 - },{ - "name": "bts-luohaiyou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62tKP3mkZdbHHwuzCvbsWTtWwF6HRq34PXwu3pzb1T8gCSM3pD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62tKP3mkZdbHHwuzCvbsWTtWwF6HRq34PXwu3pzb1T8gCSM3pD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-goldsix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75RipRf8vHBovU8ByNL3CXhsciJ2KvfXRyYiivpCzpCpgRyYSr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75RipRf8vHBovU8ByNL3CXhsciJ2KvfXRyYiivpCzpCpgRyYSr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22766854 - },{ - "name": "bts-fell", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QbTBwVuJJoELJQD29iMyc2AJ6NLkMdRUqVLWi2paG6No1DUdY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QbTBwVuJJoELJQD29iMyc2AJ6NLkMdRUqVLWi2paG6No1DUdY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 565000 - },{ - "name": "bts-issong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q7hEqPUyts8MPdNxjaFmBgkYjpVDbQDY6A33KbwFXuQqDxePt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q7hEqPUyts8MPdNxjaFmBgkYjpVDbQDY6A33KbwFXuQqDxePt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75071 - },{ - "name": "bts-luo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57fTf1ZW4ijK3HCKfMvgG1H66BUQwEyoPFXBV5xqKH2Q9GX4Av", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57fTf1ZW4ijK3HCKfMvgG1H66BUQwEyoPFXBV5xqKH2Q9GX4Av", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469789 - },{ - "name": "bts-thecheat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mHdaAx6WKVTVFT7oLvL8uVqTCD8cy1LmMJd9KehmKaCwESHSZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mHdaAx6WKVTVFT7oLvL8uVqTCD8cy1LmMJd9KehmKaCwESHSZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2360515 - },{ - "name": "bts-rbohappy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hXF2yvpUyiK1b7Lq7AQ4Z8oB7kgs3mocYwZCeRmF7UFfCgwj1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hXF2yvpUyiK1b7Lq7AQ4Z8oB7kgs3mocYwZCeRmF7UFfCgwj1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1125 - },{ - "name": "bts-clar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69HVXsFeuf94oF3srrdSWpbmSj5vJXc1SgPRVTXNQUEGFToArK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69HVXsFeuf94oF3srrdSWpbmSj5vJXc1SgPRVTXNQUEGFToArK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1847 - },{ - "name": "bts-raspu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55BfvYyES4wD8mrHuf7RDE7nVPSMeoH2Pz3hscEyV4XdE4z58r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55BfvYyES4wD8mrHuf7RDE7nVPSMeoH2Pz3hscEyV4XdE4z58r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77149 - },{ - "name": "bts-missyou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B14nJbynQN2pvgCoLPtcM5tA81JPxoLUQDUvoWUnQ6TBkixpY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B14nJbynQN2pvgCoLPtcM5tA81JPxoLUQDUvoWUnQ6TBkixpY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 274 - },{ - "name": "bts-wj6267", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HqtdfSUJcwAj4RQH1NXjTAmpTrDxnkbhduvru9o2zB3FPiXCY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HqtdfSUJcwAj4RQH1NXjTAmpTrDxnkbhduvru9o2zB3FPiXCY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-delegate.baozi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EVRgzdQqEX9vsPqAq5PpNotfxpagFeL8b1DF2KffvLm9VvxXM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EVRgzdQqEX9vsPqAq5PpNotfxpagFeL8b1DF2KffvLm9VvxXM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 213 - },{ - "name": "bts-tonyk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TwQFL9zWE9Vq98qBwZHWy2haK5TKNmJzKeJKsgc6xTvJtxsx4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TwQFL9zWE9Vq98qBwZHWy2haK5TKNmJzKeJKsgc6xTvJtxsx4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-delegate.taolje", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TuKkiAbEo3ZDxmXYk9DgFMVEwwbMjiAMp63YnbhRVX8Q73UeJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TuKkiAbEo3ZDxmXYk9DgFMVEwwbMjiAMp63YnbhRVX8Q73UeJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-donglee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y9pfp89cKtWTSPzTfqszKVGaPZnEK7pbWe46TaCZff5aB4Hf7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y9pfp89cKtWTSPzTfqszKVGaPZnEK7pbWe46TaCZff5aB4Hf7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 806560 - },{ - "name": "bts-kingslanding", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D5x3UmvTzthHghPt6pf9xpQKsrwyxvP58QkY68qXnqvbk6n6q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D5x3UmvTzthHghPt6pf9xpQKsrwyxvP58QkY68qXnqvbk6n6q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2998139 - },{ - "name": "bts-acdc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MRJsvr8AGBCRDmVdCupnZwBxHvznchRYkouN8E7V1chPjWfnc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MRJsvr8AGBCRDmVdCupnZwBxHvznchRYkouN8E7V1chPjWfnc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24726 - },{ - "name": "bts-dddddddd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7inogDLLhhtDy9xe2SsQbh9L5uNaGwimotG2f6PzJ7FNRJEAu1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7inogDLLhhtDy9xe2SsQbh9L5uNaGwimotG2f6PzJ7FNRJEAu1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bitsha256", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vNsTe8ktBrz4SnvtU4Pv6CiSDUqTohxU6kJ4oDTmjwMWDTPcC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vNsTe8ktBrz4SnvtU4Pv6CiSDUqTohxU6kJ4oDTmjwMWDTPcC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34497 - },{ - "name": "bts-andrewmiao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6roMn59cjfKXNR56d7Pm3NDBSKoSYAEbHm9rwR6u98pa4oRhtB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6roMn59cjfKXNR56d7Pm3NDBSKoSYAEbHm9rwR6u98pa4oRhtB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22836 - },{ - "name": "bts-mr.agsexplorer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87yfCicWCc8tLKnggLzSHp7ZoXASJsLXdJj6UU1jSY3N1QiLdD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87yfCicWCc8tLKnggLzSHp7ZoXASJsLXdJj6UU1jSY3N1QiLdD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 222004 - },{ - "name": "bts-happyshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WzFDjUvBz3wQzcKNEhJt29RYRnDBwUvy5bDKKhdwj66vPZ5CJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WzFDjUvBz3wQzcKNEhJt29RYRnDBwUvy5bDKKhdwj66vPZ5CJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3620784 - },{ - "name": "bts-mike666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ujhqBHWVzNHeiUN7vDJ958DL3aUVHZ9qvbByWHtqVgPhMNC1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ujhqBHWVzNHeiUN7vDJ958DL3aUVHZ9qvbByWHtqVgPhMNC1A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-bitway", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W3ysUgRGHobE1xbW6da4Tqu3W18QqwhVq2z9dz9YsCHVJsfdq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W3ysUgRGHobE1xbW6da4Tqu3W18QqwhVq2z9dz9YsCHVJsfdq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 926561 - },{ - "name": "bts-thedon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84zRThf2cWKvSSiX1oLBxiFD2k643WdGuPEb8zXGar4G2v62P8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84zRThf2cWKvSSiX1oLBxiFD2k643WdGuPEb8zXGar4G2v62P8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18814 - },{ - "name": "bts-daniele", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FPhbfv9YBAPzGjST5fSWDH8NWdCyF7xAmN1endGWUPZ5H3CXB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FPhbfv9YBAPzGjST5fSWDH8NWdCyF7xAmN1endGWUPZ5H3CXB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 237199 - },{ - "name": "bts-valzav", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5icP5yQHmYiQ68oRXvJnvA5ka9VUeJtzY7Yvb3JqkPuJze81sU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5icP5yQHmYiQ68oRXvJnvA5ka9VUeJtzY7Yvb3JqkPuJze81sU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44793 - },{ - "name": "bts-brainbug", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B7QDfKyGDkX7SCe5JojTw3Xy7KLqKpRdy5zMN3qkfegcoyNZ8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B7QDfKyGDkX7SCe5JojTw3Xy7KLqKpRdy5zMN3qkfegcoyNZ8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1524965 - },{ - "name": "bts-jochen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H9r27cWJ4aLWU3YGTmjFBWmucbvxxwdrS4uQXhpjawAaMG3iY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H9r27cWJ4aLWU3YGTmjFBWmucbvxxwdrS4uQXhpjawAaMG3iY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177070 - },{ - "name": "bts-virtual-ventures", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WG7k1Fz9WLuP2e5VZ4ZYFTmyBzA2eNrMoTQLMvQYiF2LpPqMT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WG7k1Fz9WLuP2e5VZ4ZYFTmyBzA2eNrMoTQLMvQYiF2LpPqMT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31136366 - },{ - "name": "bts-localhost", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EBafXFLDzLVxTCvjG4UTy7CfygBjiU5ugp1XXRApXNYde7H9c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-unknown", - 1 - ] - ], - "key_auths": [[ - "TEST5EBafXFLDzLVxTCvjG4UTy7CfygBjiU5ugp1XXRApXNYde7H9c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-delegate.webber", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L3b6jTAcjVGQJwvzx5GjCG8DYvwNwuefdKxsvJqQMjQhDSZj4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L3b6jTAcjVGQJwvzx5GjCG8DYvwNwuefdKxsvJqQMjQhDSZj4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3755 - },{ - "name": "bts-delegate.liondani", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ydZSNbnwQ6dLEkSY82eVt1DUv1ixRSScoeH7WDkYKRXbpKA19", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ydZSNbnwQ6dLEkSY82eVt1DUv1ixRSScoeH7WDkYKRXbpKA19", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 214 - },{ - "name": "bts-robrigo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zU7CBvvLrofA5h9FE7HcyDpvViwkmmMJ7MJspAvtuxXtQakLc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zU7CBvvLrofA5h9FE7HcyDpvViwkmmMJ7MJspAvtuxXtQakLc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2882453 - },{ - "name": "bts-jcseekart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KE8zJUxJyqb8KVPVfcYvVKy7Aemyczps4TkdXpBnzbcMkoNe3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KE8zJUxJyqb8KVPVfcYvVKy7Aemyczps4TkdXpBnzbcMkoNe3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5630519 - },{ - "name": "bts-sheepsheep", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qeD3Vyeko8Dz3qakxqeXvxYWN1aj3uizxinXueqtS2mjTis5K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qeD3Vyeko8Dz3qakxqeXvxYWN1aj3uizxinXueqtS2mjTis5K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83476 - },{ - "name": "bts-modprobe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WgPC1qHtRygJQHF1oEMXcjve2W5VBaXhS5GidtrgDG7A6GV1E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WgPC1qHtRygJQHF1oEMXcjve2W5VBaXhS5GidtrgDG7A6GV1E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-msz-010", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SNnCjGk2mH7MmizpEXRxjzFaYuf2RtXxS568EkjQM1vqbuywv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SNnCjGk2mH7MmizpEXRxjzFaYuf2RtXxS568EkjQM1vqbuywv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2144736 - },{ - "name": "bts-zeta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jc57gYUdkNb82mSHihuHZufwsHsLQ4NxZ6FhjbeHzLoFAmrHe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jc57gYUdkNb82mSHihuHZufwsHsLQ4NxZ6FhjbeHzLoFAmrHe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177329 - },{ - "name": "bts-founders.hyperetas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SnPYtFYAnBPwpx63fFN5gjuva8pruoaUDFo9MyjdFx3zk3yX9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SnPYtFYAnBPwpx63fFN5gjuva8pruoaUDFo9MyjdFx3zk3yX9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1705013 - },{ - "name": "bts-operations.hyperetas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MDYiePXEpcQxPj2J8dQagFKHUPv3LJ9vzqhMYaoEHChL6kmMj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MDYiePXEpcQxPj2J8dQagFKHUPv3LJ9vzqhMYaoEHChL6kmMj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9883557 - },{ - "name": "bts-unknown", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7G37236xWxhADNBs5rokxM3qu6PoR86R984pZ8sxrNpnoCmpdX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7G37236xWxhADNBs5rokxM3qu6PoR86R984pZ8sxrNpnoCmpdX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-yicheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JwJ28U6Jgvbxcva4zZo5yHDqqiEPbJwJpmaJ2KYH9fcM2VFZQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JwJ28U6Jgvbxcva4zZo5yHDqqiEPbJwJpmaJ2KYH9fcM2VFZQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24871 - },{ - "name": "bts-www.minebitshares-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kg373c13N4AzGZ1TKLZzkxwc4WnGixkTEVJV3Y7GFGzVtTwui", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kg373c13N4AzGZ1TKLZzkxwc4WnGixkTEVJV3Y7GFGzVtTwui", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 265 - },{ - "name": "bts-jenn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XohGVaf7iLcr1undSfNC9aiLYvNbK9x5Y1qgsVU6niRsX2GLb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XohGVaf7iLcr1undSfNC9aiLYvNbK9x5Y1qgsVU6niRsX2GLb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1885 - },{ - "name": "bts-pts-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jLAnPW4TkfQCwBJ4aEe8hAzowJZv4kAidcttsQF4Q3EcAeWaE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jLAnPW4TkfQCwBJ4aEe8hAzowJZv4kAidcttsQF4Q3EcAeWaE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16697 - },{ - "name": "bts-alwaysjh2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZfvkzZMAdYj7Woma4W4dU143ruUhF1EnS34fndPL4Q6G8r3Da", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZfvkzZMAdYj7Woma4W4dU143ruUhF1EnS34fndPL4Q6G8r3Da", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-jc-bts500", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y4YKYh5GizZ8avuVhAH5At8gW1c9T22hpveXg49iXRAkmHZWc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y4YKYh5GizZ8avuVhAH5At8gW1c9T22hpveXg49iXRAkmHZWc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3827 - },{ - "name": "bts-wallet-of-pts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8e1GmXUWCmLXd3ueFNujrPokrisoGX3ia8vJVYcsNxg4Wgnfyy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8e1GmXUWCmLXd3ueFNujrPokrisoGX3ia8vJVYcsNxg4Wgnfyy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-marchliang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s8HfjUTe3hQKT3yLuFMfVqE4ApRefG5JFjTUbSVpoRJkQUoZ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s8HfjUTe3hQKT3yLuFMfVqE4ApRefG5JFjTUbSVpoRJkQUoZ7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-satoshkey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XxCNsSutrY8Mekug4f9nVQRYpZT6UnssqXntGrauu58mYehCB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XxCNsSutrY8Mekug4f9nVQRYpZT6UnssqXntGrauu58mYehCB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 151092 - },{ - "name": "bts-delegate01.y8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rBT5VCWmVFrWmu3sW4kcu51JNXiPKWP4QRxhSouZtVj1QVek", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rBT5VCWmVFrWmu3sW4kcu51JNXiPKWP4QRxhSouZtVj1QVek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7469 - },{ - "name": "bts-delegate1.y8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5niHsmiHuDcj48yEBp2Zy2cnHfL9c5jXCKEa2Z1BrUZ7HwJF8V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5niHsmiHuDcj48yEBp2Zy2cnHfL9c5jXCKEa2Z1BrUZ7HwJF8V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-bts-hero", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54fYcMeMGPwXEtwX3SJLMfo8LJEmPpKRJMjwoJeUgrwhqYiT8o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54fYcMeMGPwXEtwX3SJLMfo8LJEmPpKRJMjwoJeUgrwhqYiT8o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7585307 - },{ - "name": "bts-blacksun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UsgzZHDXgSz3mFiNNS1RPynrfNNUBrb9ztSgkrtFvqCt1hbJe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UsgzZHDXgSz3mFiNNS1RPynrfNNUBrb9ztSgkrtFvqCt1hbJe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47800 - },{ - "name": "bts-such01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E9SJvj8bKQPdeCEUtVb1CFyrMRZHcvkG8nWAUXvB3HFSKUbyx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E9SJvj8bKQPdeCEUtVb1CFyrMRZHcvkG8nWAUXvB3HFSKUbyx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 222 - },{ - "name": "bts-follow-my-vote", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wxReMNstW7XNfzRPAq4DEoNNNkAwH9zUmryN29zFyeywVADJQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 100, - "account_auths": [[ - "bts-ak", - 50 - ],[ - "bts-nathan", - 50 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 25992 - },{ - "name": "bts-emailtooaj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BhNYCujdJFyXhVqkcmQsTPLqehG8xYNBC5qp4B38H4SKaqBdJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BhNYCujdJFyXhVqkcmQsTPLqehG8xYNBC5qp4B38H4SKaqBdJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 140983 - },{ - "name": "bts-yolin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h1wx9zbiatkhzyqv3VUE5PzY6ZZE7vBmPDrtH6j1fmVHJFDjX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h1wx9zbiatkhzyqv3VUE5PzY6ZZE7vBmPDrtH6j1fmVHJFDjX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5004 - },{ - "name": "bts-bitcoinsig", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h9p9oHNAaUmgrATcFpAS9zmtwMharftB56TMzM7vUWQwE8RoH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h9p9oHNAaUmgrATcFpAS9zmtwMharftB56TMzM7vUWQwE8RoH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 477681 - },{ - "name": "bts-digitalgaia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZpaehJjFzDDJQDEQpLW9ieoommUNj2EvTuc9s5Ug1Cv886Kvo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZpaehJjFzDDJQDEQpLW9ieoommUNj2EvTuc9s5Ug1Cv886Kvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-avags", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xdR8DQUgAiHcdt7ggSit8fy2vCxC8mTHcvS4mVrVNnetYY8uV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xdR8DQUgAiHcdt7ggSit8fy2vCxC8mTHcvS4mVrVNnetYY8uV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-dean", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5e91V7WZvJ81ao2Lp3gywLAi3rN2yfDm3vXfhBvjhDrsbTmn6P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5e91V7WZvJ81ao2Lp3gywLAi3rN2yfDm3vXfhBvjhDrsbTmn6P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-italianminer72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7unP1x6pD2vafnMWeSuZKw2nFP7b42gjyQS9Mbnm4VFg7Noq7L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7unP1x6pD2vafnMWeSuZKw2nFP7b42gjyQS9Mbnm4VFg7Noq7L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72775 - },{ - "name": "bts-vex1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MacgcGwYgL2WDKfZ8YE9KxtnbjbeZAvirqeqs2RnEBoyUZPHM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MacgcGwYgL2WDKfZ8YE9KxtnbjbeZAvirqeqs2RnEBoyUZPHM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-telemaco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yoSnHDMxeDtBbB3Nwd8RwWNdNhmQBF7ZVnvM2JoFCqa198bm3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yoSnHDMxeDtBbB3Nwd8RwWNdNhmQBF7ZVnvM2JoFCqa198bm3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-joseluisuribe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oumZ7QUs9X6HrrUheVrqDEu9Lp6sJ8zVjgMXdjBzmyuN5Ja4f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oumZ7QUs9X6HrrUheVrqDEu9Lp6sJ8zVjgMXdjBzmyuN5Ja4f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32224 - },{ - "name": "bts-myshadow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vPZnwWmrLvW9ZCWpajdEQz3H24r6UxkPEsi471DbCxg9mgn28", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vPZnwWmrLvW9ZCWpajdEQz3H24r6UxkPEsi471DbCxg9mgn28", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2478810 - },{ - "name": "bts-reid-douthat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JQT2SaKuztNSEZ9gs5JZrPA1SJvXzmDPVz4kB7iugzyGPcoL8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JQT2SaKuztNSEZ9gs5JZrPA1SJvXzmDPVz4kB7iugzyGPcoL8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-xaero1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dPzTcL31T8LGZWHYkmCFtr6cQjbdxcfQ9hki9JAKE5u4EEpP3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dPzTcL31T8LGZWHYkmCFtr6cQjbdxcfQ9hki9JAKE5u4EEpP3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3763820 - },{ - "name": "bts-username", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xP6QYARHMBDvV5so6zCuNoAuUZEAcpEadS5k1K3EoWRTT9tUu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xP6QYARHMBDvV5so6zCuNoAuUZEAcpEadS5k1K3EoWRTT9tUu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-sean520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qHp8P4YXiQ6FZrmUz83fk95cDx1REB1jvmY7EvoGMGmUexAqt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qHp8P4YXiQ6FZrmUz83fk95cDx1REB1jvmY7EvoGMGmUexAqt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-mdyyz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mmWGAAuewp8UsR9DUMsGK54SMbMgipgZsoN9ibVMiVJMPrVtw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mmWGAAuewp8UsR9DUMsGK54SMbMgipgZsoN9ibVMiVJMPrVtw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 137969 - },{ - "name": "bts-latincoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BUcAxKUhVcwYAUmzJ3JhBjPAQyit58YQKt85HzD9hqTsGKNwU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BUcAxKUhVcwYAUmzJ3JhBjPAQyit58YQKt85HzD9hqTsGKNwU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-thirtyeightptswarrior", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JXBXA7oZfZXNXzBdYkN6cbABYTyToH4jHg2qt2BsFJZ1HTG5m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JXBXA7oZfZXNXzBdYkN6cbABYTyToH4jHg2qt2BsFJZ1HTG5m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-derfshaya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BxD5yv7yjSgxJg2VWKUhgeSjWM2z2w5ZYLonDHLj9UAyofCRi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BxD5yv7yjSgxJg2VWKUhgeSjWM2z2w5ZYLonDHLj9UAyofCRi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 183870 - },{ - "name": "bts-airdrop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6y5X91QLMAzdBm3tEDXCsiei18CPkhqjXUrpc4MVhGKadyirZh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6y5X91QLMAzdBm3tEDXCsiei18CPkhqjXUrpc4MVhGKadyirZh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-mingtian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jutRcyz2hX9X3Ka4rqUCaPMz2p5hQcE32UfDgn6W1kSrGZuV5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jutRcyz2hX9X3Ka4rqUCaPMz2p5hQcE32UfDgn6W1kSrGZuV5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-demon1235", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C6He3w6iXKCTifFY6dsnssRrLHGcMw8ypi2ur5mSRah4m4rq2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C6He3w6iXKCTifFY6dsnssRrLHGcMw8ypi2ur5mSRah4m4rq2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 394 - },{ - "name": "bts-alwayslater", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JCrUASbQscQhYeyUNMwkyNHKJrstgipZETJUxDChz1EXb5JwU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JCrUASbQscQhYeyUNMwkyNHKJrstgipZETJUxDChz1EXb5JwU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1288 - },{ - "name": "bts-arithboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XY9EfUzpFvWWn7ZY9ppcAdwLBdipakUmybS7cARm3p3CBrW36", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XY9EfUzpFvWWn7ZY9ppcAdwLBdipakUmybS7cARm3p3CBrW36", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 860373 - },{ - "name": "bts-agree", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jmZ9W9wtbWJJ1EbyBGwEZnKRQ59yh478qMC87HkXHs7NJLWXm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jmZ9W9wtbWJJ1EbyBGwEZnKRQ59yh478qMC87HkXHs7NJLWXm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 402578 - },{ - "name": "bts-bank-of-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 291 - },{ - "name": "bts-bank-of-btsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 751 - },{ - "name": "bts-callmeluc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST642G3q2recJ43EaiutHZ43dKMWBqyktKVm61kiA63jEyEY1y5G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST642G3q2recJ43EaiutHZ43dKMWBqyktKVm61kiA63jEyEY1y5G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3616347 - },{ - "name": "bts-applepepe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7caEM9i4QE971K1g8uczXtqMFkw2vh35qaLJZ7vNp8KuZrpV6Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7caEM9i4QE971K1g8uczXtqMFkw2vh35qaLJZ7vNp8KuZrpV6Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2348222 - },{ - "name": "bts-triox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tAAQHxGmTpNAnuxAS67aMeA8h2hc8Fai3fYNXjk8YTepsFjzc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tAAQHxGmTpNAnuxAS67aMeA8h2hc8Fai3fYNXjk8YTepsFjzc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1250484 - },{ - "name": "bts-bitandrew", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f8SkPzmaou1uF9r28kDDcNywuT7kX1b7yCe8d8Jg6Dqx2skmW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f8SkPzmaou1uF9r28kDDcNywuT7kX1b7yCe8d8Jg6Dqx2skmW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 714 - },{ - "name": "bts-btscloud", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bjRpP1PJL2omkMmSM3XDR9MTBXm35wnFp1gYquMhU7opro3hY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bjRpP1PJL2omkMmSM3XDR9MTBXm35wnFp1gYquMhU7opro3hY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 847 - },{ - "name": "bts-shellshock", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GhzxaC2S4MngqsYJiQZ9o5zEexMXgMwwGCPuyn5zX9UDuUuvc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GhzxaC2S4MngqsYJiQZ9o5zEexMXgMwwGCPuyn5zX9UDuUuvc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1228 - },{ - "name": "bts-clains", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83ysfdzFWnVBg4w2FjVHhV8zVoy5aGfkHGWwnHbxA8RbEbrMmR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83ysfdzFWnVBg4w2FjVHhV8zVoy5aGfkHGWwnHbxA8RbEbrMmR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2164192 - },{ - "name": "bts-frodo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kD6ua2QnWsxqNtqkRQANsP8AHyqiM7JrtQLFGphmuaNjkjT6S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kD6ua2QnWsxqNtqkRQANsP8AHyqiM7JrtQLFGphmuaNjkjT6S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 533792 - },{ - "name": "bts-lincoln", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VtTSroJr3YJhiiYjrvFs7uVsL9JCAPozBYtpM9Lu8JLgvvQMt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VtTSroJr3YJhiiYjrvFs7uVsL9JCAPozBYtpM9Lu8JLgvvQMt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jlckm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ABzQoJrKRiwn9A7nVWf5n24Pp1w6anGgimsgpqPcg91qXXYRx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ABzQoJrKRiwn9A7nVWf5n24Pp1w6anGgimsgpqPcg91qXXYRx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 421150 - },{ - "name": "bts-draven3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SaPEFtFcGR2e5TfXxSuEAphnjfa1mRd6pergnZwGWXdUXTwaP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SaPEFtFcGR2e5TfXxSuEAphnjfa1mRd6pergnZwGWXdUXTwaP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42 - },{ - "name": "bts-syzm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fEnka9rRY4DxM4jwtXcGmmiSY3bYPPQLaDjn8LeveLmtg5T6m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fEnka9rRY4DxM4jwtXcGmmiSY3bYPPQLaDjn8LeveLmtg5T6m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2011 - },{ - "name": "bts-cui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5opwLhryB8qrCFNK4qoXfL5QCKZapEbeGhZmqBSp6B9XSQzHtF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5opwLhryB8qrCFNK4qoXfL5QCKZapEbeGhZmqBSp6B9XSQzHtF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1447386 - },{ - "name": "bts-skychen1986", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w5oCLghN39MV6EGSHwpDRMaJDR28oZHAdxEfx4F1Q1NuZVUJv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w5oCLghN39MV6EGSHwpDRMaJDR28oZHAdxEfx4F1Q1NuZVUJv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4991439 - },{ - "name": "bts-buck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WcwiFkestap5rNS44QTkfCyn3erRyrNvDcXLK7d3ShVFvZRbK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WcwiFkestap5rNS44QTkfCyn3erRyrNvDcXLK7d3ShVFvZRbK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-btsjohn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gBAKguVbcs7KNg93q2j731mgnTQQD2kvfL9GCZRG3gK2C22fn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gBAKguVbcs7KNg93q2j731mgnTQQD2kvfL9GCZRG3gK2C22fn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19332 - },{ - "name": "bts-piranha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VNvNBbKPSv7cr43Fy5z7gB4Z2ZjMKZBfJ9wkUJF7XVTKoXwvj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VNvNBbKPSv7cr43Fy5z7gB4Z2ZjMKZBfJ9wkUJF7XVTKoXwvj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ophi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yJPbojJGxNyMJi2VHxqUy3UaDa8KgtHUe118BhZybCtuaEtDS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yJPbojJGxNyMJi2VHxqUy3UaDa8KgtHUe118BhZybCtuaEtDS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-merockstar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST532Kb8UFf7DUoLEHEq9mwCZ1pxqDEsJ6f18KERDPaWQx5GL41j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST532Kb8UFf7DUoLEHEq9mwCZ1pxqDEsJ6f18KERDPaWQx5GL41j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-bitfinity", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jqe9Vz1xK2zmv7JdncepTBs1qPQ5HXHAtDt8FE8T2hfzTg6xi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jqe9Vz1xK2zmv7JdncepTBs1qPQ5HXHAtDt8FE8T2hfzTg6xi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26238 - },{ - "name": "bts-igeak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84cRzF9nFWPnYFv2TcEWeqW2Vj1XFwEs4Szc86qHkKYaihWxqc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84cRzF9nFWPnYFv2TcEWeqW2Vj1XFwEs4Szc86qHkKYaihWxqc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-ifttt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52TQzSaeiVDzXTJGQenVPPxQCsXF3GWBC8aAibi8f37fn7DPUf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52TQzSaeiVDzXTJGQenVPPxQCsXF3GWBC8aAibi8f37fn7DPUf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1742272 - },{ - "name": "bts-chryspano", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6acxyESLSnonEYV2YaK8ivQcwuTGKGwMDn8EXUUDKgMP6DGFE3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6acxyESLSnonEYV2YaK8ivQcwuTGKGwMDn8EXUUDKgMP6DGFE3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12041541 - },{ - "name": "bts-bobobts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CviBtDJExu3irmbV7j2tvvDyyrkBj7cHun34F6ZRxEd7hBke9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CviBtDJExu3irmbV7j2tvvDyyrkBj7cHun34F6ZRxEd7hBke9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5109963 - },{ - "name": "bts-yangyinzd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dfX3HNBkosEuK28Rhqbu3vo8MrgQeDD1viCS3LLRJQaRxBUDQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dfX3HNBkosEuK28Rhqbu3vo8MrgQeDD1viCS3LLRJQaRxBUDQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2530 - },{ - "name": "bts-missing64001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fGfBWpLV3kFqQA47Y6FiJCnBZvPQ3p72Jvqm6YRvJ1wCjra3F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fGfBWpLV3kFqQA47Y6FiJCnBZvPQ3p72Jvqm6YRvJ1wCjra3F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-missing64005", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LRZiWGXojwiWzsXHwdmv5thtkdVtdA3mw3bi4HF3NEQ6LTESQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LRZiWGXojwiWzsXHwdmv5thtkdVtdA3mw3bi4HF3NEQ6LTESQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1371409 - },{ - "name": "bts-missing64006", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Vo9sQ2h4YQRiFv4CPDBmARYQagRrGzzeibj8tPTenW3t3yUoV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Vo9sQ2h4YQRiFv4CPDBmARYQagRrGzzeibj8tPTenW3t3yUoV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 779847 - },{ - "name": "bts-ass", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8b7kHFekaeP1J3mTVcLqAYTGY7BvD4Fv4TkRbyMjQ83mq4uCwH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8b7kHFekaeP1J3mTVcLqAYTGY7BvD4Fv4TkRbyMjQ83mq4uCwH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 195 - },{ - "name": "bts-nee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r29JSecF2Y1BiiwQvpbkcneePahiMRFLQ8VyHmNvxJyJ3rs9D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r29JSecF2Y1BiiwQvpbkcneePahiMRFLQ8VyHmNvxJyJ3rs9D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-biteshe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ACcdR6G1DSpaz7xzKvbGXLH2Q69wWQzWqAZDCycWYWbdK4ugK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ACcdR6G1DSpaz7xzKvbGXLH2Q69wWQzWqAZDCycWYWbdK4ugK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3962265 - },{ - "name": "bts-madawc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K3bBegYm3At3RwQb1P1puDDjhnyFcnQwdYJmHJD1VdFDnn1aU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K3bBegYm3At3RwQb1P1puDDjhnyFcnQwdYJmHJD1VdFDnn1aU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-sabermage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84hnGBAzuQWkzmkzcfSgriAyQeyUACyc4J8GDvyoxKNeQGYfwq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84hnGBAzuQWkzmkzcfSgriAyQeyUACyc4J8GDvyoxKNeQGYfwq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2154 - },{ - "name": "bts-yjb9776", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59sLBvS83d69zR5zET7JWR511GS7tqGHPij41aLkiyvR1iMdQQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59sLBvS83d69zR5zET7JWR511GS7tqGHPij41aLkiyvR1iMdQQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57897 - },{ - "name": "bts-btsapc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JXuRbEJbK5vzUF1GvcDJttW5kF1C5jsxE1E5nu7DEGSV92LFA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JXuRbEJbK5vzUF1GvcDJttW5kF1C5jsxE1E5nu7DEGSV92LFA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-milkmeat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LzVSZwdhZEE64GczNucEdKft5DDQ7enHRgjffh3VddVoCstWM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LzVSZwdhZEE64GczNucEdKft5DDQ7enHRgjffh3VddVoCstWM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3077 - },{ - "name": "bts-bobohuy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5phBjfWhfHccoGEQJGmyc983GK1bH5bViufkuk4hLM9LdrBhkW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5phBjfWhfHccoGEQJGmyc983GK1bH5bViufkuk4hLM9LdrBhkW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 819818 - },{ - "name": "bts-action", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vfGw2fEeV7VPCsa6Sjq9aramNfmzduHSrX3mFqZyKZyhjWDu1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vfGw2fEeV7VPCsa6Sjq9aramNfmzduHSrX3mFqZyKZyhjWDu1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 383 - },{ - "name": "bts-p-chrysomallos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ErKSjgS64A8RpnrALhU6X66dg7WzeziMi8hqbsg6dHse5GPdz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ErKSjgS64A8RpnrALhU6X66dg7WzeziMi8hqbsg6dHse5GPdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1140 - },{ - "name": "bts-pgbit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JFgkJBrfMMfSzKdU1jM8GWPpH2DJZSJYDQXva8PzGvYSJ2isn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JFgkJBrfMMfSzKdU1jM8GWPpH2DJZSJYDQXva8PzGvYSJ2isn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1031824 - },{ - "name": "bts-aaronokenatez", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wtcr5p3Wq33Vdmks2yJenTHtAM8qQk3Z1x9wruJcAYJWc8tUw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wtcr5p3Wq33Vdmks2yJenTHtAM8qQk3Z1x9wruJcAYJWc8tUw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-kingzhang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GE87mChHohg229dE5URmYaq3jA9hyX1LsRv4jtabeQj883o3o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GE87mChHohg229dE5URmYaq3jA9hyX1LsRv4jtabeQj883o3o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2176521 - },{ - "name": "bts-quarkdai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fCKf3nL7MqMV94ipCTpzH6wRVnm4HYPhZFNbQocJ9jVpEDqKG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fCKf3nL7MqMV94ipCTpzH6wRVnm4HYPhZFNbQocJ9jVpEDqKG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9097608 - },{ - "name": "bts-kan791", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jwGXXTR7FZ7xbtraPXRNWjK7ADSS9g3PAmaBx1tXyzC2NZsi3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jwGXXTR7FZ7xbtraPXRNWjK7ADSS9g3PAmaBx1tXyzC2NZsi3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9668165 - },{ - "name": "bts-a123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rtrgk9nokcWF6wDhR1hhGhvoC4M41wQ1gkVm48YqDw6Nvb9pz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rtrgk9nokcWF6wDhR1hhGhvoC4M41wQ1gkVm48YqDw6Nvb9pz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5731072 - },{ - "name": "bts-bts-tw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tDqJkTwyCvVibee3t9DxX6GkSaTW4DVLmcfCxnf7JfxcjB9tD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tDqJkTwyCvVibee3t9DxX6GkSaTW4DVLmcfCxnf7JfxcjB9tD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bts-taiwan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BhLMCks5bWnGmT7oU8ZeFNAgJJVtSRnoS8D45wE51G83jwypt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BhLMCks5bWnGmT7oU8ZeFNAgJJVtSRnoS8D45wE51G83jwypt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-jump", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST659RCcsNrN4JUHo2T4q9uXWbi6C4RHsfNaQ1LzznDmk6fVM5SQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST659RCcsNrN4JUHo2T4q9uXWbi6C4RHsfNaQ1LzznDmk6fVM5SQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22208 - },{ - "name": "bts-iring", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5if56bKii5TAS5HXoGehcBcy89rDzcYrpczf61UtTpRBvZSVG5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5if56bKii5TAS5HXoGehcBcy89rDzcYrpczf61UtTpRBvZSVG5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-uuuu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cAnbq4rV2qAvTRYPM2jeZEJyaRMRvWeHvDHsDtrGPnxgtiXQM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cAnbq4rV2qAvTRYPM2jeZEJyaRMRvWeHvDHsDtrGPnxgtiXQM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-asdf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6he2u4z71m6rr5DXJ2BBxiT4TYFgBinnAJPinXprRQrtaeYGfb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6he2u4z71m6rr5DXJ2BBxiT4TYFgBinnAJPinXprRQrtaeYGfb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 87 - },{ - "name": "bts-linanjun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gzqWYS3SKChaPre7aUChn6XYcwS7mJmgqtydubCbAJg6DgmJU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gzqWYS3SKChaPre7aUChn6XYcwS7mJmgqtydubCbAJg6DgmJU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12605884 - },{ - "name": "bts-enter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81RFv25kt1af3iYwKYwx597qqtV1ujeYirsNMx51CDVg3HNnTe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81RFv25kt1af3iYwKYwx597qqtV1ujeYirsNMx51CDVg3HNnTe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1385077 - },{ - "name": "bts-liuzexin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hq4ZvkwhfQFTbq2QyLshWKT1KWr1Uzy7JtQRVT8ZyYnUipxFJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hq4ZvkwhfQFTbq2QyLshWKT1KWr1Uzy7JtQRVT8ZyYnUipxFJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 396216 - },{ - "name": "bts-restofall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s8ouHxQLYfLFfPbxdQU1Zhci7Fe63TvrNeedkBmNopr9aCxAR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s8ouHxQLYfLFfPbxdQU1Zhci7Fe63TvrNeedkBmNopr9aCxAR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 536 - },{ - "name": "bts-abit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NLcZJzqq3mvKfcqoN52ainajDckyMp5SYRgzicfbHD6u587ib", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NLcZJzqq3mvKfcqoN52ainajDckyMp5SYRgzicfbHD6u587ib", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23693405 - },{ - "name": "bts-qifenjin1975", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-qifenjin1975", - 2 - ] - ], - "key_auths": [[ - "TEST7ubANFr7E4Eio6hxCgmpRH4fBLSQbXrrNfkqK1HtcHtDEbYxfo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 100, - "account_auths": [[ - "bts-qifenjin1975", - 99 - ] - ], - "key_auths": [[ - "TEST7ubANFr7E4Eio6hxCgmpRH4fBLSQbXrrNfkqK1HtcHtDEbYxfo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 673156 - },{ - "name": "bts-stop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FYA6tGGFuZKvZtnC7mEUNH3HqbGGKR5GYqASv6MaXsUFyVWaY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FYA6tGGFuZKvZtnC7mEUNH3HqbGGKR5GYqASv6MaXsUFyVWaY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 429 - },{ - "name": "bts-zombie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DWsBMbUkKaGokZUfVnK8TwJVupcJDwHGzHj44BVCW29df39jY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DWsBMbUkKaGokZUfVnK8TwJVupcJDwHGzHj44BVCW29df39jY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-secondlife", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ga6SfF4NR4R5WkEdJpBhLgco4pBRz4mKV5DxG7yLzUzZCWbeT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ga6SfF4NR4R5WkEdJpBhLgco4pBRz4mKV5DxG7yLzUzZCWbeT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1409 - },{ - "name": "bts-slim180", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LiAM7bS5gvq89eB9WbGTmFi8Ky1gPCsixNTFnhZ2z24mFThXV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LiAM7bS5gvq89eB9WbGTmFi8Ky1gPCsixNTFnhZ2z24mFThXV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-sgummy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aG618a3ypPYrNkTgiyZSCsm1TYjZjP4LKrQfgNyFcyxfWk1Sd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aG618a3ypPYrNkTgiyZSCsm1TYjZjP4LKrQfgNyFcyxfWk1Sd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60530 - },{ - "name": "bts-xip080", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yxNPbqHv18iZPdQLsM87mAB9G9sDntWPMFYh5pxAMDaJr6Pq5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yxNPbqHv18iZPdQLsM87mAB9G9sDntWPMFYh5pxAMDaJr6Pq5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9791 - },{ - "name": "bts-abcpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62DbshPe1uonpwmvC4BUeWzS7BAXXRQPE6aXuUojksQYxgbc4r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62DbshPe1uonpwmvC4BUeWzS7BAXXRQPE6aXuUojksQYxgbc4r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-fci", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bo48D5fP7PjzXaEaPqEPCKdEwLQJvQMAx1VMTgRXMqpEwFgXa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bo48D5fP7PjzXaEaPqEPCKdEwLQJvQMAx1VMTgRXMqpEwFgXa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-qua", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82QHoKT2fRKvkApoCsZDh8J7DkQziDCh1xoWSmN2ZJk4xu28CC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82QHoKT2fRKvkApoCsZDh8J7DkQziDCh1xoWSmN2ZJk4xu28CC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-tangjunlijia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dSkLg6htkFrtisa13BsmUhkwXS6ELrLiw2oP7ZXkXcBwCkzbd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dSkLg6htkFrtisa13BsmUhkwXS6ELrLiw2oP7ZXkXcBwCkzbd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25083 - },{ - "name": "bts-factor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST566GBS9y2u1visHiiQfWa1EBZPZxYW8PvWfEb8zBuanjHp5tEx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST566GBS9y2u1visHiiQfWa1EBZPZxYW8PvWfEb8zBuanjHp5tEx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 223907 - },{ - "name": "bts-wangyangming", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WMBaynHhqCA5rtApWEQRDsqNDsBebQWT5U2tnjbNuC6kvCaKb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WMBaynHhqCA5rtApWEQRDsqNDsBebQWT5U2tnjbNuC6kvCaKb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-bitsharer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e2xtshC3dZ6pEjmLLE7WgwviC3bFeeAgo86vcJpEjo7ee4NjF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e2xtshC3dZ6pEjmLLE7WgwviC3bFeeAgo86vcJpEjo7ee4NjF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177835 - },{ - "name": "bts-jasonperkins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UKEfBJfgXV85RRgDu5M2EATZAK5iQCykLa8bxeJeLr4mNyR28", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UKEfBJfgXV85RRgDu5M2EATZAK5iQCykLa8bxeJeLr4mNyR28", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19694 - },{ - "name": "bts-perky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65u1w6JNYHqGA7grttt7PDps3tLFppBPZneia5LjV2NxMy78LV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65u1w6JNYHqGA7grttt7PDps3tLFppBPZneia5LjV2NxMy78LV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 170011 - },{ - "name": "bts-ihashfury", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yzrzYt3VLaN8ksyv6ypXZpZ22k2mJA4xMvv5eznskuMbNQ8Mj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yzrzYt3VLaN8ksyv6ypXZpZ22k2mJA4xMvv5eznskuMbNQ8Mj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 359222 - },{ - "name": "bts-yangningbo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST869q472MZswCZhsi85o61z9852U4jixzJhL5BQZ4ZVSuGnEicf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST869q472MZswCZhsi85o61z9852U4jixzJhL5BQZ4ZVSuGnEicf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 209 - },{ - "name": "bts-nomoreheroes7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JTEEMc6tVbtCZhJM2ZqmYKANskmjY13BxCJe3xKaeTPwA3B1s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JTEEMc6tVbtCZhJM2ZqmYKANskmjY13BxCJe3xKaeTPwA3B1s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1526 - },{ - "name": "bts-spanko", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MRKVe9gd3L8HYRXLsYXdUcQ57BdZX5VuA22xhR2N9WUEmUYT3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MRKVe9gd3L8HYRXLsYXdUcQ57BdZX5VuA22xhR2N9WUEmUYT3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-perks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GmHhKUxSn27cjyvgy3twPUEaLr6roPBCz6i9zb9Njbq86nG9T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GmHhKUxSn27cjyvgy3twPUEaLr6roPBCz6i9zb9Njbq86nG9T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42027 - },{ - "name": "bts-leozhenping", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y8ouerocsDj53pyohgtvUYDhmN9iXJ56ec94fe7428QJgdwq4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y8ouerocsDj53pyohgtvUYDhmN9iXJ56ec94fe7428QJgdwq4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-lachapelle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AqUrtLTL8dLN3uLRiSKJVhSnnNgLYfzd2bhkfJRiUcMUJWd1b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AqUrtLTL8dLN3uLRiSKJVhSnnNgLYfzd2bhkfJRiUcMUJWd1b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cuhk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PxZqJBXYf8h9b4fSibpZhFrGJwEtzsKyfXaEGxzQANn4iQQrV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PxZqJBXYf8h9b4fSibpZhFrGJwEtzsKyfXaEGxzQANn4iQQrV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7689862 - },{ - "name": "bts-ngo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Lf6VDv8h8HR7ktqEJg3wnH5rtH3RCr9PvEbFknKsBhSYEtHV3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Lf6VDv8h8HR7ktqEJg3wnH5rtH3RCr9PvEbFknKsBhSYEtHV3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1461 - },{ - "name": "bts-best-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-best-wishes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-bts-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-bts-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-towngas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 998 - },{ - "name": "bts-forever21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5R4DhPQTLTQnFZfodTV7Fj1ACCigpZuSUQ7GsADQ9Ze7Wb3oxx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5R4DhPQTLTQnFZfodTV7Fj1ACCigpZuSUQ7GsADQ9Ze7Wb3oxx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 157319 - },{ - "name": "bts-yangzhe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2392 - },{ - "name": "bts-qilanlan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ceXzeZ3fPw4NZCSXs9wXXxPRK5uuc641oHGgrGYkh2DLHwu6V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ceXzeZ3fPw4NZCSXs9wXXxPRK5uuc641oHGgrGYkh2DLHwu6V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 654 - },{ - "name": "bts-bts-mall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-bts-buy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-bts-sell", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-bts-man", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-acid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mrVgmLPRLCwSXHVJr67U8du2DoLMXgLh8gZPubd9P7XrMANr4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mrVgmLPRLCwSXHVJr67U8du2DoLMXgLh8gZPubd9P7XrMANr4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7284479 - },{ - "name": "bts-ngy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fX6mGaEbZuMUTf6sqxqzJKQGJDAby9uEhPs8iaoxfqefnhQ8U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fX6mGaEbZuMUTf6sqxqzJKQGJDAby9uEhPs8iaoxfqefnhQ8U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6792 - },{ - "name": "bts-bts-center", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 3 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-wishes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mGYohYF5Dz2nq8mdGdy9vSdFmKFBywetbGKixMwHtCJYZNnm7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mGYohYF5Dz2nq8mdGdy9vSdFmKFBywetbGKixMwHtCJYZNnm7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 283 - },{ - "name": "bts-btsx-banks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-monsoon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rSonG67g65F6aASwC2XmFhpHa1cB268LrhxTNQQ2EAuqdu5Et", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rSonG67g65F6aASwC2XmFhpHa1cB268LrhxTNQQ2EAuqdu5Et", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-zhujunchao28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yiux8qa7Tv4xjTdDurFWCwX1E2yma5rEbCXSMnzE6LQDaSTGf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yiux8qa7Tv4xjTdDurFWCwX1E2yma5rEbCXSMnzE6LQDaSTGf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 105 - },{ - "name": "bts-snowdropfore", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LZSivav685MxsWVuydoj14tu7uGZskMTGpz88jTYRUzg71sBi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LZSivav685MxsWVuydoj14tu7uGZskMTGpz88jTYRUzg71sBi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4152 - },{ - "name": "bts-nahuel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jS7ceQLj2n3G8LLKGDW37PyzCDrbypncYL5nbBCHH6qS39tb9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jS7ceQLj2n3G8LLKGDW37PyzCDrbypncYL5nbBCHH6qS39tb9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24947 - },{ - "name": "bts-cryptobarteam", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64934dYshUzWWnQpdBSPjxwq4USCanw9eqfNinaYuYBMTRsdEd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64934dYshUzWWnQpdBSPjxwq4USCanw9eqfNinaYuYBMTRsdEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-checkraiser", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z4X21gz8ZiqY2D5JZf755TxRV2Gghzn1H7FBMMvBYEUbmrjrZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z4X21gz8ZiqY2D5JZf755TxRV2Gghzn1H7FBMMvBYEUbmrjrZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90682 - },{ - "name": "bts-enforest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TPDerD76hmM7Ydtsb9LiWmnaNffXFeZstrYzEWe5aXktGBNhv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TPDerD76hmM7Ydtsb9LiWmnaNffXFeZstrYzEWe5aXktGBNhv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-warofcraft", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g3UbQZ2da3fPC6NMoaMbwHhkoShqniGiGZ2kgpwHxVL3MtfB8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g3UbQZ2da3fPC6NMoaMbwHhkoShqniGiGZ2kgpwHxVL3MtfB8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 267 - },{ - "name": "bts-lushi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a6X4jWrD2iEsJx4j8g6XvNLJoMWbDjLvXRNX6oAdU7Zsd6e6A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a6X4jWrD2iEsJx4j8g6XvNLJoMWbDjLvXRNX6oAdU7Zsd6e6A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-wulalalalala", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GyUkXERvC18q2A79UGCwZf73tyfTC7utubKhNLa1dgs42dCVF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GyUkXERvC18q2A79UGCwZf73tyfTC7utubKhNLa1dgs42dCVF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 363 - },{ - "name": "bts-smilefish", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84nodbys8vsRPXAfzEo3zVr51UUkLCcWNECJ7wTpahKEzCMt4R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84nodbys8vsRPXAfzEo3zVr51UUkLCcWNECJ7wTpahKEzCMt4R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 147641 - },{ - "name": "bts-whxyswb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AqiVNaNupu7KKicFBpbg8GEN25ZW9QNdGwvdyaFCHck6cGs1D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AqiVNaNupu7KKicFBpbg8GEN25ZW9QNdGwvdyaFCHck6cGs1D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-trilogy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tyWggF57rpsZtCWyhpkGSdkikvYVzaZUZs4Nh2yr6MxsheFuJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tyWggF57rpsZtCWyhpkGSdkikvYVzaZUZs4Nh2yr6MxsheFuJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-trisomic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L3fXFWiNo1rnfGdJniP63Z1zWydrGMnPuRe8tCLNAgSxs5j8n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L3fXFWiNo1rnfGdJniP63Z1zWydrGMnPuRe8tCLNAgSxs5j8n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-threesome", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84W2RxRYyrD7wESTZ15fxFc1aVYhEwQd9xS6xh5SHTcgF5cGLM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84W2RxRYyrD7wESTZ15fxFc1aVYhEwQd9xS6xh5SHTcgF5cGLM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-thethreebody", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59FqPjWBNUowvCdRBLUMKb7oreMQTzE6RQeV32BixUc4PF1ojG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59FqPjWBNUowvCdRBLUMKb7oreMQTzE6RQeV32BixUc4PF1ojG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60 - },{ - "name": "bts-trisome", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EpRFzq9pUqoQrQPLe5LRgwvf3oc4z3updLGrqyJ8E9cKcKWov", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EpRFzq9pUqoQrQPLe5LRgwvf3oc4z3updLGrqyJ8E9cKcKWov", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-hunger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KLrw4cVAuvb5xR3RuE7Uk21suiU2MkvWAMnuEspZxRGScF6Ek", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KLrw4cVAuvb5xR3RuE7Uk21suiU2MkvWAMnuEspZxRGScF6Ek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-twilight", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kb2fMENQLQ2C8kW4zsyWTeENNnoQAHAjdcuZSrfccL3fKs5Bf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kb2fMENQLQ2C8kW4zsyWTeENNnoQAHAjdcuZSrfccL3fKs5Bf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-narnia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xHuCpaF9Z1cQpPyiFFdDcxPwV4193nd3L8gYhwmDi3QMvCGiC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xHuCpaF9Z1cQpPyiFFdDcxPwV4193nd3L8gYhwmDi3QMvCGiC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-mulla", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wjLyYs2cR1Gj9WX9vW1kELndM2u4UCEnr5VgLyTiH1wib3w8q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d65U7C5kqgousAhU4whx5Fj6c5h4Sn3afJwF2bGQ72WYZX8uU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 389 - },{ - "name": "bts-sandra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54zTJcQKVrHCcQgJj3tZ875Xy8pFaKEv51GhZ7DRDKjUWxeLxX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54zTJcQKVrHCcQgJj3tZ875Xy8pFaKEv51GhZ7DRDKjUWxeLxX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 433522 - },{ - "name": "bts-lzr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JXfPpMxCzYpdDnG3MRtEFmdsPtQMmR1H3PVomFiDcWcFb7s9s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JXfPpMxCzYpdDnG3MRtEFmdsPtQMmR1H3PVomFiDcWcFb7s9s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-bitsharesbanker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FBAJ2hfXpsXNoyBmfMF7EQwM3HbHV73qKoyQHVjY8Rwh5B5zE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FBAJ2hfXpsXNoyBmfMF7EQwM3HbHV73qKoyQHVjY8Rwh5B5zE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53889 - },{ - "name": "bts-google.helloworld", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QiSvTN17rv2rNd9xu7B2JCGzzLMrwSxEsGXMPwGHWbAzGp8kA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QiSvTN17rv2rNd9xu7B2JCGzzLMrwSxEsGXMPwGHWbAzGp8kA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-xn-delegate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D7BFD4j2eCyLHTBTTb8hZJ8JcE4qYtjd1B2oWxMChnoBH8fSj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D7BFD4j2eCyLHTBTTb8hZJ8JcE4qYtjd1B2oWxMChnoBH8fSj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 658 - },{ - "name": "bts-coin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CryA423pD4Yhths93GxErJ9ecFgm9T7ZXdVG8fXjiaev1GXvp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CryA423pD4Yhths93GxErJ9ecFgm9T7ZXdVG8fXjiaev1GXvp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gabainc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fsjkum2HYG7GaCVxz5imNug52kfwEN2drqz3HfsHhJiNvqtME", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fsjkum2HYG7GaCVxz5imNug52kfwEN2drqz3HfsHhJiNvqtME", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1890908 - },{ - "name": "bts-jcdobber", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST885TxfQjYezZvrLzGv26hNXLjaLkRnzDzPnnTKsfm13n1JoweN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST885TxfQjYezZvrLzGv26hNXLjaLkRnzDzPnnTKsfm13n1JoweN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 300390 - },{ - "name": "bts-soniq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GW8N5uDSERGrSc5Y2Tjnw7A9597ckbyrv7qbzGH48JLHdKA7m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GW8N5uDSERGrSc5Y2Tjnw7A9597ckbyrv7qbzGH48JLHdKA7m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-jarekld", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74q8THwtwV44TMHyMVY6cWZV6hGedReLXFJjCZmqX5KrHkqmJZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74q8THwtwV44TMHyMVY6cWZV6hGedReLXFJjCZmqX5KrHkqmJZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jackyw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GGQB5t7TJkLpXVPAsVbgq2nWtwQRwLWuCQB6pPG8nsEWvBxDN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GGQB5t7TJkLpXVPAsVbgq2nWtwQRwLWuCQB6pPG8nsEWvBxDN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bees", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u5yyb3XoJNkHeD6Cid9Gqz78ZQk9yTeowcxpToGA8qAbu5RXQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u5yyb3XoJNkHeD6Cid9Gqz78ZQk9yTeowcxpToGA8qAbu5RXQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 198595 - },{ - "name": "bts-yellowecho", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MwyKWQB2P684yHUQRi5H6fbnWc9WkViaKt9rTgnTZMtSDaiUr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MwyKWQB2P684yHUQRi5H6fbnWc9WkViaKt9rTgnTZMtSDaiUr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2064072 - },{ - "name": "bts-harry-potter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Nbk8JSbkFES2ZctbX8V4c7nULiRLerPG2zPf9SwYKixo4zko", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Nbk8JSbkFES2ZctbX8V4c7nULiRLerPG2zPf9SwYKixo4zko", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169 - },{ - "name": "bts-wrath", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E6Y914UcJjo4hDWggzpSZV8wr6RYVdGs6kE7MubbgFVAEyoJK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E6Y914UcJjo4hDWggzpSZV8wr6RYVdGs6kE7MubbgFVAEyoJK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-animal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dmBqv2vYQ2xRUeUQeiGrwsEZ3eeZpCa2nnYu3VRZeSozGQDUt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dmBqv2vYQ2xRUeUQeiGrwsEZ3eeZpCa2nnYu3VRZeSozGQDUt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124 - },{ - "name": "bts-dracula", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CHEcKsMvw3SWssdhF8cY24NV5v1YRmNsM2gD17CSJEJGrPvAu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CHEcKsMvw3SWssdhF8cY24NV5v1YRmNsM2gD17CSJEJGrPvAu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-bride", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xHdoP7ZZwe52cM7pd95kLiYHNKzJKf9uEr2eGccYZiqzZa8Aj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xHdoP7ZZwe52cM7pd95kLiYHNKzJKf9uEr2eGccYZiqzZa8Aj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 331 - },{ - "name": "bts-gable", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FqL638cpH6XUPQsgmR7a7PLjCa3aL9VPTN7edauFc8PxTxe5p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FqL638cpH6XUPQsgmR7a7PLjCa3aL9VPTN7edauFc8PxTxe5p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-gables", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GRe6C4cigr1jbTAQEhxRqC4r1yzuee9GEbCLECDBkTpo7Cvw3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GRe6C4cigr1jbTAQEhxRqC4r1yzuee9GEbCLECDBkTpo7Cvw3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-hitchhiker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B41WMLPgxxYR5GSp8YgetuJFuU4GpVpxDz3FVk9g6LewJZKKG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B41WMLPgxxYR5GSp8YgetuJFuU4GpVpxDz3FVk9g6LewJZKKG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-geisha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j2qgnMQm1VqRT12xia9CZ2UyWXe8YY3dKP1ptmiCNY96oCGn1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j2qgnMQm1VqRT12xia9CZ2UyWXe8YY3dKP1ptmiCNY96oCGn1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-juliet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55mM6NpCDSXbMTZFXy3E59NTuabxeEEiXcCn4HKaGbbTZt6Kk4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55mM6NpCDSXbMTZFXy3E59NTuabxeEEiXcCn4HKaGbbTZt6Kk4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-mice", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oQXH3Yb11SeCE13cHDSs8jAE5PRZfe9zj3BLHDLoyVrohUYCX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oQXH3Yb11SeCE13cHDSs8jAE5PRZfe9zj3BLHDLoyVrohUYCX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-mockingbird", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q14jxR1Ta8PxvRj7NmpnoagcnoHtzqogmLGVxbKGjkUGS6x2Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q14jxR1Ta8PxvRj7NmpnoagcnoHtzqogmLGVxbKGjkUGS6x2Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-odyssey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MTC3hmCdVVVx6wbBaGkySyBGSqXRosH68DaH4TWnoebR94ikA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MTC3hmCdVVVx6wbBaGkySyBGSqXRosH68DaH4TWnoebR94ikA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-traveler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewcaqkKFGiQSJtnSxK6rvhPBdiFemo4xeZ2YqKxe21LYQqfdq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewcaqkKFGiQSJtnSxK6rvhPBdiFemo4xeZ2YqKxe21LYQqfdq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-wonderland", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dBMCPG2RrYRnNanhAQRGets3Ewxj1SVPSpmejPezDfusMs9hP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dBMCPG2RrYRnNanhAQRGets3Ewxj1SVPSpmejPezDfusMs9hP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-romeo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hysumpqi7zJjytSFeavj41pV89jdY3Hun8T6N5xQV4QEhXC5X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hysumpqi7zJjytSFeavj41pV89jdY3Hun8T6N5xQV4QEhXC5X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-crowya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YKxYzPRin7AYc6PhRsDHcYapxEoLA3sBpnF3sZ6pxn8rC8Ht4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YKxYzPRin7AYc6PhRsDHcYapxEoLA3sBpnF3sZ6pxn8rC8Ht4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1508060 - },{ - "name": "bts-chenchaozhong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69oD7T3avFywmkQKQFcDMfe9fMCNsQMauq5ebdCsaQLaKZnpn8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69oD7T3avFywmkQKQFcDMfe9fMCNsQMauq5ebdCsaQLaKZnpn8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177 - },{ - "name": "bts-yingwee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yMZq3N7ry821sTHYZR9BDBd1YNc9PUeRF6zKGfCKwqx8rvhxL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yMZq3N7ry821sTHYZR9BDBd1YNc9PUeRF6zKGfCKwqx8rvhxL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 627 - },{ - "name": "bts-bitcash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55zp6DoDWy1qY3w52dQsJWRLMVNziFQykLHmVWuPYgcsbgyUZo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55zp6DoDWy1qY3w52dQsJWRLMVNziFQykLHmVWuPYgcsbgyUZo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-whggwb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sqrDdVQGPsC4LyAjFSeRQXF4HqCPcyGmJmMa2cNqBenixxCCw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sqrDdVQGPsC4LyAjFSeRQXF4HqCPcyGmJmMa2cNqBenixxCCw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 828583 - },{ - "name": "bts-nb123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kGRNYD5ahMJmNVKDvisbo418rzgaerLiY99avDfQd3bTfLJCP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kGRNYD5ahMJmNVKDvisbo418rzgaerLiY99avDfQd3bTfLJCP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 908 - },{ - "name": "bts-gattaca", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UGTRwDF5u3hdAPwvjoGzstwxq9n99x17dxF8ZPNivypySSCK7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UGTRwDF5u3hdAPwvjoGzstwxq9n99x17dxF8ZPNivypySSCK7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 95 - },{ - "name": "bts-koko", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HrtELTa6jGihZ6397ThFDe4xPmdaghHahtYoYYPtDD5guSuYN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HrtELTa6jGihZ6397ThFDe4xPmdaghHahtYoYYPtDD5guSuYN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8903507 - },{ - "name": "bts-jaewoocho", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52TRiSzb67XjEHpsT9s9wjSRyHDpKvCLf8Ymnh41HnB71CwxhJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52TRiSzb67XjEHpsT9s9wjSRyHDpKvCLf8Ymnh41HnB71CwxhJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-iliad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NC63QbBTzQL9NkHbaZEb9NRgEYM8f6wV3a6mtRhFq4bmsnkM4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NC63QbBTzQL9NkHbaZEb9NRgEYM8f6wV3a6mtRhFq4bmsnkM4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-bible", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Lnab8PSVwSpWerzZFxsLcEh2k3rLnLQa1QneLAjk28dXdiqSM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Lnab8PSVwSpWerzZFxsLcEh2k3rLnLQa1QneLAjk28dXdiqSM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124 - },{ - "name": "bts-tale", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Mh3xMgr6JWVrkS5qjzHJynuoutPd5HmpMYpVbpUvQS5k15j9N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Mh3xMgr6JWVrkS5qjzHJynuoutPd5HmpMYpVbpUvQS5k15j9N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-nest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b1iHik3NpFHV8BburMgKnRUVH6xTjcQrVnriMCQcyB88GP7Ko", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b1iHik3NpFHV8BburMgKnRUVH6xTjcQrVnriMCQcyB88GP7Ko", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10970 - },{ - "name": "bts-drawing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cHFbFLpT4dL8SBztXgQHorCeur67KqA9Wvu1hSP1GDtCNFPXR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cHFbFLpT4dL8SBztXgQHorCeur67KqA9Wvu1hSP1GDtCNFPXR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-gatsby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LMLeFGhqwcHVeZXLkXAefEY8F9QTvPwsK8nMymK1TQbViT8KY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LMLeFGhqwcHVeZXLkXAefEY8F9QTvPwsK8nMymK1TQbViT8KY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-lander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sV5yFFK2Q2c7vtaRmNGGkuiXUJbo1Ykps2XAFGKzyryNU3Mp6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sV5yFFK2Q2c7vtaRmNGGkuiXUJbo1Ykps2XAFGKzyryNU3Mp6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27091 - },{ - "name": "bts-outlander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52wAuNJ2dJ3LhpH97SKF6GMDu8LuXPYzZzqVYmigzPu4FSmFht", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52wAuNJ2dJ3LhpH97SKF6GMDu8LuXPYzZzqVYmigzPu4FSmFht", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-pray", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b87BiY5FeciSC3CxPA4j2qrk9PEk1UsKwSVZbdxR31Aw4hWvr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b87BiY5FeciSC3CxPA4j2qrk9PEk1UsKwSVZbdxR31Aw4hWvr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-prayer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dQGJBMsTaktr4NeBQ1XhKQghUj2bLAKVLAFyFp1LAAz3kBgSS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dQGJBMsTaktr4NeBQ1XhKQghUj2bLAKVLAFyFp1LAAz3kBgSS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-tattoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X48tY6DLSXctg1k9471Tkv5PJELVKCDU2bobXbbCsGed1eW9f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X48tY6DLSXctg1k9471Tkv5PJELVKCDU2bobXbbCsGed1eW9f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-tent", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dahLKZpEca6RFjnZ7bTkVYFeZQS71kspyiBroPB8REeqNgrZu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dahLKZpEca6RFjnZ7bTkVYFeZQS71kspyiBroPB8REeqNgrZu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-cave", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63ZWMEhq2SSDvWH2RyXxe3kY5UYCVAxdcJiXr7ShvUzfuN1sFQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63ZWMEhq2SSDvWH2RyXxe3kY5UYCVAxdcJiXr7ShvUzfuN1sFQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124 - },{ - "name": "bts-whoever", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bX8s6ry69w16MMHpo8KoDTi4SovwScSZDTdSeXEabeycBCXYx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bX8s6ry69w16MMHpo8KoDTi4SovwScSZDTdSeXEabeycBCXYx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-beloved", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BaM7s2kuSMBRtsuk3HXVVpwkXqbjTzGzyuYH8y73o6g9CPZiL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BaM7s2kuSMBRtsuk3HXVVpwkXqbjTzGzyuYH8y73o6g9CPZiL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-meditation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o9H7auBDx9xtXtjZQFtU56ri4ULv4jKiJ46HzMr2miMM686oh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o9H7auBDx9xtXtjZQFtU56ri4ULv4jKiJ46HzMr2miMM686oh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52 - },{ - "name": "bts-meditate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d92tau5UFsNdcrV1byjVmWQCiC3eMwUDxYtYeE4FYDFAU5HsD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d92tau5UFsNdcrV1byjVmWQCiC3eMwUDxYtYeE4FYDFAU5HsD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-loum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C71favtsG27fTKPP4hYnSj48osTpN8eqrU19T8KHdXD6JDSp8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C71favtsG27fTKPP4hYnSj48osTpN8eqrU19T8KHdXD6JDSp8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4618 - },{ - "name": "bts-capricorn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tf7PqhFaoNK31TLksyxEEDvzACX2gHXsXhko8hhcNVRmBZAKW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tf7PqhFaoNK31TLksyxEEDvzACX2gHXsXhko8hhcNVRmBZAKW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 202776 - },{ - "name": "bts-heady", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jNygTa4oormCHrpRi47eiyPJbUtibjf2JFz8bcdQ1AJZC8NkM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jNygTa4oormCHrpRi47eiyPJbUtibjf2JFz8bcdQ1AJZC8NkM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-eric-boucher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64okTBqqJqTcG3HUYjbgAXrwC9Pcs3sdbH96ZJoG5E3fxkaGin", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64okTBqqJqTcG3HUYjbgAXrwC9Pcs3sdbH96ZJoG5E3fxkaGin", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2831 - },{ - "name": "bts-lyymee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Uu5PoV8AhexpoVadvWkv1wP9fZ7mEg5kuhok5NYKhXiMm3eKU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Uu5PoV8AhexpoVadvWkv1wP9fZ7mEg5kuhok5NYKhXiMm3eKU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-wuyanren", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST548dg7iTFZuxjJJsBEyADrVBU1RYMdECRobg2Y4BGjtJiobhLo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST548dg7iTFZuxjJJsBEyADrVBU1RYMdECRobg2Y4BGjtJiobhLo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 98 - },{ - "name": "bts-stellar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FGH8ghuJRo5ufmpFQUTYR8M3wsXD8KU74isxKv9wsVDmC99J9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FGH8ghuJRo5ufmpFQUTYR8M3wsXD8KU74isxKv9wsVDmC99J9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9539685 - },{ - "name": "bts-onlyu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hyqcwHKkk9GTDHyTuhquTWQb7pKdq8xqyY7ZpQANPTbPMDMtu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hyqcwHKkk9GTDHyTuhquTWQb7pKdq8xqyY7ZpQANPTbPMDMtu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-wangzheming", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D5RYyoZMiB8WHbzmwFLfkLF1ACNnNUX7tGAu8RnWoNXQcLQb5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D5RYyoZMiB8WHbzmwFLfkLF1ACNnNUX7tGAu8RnWoNXQcLQb5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8662 - },{ - "name": "bts-brianbrandt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68MJpaxP3D9N6VySbri7DKmmrTbMooXuyxK8Ar3EaH9kPgqjzZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68MJpaxP3D9N6VySbri7DKmmrTbMooXuyxK8Ar3EaH9kPgqjzZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14131 - },{ - "name": "bts-netnetdogs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sRT3oo3TFpvmVsaGKnUwr88qQRmxTBXQVK7wLjfawBWFr1JQJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sRT3oo3TFpvmVsaGKnUwr88qQRmxTBXQVK7wLjfawBWFr1JQJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 254843 - },{ - "name": "bts-shaun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j7taHGQrBS4SAjZRfZTkiBunTMTwajfLqfdCtzaRaxeJN3HaD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j7taHGQrBS4SAjZRfZTkiBunTMTwajfLqfdCtzaRaxeJN3HaD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31535 - },{ - "name": "bts-evie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ddwHKVrePnojyNtecNP4FrRb1pkudKoUrfdyVzDPSfKxhQP6M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ddwHKVrePnojyNtecNP4FrRb1pkudKoUrfdyVzDPSfKxhQP6M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8395 - },{ - "name": "bts-naiping", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BnJqb2SYJAKwB1QUwCgkQpQUK48H6vk1yXw6iAhRrKM1s8ZVA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BnJqb2SYJAKwB1QUwCgkQpQUK48H6vk1yXw6iAhRrKM1s8ZVA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2594876 - },{ - "name": "bts-eureka", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6H4u8zBdYxPoXERT2whuMiwdMprqh47vKo2mXRRkcUtp3pHztS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6H4u8zBdYxPoXERT2whuMiwdMprqh47vKo2mXRRkcUtp3pHztS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2372757 - },{ - "name": "bts-lim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QVSHxjus3TXnQbcjbdMf1vPRNiCmyw5B7URC2SeZHmKfHw1yT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QVSHxjus3TXnQbcjbdMf1vPRNiCmyw5B7URC2SeZHmKfHw1yT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1036487 - },{ - "name": "bts-coder", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rVLV9B8vGnnyw4aGd2qWMAqyYmHEKG4EFAWwCksi13pbVajSa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rVLV9B8vGnnyw4aGd2qWMAqyYmHEKG4EFAWwCksi13pbVajSa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28971 - },{ - "name": "bts-lilly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xYzZNNscZfEnchrev1nywu7UNn44cvDGGNRMMdJhW6t9Q5ncx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xYzZNNscZfEnchrev1nywu7UNn44cvDGGNRMMdJhW6t9Q5ncx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14623 - },{ - "name": "bts-bim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WmiaWAcQZ5XZ3mFqLJXhMNtQeWozehKLgmjDsakwfFsinD1qS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WmiaWAcQZ5XZ3mFqLJXhMNtQeWozehKLgmjDsakwfFsinD1qS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-vlight", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Jd2g3sGKbJnTDeBZQRUrtuykbZ2PY6qavMwf8ZNbzsqpuAbsN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Jd2g3sGKbJnTDeBZQRUrtuykbZ2PY6qavMwf8ZNbzsqpuAbsN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-sanxing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z7xALktJMpxG2HekuVBpesc6zHLizyRkgHBABuQ7PdPCgZc3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z7xALktJMpxG2HekuVBpesc6zHLizyRkgHBABuQ7PdPCgZc3a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 539 - },{ - "name": "bts-mr-smile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PVGPBwU8FtrQWH3H9CTqNXT5TWQYpUwrZM8TRe6mSpJ2L7NyL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PRV1ZUxpiZcRh6Dp9kSmXovJ28Xzz8pN6viDAtUrY7Bs9rntk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86578 - },{ - "name": "bts-csabi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cM9kkLupAmfqaf75qM6RKNzT8dvVEXwVwf9KThvPT49JSmFNc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cM9kkLupAmfqaf75qM6RKNzT8dvVEXwVwf9KThvPT49JSmFNc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-blackmaster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EUbRTnzq9t2o7cfwesstReazSF91D7gM9v8orKhruhSG4d29m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EUbRTnzq9t2o7cfwesstReazSF91D7gM9v8orKhruhSG4d29m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23703 - },{ - "name": "bts-raiden", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TDY1ZcDuAM8sPnCJKbX9hUhrrQ8wkjWYfQBebw1HPPcw5beww", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TDY1ZcDuAM8sPnCJKbX9hUhrrQ8wkjWYfQBebw1HPPcw5beww", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 795175 - },{ - "name": "bts-btcgeek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c3NamvbnqpLtf9k5G2GQP7hM7QgEMkwjjDxMDBK2LDDKGV61P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c3NamvbnqpLtf9k5G2GQP7hM7QgEMkwjjDxMDBK2LDDKGV61P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-luoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qyvahw9HgcGZgZogStMufVwj2ycrxdq4HRUfsw9e1FHYNcTGf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qyvahw9HgcGZgZogStMufVwj2ycrxdq4HRUfsw9e1FHYNcTGf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-welkin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e2cNhdMjxV2fJkFufewLeJvY795iq5bANBCpCMQp6yzGH7NhM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e2cNhdMjxV2fJkFufewLeJvY795iq5bANBCpCMQp6yzGH7NhM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1923 - },{ - "name": "bts-onebit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZbhF3QjD1a8AJEnzcTCY3FChAn984UNwiL8zgJujzygLs5SG8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZbhF3QjD1a8AJEnzcTCY3FChAn984UNwiL8zgJujzygLs5SG8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1993191 - },{ - "name": "bts-fonker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C5mryN27qW5cXiARPqgjqE3NxovsyLRr3mWownThb92QXNPQ5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C5mryN27qW5cXiARPqgjqE3NxovsyLRr3mWownThb92QXNPQ5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 782004 - },{ - "name": "bts-g20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SzRrsJCq57FHhBwDbgGGtmrAV3jDYNtf82sSCLTto3kedpt8V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SzRrsJCq57FHhBwDbgGGtmrAV3jDYNtf82sSCLTto3kedpt8V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3068270 - },{ - "name": "bts-xianyunguh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ath7yZGvzARy9inufdkRXTkQEhdtcZuhttFG8VM2MzWfkkL8X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ath7yZGvzARy9inufdkRXTkQEhdtcZuhttFG8VM2MzWfkkL8X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3135816 - },{ - "name": "bts-meda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7J4y3YLaDro9pF7Ywc2ZqufSZrVkkgJaSZiq6QkHULRKVctvfB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7J4y3YLaDro9pF7Ywc2ZqufSZrVkkgJaSZiq6QkHULRKVctvfB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6603282 - },{ - "name": "bts-profitofthegods", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KRrjpz9NjGnuTg4panVGGT1CQWNjy3CiVtfCmsvkK21JBuXQA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KRrjpz9NjGnuTg4panVGGT1CQWNjy3CiVtfCmsvkK21JBuXQA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-jenkas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qAFPRhaeTuhf4xMBvA2LoDNKf6KVheWptrs6L67ZAwmsMZaZ5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qAFPRhaeTuhf4xMBvA2LoDNKf6KVheWptrs6L67ZAwmsMZaZ5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 186232 - },{ - "name": "bts-ctuw4m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BvRdUPm2XSRVm1XgR3cj5EwVDw9KgYAdvvYrzXq77rcFu1WAa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BvRdUPm2XSRVm1XgR3cj5EwVDw9KgYAdvvYrzXq77rcFu1WAa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 273303 - },{ - "name": "bts-zhijun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QJxL9kNXHx6D6qx1K4TehAKLp1TCKPNu6emN4tzZiPNrMfbT4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QJxL9kNXHx6D6qx1K4TehAKLp1TCKPNu6emN4tzZiPNrMfbT4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 162359 - },{ - "name": "bts-bigbig", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Svw5iRNcV8cKHR7VK6R9J7Uem1PTDz7FRuY64aaUS6UzQt8q8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Svw5iRNcV8cKHR7VK6R9J7Uem1PTDz7FRuY64aaUS6UzQt8q8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 407160 - },{ - "name": "bts-urdawg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WLGqCFnP6xevj4BzZMwBaPtcddWQAj1q3S74SDii3DcDa4dVt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WLGqCFnP6xevj4BzZMwBaPtcddWQAj1q3S74SDii3DcDa4dVt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 178399 - },{ - "name": "bts-azuos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LYnPSGC11EJG5G4PCqccpxDSLXG4x5BPfgYcqpFy1eHYSfrxJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LYnPSGC11EJG5G4PCqccpxDSLXG4x5BPfgYcqpFy1eHYSfrxJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8134 - },{ - "name": "bts-michaelx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5itMVnCckjYRLKiWhfLdikZNMpXLYkqsdcgjtkTQK9b6hfhkRA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5itMVnCckjYRLKiWhfLdikZNMpXLYkqsdcgjtkTQK9b6hfhkRA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6628016 - },{ - "name": "bts-cube", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6V1dDuZTvjV6AM34Q7gWy5GzziZAfaSMPP1i3ckWAvNG26k6vB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6V1dDuZTvjV6AM34Q7gWy5GzziZAfaSMPP1i3ckWAvNG26k6vB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-rossco99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oxSUEaNoExVthvfMjFuX9dDyhCmK9VawMJoGcVQnmhxzTV1uK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oxSUEaNoExVthvfMjFuX9dDyhCmK9VawMJoGcVQnmhxzTV1uK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2546 - },{ - "name": "bts-kee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GHxGDe5UpRKv777seJ3kxXVJGjJJqAqtpdmbnhZHEDWqxtXec", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GHxGDe5UpRKv777seJ3kxXVJGjJJqAqtpdmbnhZHEDWqxtXec", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 425 - },{ - "name": "bts-hotflame", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83eM28E35UaAVGx81SLfZ53HBCNjog3dZS4dgz9ikitR11PJdm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83eM28E35UaAVGx81SLfZ53HBCNjog3dZS4dgz9ikitR11PJdm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26641 - },{ - "name": "bts-pandora", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dLkuxh4xnqut9EwGY6xtPXuwvwMTvkp5EjAytcbkSRAFqDYPX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dLkuxh4xnqut9EwGY6xtPXuwvwMTvkp5EjAytcbkSRAFqDYPX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-fftt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73kreMam3Jy73Kbg43NaBFSFvdN1C9uCKerD3h4aBAvZTd4yfq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73kreMam3Jy73Kbg43NaBFSFvdN1C9uCKerD3h4aBAvZTd4yfq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3408739 - },{ - "name": "bts-dersonlwd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jp6w5vT8Txc8N2Mwy7wNnVjrWrrzz1B5qkjvmoNXGufpARKwN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jp6w5vT8Txc8N2Mwy7wNnVjrWrrzz1B5qkjvmoNXGufpARKwN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3416 - },{ - "name": "bts-leonx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zpbY1GtjkgJPmTGg4H6xyNxuXfDXRLGVtcKd7YU6wnKodQmxf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zpbY1GtjkgJPmTGg4H6xyNxuXfDXRLGVtcKd7YU6wnKodQmxf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-frga", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FpTR1zpzq15Kh4pPjdv1GS5dLgKWHapaVapk1kHyaBv9XC2fe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FpTR1zpzq15Kh4pPjdv1GS5dLgKWHapaVapk1kHyaBv9XC2fe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 350549 - },{ - "name": "bts-kirin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DK6XswxnihnQ3APLC5733R2aZQxh7EtgqY8Zpo3P1tP1KgcL9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DK6XswxnihnQ3APLC5733R2aZQxh7EtgqY8Zpo3P1tP1KgcL9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1915389 - },{ - "name": "bts-kimpeady", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kQHt7ZnjefGFQKwQtHHsLVyXWe7hkGjBbVAxUyxxRtVKch2MH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kQHt7ZnjefGFQKwQtHHsLVyXWe7hkGjBbVAxUyxxRtVKch2MH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2366386 - },{ - "name": "bts-kingarthur", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ea8Xj9FV8EdEUA84Mr1eHwyPrbEPWaxh5QCtuqEdzBkRzWbid", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ea8Xj9FV8EdEUA84Mr1eHwyPrbEPWaxh5QCtuqEdzBkRzWbid", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1685100 - },{ - "name": "bts-chenhonghe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N2oDuM7uZcthxVFYqQFe8xU9BP96jaPj4EoaiCznQnYSJ6wxH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N2oDuM7uZcthxVFYqQFe8xU9BP96jaPj4EoaiCznQnYSJ6wxH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6302538 - },{ - "name": "bts-aabb95", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST719GvGPbvjYRkZY4Ra7XXwZreuLt4tTvj5onVCZ2CqDVRjcQF1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST719GvGPbvjYRkZY4Ra7XXwZreuLt4tTvj5onVCZ2CqDVRjcQF1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3436 - },{ - "name": "bts-yasein", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rm8Ea4FZPiqZxykh6UTwayxfSBX7UwmaoyLxjWEEJpYWoL4gP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rm8Ea4FZPiqZxykh6UTwayxfSBX7UwmaoyLxjWEEJpYWoL4gP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1971421 - },{ - "name": "bts-bitsharesbankonline", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xMRE6HYUJLrTmcfuudabw9eNgAn6dvm9CJ4QwTMt4qpCCV115", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xMRE6HYUJLrTmcfuudabw9eNgAn6dvm9CJ4QwTMt4qpCCV115", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-cocowalla", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57HW3Vvs3PjjDz7sSesbMq7KBHkkQ53U2fUe7ZLhCnmWoNzh8N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57HW3Vvs3PjjDz7sSesbMq7KBHkkQ53U2fUe7ZLhCnmWoNzh8N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-todofixthis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z4SwNi5xrqYAanuTheAmf93nxisZgBZwmoyQH3NxpRLxv5xoD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z4SwNi5xrqYAanuTheAmf93nxisZgBZwmoyQH3NxpRLxv5xoD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5017650 - },{ - "name": "bts-dokdo-korea", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-clayop", - 33 - ],[ - "bts-clayop-mobile", - 33 - ],[ - "bts-clayop-online", - 33 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-clayop", - 33 - ],[ - "bts-clayop-mobile", - 33 - ],[ - "bts-clayop-online", - 33 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-saul", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oo9K5WxnXyVBP2uW96kBUNJYKYggE95waA25N3ZsAoFe1X7ZT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oo9K5WxnXyVBP2uW96kBUNJYKYggE95waA25N3ZsAoFe1X7ZT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20733 - },{ - "name": "bts-neoranga", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65YoZXHKdRNdTbSUfZNW521LvGaTPxpn3WZRPmo2GRgNUNsz74", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65YoZXHKdRNdTbSUfZNW521LvGaTPxpn3WZRPmo2GRgNUNsz74", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 781014 - },{ - "name": "bts-andymckay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88ZUZP2vLpDWHVV4fFitrCW4iT1fT7frKme9oM8PWhKuCDavns", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88ZUZP2vLpDWHVV4fFitrCW4iT1fT7frKme9oM8PWhKuCDavns", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1889420 - },{ - "name": "bts-tonycheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WiCG8bWR9dUu7u11dLpVDEGic7GUT7DGXGcTAeSvqNXKF89sk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WiCG8bWR9dUu7u11dLpVDEGic7GUT7DGXGcTAeSvqNXKF89sk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378 - },{ - "name": "bts-chinajsntwzq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57uPqQxMHUL34owfMxrmLLMsYfAXhyrThS4qDXXvcfJkDT2qmB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57uPqQxMHUL34owfMxrmLLMsYfAXhyrThS4qDXXvcfJkDT2qmB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15533 - },{ - "name": "bts-jetainm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8THP1ux3RApZAGyQPcYdPKiPhizHEBcUDL9P2uTXhsugLQ1c5r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8THP1ux3RApZAGyQPcYdPKiPhizHEBcUDL9P2uTXhsugLQ1c5r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 256 - },{ - "name": "bts-joereform", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LTsYGFHm3D7iGSPo92RTZEFnTAnYKgcXUm55d9YH6JVvyVYPg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LTsYGFHm3D7iGSPo92RTZEFnTAnYKgcXUm55d9YH6JVvyVYPg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28794 - },{ - "name": "bts-bts.api", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cANi9ykDaz3uPdngfQ9R1uGjhgGLbR8J4pMA2jmxRnEaPdUAR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cANi9ykDaz3uPdngfQ9R1uGjhgGLbR8J4pMA2jmxRnEaPdUAR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 697646 - },{ - "name": "bts-janbao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U49HV4ZwMThFc9fDVGZXNTobR7HtYgohPGogPFBRdHjv9ykeX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U49HV4ZwMThFc9fDVGZXNTobR7HtYgohPGogPFBRdHjv9ykeX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 267 - },{ - "name": "bts-unlimited", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iPCThe3EDyY3MVtUQ2LhhYUo7PmY6coEWTP75PNSVh3vjGrcJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iPCThe3EDyY3MVtUQ2LhhYUo7PmY6coEWTP75PNSVh3vjGrcJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-avatar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Hy9fZXygfXrp1nL4aBs4HCELFhWYSj6PXEXq6Ks9W6amVQkb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Hy9fZXygfXrp1nL4aBs4HCELFhWYSj6PXEXq6Ks9W6amVQkb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-boshen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LZpX1min468yBSLZath9GJz9LG7qhff3UJ7Pnc4wsAHWAqW7e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LZpX1min468yBSLZath9GJz9LG7qhff3UJ7Pnc4wsAHWAqW7e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 218291 - },{ - "name": "bts-tube8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PstGnfWKArMpYZGhbCQxedbtKDLYoLRdrJuVfPn4ezCBexdSN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PstGnfWKArMpYZGhbCQxedbtKDLYoLRdrJuVfPn4ezCBexdSN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-darbon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J2DRSAw1z3eCagZRywnauFKPR7rF5iHTXRTDg2iXDbRsP3pUr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J2DRSAw1z3eCagZRywnauFKPR7rF5iHTXRTDg2iXDbRsP3pUr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1769421 - },{ - "name": "bts-ptspool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hYSknseqH8gg2tzy1vE9aLZMzqKk7iQBMsyGq7UyfCHjuTZjf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hYSknseqH8gg2tzy1vE9aLZMzqKk7iQBMsyGq7UyfCHjuTZjf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-s-i-m-o-n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZxYc42WD7KHv2E4SvwUB1a5JgY3XLpQWUjEgEm1J84U3Mos15", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZxYc42WD7KHv2E4SvwUB1a5JgY3XLpQWUjEgEm1J84U3Mos15", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-raffikki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56PFaYcwhALfbapiLDZ7zvUxBD4sAWypPZMZfDnc1xeBQMwjFS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56PFaYcwhALfbapiLDZ7zvUxBD4sAWypPZMZfDnc1xeBQMwjFS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-funck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gVa3sZg51PtR7i7DrRHmG2EWFPs2vTHi2tknCGdonuRfBEPvm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gVa3sZg51PtR7i7DrRHmG2EWFPs2vTHi2tknCGdonuRfBEPvm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-gladiator", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UooPnJngcUjcHk6399vrZTBi8hXnTDrpBSzcTZRok8Kw3ZRxF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UooPnJngcUjcHk6399vrZTBi8hXnTDrpBSzcTZRok8Kw3ZRxF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 683 - },{ - "name": "bts-fanya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A6s2wLCGmXHbGp3R1HJ6tzo8WE8Rr18rZHdtNGuDqn1drnr73", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A6s2wLCGmXHbGp3R1HJ6tzo8WE8Rr18rZHdtNGuDqn1drnr73", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 157760 - },{ - "name": "bts-t66y", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o7EEJ6v5SPMTy9zvYdp57SVxmQAdUWt6rbVNG7Uo4bdjK3Mew", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o7EEJ6v5SPMTy9zvYdp57SVxmQAdUWt6rbVNG7Uo4bdjK3Mew", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-adultfriendfinder", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uEmwgkiNrk4jv3ViKKJq5eMsMLje6y2hz8jg7YHh7yM6VKqAi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uEmwgkiNrk4jv3ViKKJq5eMsMLje6y2hz8jg7YHh7yM6VKqAi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-snapchat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XVj23JixeKmiVF9tvtn7oHjg5cQgfg1cjTGFJkBXRWRyWh6G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XVj23JixeKmiVF9tvtn7oHjg5cQgfg1cjTGFJkBXRWRyWh6G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-xhamster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oSh3t2p7Ytu2jq9s6167kWv5mjTvkv2t5bJRJDd4EVsNy5Ucz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oSh3t2p7Ytu2jq9s6167kWv5mjTvkv2t5bJRJDd4EVsNy5Ucz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-kroeger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MeA7ewCojTh3xeLVE461N3raUeNr5sa8kRZp4Muftj5Vm3JMY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MeA7ewCojTh3xeLVE461N3raUeNr5sa8kRZp4Muftj5Vm3JMY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4986 - },{ - "name": "bts-verayao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ngE4zWF5CS7LZ9N29dHKRsijD9dSRcsn5vB8d9KxSfuLZ1dbf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ngE4zWF5CS7LZ9N29dHKRsijD9dSRcsn5vB8d9KxSfuLZ1dbf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 962 - },{ - "name": "bts-monkeyyao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Uo1X6phfpTFshPcQe1U3ErLi4gozvShb4BL3ZrA8vQqVDY4RJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Uo1X6phfpTFshPcQe1U3ErLi4gozvShb4BL3ZrA8vQqVDY4RJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1194 - },{ - "name": "bts-mariusz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z55ZE5WyrCiAWEp8GZmWjX6hH5wu9bD65HwAKwjxfJyJ6emqN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z55ZE5WyrCiAWEp8GZmWjX6hH5wu9bD65HwAKwjxfJyJ6emqN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48056 - },{ - "name": "bts-yanyong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fQmTf8vSqpwEwZkNdV6u3hzyD7raCRQ65s95YKqRMGcnQHoHR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fQmTf8vSqpwEwZkNdV6u3hzyD7raCRQ65s95YKqRMGcnQHoHR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81534 - },{ - "name": "bts-lanlan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zitjfG1EhhpZTe1sTmJRyHbsA69MDA4s8KbRYCyAxPnpo3Cjk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zitjfG1EhhpZTe1sTmJRyHbsA69MDA4s8KbRYCyAxPnpo3Cjk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 348803 - },{ - "name": "bts-asatoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Lagpzj5VRndAB4RM2EARdfy12jPrK81a9ZPFMpfn6c1VyjChi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Lagpzj5VRndAB4RM2EARdfy12jPrK81a9ZPFMpfn6c1VyjChi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 164638 - },{ - "name": "bts-kairo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zKyr2gr8f7eCcq7X94mw55WGR6fqSJJnd3YvBjt39g4FVoG8a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zKyr2gr8f7eCcq7X94mw55WGR6fqSJJnd3YvBjt39g4FVoG8a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18190 - },{ - "name": "bts-ericfuller", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z3j9xaxh6rpVvC9WERrbGPExEM3uiSSmaK4mVb5JeCeqS4q3W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z3j9xaxh6rpVvC9WERrbGPExEM3uiSSmaK4mVb5JeCeqS4q3W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-chrissy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JPM3y1pTSiLNbU8V1JVhY5URCdHQBCo6x5qBtxfh9VX694dLd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JPM3y1pTSiLNbU8V1JVhY5URCdHQBCo6x5qBtxfh9VX694dLd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-dias", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mo11nYEma71VNdQoBpcJWQsa28DJtXjqQRmm6ge4TY5XiTyXE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mo11nYEma71VNdQoBpcJWQsa28DJtXjqQRmm6ge4TY5XiTyXE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallace", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QsXMNufAEKrtoEqU8dj2cQuVtoywqRRHrKvJAWdrsfGkGLyTE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QsXMNufAEKrtoEqU8dj2cQuVtoywqRRHrKvJAWdrsfGkGLyTE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 400 - },{ - "name": "bts-beans", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SXR9cX7zsuz5xYjqcwbkZ68v6iCcSCLPM7LfrxjDuTmmnPnWu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SXR9cX7zsuz5xYjqcwbkZ68v6iCcSCLPM7LfrxjDuTmmnPnWu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36162 - },{ - "name": "bts-linnys1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69zLhkRWqboX1kwtgR3GZ64kSkrpmgn6MFoLUJn8hXhTkiEquu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69zLhkRWqboX1kwtgR3GZ64kSkrpmgn6MFoLUJn8hXhTkiEquu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35933 - },{ - "name": "bts-cue", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hYR4USDknYP3roo6LvVzTJSDwRYKDXTF3oyTkhGB9MjReZyCE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hYR4USDknYP3roo6LvVzTJSDwRYKDXTF3oyTkhGB9MjReZyCE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bue", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kk2k2G8VabrWFRyL3PdpRNDazNXaETTo4Bsg9i3tgTu2PuFpZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kk2k2G8VabrWFRyL3PdpRNDazNXaETTo4Bsg9i3tgTu2PuFpZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1959274 - },{ - "name": "bts-cambie24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JbLx32CySm8jHYvVP8crd7h3eDguqL9T3VjugcsHAqGm5us6w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JbLx32CySm8jHYvVP8crd7h3eDguqL9T3VjugcsHAqGm5us6w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 391007 - },{ - "name": "bts-lana", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NocAQUjzt6SrVCtpE1DXCSuB2aRaXM1Z9CdVHCWQZemAbQT8F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NocAQUjzt6SrVCtpE1DXCSuB2aRaXM1Z9CdVHCWQZemAbQT8F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 831941 - },{ - "name": "bts-hao-kitty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61bHapCNMKDanC2djE1b7r5LpgoUi8oMvGnyAqaEEthmYLkdHt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61bHapCNMKDanC2djE1b7r5LpgoUi8oMvGnyAqaEEthmYLkdHt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-btsx-znfz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a7U9k8YgSbPLHMo7bYXdnKnZqQsUjo3TnkqK7wVcvw5dQ1EY6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a7U9k8YgSbPLHMo7bYXdnKnZqQsUjo3TnkqK7wVcvw5dQ1EY6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 205 - },{ - "name": "bts-hanaac2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74YxDAVGRsNdZQ2j2iP8MM3ZjmwfdHKUFrasq3k9XcnQVeCXKz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74YxDAVGRsNdZQ2j2iP8MM3ZjmwfdHKUFrasq3k9XcnQVeCXKz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17078 - },{ - "name": "bts-eslite", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gd6C4CasipueBd7qXAdpQtnNQWo44Jhx8p3e3inqXEuUQcHtK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gd6C4CasipueBd7qXAdpQtnNQWo44Jhx8p3e3inqXEuUQcHtK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 661 - },{ - "name": "bts-drin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85PHA8zW4oCnm9CoW2RQewQeUTuFTrNfsFk8C8HJHxAKjghg2U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85PHA8zW4oCnm9CoW2RQewQeUTuFTrNfsFk8C8HJHxAKjghg2U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1156048 - },{ - "name": "bts-baudrate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uKTYyd7MTaKATc8qs6UoaPsjqrrXmHZVAcr5EBWJTHxhUU9NP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uKTYyd7MTaKATc8qs6UoaPsjqrrXmHZVAcr5EBWJTHxhUU9NP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-beikedanei1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64apcWGZmPxWmWfn4gWSovzjcTLXpr3xE8Yodq1YM54rXtJawG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64apcWGZmPxWmWfn4gWSovzjcTLXpr3xE8Yodq1YM54rXtJawG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57 - },{ - "name": "bts-chenyaojun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53C8gmx3edV3z8j1xC4DxECo5FU5RQ6nphZRJyGtrBiTJ9VgwT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53C8gmx3edV3z8j1xC4DxECo5FU5RQ6nphZRJyGtrBiTJ9VgwT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-suyulin6688", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zR9kruMRTf4Ps7Dij5jHLMYdyuBvENmJ68iTaGRZsgwc6yKcQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zR9kruMRTf4Ps7Dij5jHLMYdyuBvENmJ68iTaGRZsgwc6yKcQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4712 - },{ - "name": "bts-wayne", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JJYwXEUeoivNb7kiZpVyVRmS372nSSrQUz22vZaoSMJSC99ae", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JJYwXEUeoivNb7kiZpVyVRmS372nSSrQUz22vZaoSMJSC99ae", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1168766 - },{ - "name": "bts-lianmeng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EKBseZZ5gL6nhyBkgqdnyd2kWbHJFC3UuwvENn97Us3J28A13", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EKBseZZ5gL6nhyBkgqdnyd2kWbHJFC3UuwvENn97Us3J28A13", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 635 - },{ - "name": "bts-mahprod", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pFBcQa8mk4iWRL1BsHEKoJNW1cvx58zPs4NtRHXDUMtDTYfhH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pFBcQa8mk4iWRL1BsHEKoJNW1cvx58zPs4NtRHXDUMtDTYfhH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 156088 - },{ - "name": "bts-vix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8vwmRJewFSeDRKdTsiYdqkuMrph4qatDJVddyhdPRSor1c6y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8vwmRJewFSeDRKdTsiYdqkuMrph4qatDJVddyhdPRSor1c6y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-rayston92", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g6tLMjKqbMPAK1oWfpeoDLNEiwVpiM5EffXhVYTixLEm35DWd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g6tLMjKqbMPAK1oWfpeoDLNEiwVpiM5EffXhVYTixLEm35DWd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55 - },{ - "name": "bts-nedscott", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Fsyk4VENS2Yn5eUbL2QnGYD5orLsxw5vxX2FEDh7SjSYrDbEw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Fsyk4VENS2Yn5eUbL2QnGYD5orLsxw5vxX2FEDh7SjSYrDbEw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-heather", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63yv7h8ornE282pNFUfhVazRx8MBhPMkTkP9nC1C6SrzfNRso4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63yv7h8ornE282pNFUfhVazRx8MBhPMkTkP9nC1C6SrzfNRso4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-yangziwawa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oY7CwbiLDHDZEGCR28z2QzTyZFYe76Q3YuSyzkXv8yf2GdSd2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oY7CwbiLDHDZEGCR28z2QzTyZFYe76Q3YuSyzkXv8yf2GdSd2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 163640 - },{ - "name": "bts-thirdpartyservice", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DCaLgS7yD4Ligw3zRh8B6PT3XeqpdJ1cVSaaPeqkMrMib4N9A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DCaLgS7yD4Ligw3zRh8B6PT3XeqpdJ1cVSaaPeqkMrMib4N9A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32489 - },{ - "name": "bts-btcsun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kdz4S2DuUYnquoUxtjMm6hSQDrEaUDGtDCygsiiovKGyqR2jA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kdz4S2DuUYnquoUxtjMm6hSQDrEaUDGtDCygsiiovKGyqR2jA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-quiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K2TQnC73xjWcMtvX7X9qN8bBvzxfo6DjCA41qFDXJuHDY7jnf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K2TQnC73xjWcMtvX7X9qN8bBvzxfo6DjCA41qFDXJuHDY7jnf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 194787 - },{ - "name": "bts-ppimp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RJuzZ3BRjCURQLHJbS35QoEqjRPAJhCwCrM8Eq4vDbvWWnQAQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RJuzZ3BRjCURQLHJbS35QoEqjRPAJhCwCrM8Eq4vDbvWWnQAQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 228239 - },{ - "name": "bts-mach3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69vkkVCgBRDwTrUSrymMcac71VJQbrGP74uPZ7rt7hkQ5qaJ38", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69vkkVCgBRDwTrUSrymMcac71VJQbrGP74uPZ7rt7hkQ5qaJ38", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 396478 - },{ - "name": "bts-jakub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xGVX6k2xetA7UwxRBx3piH2M7jUeyvEKZYzdRurK8PsK4LAZy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xGVX6k2xetA7UwxRBx3piH2M7jUeyvEKZYzdRurK8PsK4LAZy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1541 - },{ - "name": "bts-neura", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68QcnaGoFSv6Aa2VyU6HzHFVcbCAfoNAPToqJ1mQRRqyNn8L8L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68QcnaGoFSv6Aa2VyU6HzHFVcbCAfoNAPToqJ1mQRRqyNn8L8L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-bitsharesplay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wRx3ZnRZWAbXUcG24pZFtigEmTHnrEVyLedqsbDQrxgERiyo4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wRx3ZnRZWAbXUcG24pZFtigEmTHnrEVyLedqsbDQrxgERiyo4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 501 - },{ - "name": "bts-sunlite", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XB9tLQhWmEEtCGb1JPL1GMZSzWBZfCXpeidRkY6j4rFUCvwHj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XB9tLQhWmEEtCGb1JPL1GMZSzWBZfCXpeidRkY6j4rFUCvwHj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45611 - },{ - "name": "bts-gerry198508", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f4K5XeKiMDqLfEnS1bgp7Ddyi8trRsHnR6a2HoFuF9Q8CXnse", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f4K5XeKiMDqLfEnS1bgp7Ddyi8trRsHnR6a2HoFuF9Q8CXnse", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3310845 - },{ - "name": "bts-needmoresharex7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AL4AkyRYz9VGsTGsAetkU2P7er9gvyoUXM8xvXmz8jTMrQuqe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AL4AkyRYz9VGsTGsAetkU2P7er9gvyoUXM8xvXmz8jTMrQuqe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3924 - },{ - "name": "bts-shaun-main", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77DEm1ek1RUzgwXrzfVa7SoKVmJNMKPGXry2ZbB9mGsVLEfkdj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77DEm1ek1RUzgwXrzfVa7SoKVmJNMKPGXry2ZbB9mGsVLEfkdj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6070 - },{ - "name": "bts-destinies", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GgWZC8vrtFzcxRQzMbzEXVQgFpKLgQsv65PURi3WodadpnE1U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GgWZC8vrtFzcxRQzMbzEXVQgFpKLgQsv65PURi3WodadpnE1U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-usin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LjxEbZxaDsbp9UhG86Mv4RQv14yJYcc2xMF8F3SqAqybQB9Fw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LjxEbZxaDsbp9UhG86Mv4RQv14yJYcc2xMF8F3SqAqybQB9Fw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 412 - },{ - "name": "bts-bitrose", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zxVsBR8JShBp7bGaGLQ5WQ59s1Tv45kGgeAvKDFhS8YytxRPT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zxVsBR8JShBp7bGaGLQ5WQ59s1Tv45kGgeAvKDFhS8YytxRPT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3382 - },{ - "name": "bts-wery", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nT1v9adCEJ15ij9qo1c3tVGyWQqVBH6cw4Nk5XmqvHdT2qZRS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nT1v9adCEJ15ij9qo1c3tVGyWQqVBH6cw4Nk5XmqvHdT2qZRS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3735 - },{ - "name": "bts-misja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FJedZ4VDqv6sWVh2kCmZqQ17UcAZb4uBXCiUdevcrNb2ncDng", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FJedZ4VDqv6sWVh2kCmZqQ17UcAZb4uBXCiUdevcrNb2ncDng", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57 - },{ - "name": "bts-testing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zm5ijqGug86XKbnoi8aYFy5f5N6noqu4SUjevbjwgniiVAkhz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zm5ijqGug86XKbnoi8aYFy5f5N6noqu4SUjevbjwgniiVAkhz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 134 - },{ - "name": "bts-alltimehigh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iBNRkfQqR8wVeufzkSXFQ9uSA8H9t3uvvWA37qztTMmasj94N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iBNRkfQqR8wVeufzkSXFQ9uSA8H9t3uvvWA37qztTMmasj94N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 281241 - },{ - "name": "bts-vault", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51PHHyzAffgsUzXTZQaqz4rLFVyj3x37PmbPfpdz4fGyeWXkFr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51PHHyzAffgsUzXTZQaqz4rLFVyj3x37PmbPfpdz4fGyeWXkFr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-dacgate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61EKx8RaTjkD1qd8gPJ14hQBkjH84FmibxMiXiLsyfMre9vfBv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61EKx8RaTjkD1qd8gPJ14hQBkjH84FmibxMiXiLsyfMre9vfBv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6056410 - },{ - "name": "bts-feeleep", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72W7TJJi6JC3oAFWiFfAUbxyS3hvVLnM4gwB1sAF81znacjRZS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72W7TJJi6JC3oAFWiFfAUbxyS3hvVLnM4gwB1sAF81znacjRZS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1905373 - },{ - "name": "bts-piguin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CMorS19QwaUhrUF69iRgwnAXqND1SWeeCZN9H4shggdEHjJ2Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CMorS19QwaUhrUF69iRgwnAXqND1SWeeCZN9H4shggdEHjJ2Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4593485 - },{ - "name": "bts-yaozongqiu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JLXspfWaY84KRiaPzRPrBkMsGJ1fe1NB2Fonix3BFcD3A9WJS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JLXspfWaY84KRiaPzRPrBkMsGJ1fe1NB2Fonix3BFcD3A9WJS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 833 - },{ - "name": "bts-lava", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kaG52Wy8D21XD1X77Lvi6rnbXmqdJN49EjhwD9d5v6LvgJNo4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kaG52Wy8D21XD1X77Lvi6rnbXmqdJN49EjhwD9d5v6LvgJNo4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 999540 - },{ - "name": "bts-orko", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qr89uyKhxqoYG1TkgaLoRYkAa174uRn7zvCZhpcYny9QmZGz8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qr89uyKhxqoYG1TkgaLoRYkAa174uRn7zvCZhpcYny9QmZGz8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 748275 - },{ - "name": "bts-shares4fun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jkUwhk4b1aFxvBQpGp5GbhbYCFH6bxAiivegFrb5fvcYrwYGL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jkUwhk4b1aFxvBQpGp5GbhbYCFH6bxAiivegFrb5fvcYrwYGL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6571 - },{ - "name": "bts-mrx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f3jJmJU5Pg6v7hDS3RUWCYkB8zfV9jpXqDNnKazKZBtnGY1hG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f3jJmJU5Pg6v7hDS3RUWCYkB8zfV9jpXqDNnKazKZBtnGY1hG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AdZHbawi6SqnYHQ51psuRGL5GVjexbTRCpvHeJZN5bFBo7Jna", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AdZHbawi6SqnYHQ51psuRGL5GVjexbTRCpvHeJZN5bFBo7Jna", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-delegate.dax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iq6EpdSBpyLdiLywuFq7k5FVjzJVjAXkhftbXiCngTWyquQmz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iq6EpdSBpyLdiLywuFq7k5FVjzJVjAXkhftbXiCngTWyquQmz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21144 - },{ - "name": "bts-salva82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fRZ2YgsTVi5JtVCyRyh5e5Fde9H2ghbj34ahApJJ4esa749rc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fRZ2YgsTVi5JtVCyRyh5e5Fde9H2ghbj34ahApJJ4esa749rc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10129 - },{ - "name": "bts-tinker-tk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72NVaigAc43UDxncrSVSWEqjt2YVTWnGYGh4e2Q7KSoD1dqU8o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72NVaigAc43UDxncrSVSWEqjt2YVTWnGYGh4e2Q7KSoD1dqU8o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-tara", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lg8HAm1pwYXXWpmf2yX3P7BKkrFJkBdYHdv1PPhc8Rjh3JfBN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lg8HAm1pwYXXWpmf2yX3P7BKkrFJkBdYHdv1PPhc8Rjh3JfBN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 711547 - },{ - "name": "bts-levarswallet2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eZH35Uig5MYbr4dFqnUQDKT7rEb9TcKnmJK7xSc2Kn4yVPJHx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eZH35Uig5MYbr4dFqnUQDKT7rEb9TcKnmJK7xSc2Kn4yVPJHx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-blasulz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fidom5AaNJfRktcmHQxzs1khJErqmWgxuPkLaCUhh4Khadq9d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fidom5AaNJfRktcmHQxzs1khJErqmWgxuPkLaCUhh4Khadq9d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 320211 - },{ - "name": "bts-madcow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8344ZhPuW3vgYYgmwGSms3EgojzfDXcuX2GaEdDgbkb5w91ekm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8344ZhPuW3vgYYgmwGSms3EgojzfDXcuX2GaEdDgbkb5w91ekm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 928743 - },{ - "name": "bts-tiger5056", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MpFwP79TgfNYv3TomYSPFwKewDwtyNqDdVGTN8dLgbV38KbAd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MpFwP79TgfNYv3TomYSPFwKewDwtyNqDdVGTN8dLgbV38KbAd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31412 - },{ - "name": "bts-mybitsharesx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mwtU7WuGhPeBr92dg1fW2gosWWgZhQDtwG7oKsoafx37SvfYG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mwtU7WuGhPeBr92dg1fW2gosWWgZhQDtwG7oKsoafx37SvfYG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gaba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W8xH3iCPMgnes24ZtgXAbhPRdEy3QSC4fjHe2Y76nKLLDuxSj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W8xH3iCPMgnes24ZtgXAbhPRdEy3QSC4fjHe2Y76nKLLDuxSj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4576393 - },{ - "name": "bts-pmc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ohcP6jcJeLyN6K794PzWiT9NYVxgPzsU5AkGUW6PXeGAtWyM5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MJmtzEUrqeCGbAp2VzRXTahmVZyTiG8MpmzjJEX3xZhNoc86Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1292510 - },{ - "name": "bts-derkorb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7msj6BqThtfTFgNg2D5jnRM6MHVSSLf8ySdYn9qCNu5no6jEG9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7msj6BqThtfTFgNg2D5jnRM6MHVSSLf8ySdYn9qCNu5no6jEG9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-rattlebrain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ENqcCiGqSWq6kgKYzs8HbLraCD8RKcuqdeTtM1YpMZ7wrKEW8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ENqcCiGqSWq6kgKYzs8HbLraCD8RKcuqdeTtM1YpMZ7wrKEW8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 382 - },{ - "name": "bts-feinarbyte", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Gk5Wt7kBffzbWQR6ydtiDtVWawDzXCwveXBLR2EaL3mtWD39B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-tester123", - 1 - ] - ], - "key_auths": [[ - "TEST8Gk5Wt7kBffzbWQR6ydtiDtVWawDzXCwveXBLR2EaL3mtWD39B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3083 - },{ - "name": "bts-bitshares-tk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZbFcjqu39H6AFCCuVwJNyAoBhE5nv9E7nRDxaeb41GFrhTzTp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZbFcjqu39H6AFCCuVwJNyAoBhE5nv9E7nRDxaeb41GFrhTzTp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-oldutiao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dk2Ggw6Cg1dF7uCQ1efPeE7ff75QJfzoAwVFnFoS7LwdZfEHs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dk2Ggw6Cg1dF7uCQ1efPeE7ff75QJfzoAwVFnFoS7LwdZfEHs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-oyxm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QJBxahPpsejDhPCkH9g44R5iHcf17S9CErTJPsicxiD5V6W4o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QJBxahPpsejDhPCkH9g44R5iHcf17S9CErTJPsicxiD5V6W4o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 137638 - },{ - "name": "bts-jaredboice", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hLjjTV3zgmx6C8GfzpVn3DXR1S3UEBJvowp9txprbrdEaDozg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hLjjTV3zgmx6C8GfzpVn3DXR1S3UEBJvowp9txprbrdEaDozg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8974 - },{ - "name": "bts-slacking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zGjMAom8hER7BsZFGjG7CVAbmeV6xpk7TUeA2WoQE8GkSHXFt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zGjMAom8hER7BsZFGjG7CVAbmeV6xpk7TUeA2WoQE8GkSHXFt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-xiaoshan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nYhfR3HBAHaBZWHJme2Nh8QJcrh5fTPVBPNR5ugHKZTLUUGqi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nYhfR3HBAHaBZWHJme2Nh8QJcrh5fTPVBPNR5ugHKZTLUUGqi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1621004 - },{ - "name": "bts-globax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mt77uqmnpQqwzhcFSWNP9rC4mJ6D8S2aFXHUwqTxHRFHfqUa9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mt77uqmnpQqwzhcFSWNP9rC4mJ6D8S2aFXHUwqTxHRFHfqUa9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1583968 - },{ - "name": "bts-devlin22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MGbfA96yJ4VuHfXKJ2V4eX9jfozPgXXQU7daUt9a1wBCaHxee", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MGbfA96yJ4VuHfXKJ2V4eX9jfozPgXXQU7daUt9a1wBCaHxee", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-bonzo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JrXQdBBF1VMPjG4RDAMQsQFkVhLGwupiM9YLUyhMtbCR5ns7A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JrXQdBBF1VMPjG4RDAMQsQFkVhLGwupiM9YLUyhMtbCR5ns7A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-eastgulf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m4TeyUfKymKfJ7ULhUPHiwz3mBNev9zi3DM9rrYp4Ew8yNZAY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m4TeyUfKymKfJ7ULhUPHiwz3mBNev9zi3DM9rrYp4Ew8yNZAY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26358 - },{ - "name": "bts-tanglinkun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fj5zijwqrGiZCjQ7gmAMyEZLVLFVmugJuLsBuLVBpreGPoVKm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fj5zijwqrGiZCjQ7gmAMyEZLVLFVmugJuLsBuLVBpreGPoVKm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-optictopic-j", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71ZXoKtnEeAtF26CaywoUDYqU5PDdurbBfWj7aQ69swoMwbrMG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71ZXoKtnEeAtF26CaywoUDYqU5PDdurbBfWj7aQ69swoMwbrMG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3713161 - },{ - "name": "bts-fuck9999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YV7n8g7dDALS6CbRFMmcT4LyvTb521NkZEGP1gN5BiV66fH26", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YV7n8g7dDALS6CbRFMmcT4LyvTb521NkZEGP1gN5BiV66fH26", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208520 - },{ - "name": "bts-corp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82dbdo13TksvTjwzoYYzPotE6Wjv4paVcjShwv7pLi2HVSq97i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82dbdo13TksvTjwzoYYzPotE6Wjv4paVcjShwv7pLi2HVSq97i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 309 - },{ - "name": "bts-ironbank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TqCJC93NJuVau38NTfLTMBu8DW5fPYU5SvvzG4vq9cVTg9M2S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TqCJC93NJuVau38NTfLTMBu8DW5fPYU5SvvzG4vq9cVTg9M2S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13720871 - },{ - "name": "bts-slender", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62S8xDDaB7pCZbZimhgntnhkfXLv4BZg9QCRnYYPFX22bdiujb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62S8xDDaB7pCZbZimhgntnhkfXLv4BZg9QCRnYYPFX22bdiujb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-bitdollars", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h2CrxTzYemRTkbF5kdTYhgwrovQacEHtx4WhTW5ZDQyVdtZ1K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h2CrxTzYemRTkbF5kdTYhgwrovQacEHtx4WhTW5ZDQyVdtZ1K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29092 - },{ - "name": "bts-xrus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iYMjxiokRPC7aevUfnkQWEg7GdccHnFXjeSPufaLurbtabqGd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iYMjxiokRPC7aevUfnkQWEg7GdccHnFXjeSPufaLurbtabqGd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1004 - },{ - "name": "bts-lopalcar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YRjXjDMNKthanYhfDAmLpffeSEfX1kopguSYabK93jzMAuox3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YRjXjDMNKthanYhfDAmLpffeSEfX1kopguSYabK93jzMAuox3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1097128 - },{ - "name": "bts-inspark", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FML9xwddExgzZxunrVXziSbkqjYA5CJJWE954DNAHDmYKtMAb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FML9xwddExgzZxunrVXziSbkqjYA5CJJWE954DNAHDmYKtMAb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cryptoprometheus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pAvEM5ZR9h7AMsRarhJJziXx4BEeyxGtt9vWRpK2Uv3bEQJHB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pAvEM5ZR9h7AMsRarhJJziXx4BEeyxGtt9vWRpK2Uv3bEQJHB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80168 - },{ - "name": "bts-everydaycrypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s9hHgv9bkaj3pZEt9UWn7yLcrbsMXTq8xsxGxpdcvjL4RwSqL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s9hHgv9bkaj3pZEt9UWn7yLcrbsMXTq8xsxGxpdcvjL4RwSqL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 505935 - },{ - "name": "bts-game123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TT5w9m74E7SJxCMJ7GVjodiPPa2b2pjjmpX7awd4tBYqtrrgm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TT5w9m74E7SJxCMJ7GVjodiPPa2b2pjjmpX7awd4tBYqtrrgm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4964 - },{ - "name": "bts-cusknee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JfXwrVrWQhMDr71FEZhmTtXsegFyZLL4g3BDdeFgyFSHNoQqv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JfXwrVrWQhMDr71FEZhmTtXsegFyZLL4g3BDdeFgyFSHNoQqv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1553430 - },{ - "name": "bts-jonathan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YcfupXWporL8saVLeoWGBJgp5jZu17DH6iT3BuELogZoU5dZs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YcfupXWporL8saVLeoWGBJgp5jZu17DH6iT3BuELogZoU5dZs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 392697 - },{ - "name": "bts-delta123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FGV1fY9eL6PcV7oAP5tBsqcw2uey9UqPFFzeBjhU4dmLFV6pz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FGV1fY9eL6PcV7oAP5tBsqcw2uey9UqPFFzeBjhU4dmLFV6pz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 181816 - },{ - "name": "bts-caveman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8G6VBdPJ5tmVeb5RvyFJGUQwysUdfey78c3QyQzmq2ndkKomua", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8G6VBdPJ5tmVeb5RvyFJGUQwysUdfey78c3QyQzmq2ndkKomua", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-poloniexwalle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85z7F2cptuyRb8zbmZq6pVarabBTPSGYxtxNc2FxojuzpninZP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85z7F2cptuyRb8zbmZq6pVarabBTPSGYxtxNc2FxojuzpninZP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 125115 - },{ - "name": "bts-doxymoron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST591yowoFc9iXBpvUHngHSUwqcd8HgZsU71EmXmhZp76cgYSAVt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST591yowoFc9iXBpvUHngHSUwqcd8HgZsU71EmXmhZp76cgYSAVt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97 - },{ - "name": "bts-growler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88dagatogtFAUmEz4HwmRCyYYz8ZaQGTMfizVdSHxSFcjugvme", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88dagatogtFAUmEz4HwmRCyYYz8ZaQGTMfizVdSHxSFcjugvme", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1038 - },{ - "name": "bts-kot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sjbBjed5zvmqbqVHm8pSsWQFKLJimJbbjTA9vHssEQCnhdsBz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sjbBjed5zvmqbqVHm8pSsWQFKLJimJbbjTA9vHssEQCnhdsBz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50329 - },{ - "name": "bts-n3bula", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66MYL6hhJ8A7TKmQ7y8B3Pawq2NKk5Khg51BwvfVurjbNLnd5Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66MYL6hhJ8A7TKmQ7y8B3Pawq2NKk5Khg51BwvfVurjbNLnd5Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3771 - },{ - "name": "bts-datasecuritynode", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST878w5GpLk8YXCnpKNcbm6twRuJ3Ja9kM2CFGxcic8PN6rZU2RH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST878w5GpLk8YXCnpKNcbm6twRuJ3Ja9kM2CFGxcic8PN6rZU2RH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 152814 - },{ - "name": "bts-wnagp888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76idCR1k3do6YnSnNCpyMaUZJnHW74icqYmYLhgWAhnfS4VQ1p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76idCR1k3do6YnSnNCpyMaUZJnHW74icqYmYLhgWAhnfS4VQ1p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104425 - },{ - "name": "bts-hongshizi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AdqvScK8SNdRusBAnK8WCE3M2pgMBHQb1BEHTbyokR1dqdGR1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AdqvScK8SNdRusBAnK8WCE3M2pgMBHQb1BEHTbyokR1dqdGR1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-zongcai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cLswEeZcZcSv1cd3LMRikFkSzJJPpcXkfyy8t57o6GtRqFNq9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cLswEeZcZcSv1cd3LMRikFkSzJJPpcXkfyy8t57o6GtRqFNq9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 222 - },{ - "name": "bts-poloniex-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hump8Txx2ChDA14YYRtBJipqivdLEYFkjye5Vp1j3oiMHC1ge", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hump8Txx2ChDA14YYRtBJipqivdLEYFkjye5Vp1j3oiMHC1ge", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376290 - },{ - "name": "bts-yinguang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZmNED1FQEZBTDrS7yuA3QD8nMtDHd992gtu7yRjRbHDEYVqmK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZmNED1FQEZBTDrS7yuA3QD8nMtDHd992gtu7yRjRbHDEYVqmK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-jinluo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84AWmBhFYfrB31piUzoke2mG5Ydzz5xXY72c1k9RBj8NcYU9uR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84AWmBhFYfrB31piUzoke2mG5Ydzz5xXY72c1k9RBj8NcYU9uR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-big-bear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xdr6a66EkgrFknbjLHPExkqbdU53FftgCA2bAEmb7DDgiki7Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xdr6a66EkgrFknbjLHPExkqbdU53FftgCA2bAEmb7DDgiki7Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-doyle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x7kFJv42sVczinozMvx8hKX2LUjZiRz1HFFgX18iyAFz9AVLH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x7kFJv42sVczinozMvx8hKX2LUjZiRz1HFFgX18iyAFz9AVLH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 606363 - },{ - "name": "bts-bitsharer1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73Scyjtw2VUfGxpFFC6Q8BTScUh2XQseP8BoxWPbC4ZiTCy4pP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73Scyjtw2VUfGxpFFC6Q8BTScUh2XQseP8BoxWPbC4ZiTCy4pP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 524239 - },{ - "name": "bts-peterbishop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K3p74rZeVg5V7ppKmRK2LCoNsmLoKV9uM23xhErmw3iWeFpEm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K3p74rZeVg5V7ppKmRK2LCoNsmLoKV9uM23xhErmw3iWeFpEm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27325 - },{ - "name": "bts-biaoge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uVBw3vb8EzjWZbArVwCbvA1Ekdn9yqBGm2wg3T9uP4HcGxszj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uVBw3vb8EzjWZbArVwCbvA1Ekdn9yqBGm2wg3T9uP4HcGxszj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34077 - },{ - "name": "bts-annuity", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KGHknV9PWYZm7mGUUd5jWW6ZN5b2rShAY9MRbojhUrFtqB5nH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KGHknV9PWYZm7mGUUd5jWW6ZN5b2rShAY9MRbojhUrFtqB5nH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-pikefloyd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qa5SofP7VoFBAPtVGQf1SeyM76ZWeP9ik5g8Pa1nhZgN6jhSi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qa5SofP7VoFBAPtVGQf1SeyM76ZWeP9ik5g8Pa1nhZgN6jhSi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-hyacieth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MKUuRCxRsANmKdswuH4vpxmng4F8yYbKsDt92WxJvRSKoL3td", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MKUuRCxRsANmKdswuH4vpxmng4F8yYbKsDt92WxJvRSKoL3td", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-goodfuture", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mEKGNiAXcM46FyqsaRYXvhDbD1jG1VUMPLM4kHtRjr3fZR9Ge", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mEKGNiAXcM46FyqsaRYXvhDbD1jG1VUMPLM4kHtRjr3fZR9Ge", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752573 - },{ - "name": "bts-ljwflyskybtsx2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AWGmxS6B7DHmwAtq2HMX5DWao78UxzUns981E7sp7HQxux9h3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AWGmxS6B7DHmwAtq2HMX5DWao78UxzUns981E7sp7HQxux9h3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 289355 - },{ - "name": "bts-favdesu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WuhXti6h1JHWKA1NPobVwXpQYti8YpMgziVFoemLi7DaqJgc5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WuhXti6h1JHWKA1NPobVwXpQYti8YpMgziVFoemLi7DaqJgc5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752873 - },{ - "name": "bts-joint-venture", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tjzE72rNySdoRUoGkyiNnbasNDqtEutB89dbye7484HLQEMJR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tjzE72rNySdoRUoGkyiNnbasNDqtEutB89dbye7484HLQEMJR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112885 - },{ - "name": "bts-enterprise", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VpC7TbyswfuxNi3MG55BGGEXRdsMfjryiGj6Hm6mW51XjXVu2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VpC7TbyswfuxNi3MG55BGGEXRdsMfjryiGj6Hm6mW51XjXVu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89764 - },{ - "name": "bts-btan887", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ko6PnX9EakXB7iHG5LJx2hPGp8NmUK7pQMXHtunWNQ1EbnWQt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ko6PnX9EakXB7iHG5LJx2hPGp8NmUK7pQMXHtunWNQ1EbnWQt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 260077 - },{ - "name": "bts-dogdog74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FpfpPGHbKyBLnNLeqyYYWGqD3gh3KL1kTBRssigo2G127cBVg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FpfpPGHbKyBLnNLeqyYYWGqD3gh3KL1kTBRssigo2G127cBVg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37627 - },{ - "name": "bts-sebas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PVox7DCHkSttsSDMyuyYbPSmMHhuVUvs1Xn2qtRRpeexLizEJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PVox7DCHkSttsSDMyuyYbPSmMHhuVUvs1Xn2qtRRpeexLizEJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 997 - },{ - "name": "bts-panzicong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53Z44mLMm1h4vRX8NTitZQkuJUN8fLYDridZhcQ5RpuUFbZfy3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53Z44mLMm1h4vRX8NTitZQkuJUN8fLYDridZhcQ5RpuUFbZfy3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 598949 - },{ - "name": "bts-fav", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5poFTVoUUtHJ7t5f1dDzGoHLQads69zeNb3qVmbmExYMLC5Lww", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5poFTVoUUtHJ7t5f1dDzGoHLQads69zeNb3qVmbmExYMLC5Lww", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1123140 - },{ - "name": "bts-director", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rYwrDC9XGPJz7B8SzCoQDE4qeoZKEzy92mpQP8HHDG8ZLHMSi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rYwrDC9XGPJz7B8SzCoQDE4qeoZKEzy92mpQP8HHDG8ZLHMSi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-aftw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RU8Kt5a7ndmGtSCf9QBiaDdoP6at2c2iftEUH8HKotE3uu47y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RU8Kt5a7ndmGtSCf9QBiaDdoP6at2c2iftEUH8HKotE3uu47y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 147 - },{ - "name": "bts-anakron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P4L3511mBuBWLCBrqdGrAuGAmyNjH31fjnEqKnoNiXmNBEnbY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P4L3511mBuBWLCBrqdGrAuGAmyNjH31fjnEqKnoNiXmNBEnbY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-scott-schechter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5663qfqFwJcqzD6ugWxtQjJtCmofehHPgPHbFf1WZGHFUJGFXs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5663qfqFwJcqzD6ugWxtQjJtCmofehHPgPHbFf1WZGHFUJGFXs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 452548 - },{ - "name": "bts-pnoch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YC32hCak3fuqumYNvW8wzaaeWt657deQMZYUUWyYLTnp6vedv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YC32hCak3fuqumYNvW8wzaaeWt657deQMZYUUWyYLTnp6vedv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46951 - },{ - "name": "bts-coinforrice", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68sJgxcJmhZUHG6tyCQADddoJSMhsCz7ja9tv32SxFjUFepKt8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68sJgxcJmhZUHG6tyCQADddoJSMhsCz7ja9tv32SxFjUFepKt8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-zxw0208", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LMmvv6xS6u1tc4cEAPAxtSbY1SmbV3z8ZA9GLC4vCdXz5SbC6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LMmvv6xS6u1tc4cEAPAxtSbY1SmbV3z8ZA9GLC4vCdXz5SbC6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1252494 - },{ - "name": "bts-sauron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57aR8e6Kjosr37US63ojBWyPn8NqMPBAmvJLMhvGDd27N9L5Rv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57aR8e6Kjosr37US63ojBWyPn8NqMPBAmvJLMhvGDd27N9L5Rv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11758330 - },{ - "name": "bts-roman.gorodnev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8THVMVPKGuUQjjFV4GDCdNftvgbEUTn7DQZx4SsbdDNZ6US35f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8THVMVPKGuUQjjFV4GDCdNftvgbEUTn7DQZx4SsbdDNZ6US35f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 610 - },{ - "name": "bts-yiminh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72vQohsBr5sDZbQt5fCT5HizN2coemzKogLq3nhc4GpR3z36Cs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72vQohsBr5sDZbQt5fCT5HizN2coemzKogLq3nhc4GpR3z36Cs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61162 - },{ - "name": "bts-joy89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WFas2QEfW9787xXR5hTiGwJ2288LcN56FrP4166q5d68sGkhG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WFas2QEfW9787xXR5hTiGwJ2288LcN56FrP4166q5d68sGkhG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4368 - },{ - "name": "bts-tudi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69bcXPERJ3AnACrdXWeq3haW8RjLwJExtFGsXuT3o4zugpXETC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69bcXPERJ3AnACrdXWeq3haW8RjLwJExtFGsXuT3o4zugpXETC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-taizi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xBxy4KrKa3aN3Q1uScKnpiwCBYwm28AJkMp2vATCStD3TWSdz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xBxy4KrKa3aN3Q1uScKnpiwCBYwm28AJkMp2vATCStD3TWSdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-mcxcw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YtSiXG5fkbaQnAkivMBaiUrHnXwUgdZq6ccTDM38jUytdidEr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YtSiXG5fkbaQnAkivMBaiUrHnXwUgdZq6ccTDM38jUytdidEr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7369117 - },{ - "name": "bts-csj0493", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xwp7EDgYoHqtc22CdVNmoVpFuexygKqH9CPNh8JCiTeJPZvv5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xwp7EDgYoHqtc22CdVNmoVpFuexygKqH9CPNh8JCiTeJPZvv5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 181306 - },{ - "name": "bts-songyifan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DoQLnY4T5dLBE9so5tWmkgcQXQADugHXEEq7eq2wKgJShg8e1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DoQLnY4T5dLBE9so5tWmkgcQXQADugHXEEq7eq2wKgJShg8e1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 589933 - },{ - "name": "bts-agodo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TbiQXX7dFCSkfpFWFvpHmHyXJQR381ChawrapdwmnXizWGbxa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TbiQXX7dFCSkfpFWFvpHmHyXJQR381ChawrapdwmnXizWGbxa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16052180 - },{ - "name": "bts-kickky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xkPrLUEQb61Buzdm7rbRkffJ3QBUTpHaUofPYRMX4H7wa5953", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xkPrLUEQb61Buzdm7rbRkffJ3QBUTpHaUofPYRMX4H7wa5953", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 257 - },{ - "name": "bts-leon1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XdyAimn4yZK53r5zj71nXEz8P16cRX7CS3nUfxLEHmx17DwJ8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XdyAimn4yZK53r5zj71nXEz8P16cRX7CS3nUfxLEHmx17DwJ8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-pcbear8888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V1ggoN5armJydJBUNXAx8xoHqtdoR5JRpKhdH6kXd7RDSoCPf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V1ggoN5armJydJBUNXAx8xoHqtdoR5JRpKhdH6kXd7RDSoCPf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469882 - },{ - "name": "bts-p2ppay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST733dmrHTvSWeaSWQi2mMZhaQSubKU1yKmBRNkaUC75y4wvj1AY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST733dmrHTvSWeaSWQi2mMZhaQSubKU1yKmBRNkaUC75y4wvj1AY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60205 - },{ - "name": "bts-youkaicountry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jfaynzvTbTR5Vd9H73SxozD7NJBxB3tqkYPh1ZmX9xCBvtKc9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jfaynzvTbTR5Vd9H73SxozD7NJBxB3tqkYPh1ZmX9xCBvtKc9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-bearishtrader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wgVpQ1JFC5quNGnjPgQTfvNopLDEfniQesK3jaxAqHtUQkxPb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wgVpQ1JFC5quNGnjPgQTfvNopLDEfniQesK3jaxAqHtUQkxPb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-depositme", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JugGwSCguFKUVr8REGjHZYjTBSyFFWFDqQHeYNdYqJ4a5ksY4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JugGwSCguFKUVr8REGjHZYjTBSyFFWFDqQHeYNdYqJ4a5ksY4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bartram", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U4hsQ7Fn2LkdXkPs7Js2s9AK7dCFJB1dS6Pk1tckPKRPaa33q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U4hsQ7Fn2LkdXkPs7Js2s9AK7dCFJB1dS6Pk1tckPKRPaa33q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-metoo387", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51evpRj1CoYwSZdSZBwv2iSuo2hKxp6zjfysniLuysVKZmEYhD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51evpRj1CoYwSZdSZBwv2iSuo2hKxp6zjfysniLuysVKZmEYhD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14944 - },{ - "name": "bts-banzai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST694JGhJb8MtmizjrRxsqN8Umz4TW5QiVep4ifoQ19Q2F5Hs4sU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST694JGhJb8MtmizjrRxsqN8Umz4TW5QiVep4ifoQ19Q2F5Hs4sU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30099 - },{ - "name": "bts-btsxzzh2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QrjX9RAMjumhVcsaoEugp91cFo34fSiGh5BuTWBdZLujVgvaT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QrjX9RAMjumhVcsaoEugp91cFo34fSiGh5BuTWBdZLujVgvaT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 804 - },{ - "name": "bts-btsxcn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84qd6Px6vpXESzezUpTokVgqAq7BSjZkx7ijT18MLUFJx1fwoe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84qd6Px6vpXESzezUpTokVgqAq7BSjZkx7ijT18MLUFJx1fwoe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12704947 - },{ - "name": "bts-amatob", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eReQk8gJdSoW5Q2xxYcAmVjxyRYcKsNdEUiPrVy5HVRpsREU5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eReQk8gJdSoW5Q2xxYcAmVjxyRYcKsNdEUiPrVy5HVRpsREU5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-danielrivera", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67x9KSas3CMH98MZmbsuhmNkX1zdqPJ9pxLY7BF4TVcQbQ7zah", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67x9KSas3CMH98MZmbsuhmNkX1zdqPJ9pxLY7BF4TVcQbQ7zah", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1729 - },{ - "name": "bts-catipro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vMYY8JXAEG95Gi73MJ3W1in6mKqmYUu2HNEPkBpB76CQaoxzP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vMYY8JXAEG95Gi73MJ3W1in6mKqmYUu2HNEPkBpB76CQaoxzP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 525448 - },{ - "name": "bts-kobayashi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fazf2Siu3HWTovmuetotr5ufa49rvbEd1wXfAVxfvMQodF9h8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fazf2Siu3HWTovmuetotr5ufa49rvbEd1wXfAVxfvMQodF9h8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54268 - },{ - "name": "bts-walkmancoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YvbNDX42pgN8nfgPcX7oRW6JUxFGH5E6j9Fyvw4gUELgpFedd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YvbNDX42pgN8nfgPcX7oRW6JUxFGH5E6j9Fyvw4gUELgpFedd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 82775 - },{ - "name": "bts-babrogaz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z3kQSFMF2afeLJDvpqGkVvgUa8UtLwP1Ubcgi2CSCEBHzdRSz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z3kQSFMF2afeLJDvpqGkVvgUa8UtLwP1Ubcgi2CSCEBHzdRSz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12046 - },{ - "name": "bts-dragongroup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GZyJ7zqbe4w4P46fgKMLeDhHjkuqo3Cw7q9qzyf6BZDSv9j4P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GZyJ7zqbe4w4P46fgKMLeDhHjkuqo3Cw7q9qzyf6BZDSv9j4P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9593277 - },{ - "name": "bts-aggster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qx51EZ5B8UnWsRuYwfE4Dns1zrHKfvtaWsS88PnD4qgi8CYAu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qx51EZ5B8UnWsRuYwfE4Dns1zrHKfvtaWsS88PnD4qgi8CYAu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-aryama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64YbDZf6HWLVUBMeqZWgPREL61usLxuvSV4vFossgXwkQQLYUx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64YbDZf6HWLVUBMeqZWgPREL61usLxuvSV4vFossgXwkQQLYUx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1286326 - },{ - "name": "bts-suanbing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MnoSfy5YUNVDfNVf8XdXwjEGrVWWxkou27W4zkEpFcXRp5job", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MnoSfy5YUNVDfNVf8XdXwjEGrVWWxkou27W4zkEpFcXRp5job", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 233 - },{ - "name": "bts-idealist", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fFazQMeAF5fPdTfbzGMKwJ8b2Yo7Cj2y9NR6mULfdaMrh3TRp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fFazQMeAF5fPdTfbzGMKwJ8b2Yo7Cj2y9NR6mULfdaMrh3TRp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 96605 - },{ - "name": "bts-dlbholding", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5web4Qa78HygLhp3pmQJzysmCo2E6ZgNx9GTcdECLVdrq2Z6Kd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5web4Qa78HygLhp3pmQJzysmCo2E6ZgNx9GTcdECLVdrq2Z6Kd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11405 - },{ - "name": "bts-darkdog", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wGTEeQossVEiwQnPetqLZzkJUXDjKQoBCAHQG4wAEiF2NHzYU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wGTEeQossVEiwQnPetqLZzkJUXDjKQoBCAHQG4wAEiF2NHzYU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1965 - },{ - "name": "bts-spizzerb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Tpqn7Adt3K4GRyh9Y7p6FRiF1F3XWGt1oUSn4dcrsQqwHsb1t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Tpqn7Adt3K4GRyh9Y7p6FRiF1F3XWGt1oUSn4dcrsQqwHsb1t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1567 - },{ - "name": "bts-donkeypong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KGstubH9myxkihPrDLYiHY44kwe4nQygpn2MiabCut68N7wr5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KGstubH9myxkihPrDLYiHY44kwe4nQygpn2MiabCut68N7wr5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57491 - },{ - "name": "bts-msnpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oJZKgjjRfNSDJj7DmMWC5ABHpg7uVL1VyRqPzpJXEPoP2zdkN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oJZKgjjRfNSDJj7DmMWC5ABHpg7uVL1VyRqPzpJXEPoP2zdkN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83 - },{ - "name": "bts-unimercio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Az31Ng1vyojCpY94E71RjoRhinGdpR8hZTzxAYNwj83N1KXCi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Az31Ng1vyojCpY94E71RjoRhinGdpR8hZTzxAYNwj83N1KXCi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 335390 - },{ - "name": "bts-nrenich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST818J9JJDm6nY2V1MAs7JcDSLvUScBHYGgY5aRzt5k3kp5rArqG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST818J9JJDm6nY2V1MAs7JcDSLvUScBHYGgY5aRzt5k3kp5rArqG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3677209 - },{ - "name": "bts-cypherpunk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ivx4gAuW7mfjr799vX1AuMTuxssSbsEL2Je9iV19MCNV7Nn74", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ivx4gAuW7mfjr799vX1AuMTuxssSbsEL2Je9iV19MCNV7Nn74", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93630 - },{ - "name": "bts-billbutler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62cZit4AJKV4Z7gGb9TVvPXfbQM7HBAL7XBWCptrdv8hMnSCVT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62cZit4AJKV4Z7gGb9TVvPXfbQM7HBAL7XBWCptrdv8hMnSCVT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3856972 - },{ - "name": "bts-zhmeng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PwHwVVYPHy617xyyNdhTCv6E1kDnSBgMm7Cc1CrY4zU5QMTnR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PwHwVVYPHy617xyyNdhTCv6E1kDnSBgMm7Cc1CrY4zU5QMTnR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19578 - },{ - "name": "bts-hiimdonald", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ADThbgJV71KePn1m1C5vmPyurRdJZAnvvfffXfDsDGDhqkhrz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ADThbgJV71KePn1m1C5vmPyurRdJZAnvvfffXfDsDGDhqkhrz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19624 - },{ - "name": "bts-eightbits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53BefNU82EPEP87reqghzr3mwyf12qjtbDJmM5PVyM5tHysJcp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53BefNU82EPEP87reqghzr3mwyf12qjtbDJmM5PVyM5tHysJcp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 96942 - },{ - "name": "bts-geology", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d3jcdiEBSFYwT4JrbKBa2xccuvzHFNJNXQDdoSf5iRSyUczsj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d3jcdiEBSFYwT4JrbKBa2xccuvzHFNJNXQDdoSf5iRSyUczsj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-btsxaccount2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yroJX25mndP8H4w8F7Yec5NsGVKV8Tt868mU5StmKsMkpYvgm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yroJX25mndP8H4w8F7Yec5NsGVKV8Tt868mU5StmKsMkpYvgm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 253 - },{ - "name": "bts-square8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CrV7odhpeHHm4DCJxCiJBis7WJ28nGaagtCGX7ezXL2pi1wq8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CrV7odhpeHHm4DCJxCiJBis7WJ28nGaagtCGX7ezXL2pi1wq8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 470368 - },{ - "name": "bts-morpheus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ehK5yBKJj4JNxaFkHLDzfzxft937oiowgXWGYwSdbS7jCfTyV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ehK5yBKJj4JNxaFkHLDzfzxft937oiowgXWGYwSdbS7jCfTyV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-pillow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Toy2eDMVgh1JBpQYNHFUfTUtWQqXLdkRE7UwCEat6bYVXaokW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Toy2eDMVgh1JBpQYNHFUfTUtWQqXLdkRE7UwCEat6bYVXaokW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-walterjay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T2J4ydFykwMMoVkeTY8cFbLgYVyjwqPLEWyc5816sgwevi9Fd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T2J4ydFykwMMoVkeTY8cFbLgYVyjwqPLEWyc5816sgwevi9Fd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-slim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59oNAVTaDR3Tr5U3BrkVifMwn9KDQs9P9tA4sHZzJFkbS2yUA4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59oNAVTaDR3Tr5U3BrkVifMwn9KDQs9P9tA4sHZzJFkbS2yUA4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15269750 - },{ - "name": "bts-hiv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dK5pMVs4QVdtPv3dJBwqBoL2cGBFfGeGjqufENuyZYKeGHadw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dK5pMVs4QVdtPv3dJBwqBoL2cGBFfGeGjqufENuyZYKeGHadw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4722583 - },{ - "name": "bts-z1.slim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DJaPaK4f6FFPW8wf2LD58DQMLBCLCgGeqLfXzXeiMjsrCEzKa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DJaPaK4f6FFPW8wf2LD58DQMLBCLCgGeqLfXzXeiMjsrCEzKa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 920538 - },{ - "name": "bts-kinky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QgsC8aFhZkH6t2bLmqVHXxuNmPexw55xQVkBSaNyzUoi8aTWN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QgsC8aFhZkH6t2bLmqVHXxuNmPexw55xQVkBSaNyzUoi8aTWN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-sat-ring", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LdmdEiumUqq6kfxzvUGbt2NBS3e5pX8ksfpPavnzS46NLtjUe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LdmdEiumUqq6kfxzvUGbt2NBS3e5pX8ksfpPavnzS46NLtjUe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48453 - },{ - "name": "bts-jme", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nRNPy4GKjQ9AA4mzRC5ugwsBXkyNBazxCYZnLfkMh5vzNGfUs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nRNPy4GKjQ9AA4mzRC5ugwsBXkyNBazxCYZnLfkMh5vzNGfUs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1016038 - },{ - "name": "bts-pinoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B5GgQxaC5GUgfarJHPtwUk9FAppQEeAWUgESkjwgqfw6wJ8wm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B5GgQxaC5GUgfarJHPtwUk9FAppQEeAWUgESkjwgqfw6wJ8wm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 319244 - },{ - "name": "bts-kisa0145", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rW6GxtPhPrHjouHkD4njmDqp8uMS2pYuz8omb4F9a2eFeBmdz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rW6GxtPhPrHjouHkD4njmDqp8uMS2pYuz8omb4F9a2eFeBmdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 890 - },{ - "name": "bts-jaran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oN1SbtxogfBhDHgJ3YAY1NwuWDtuUCWo1aTPXEExoAbc8JcV6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oN1SbtxogfBhDHgJ3YAY1NwuWDtuUCWo1aTPXEExoAbc8JcV6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-privet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CaNs5NiaNakNYGWpJGgdPZtmFu9AXYKAQkvoWF3TLakHM6yY8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CaNs5NiaNakNYGWpJGgdPZtmFu9AXYKAQkvoWF3TLakHM6yY8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 609371 - },{ - "name": "bts-neo1344", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST527YS5yqgBd7xmqsiuN4nsCA981k5SQg3Pww8SSSgXV8tyVBVQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST527YS5yqgBd7xmqsiuN4nsCA981k5SQg3Pww8SSSgXV8tyVBVQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-the-ae", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ANQhbYZT6QT8xkuhLLrwyDmafjNKsYaDWDbqUEmxEPJzT5V25", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ANQhbYZT6QT8xkuhLLrwyDmafjNKsYaDWDbqUEmxEPJzT5V25", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1311 - },{ - "name": "bts-owlman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tMrBWCxzRYhAEAfME9pvfHLNefuZqNjECgMVbCLVvENckR9Bm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tMrBWCxzRYhAEAfME9pvfHLNefuZqNjECgMVbCLVvENckR9Bm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4798133 - },{ - "name": "bts-jinlifeng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PfRuraf1BtXpEmS1fXVCe9MtvvbTfDwcKa62phqng3ewWsXRK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PfRuraf1BtXpEmS1fXVCe9MtvvbTfDwcKa62phqng3ewWsXRK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12300 - },{ - "name": "bts-jiro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HtGR34oFimiJDaJGjPsS3rQpmt3z4SaWQHHMHxtGFavAsKNS2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HtGR34oFimiJDaJGjPsS3rQpmt3z4SaWQHHMHxtGFavAsKNS2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376286 - },{ - "name": "bts-bytes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qeDL9Kq7XcvcJZD7UPiq1sVaNekZVhub3h5zDEaxXnZiwU2Rx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qeDL9Kq7XcvcJZD7UPiq1sVaNekZVhub3h5zDEaxXnZiwU2Rx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 287457 - },{ - "name": "bts-dmitry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wAtW4p7GPS7kW7251C6yTQKAeHT312wuzX3gVnLVhEzhdCSDg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wAtW4p7GPS7kW7251C6yTQKAeHT312wuzX3gVnLVhEzhdCSDg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1982939 - },{ - "name": "bts-blockfinder", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bJguhuXYfMYuaPjGErkCJszovQ8ANKwdGTzjBQF7AdTzrzKsZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bJguhuXYfMYuaPjGErkCJszovQ8ANKwdGTzjBQF7AdTzrzKsZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5483 - },{ - "name": "bts-tinker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eXa7fHdPgBbyV3Q34sg65zd3PVCRH5SnUYTKGFaTX69ddxsTc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eXa7fHdPgBbyV3Q34sg65zd3PVCRH5SnUYTKGFaTX69ddxsTc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-bitcoin42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fJZoVVYvPD4vtoThMgx3QgEGu7EZfFgdRKpoFYGGTh7z53C2f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fJZoVVYvPD4vtoThMgx3QgEGu7EZfFgdRKpoFYGGTh7z53C2f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76952 - },{ - "name": "bts-mrsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zkqqoZ8zuZMppWfewFF5ZSU4VAK8S9xsDYchmfmpVMch3BMSk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zkqqoZ8zuZMppWfewFF5ZSU4VAK8S9xsDYchmfmpVMch3BMSk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 174 - },{ - "name": "bts-eeeflying", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zx1NgWFHqD6Vosu1rGGzKDhK2wL76BBR8qeU74mQhTAEJ6a1t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zx1NgWFHqD6Vosu1rGGzKDhK2wL76BBR8qeU74mQhTAEJ6a1t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40720 - },{ - "name": "bts-bitsharesxthing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yURyi6Bdf9qsmttX4nviPJMuFN9iJb5eNcj8pFA5zjfTaxLhv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yURyi6Bdf9qsmttX4nviPJMuFN9iJb5eNcj8pFA5zjfTaxLhv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 476 - },{ - "name": "bts-aboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST882Z7rwPmRZievKGn2d41k5GpWUFczCGqQnipJ8cVDs4SuaNgz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST882Z7rwPmRZievKGn2d41k5GpWUFczCGqQnipJ8cVDs4SuaNgz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91581719 - },{ - "name": "bts-don-johnny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KV1qPKbpfVN4MJbcQPD9rHLppTT4m2p9CVoTiK7xMbaS6yDxg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KV1qPKbpfVN4MJbcQPD9rHLppTT4m2p9CVoTiK7xMbaS6yDxg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47288 - },{ - "name": "bts-bitwiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ksg5HvuTAjRr8eTd27sQgDGj5USpNNDJDwDMAgNmtsRiNu9Tq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ksg5HvuTAjRr8eTd27sQgDGj5USpNNDJDwDMAgNmtsRiNu9Tq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60630 - },{ - "name": "bts-liguobing2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AQFvjKTBEHoDcRTQdx5HLHAZVs75jGeQ1L4eu5efMosdDmRry", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AQFvjKTBEHoDcRTQdx5HLHAZVs75jGeQ1L4eu5efMosdDmRry", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-ericj2190", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KeDg17CXpTSP1SAXnLfEK1L8HhyaZ7h4bbnpnsw2SMbDd1BFX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KeDg17CXpTSP1SAXnLfEK1L8HhyaZ7h4bbnpnsw2SMbDd1BFX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131974 - },{ - "name": "bts-btxlaomo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KBEfSe7MFqw6RtRfHDJgwc8v2c296GmUfncrh2jepvvHyQr5D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KBEfSe7MFqw6RtRfHDJgwc8v2c296GmUfncrh2jepvvHyQr5D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 336 - },{ - "name": "bts-medal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hCjTddReShmYtQ1CHh6oDzBRf9f4gKtMVMQtX88jjh3vFBUXi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hCjTddReShmYtQ1CHh6oDzBRf9f4gKtMVMQtX88jjh3vFBUXi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1417 - },{ - "name": "bts-cyberclones", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62jWaX3kEYRAFEjiUYX1fznWdSrsTpxvxLU8zc5kBAeiTcfHk5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62jWaX3kEYRAFEjiUYX1fznWdSrsTpxvxLU8zc5kBAeiTcfHk5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22585 - },{ - "name": "bts-daface", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AvXqgf1WGNoh9yFquRueV12ewzuvisSYf84GBrgmPsvHUSTsq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AvXqgf1WGNoh9yFquRueV12ewzuvisSYf84GBrgmPsvHUSTsq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3367 - },{ - "name": "bts-limous", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5whc5MZ9her3dtPADi4U3gndyS4MyQRvh7gCZ147j2s1BqytRW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5whc5MZ9her3dtPADi4U3gndyS4MyQRvh7gCZ147j2s1BqytRW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 566634 - },{ - "name": "bts-bukertom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EdUMZ3pTGxrGrrrP8pioa9GYU9wDVjeR4HkJ7SmdTsTH63rQG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EdUMZ3pTGxrGrrrP8pioa9GYU9wDVjeR4HkJ7SmdTsTH63rQG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 121887 - },{ - "name": "bts-yws", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e3BcCE62eXPbS9EVrhAWXZBGLmUSFo12iLcg7toZWD4EBVPRm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e3BcCE62eXPbS9EVrhAWXZBGLmUSFo12iLcg7toZWD4EBVPRm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-shaojunyuan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ELN1uVypoRSxyXC3Chy6J3MW6nk7S4TuwvZRTHiZ6yNNYwqqY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ELN1uVypoRSxyXC3Chy6J3MW6nk7S4TuwvZRTHiZ6yNNYwqqY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 506 - },{ - "name": "bts-cartwright", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CZRSbtwdbs4JA2P7kcaGkzmPuwfgGGNJPSpVMVKFHggUWY6xD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CZRSbtwdbs4JA2P7kcaGkzmPuwfgGGNJPSpVMVKFHggUWY6xD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881424 - },{ - "name": "bts-frka", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TefwYWnwiVSC8koFQqZM2MkP3eNs3zoP5Xn3AfXxypMnNZBSq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TefwYWnwiVSC8koFQqZM2MkP3eNs3zoP5Xn3AfXxypMnNZBSq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 118 - },{ - "name": "bts-theangelwaveproject", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wNuGe29R2BgNEdzvQ11Y8p5ncSubAyiRNwCpMG7JDnR6aZ5B4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wNuGe29R2BgNEdzvQ11Y8p5ncSubAyiRNwCpMG7JDnR6aZ5B4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1032809 - },{ - "name": "bts-okokok", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56S75yazTo1vvG1XqpgpeY4qxzuzEhYVcziFMdaiGfYZHbK3rj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56S75yazTo1vvG1XqpgpeY4qxzuzEhYVcziFMdaiGfYZHbK3rj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1118099 - },{ - "name": "bts-hellobts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gDR1WHHvyRjV99FfW52W4oFQxPymigWHQxpym7TLCrFEAonLf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gDR1WHHvyRjV99FfW52W4oFQxPymigWHQxpym7TLCrFEAonLf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5195 - },{ - "name": "bts-xgslym", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gAaifjtf3X23ycH12eUzJHmyV3w9VY9pXoQTsdodZyZhSFo5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gAaifjtf3X23ycH12eUzJHmyV3w9VY9pXoQTsdodZyZhSFo5L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6510172 - },{ - "name": "bts-ykdeng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F6e1PYxTsh1fCDC4U6ZmxSvtK2Qhh66XLLcFmHvKm326eKgmw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F6e1PYxTsh1fCDC4U6ZmxSvtK2Qhh66XLLcFmHvKm326eKgmw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 883754 - },{ - "name": "bts-mash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HrBA4rKAe3kzd4b8WocYQUJdNYeEhCD2wngbTaBEHk4mopwgT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HrBA4rKAe3kzd4b8WocYQUJdNYeEhCD2wngbTaBEHk4mopwgT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 268 - },{ - "name": "bts-black-arrow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83swnwmuEGzonK89v73VtWqgXVm3abMgSDat6p7nq28YNAb7UU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83swnwmuEGzonK89v73VtWqgXVm3abMgSDat6p7nq28YNAb7UU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1180969 - },{ - "name": "bts-originalmadman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NCDVarqXumj1m2Yjw1n7LUt3HnrdMJmk34nrh2QWJLZnTrtNq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NCDVarqXumj1m2Yjw1n7LUt3HnrdMJmk34nrh2QWJLZnTrtNq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2312296 - },{ - "name": "bts-raph123131", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jN6peKHhHJa9qjpLvWuzMy3kRSr54CegPzerpVFQnxUCpWRy5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jN6peKHhHJa9qjpLvWuzMy3kRSr54CegPzerpVFQnxUCpWRy5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15330 - },{ - "name": "bts-mindphlux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7piPcCkNano63VbgQq7RJh3xx5n61yWEC7PLrJ2vNVxGvZ2KYS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7piPcCkNano63VbgQq7RJh3xx5n61yWEC7PLrJ2vNVxGvZ2KYS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 596 - },{ - "name": "bts-babsi84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MgQduVudwvBquELP5rxpFm56eRgkG5PBL6EXZxfPDFBCJDLRU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MgQduVudwvBquELP5rxpFm56eRgkG5PBL6EXZxfPDFBCJDLRU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-mamontov", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T5Yewv7KKmd2mTNDkzt3iLv6u6cjKQRDb3fWuU5HryzncJLUc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T5Yewv7KKmd2mTNDkzt3iLv6u6cjKQRDb3fWuU5HryzncJLUc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 350699 - },{ - "name": "bts-mindstyle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MSFee73korX49GokCzgVcnyVNumWtuneMiDcQAZFUbXYFHkuQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MSFee73korX49GokCzgVcnyVNumWtuneMiDcQAZFUbXYFHkuQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-vlxtrade1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ceQhveYgFGCAdHpDNEVj67rCjHcVSDmjDAUJejF1baJnhU6mx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ceQhveYgFGCAdHpDNEVj67rCjHcVSDmjDAUJejF1baJnhU6mx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108793 - },{ - "name": "bts-cryptosile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iUZHKDWi8SzU7wL8Kzo7J8J7EZQeMgPp9sRTynXQhvXksgiV8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iUZHKDWi8SzU7wL8Kzo7J8J7EZQeMgPp9sRTynXQhvXksgiV8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 206396 - },{ - "name": "bts-yura", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yiNE1BiLXMVJJgkGZQKctCLVxeoiZcF2zcsQG5nqvDfAZC7nb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yiNE1BiLXMVJJgkGZQKctCLVxeoiZcF2zcsQG5nqvDfAZC7nb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1892 - },{ - "name": "bts-weicheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mRpfTWq5p6WLgNAzTFdjAJt4XmsdkvLcLayiPAjfrHy4RXQS6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mRpfTWq5p6WLgNAzTFdjAJt4XmsdkvLcLayiPAjfrHy4RXQS6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1188746 - },{ - "name": "bts-nightengale", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LKkVSioi5jdefEPD7VKUgwsJYBV5qW2HW1kuBDTkc47V724wB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LKkVSioi5jdefEPD7VKUgwsJYBV5qW2HW1kuBDTkc47V724wB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bigcat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZDrg7S9Ehd9y6RKjswahvDfHzrFPj9JzvjK9g4VadAaybXXdz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZDrg7S9Ehd9y6RKjswahvDfHzrFPj9JzvjK9g4VadAaybXXdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58632 - },{ - "name": "bts-sidjo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TEVkivZcdqsV843QHgLSQfhdafoxrJUQmXDoKfXPJKQ7oT7Es", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TEVkivZcdqsV843QHgLSQfhdafoxrJUQmXDoKfXPJKQ7oT7Es", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4891727 - },{ - "name": "bts-cookie-jar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YCFhXDLYNbsQxYboAfPuACyXbXebRMfcYAd8kHk6e21nNKpkT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YCFhXDLYNbsQxYboAfPuACyXbXebRMfcYAd8kHk6e21nNKpkT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-deejay111", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uQFa6BYAfAd9EDRxkrseUjKg2gdh7VYSRGjUGpFdDuKwmG4mv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uQFa6BYAfAd9EDRxkrseUjKg2gdh7VYSRGjUGpFdDuKwmG4mv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3217615 - },{ - "name": "bts-fpx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FG5MsvkS2ussqWv15Rdpm52Td87M5CB3gvPgzdG7vL3G5gNra", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FG5MsvkS2ussqWv15Rdpm52Td87M5CB3gvPgzdG7vL3G5gNra", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 778 - },{ - "name": "bts-xieguojun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tmVZSX2wywb3FqQZMtxuBZ8SSNbSKkmMTG4ZV4rZxM2sCzP1n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tmVZSX2wywb3FqQZMtxuBZ8SSNbSKkmMTG4ZV4rZxM2sCzP1n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63329 - },{ - "name": "bts-markopaasila", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LipfneVufvGX6q6pkiuRFXWm3Nr8XPjaa4MGgS8LV2DghqStc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LipfneVufvGX6q6pkiuRFXWm3Nr8XPjaa4MGgS8LV2DghqStc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31120 - },{ - "name": "bts-nilux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77BcC3psbBAp8WZsAAgbztzY4zNrhvBTBdxuiBU7stkucza21p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77BcC3psbBAp8WZsAAgbztzY4zNrhvBTBdxuiBU7stkucza21p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-btsxjiaocheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k65cARfAzyWBd57mS2Z5F4EWcCs4hzBK3TYbuKU24pQfjvSrk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k65cARfAzyWBd57mS2Z5F4EWcCs4hzBK3TYbuKU24pQfjvSrk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 781 - },{ - "name": "bts-zhulong333", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AmAii4VUjNELr3qLi7kDJEr9eYPJ8mvCq7Q25HMSW9NkXsCT9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AmAii4VUjNELr3qLi7kDJEr9eYPJ8mvCq7Q25HMSW9NkXsCT9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dongchengdiao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uygGDcxmwhyvWQuZj7XWgCG1d6jzUVkhrb4QxNvfxN3dGVaSx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uygGDcxmwhyvWQuZj7XWgCG1d6jzUVkhrb4QxNvfxN3dGVaSx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 221504 - },{ - "name": "bts-monachai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TwN68dwEudQ22FSTNUGw5BnCjjrkhy8kc2UM7A4D1f1Z5P9ap", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TwN68dwEudQ22FSTNUGw5BnCjjrkhy8kc2UM7A4D1f1Z5P9ap", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83817 - },{ - "name": "bts-fangdun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zyLVRfXEhxo1rDj8UktR2BPwJhYmKjASLXC7K9Z6r5FysuJAG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zyLVRfXEhxo1rDj8UktR2BPwJhYmKjASLXC7K9Z6r5FysuJAG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-masterofmyself", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hihdQFgnM1RBdWJfagLwD8hoynAa8yupHzZtCGk3jpTbFPjHP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hihdQFgnM1RBdWJfagLwD8hoynAa8yupHzZtCGk3jpTbFPjHP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dara", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59FWnosQhnbcmxxzJD7HsrsDk73GVcqQeqja7NGpnesmf7ixPm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59FWnosQhnbcmxxzJD7HsrsDk73GVcqQeqja7NGpnesmf7ixPm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 325495 - },{ - "name": "bts-turkeyleg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tjifAicnorf1U3kUhBwuPPDuhwS8Hfw2vfDv1FCi76i6W4KYf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tjifAicnorf1U3kUhBwuPPDuhwS8Hfw2vfDv1FCi76i6W4KYf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-methodise", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b5Z8Qj3uUuZhVGJknCGgr7Cir4CRKnEPTifFaUfRQqwAGs3eH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b5Z8Qj3uUuZhVGJknCGgr7Cir4CRKnEPTifFaUfRQqwAGs3eH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3601446 - },{ - "name": "bts-filip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vSLN96kENaFsemwMNxzsDZAqwACiweDTWZGZpQJ48wcUdP5Tp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vSLN96kENaFsemwMNxzsDZAqwACiweDTWZGZpQJ48wcUdP5Tp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188143 - },{ - "name": "bts-sparechange", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S4uLapGv3BE39VwHA3zr1NiCcY7P15bhzfgEqqP1GK6k7tCkg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S4uLapGv3BE39VwHA3zr1NiCcY7P15bhzfgEqqP1GK6k7tCkg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jponzeep", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sod9U93kQWULghxHFkVEV7qgHNyZVciUpPBx5ALKVuKoMJQEY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sod9U93kQWULghxHFkVEV7qgHNyZVciUpPBx5ALKVuKoMJQEY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 362488 - },{ - "name": "bts-sly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xi7QHHkKQ2Zxtftu13yDLBfXU8ZPAb43eYko6wJkhrYqGpznU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xi7QHHkKQ2Zxtftu13yDLBfXU8ZPAb43eYko6wJkhrYqGpznU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 817789 - },{ - "name": "bts-lafona", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6h9NfBpBo6URjK52s4ZK242RoFmsjkT7jB4BneSRebfgLBqbHc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6h9NfBpBo6URjK52s4ZK242RoFmsjkT7jB4BneSRebfgLBqbHc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2598827 - },{ - "name": "bts-tajnost", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xa4XvMPYhvmbskt4vPkobWTzLtWsPEgaDueTJVadA78bE4Kdm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xa4XvMPYhvmbskt4vPkobWTzLtWsPEgaDueTJVadA78bE4Kdm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37133 - },{ - "name": "bts-mids106", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ttc88bzE8TNhKwzwkGQprJboZdZML5kFdFBc8BgcQZxGP2UGC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ttc88bzE8TNhKwzwkGQprJboZdZML5kFdFBc8BgcQZxGP2UGC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9363 - },{ - "name": "bts-starik69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jdRXb8t8stds7vawh8p16jfVuC5dzcZA283mQp9EtTFZki7vF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jdRXb8t8stds7vawh8p16jfVuC5dzcZA283mQp9EtTFZki7vF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5881 - },{ - "name": "bts-delegate.ihashfury", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53CQ3wX2jt9bmJTY2cFpcKoouauB16QdqSfe6fVCCezSGRkhvT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53CQ3wX2jt9bmJTY2cFpcKoouauB16QdqSfe6fVCCezSGRkhvT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4991 - },{ - "name": "bts-paragon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GQjEgEYNEa1HFZH7BzRAujc4NXCBk7chkCDgd1EXuzNvDz3ZG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GQjEgEYNEa1HFZH7BzRAujc4NXCBk7chkCDgd1EXuzNvDz3ZG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-anyone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DP5oSHUQxjh6mEXY5Z5KrsL1bxprYe7mD4L6sKfY3gEtPG9Ld", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DP5oSHUQxjh6mEXY5Z5KrsL1bxprYe7mD4L6sKfY3gEtPG9Ld", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3760 - },{ - "name": "bts-jason-adkins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qhUq9iQntpTCx3tzRpuavsPDttH1Qik99jYojhX8NkXSnGow1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qhUq9iQntpTCx3tzRpuavsPDttH1Qik99jYojhX8NkXSnGow1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 879525 - },{ - "name": "bts-potatosalad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ybmjrXRo1Zb4Z3SDxzJsTX8ZRd3JDFuY3UMXyiXjnBTfFn5iU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ybmjrXRo1Zb4Z3SDxzJsTX8ZRd3JDFuY3UMXyiXjnBTfFn5iU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86938 - },{ - "name": "bts-atheist", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85NX4dy6RLNUFnEJDPnZPYymPgBZqozXea2TGNed3e9cSozp7H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85NX4dy6RLNUFnEJDPnZPYymPgBZqozXea2TGNed3e9cSozp7H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 408211 - },{ - "name": "bts-wjl1154", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wV6tfU3342BEBiFVFhsEMNq4uy4XYWvEivrqt1Wxx2p8s4PzM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wV6tfU3342BEBiFVFhsEMNq4uy4XYWvEivrqt1Wxx2p8s4PzM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 362231 - },{ - "name": "bts-jonza", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jTd9bs4sDJRb7vdNMTVh6oVQiLePnReJ72LKBVzLSpKbJQQgx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jTd9bs4sDJRb7vdNMTVh6oVQiLePnReJ72LKBVzLSpKbJQQgx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5339467 - },{ - "name": "bts-gitm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KMyUmaTvR5hnGmDv1GbQzbMnXFVpKqgW3HisPT33rYMX2mUKi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KMyUmaTvR5hnGmDv1GbQzbMnXFVpKqgW3HisPT33rYMX2mUKi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 85267 - },{ - "name": "bts-ermarcus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54PMB6ZPgNMoEUHDVUuW9LguU5iedbuz8FMRRfe5tg5gCUEW8o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54PMB6ZPgNMoEUHDVUuW9LguU5iedbuz8FMRRfe5tg5gCUEW8o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 659020 - },{ - "name": "bts-gigamike", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55eewJJnKyb6EoXFc8dxUnF8NyjRkvfuxVEmrCASe23SGpbVfe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55eewJJnKyb6EoXFc8dxUnF8NyjRkvfuxVEmrCASe23SGpbVfe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1619528 - },{ - "name": "bts-axiao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pSX5NteLxgEqCFYEaEabgto7Dgro3ZK3UBS2AwQ95vphVFo8k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pSX5NteLxgEqCFYEaEabgto7Dgro3ZK3UBS2AwQ95vphVFo8k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1912 - },{ - "name": "bts-skj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VNwi9j2TeJUtJoqzNFQt5RkD8GXLrm3wxsrAzT34vgUcqq9eK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VNwi9j2TeJUtJoqzNFQt5RkD8GXLrm3wxsrAzT34vgUcqq9eK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-sharethatshare2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EpBe5YNmkLGqEGEHv1vKS86GTCQdXDi4tMdsU21T4JoA362e6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EpBe5YNmkLGqEGEHv1vKS86GTCQdXDi4tMdsU21T4JoA362e6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93651 - },{ - "name": "bts-yikpesysm5jzq7xlu6zo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EnxNvEaHuB5XTBtaC34ybmegPsUv28tm5opNwc1NMR13D4Sfq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EnxNvEaHuB5XTBtaC34ybmegPsUv28tm5opNwc1NMR13D4Sfq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6602333 - },{ - "name": "bts-helikopterben", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FHz6aruWYMGnUN9FARZiYMoiPWNheUoPS5LVXLtYVxR3wNpQ3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FHz6aruWYMGnUN9FARZiYMoiPWNheUoPS5LVXLtYVxR3wNpQ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-rare5spd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aj6MunXh8FBF61AMRZrFhMSR3DZdRMBmFNn14zymucE6UiMF9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aj6MunXh8FBF61AMRZrFhMSR3DZdRMBmFNn14zymucE6UiMF9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5726 - },{ - "name": "bts-methodx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86GSZmaM9jRoAGK6K6GzrD494WBFFQpK5R3Yrs4mZJeng5mLXy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86GSZmaM9jRoAGK6K6GzrD494WBFFQpK5R3Yrs4mZJeng5mLXy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 300 - },{ - "name": "bts-pbzmomma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89eR66AxQE7CyT8gFpDJn3qBunc8SHW43o4k18E8WxMCk23dno", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89eR66AxQE7CyT8gFpDJn3qBunc8SHW43o4k18E8WxMCk23dno", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797432 - },{ - "name": "bts-yepezleo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82ogaLoxoQBKEy5Bz5rsDjvizVhcPeKEFt7PYWQdrCDAUrqDni", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82ogaLoxoQBKEy5Bz5rsDjvizVhcPeKEFt7PYWQdrCDAUrqDni", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 200952 - },{ - "name": "bts-pyneer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HzArq5qRc5P3K5ZfL4McTczDMrPJeGQzUjYATbdv1k5Z1XH8D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HzArq5qRc5P3K5ZfL4McTczDMrPJeGQzUjYATbdv1k5Z1XH8D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4563808 - },{ - "name": "bts-wangzheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hnbUNbEXVMnDEXfJd2x5nsfCw54TppZe8Rns1fWp8XdSvgZBG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hnbUNbEXVMnDEXfJd2x5nsfCw54TppZe8Rns1fWp8XdSvgZBG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-by24seven", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Hgk4AxQvxqSSVE51t28RW3eGMVR8TXhHh6m3bvChYd3hVMtcF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Hgk4AxQvxqSSVE51t28RW3eGMVR8TXhHh6m3bvChYd3hVMtcF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32080 - },{ - "name": "bts-cryptillionaire", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vBLqTEqdsa9stN4hJwKfarY6gLBXqdsHi4qsson7on2Pu2rCK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vBLqTEqdsa9stN4hJwKfarY6gLBXqdsHi4qsson7on2Pu2rCK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7922675 - },{ - "name": "bts-trev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72oyhdCnJmHnCQFh34PFvFTZ8Kguka6kH4doS4hxt2UU4nxFZr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72oyhdCnJmHnCQFh34PFvFTZ8Kguka6kH4doS4hxt2UU4nxFZr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4925438 - },{ - "name": "bts-asha-man", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B5DUbXNFdDb2L3NkDvQkzxAsTefJh5Wvk8haErjsUMyc5uKXd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B5DUbXNFdDb2L3NkDvQkzxAsTefJh5Wvk8haErjsUMyc5uKXd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1660098 - },{ - "name": "bts-pakis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hHo3j7G9EnPGJapCv1DRs5MaQ7q9ZfLAo9f8HNtFcYQbNYr4Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hHo3j7G9EnPGJapCv1DRs5MaQ7q9ZfLAo9f8HNtFcYQbNYr4Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 798 - },{ - "name": "bts-initialaccount", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w1veCGfXVLEJA37q3jNthJ1KMzGDDS7339tzLkRUYqTnNQsNa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w1veCGfXVLEJA37q3jNthJ1KMzGDDS7339tzLkRUYqTnNQsNa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7524 - },{ - "name": "bts-rogue0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DoHgWRgH75ArYmcrKQi9nNn1ChsL7hWcaWNiobZdkYVQf1Md9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DoHgWRgH75ArYmcrKQi9nNn1ChsL7hWcaWNiobZdkYVQf1Md9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2553467 - },{ - "name": "bts-ylwxq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72EXUf3eEtLeyRoM7qU2jdneaF3tjFThCSNrkst2dotTU3Hk9Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72EXUf3eEtLeyRoM7qU2jdneaF3tjFThCSNrkst2dotTU3Hk9Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 141272 - },{ - "name": "bts-acc12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Knh1bvcPNG3vp8MroknR6tnFtQw87UmTANZxd5vPrkvgxBet1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Knh1bvcPNG3vp8MroknR6tnFtQw87UmTANZxd5vPrkvgxBet1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-gianni", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sk3hD4dtWhpxGzfnXHT4ftNbAZUC7CF4vVs5ecX4xmNskC973", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sk3hD4dtWhpxGzfnXHT4ftNbAZUC7CF4vVs5ecX4xmNskC973", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-chuckone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89uBDFDDKyvHuFYN8Mt2rjqeokwmVfjwra659Pn13yHuTBUUfJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89uBDFDDKyvHuFYN8Mt2rjqeokwmVfjwra659Pn13yHuTBUUfJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1542183 - },{ - "name": "bts-zdongcan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51LTAfvyBncbM6Je5nK9Yxsska6pPowgfRUd4rsVYWUDuifSem", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51LTAfvyBncbM6Je5nK9Yxsska6pPowgfRUd4rsVYWUDuifSem", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62774 - },{ - "name": "bts-dennywang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GZnExMRy52zj1wV4cdwW4oMNxY96645h8FEVyLVzaLah1zPct", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GZnExMRy52zj1wV4cdwW4oMNxY96645h8FEVyLVzaLah1zPct", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1899 - },{ - "name": "bts-pingu2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Vuh4K8VmF1LXyQTeu8cF7Jfh2P32MD4MMBmSMCSPWnfyto4fB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Vuh4K8VmF1LXyQTeu8cF7Jfh2P32MD4MMBmSMCSPWnfyto4fB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bittrexdeposit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kEi9TWLvXfWCT5qsP1r4VwittLqPngwPRwgHNbL3mRKRHSzyu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kEi9TWLvXfWCT5qsP1r4VwittLqPngwPRwgHNbL3mRKRHSzyu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3783 - },{ - "name": "bts-thelostboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fTwBh5Sd5UesH1wTGivHE5se656BKSP9jzahDWFTWZcTo7PEd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fTwBh5Sd5UesH1wTGivHE5se656BKSP9jzahDWFTWZcTo7PEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3209 - },{ - "name": "bts-sujunyi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uq4FEy4gKvu2F66rcWyFTD5rb9kdWekKGku6c7TKYg19C56tn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uq4FEy4gKvu2F66rcWyFTD5rb9kdWekKGku6c7TKYg19C56tn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 331 - },{ - "name": "bts-jann", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AXT1vxb6Dc18sNoTA8fzf38vBtremKHUD8fyecZDuyTkqBoWY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AXT1vxb6Dc18sNoTA8fzf38vBtremKHUD8fyecZDuyTkqBoWY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2038049 - },{ - "name": "bts-lyfeng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8faohG58YUM21VAEeqtA4h6DscH1GpysUvk3vEG375DnjAsnE6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8faohG58YUM21VAEeqtA4h6DscH1GpysUvk3vEG375DnjAsnE6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5450709 - },{ - "name": "bts-ali888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76s1bnNrZnpPk4yW42ABjR53eRH9gVzh468mwY1gxMKmdWBkbf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76s1bnNrZnpPk4yW42ABjR53eRH9gVzh468mwY1gxMKmdWBkbf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-sujunyi-home", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VTx8GUM6nUTkY4Zr1H39HXmfpgayRxsKykkBtn556GdQfY11n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VTx8GUM6nUTkY4Zr1H39HXmfpgayRxsKykkBtn556GdQfY11n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 232153 - },{ - "name": "bts-ifinta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83JT7LsJYBgyn17M7SAPkcuySufyCgiCk5HJyqmcJuoCEBeH84", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83JT7LsJYBgyn17M7SAPkcuySufyCgiCk5HJyqmcJuoCEBeH84", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 186 - },{ - "name": "bts-cryptopresident", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GRu2YQzpzBPnpHjenNmvHvjp6em7y4qrFf9yyKPBVneYPL5ZL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GRu2YQzpzBPnpHjenNmvHvjp6em7y4qrFf9yyKPBVneYPL5ZL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86303 - },{ - "name": "bts-cmason", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nKiPe7q91q7PTwxr5TrWFZ4PfhVLooCXDfNH5n8BTtssBHqu6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nKiPe7q91q7PTwxr5TrWFZ4PfhVLooCXDfNH5n8BTtssBHqu6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23948 - },{ - "name": "bts-antchina", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62b4KhGsyeSEVY3BZ2rMyBJBtfWFcSY3cANnkMNof8fCWHZVsm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62b4KhGsyeSEVY3BZ2rMyBJBtfWFcSY3cANnkMNof8fCWHZVsm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8518289 - },{ - "name": "bts-mut", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Qhm2vNKedcJ31M7QxaussJv7v8s8T1ePSesNzVG1Eqmk9CSpb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Qhm2vNKedcJ31M7QxaussJv7v8s8T1ePSesNzVG1Eqmk9CSpb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bitcube", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qbi1TEAFGjsCTNQoecnGkcMr3RV6ya5yc8GbXyXCV1adQtFsn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qbi1TEAFGjsCTNQoecnGkcMr3RV6ya5yc8GbXyXCV1adQtFsn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344040 - },{ - "name": "bts-foobar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oLtPW9ihh8xJRDC4Fek73DDX1wCGqnh5nhmfp5NNzGDpzwFHy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oLtPW9ihh8xJRDC4Fek73DDX1wCGqnh5nhmfp5NNzGDpzwFHy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13952 - },{ - "name": "bts-maka", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o7EyRpp6YBCXovhnpebg5siw3n59DGu1R7mu3C3zBRcYiyCQs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o7EyRpp6YBCXovhnpebg5siw3n59DGu1R7mu3C3zBRcYiyCQs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 482 - },{ - "name": "bts-z-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b3nH654GB1KLLyZ8gU7kxCFcsdQChAqAMq6cu3cxRcmhe1T3Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b3nH654GB1KLLyZ8gU7kxCFcsdQChAqAMq6cu3cxRcmhe1T3Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 132280 - },{ - "name": "bts-ebay-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PvHiC2vHKiANX7jxXmKaaXTQygCvswVmjn94WeFsDn9atRptb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PvHiC2vHKiANX7jxXmKaaXTQygCvswVmjn94WeFsDn9atRptb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-thanostz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D6v7Wi1LSCPYE5qPZ11Xrc3XKNAuUuYkCqo41wByGEThmnoJZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D6v7Wi1LSCPYE5qPZ11Xrc3XKNAuUuYkCqo41wByGEThmnoJZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 664766 - },{ - "name": "bts-valis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68LtG2yYDxpFwEM23xxXtY7VtLpJoWyxTE97x23hwMDYh9b6eN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68LtG2yYDxpFwEM23xxXtY7VtLpJoWyxTE97x23hwMDYh9b6eN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1078572 - },{ - "name": "bts-bristolbay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fbjKMo2LgvrtevSg215YkBejciVfRWEodkevPLsYAJdRYk2Sa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fbjKMo2LgvrtevSg215YkBejciVfRWEodkevPLsYAJdRYk2Sa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20037277 - },{ - "name": "bts-defcon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST573b9MXkYpQaEc36ruWURuJNQs9jh6VimNP2rb68G8ZwbehkdK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST573b9MXkYpQaEc36ruWURuJNQs9jh6VimNP2rb68G8ZwbehkdK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66032 - },{ - "name": "bts-gringox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hNx7Cn2cGFHaHTyQTGLjJDhSPsnqQPG5TuAmRoNns7X6WTrDX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hNx7Cn2cGFHaHTyQTGLjJDhSPsnqQPG5TuAmRoNns7X6WTrDX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 374 - },{ - "name": "bts-future-invest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tknjc9N3bGd1f2tupQAGDJKvFE7gxf23PmBNshL8EXkeru5Nd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tknjc9N3bGd1f2tupQAGDJKvFE7gxf23PmBNshL8EXkeru5Nd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-freeenergy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Co2ZmRpUQH9xAAhxnjuu3V84ov5N54wBtYPbnHxtx4jWnCWh1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Co2ZmRpUQH9xAAhxnjuu3V84ov5N54wBtYPbnHxtx4jWnCWh1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59379 - },{ - "name": "bts-jare", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51HjP34PYd3eujcoZXMRnF2ZJy6cqPy8r8TqoVNZbaskk9coRY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51HjP34PYd3eujcoZXMRnF2ZJy6cqPy8r8TqoVNZbaskk9coRY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-bitsharesblocks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B1taKXkDojuC1qECjvC7g186d8AdeGtz8wnqWAsoRGC6RY8Rp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B1taKXkDojuC1qECjvC7g186d8AdeGtz8wnqWAsoRGC6RY8Rp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6150319 - },{ - "name": "bts-hpyhacking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fphvFQZn6naZzF6G7pMH291X7KtB4VKDNm552XoXu2QuTp5F5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fphvFQZn6naZzF6G7pMH291X7KtB4VKDNm552XoXu2QuTp5F5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5642 - },{ - "name": "bts-uob", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f2uvj7ZYfadq8T1hVvN32F2qmm7xMMuYRZTcvbS7NBrEEisWF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f2uvj7ZYfadq8T1hVvN32F2qmm7xMMuYRZTcvbS7NBrEEisWF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-spook", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8REy5H6LngdQ9JwimgkdKiW1i8jADDKebCovXEnJPG8cpqPuPE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8REy5H6LngdQ9JwimgkdKiW1i8jADDKebCovXEnJPG8cpqPuPE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8642737 - },{ - "name": "bts-xhunter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GUxJv52ev8qkTc3S4tBtDSbmXEtPpk54zgd84NkyY8BmvQ3pM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GUxJv52ev8qkTc3S4tBtDSbmXEtPpk54zgd84NkyY8BmvQ3pM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19527009 - },{ - "name": "bts-zebulon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gj7NAbFvYy8yGtxH4iDQBzJjvaFV61vVcWwMLgxpReUB9LiLT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gj7NAbFvYy8yGtxH4iDQBzJjvaFV61vVcWwMLgxpReUB9LiLT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 670330 - },{ - "name": "bts-jakey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PJ9xR1wAWnSb5ZEKXTBB5HoC443fFHtFMQzhckSjDoum7BjMy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PJ9xR1wAWnSb5ZEKXTBB5HoC443fFHtFMQzhckSjDoum7BjMy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 377494 - },{ - "name": "bts-taughtus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WHQ22E6uzpFCUyhMZ3psRpyuj2nYs5jH5BmP28pLtE76xoKpC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WHQ22E6uzpFCUyhMZ3psRpyuj2nYs5jH5BmP28pLtE76xoKpC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29353 - },{ - "name": "bts-gringoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j9JntK13FX4KYnoj3YX7gzKudxmA7s7r8C8nsXKgX1FSwnEKc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j9JntK13FX4KYnoj3YX7gzKudxmA7s7r8C8nsXKgX1FSwnEKc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1716 - },{ - "name": "bts-honeybadger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UY9zShvPPgnK4325rNQA293xVVzUNwoWS3U7F2f35GoWiYmWs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UY9zShvPPgnK4325rNQA293xVVzUNwoWS3U7F2f35GoWiYmWs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-slideshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KPTcFo2mjueNrp7mrxv6Gg4uj5uTNieWRUHdZmUa8y25PyLba", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KPTcFo2mjueNrp7mrxv6Gg4uj5uTNieWRUHdZmUa8y25PyLba", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 248 - },{ - "name": "bts-technoraty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MobKXfPNoauCdDRkYGVGhFpSZr2NvEUoA3PUW6L34wYCu9qG7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MobKXfPNoauCdDRkYGVGhFpSZr2NvEUoA3PUW6L34wYCu9qG7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-thepiratebays", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TKMLg14VnJNkYczuedGickuzjLg1vRq1JqTiuftZ4NnPH1Xja", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TKMLg14VnJNkYczuedGickuzjLg1vRq1JqTiuftZ4NnPH1Xja", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-airpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L39CgYwp4N9uKvLL6CMgizpdqzPTMymjLCa4uiYirj77wKgf4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L39CgYwp4N9uKvLL6CMgizpdqzPTMymjLCa4uiYirj77wKgf4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-sec0ndlife", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fx9vWCqyhnSCjzV1ZadbRZiXbMpDYz5F1gpJoeKA2nPmS3H1y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fx9vWCqyhnSCjzV1ZadbRZiXbMpDYz5F1gpJoeKA2nPmS3H1y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-rest0fall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L7xGwkMubmYA2MiySyZ9p5ZUhajZRVJJuTQmBqry5VkVuc88x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L7xGwkMubmYA2MiySyZ9p5ZUhajZRVJJuTQmBqry5VkVuc88x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-pkamorta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zgRo4ptBt4gjb8ZbRqr6eeQkfGyMPrrFzamdma7L7ZCPgFitC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zgRo4ptBt4gjb8ZbRqr6eeQkfGyMPrrFzamdma7L7ZCPgFitC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4014 - },{ - "name": "bts-hr0550", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AzocNLAVdxUc9c52NUJyexDKJUGWkGpYu9EjZV9UevakpAHu2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AzocNLAVdxUc9c52NUJyexDKJUGWkGpYu9EjZV9UevakpAHu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 329861 - },{ - "name": "bts-huahong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uezKmg7cVYiqVqPQa6Dz3335Bz2jrftkFWR9HoSWhR1QNb9Hb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uezKmg7cVYiqVqPQa6Dz3335Bz2jrftkFWR9HoSWhR1QNb9Hb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 175015 - },{ - "name": "bts-y13187316106", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EU8ukg7N4kJgPJDw4zrYE7amuVp2nZrwFKY5VejjP9hn34JV1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EU8ukg7N4kJgPJDw4zrYE7amuVp2nZrwFKY5VejjP9hn34JV1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57390 - },{ - "name": "bts-jla", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72V53nGEvQ4gSSyVvi3SZe1YNG6ZD2BCi4g6dRQFEEipWwxdPf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72V53nGEvQ4gSSyVvi3SZe1YNG6ZD2BCi4g6dRQFEEipWwxdPf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 138660 - },{ - "name": "bts-btsx-king", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7at4a5eAGsdFGhgP2WZMuVqp4Rc65tqWAwQGRZ2ge6U2PJJX8e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7at4a5eAGsdFGhgP2WZMuVqp4Rc65tqWAwQGRZ2ge6U2PJJX8e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56432 - },{ - "name": "bts-kardalozcolins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LmdbVwEeRLQo2kdGyRTCkAPyXMYeeHjCAtFq3Gt8rKUEhB65r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LmdbVwEeRLQo2kdGyRTCkAPyXMYeeHjCAtFq3Gt8rKUEhB65r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6339 - },{ - "name": "bts-bsnadmin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q69YfE9jTovFrNDhpCGKR7GzsTBA9Pj7eL3m6hZuYJiPqcbjV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q69YfE9jTovFrNDhpCGKR7GzsTBA9Pj7eL3m6hZuYJiPqcbjV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2637 - },{ - "name": "bts-adamselene", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST842UQn8JMtN4FCXqioPLVemos6RovEMSVv58vEpFSCuTFNMS6d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST842UQn8JMtN4FCXqioPLVemos6RovEMSVv58vEpFSCuTFNMS6d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3758 - },{ - "name": "bts-thirteenzeroes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sJDaA8xTVqa3vtkCf8aPuT9K2qnxPFNJjrLiUN3xjoS3U5q2S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sJDaA8xTVqa3vtkCf8aPuT9K2qnxPFNJjrLiUN3xjoS3U5q2S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10200 - },{ - "name": "bts-kathi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zpCVHLs2dRFrMGoCiBP5p72fkTAXswfmbZbmsidnm7XTCnNoo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zpCVHLs2dRFrMGoCiBP5p72fkTAXswfmbZbmsidnm7XTCnNoo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-merlin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T2hWXQjimQCCQQLiXoBh7sHisL7h6ES2vzqWSTWAeXt6LfWRx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T2hWXQjimQCCQQLiXoBh7sHisL7h6ES2vzqWSTWAeXt6LfWRx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2381 - },{ - "name": "bts-tomascool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QPtsh1L1Doh6kSnuHQRvamEKterdxNNiKnPbQewUwmydnwzSf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QPtsh1L1Doh6kSnuHQRvamEKterdxNNiKnPbQewUwmydnwzSf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 559633 - },{ - "name": "bts-zhabo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YDoZCdhMwgLA26kWyoRwLbsTcReofdkBN5RaMnAwNQhGVcVSb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YDoZCdhMwgLA26kWyoRwLbsTcReofdkBN5RaMnAwNQhGVcVSb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9802 - },{ - "name": "bts-liguichuan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61742zcQ1obTVfQnfK3AbyWgqUjWGaLzY1skkgJoN7aKmbgtFi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61742zcQ1obTVfQnfK3AbyWgqUjWGaLzY1skkgJoN7aKmbgtFi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2304359 - },{ - "name": "bts-bitshareshome", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BZfUnizwQ6Y6MkNwhEr9LkR5g8AfXApupWgjR9ay7Afzbo1xJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BZfUnizwQ6Y6MkNwhEr9LkR5g8AfXApupWgjR9ay7Afzbo1xJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4741 - },{ - "name": "bts-bitshares.tinker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8igSKGNzWpj9qDHyxZ7rZ9gK8N3ENmPZmF9T6nxT3Jwprw31dp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8igSKGNzWpj9qDHyxZ7rZ9gK8N3ENmPZmF9T6nxT3Jwprw31dp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-blog.tinker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hS6ER9H8A9psyeBLnGEf5bbfE8rp4X8br3sr6y6eQpT2Cpt3p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hS6ER9H8A9psyeBLnGEf5bbfE8rp4X8br3sr6y6eQpT2Cpt3p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-jmlbtfd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u1ozPvPWcwSE6dRrDPfWLNzFvERvkFf1PP9CfreNDZePAndDA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u1ozPvPWcwSE6dRrDPfWLNzFvERvkFf1PP9CfreNDZePAndDA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 139302 - },{ - "name": "bts-deilig", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xm1jaZNvJPEHN1JwVhfPrx7QwXAxsm3SHEEViy7xoJBx8ff7u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xm1jaZNvJPEHN1JwVhfPrx7QwXAxsm3SHEEViy7xoJBx8ff7u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3653529 - },{ - "name": "bts-angelwaveproject", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4viZThhhwA1J1GyTybFs9couzz2JaGa5SC7H2eTjNBvxthYGZ5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4viZThhhwA1J1GyTybFs9couzz2JaGa5SC7H2eTjNBvxthYGZ5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-superbaked", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71Xqdvg1UZEB8Has3YH1iR19bokN9phajKQnD3advLK3JoJ3ea", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71Xqdvg1UZEB8Has3YH1iR19bokN9phajKQnD3advLK3JoJ3ea", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42847 - },{ - "name": "bts-cnc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mFtXnLaN5FNossqXXgaRdBcKPKbYGnwv698AP96gbDzz7dYwP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mFtXnLaN5FNossqXXgaRdBcKPKbYGnwv698AP96gbDzz7dYwP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-opendesign", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53N1W3tDiFyjdF27WGKSJzikC14zCpdkXw9yLWxcrRiVGJSWMj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53N1W3tDiFyjdF27WGKSJzikC14zCpdkXw9yLWxcrRiVGJSWMj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 380691 - },{ - "name": "bts-freedom35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64wc9hGiU4bpcrkoAQBdL6hBg7qChyA95YkZ8YtXNZKu97ac6G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64wc9hGiU4bpcrkoAQBdL6hBg7qChyA95YkZ8YtXNZKu97ac6G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14909238 - },{ - "name": "bts-d4vegee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71BHELvqvNB82igpUyyhieZKGNHkBBeBumbL4sCNYnjpRckUZu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71BHELvqvNB82igpUyyhieZKGNHkBBeBumbL4sCNYnjpRckUZu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-winkdex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HWa3iNbVqqFvpgKAz3EusviPbWQTAJBfp83F1jPsJyVxLGWN1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HWa3iNbVqqFvpgKAz3EusviPbWQTAJBfp83F1jPsJyVxLGWN1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-inarizushi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62MzSvZKhz1Je3d9eNG6QCvjtF25fkLxVy3b446yCSixfTY3zu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62MzSvZKhz1Je3d9eNG6QCvjtF25fkLxVy3b446yCSixfTY3zu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2829753 - },{ - "name": "bts-mbclub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o2NKBWyoueZFgaiD3mmaY8yq5b84dvgChPUQNBGpziYzDTLTq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o2NKBWyoueZFgaiD3mmaY8yq5b84dvgChPUQNBGpziYzDTLTq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 152179 - },{ - "name": "bts-withdrawal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RsumSwVX5ygr1fzFTxKmjMACL2DLSrRJFz4wxKgbFGccecta8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RsumSwVX5ygr1fzFTxKmjMACL2DLSrRJFz4wxKgbFGccecta8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3320 - },{ - "name": "bts-akado", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52Z6td1vmaFkRUWhMkGE3C6JJH5LuDLTY6TgAj88bx76jebrtM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52Z6td1vmaFkRUWhMkGE3C6JJH5LuDLTY6TgAj88bx76jebrtM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 758 - },{ - "name": "bts-apple-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g26tJqzR8bthP8bLRkrPsoJxRm3SqmQHgJKGUi9S7ECNu2Sha", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g26tJqzR8bthP8bLRkrPsoJxRm3SqmQHgJKGUi9S7ECNu2Sha", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 842 - },{ - "name": "bts-appleplay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uvTJG3p5a5T5BeLaGME2A8BNmKSM9BcTXVgrjjk79Ldvtszft", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uvTJG3p5a5T5BeLaGME2A8BNmKSM9BcTXVgrjjk79Ldvtszft", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-applegame", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kxesY4UJRrZNLmAbEjvxKvGJWBUFs1MvWqmAuTeJGX3dExAP2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kxesY4UJRrZNLmAbEjvxKvGJWBUFs1MvWqmAuTeJGX3dExAP2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-kryo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UnAwEUybDZmWiR6Z5qTqzBz36ZJz5io8tfAgUFUWkvRS3HgA5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UnAwEUybDZmWiR6Z5qTqzBz36ZJz5io8tfAgUFUWkvRS3HgA5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-gnarlyoldman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nka5uzGzMBeHsNrQ1acqp6NFfjhWnrBGVkH8xKoDMJMNZcd8E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nka5uzGzMBeHsNrQ1acqp6NFfjhWnrBGVkH8xKoDMJMNZcd8E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1473 - },{ - "name": "bts-gloubi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R4nqyCEuLTvgLkBo4fzbxeNjNKiX9hQxP3Zw7jhPicAa52eGV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R4nqyCEuLTvgLkBo4fzbxeNjNKiX9hQxP3Zw7jhPicAa52eGV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1871 - },{ - "name": "bts-ubris", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AH5shm2ARXvvaqHCyDjarxYgwGDyqaYEsBYzCGXGrbfKkx5n6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AH5shm2ARXvvaqHCyDjarxYgwGDyqaYEsBYzCGXGrbfKkx5n6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22577202 - },{ - "name": "bts-tneedsplus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B41rvJmRNLeFT2YJakjvA41Yt1Yrm3NCjgyGMXFLpoTRvn318", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B41rvJmRNLeFT2YJakjvA41Yt1Yrm3NCjgyGMXFLpoTRvn318", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 819539 - },{ - "name": "bts-the-glider", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54U5FGDA3SMNy2bBEjoGQ8K3A9j9BT8UYaS5LUmkixDqYaW7RF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54U5FGDA3SMNy2bBEjoGQ8K3A9j9BT8UYaS5LUmkixDqYaW7RF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-miso69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vHiXwLpCwJ7dJ1U6CZkSRZbPZXTLTm6bNkgNTJq8uZdGTGqmQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vHiXwLpCwJ7dJ1U6CZkSRZbPZXTLTm6bNkgNTJq8uZdGTGqmQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20033770 - },{ - "name": "bts-grallistrix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EL59jM7pt2NTbxnMyEzyqp5SC3GcCVBkFJ9HacRkffZNh49K8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EL59jM7pt2NTbxnMyEzyqp5SC3GcCVBkFJ9HacRkffZNh49K8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188124 - },{ - "name": "bts-keroro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kQSKXgDUnhHwhAVKAPqynANhM6gGkicrbCgffjW9MVpHnYhVN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kQSKXgDUnhHwhAVKAPqynANhM6gGkicrbCgffjW9MVpHnYhVN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 100150 - },{ - "name": "bts-sxboycl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VugZDFzoqNCbxosMKPAXC8vH4fmQgPGM9EotQ4BbkaCNFdqmj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VugZDFzoqNCbxosMKPAXC8vH4fmQgPGM9EotQ4BbkaCNFdqmj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-lgc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SEGAYZYfyFfTyDMaUHLLHoBq4iK5zAPNXYD7XEzSAmcXQ44MV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SEGAYZYfyFfTyDMaUHLLHoBq4iK5zAPNXYD7XEzSAmcXQ44MV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44928 - },{ - "name": "bts-hsb1998", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-bts1998", - 1 - ] - ], - "key_auths": [[ - "TEST5QhtixAxECY7FhhbHLosjBQrcxwJhgyXN13W6DybtjRfgUuokv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-bts1998", - 1 - ] - ], - "key_auths": [[ - "TEST5QhtixAxECY7FhhbHLosjBQrcxwJhgyXN13W6DybtjRfgUuokv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4497 - },{ - "name": "bts-mklondon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NzCTEjZ9VwE6Xv4aCB6gJpMrtSzW72ghKKCbWTTxsRZhVZw8K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NzCTEjZ9VwE6Xv4aCB6gJpMrtSzW72ghKKCbWTTxsRZhVZw8K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-slowlysea", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m43tu9BojrnUabyhksQ6ov1p3YXtEggZL4hB7KW53n2cgeAmN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m43tu9BojrnUabyhksQ6ov1p3YXtEggZL4hB7KW53n2cgeAmN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 173568 - },{ - "name": "bts-danielmarden", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bScMRNSggDnuq9eCqxwaKsz3XKAfGmr9CwjGQJTFGvZyVRQNR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bScMRNSggDnuq9eCqxwaKsz3XKAfGmr9CwjGQJTFGvZyVRQNR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 206959 - },{ - "name": "bts-comix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q2XDwdE5Lmkpe4rYmHRVSsumc7Ts4LDXSHqjFWjMqmibH46DH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q2XDwdE5Lmkpe4rYmHRVSsumc7Ts4LDXSHqjFWjMqmibH46DH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1888 - },{ - "name": "bts-jml29btfd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79w73faCDcr61WH3SSuQWcUDzScPXn5Upiyh7DxRPp6xkMzJBp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79w73faCDcr61WH3SSuQWcUDzScPXn5Upiyh7DxRPp6xkMzJBp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2816478 - },{ - "name": "bts-ned", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GetYTYyKkXTrsoZwQc2ef1yLd18mp3nyF9j3sSDyMDaBC6A99", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GetYTYyKkXTrsoZwQc2ef1yLd18mp3nyF9j3sSDyMDaBC6A99", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81313 - },{ - "name": "bts-bhuz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YFfmNBLpcrhe7hf39NLQfgBjGvtYBtAAc4nDvZKWxVQjF4CeL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YFfmNBLpcrhe7hf39NLQfgBjGvtYBtAAc4nDvZKWxVQjF4CeL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1764586 - },{ - "name": "bts-jinlin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qwPcm4boWHu5tyPmYc2VR13wLvZ4YkGkj5QC5RiupcjtMvJ4M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qwPcm4boWHu5tyPmYc2VR13wLvZ4YkGkj5QC5RiupcjtMvJ4M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 152592 - },{ - "name": "bts-guaixingkeslacer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QRR5QjZC66T6QryfopCn1QEV1MJcFBwbwQ6xtZaTNYXzMvzQ6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QRR5QjZC66T6QryfopCn1QEV1MJcFBwbwQ6xtZaTNYXzMvzQ6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-hellobtsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YDm7MyV9FZDbNbytj3xAXHMbcwKMzb5wcKHUTcknwowfuuQ5S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YDm7MyV9FZDbNbytj3xAXHMbcwKMzb5wcKHUTcknwowfuuQ5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 274388 - },{ - "name": "bts-edilliam", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Wn1XMpGEpEk6WxtoXTxRwsKDqD2XoFHLGnG9N3hgBp1nqdWPZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Wn1XMpGEpEk6WxtoXTxRwsKDqD2XoFHLGnG9N3hgBp1nqdWPZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-benjojo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BdNxNy3csEvL18LCqP14pGwXtYaTT5H6YyJNwWLEi3E7vaty4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BdNxNy3csEvL18LCqP14pGwXtYaTT5H6YyJNwWLEi3E7vaty4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 627948 - },{ - "name": "bts-marginal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RBgbLg5gCzk5Smg6FHDT8Ft5JEsDBzbBBR6qAx9xtaxiTjE3D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RBgbLg5gCzk5Smg6FHDT8Ft5JEsDBzbBBR6qAx9xtaxiTjE3D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 450904 - },{ - "name": "bts-disperse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ncKuEpfXGkX77L51xcpuQFDSnx4HQBHeSgoyEc234Sd3YVXt1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ncKuEpfXGkX77L51xcpuQFDSnx4HQBHeSgoyEc234Sd3YVXt1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-topsbill", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SNvp7ipZKtXJ83KxGn2bhJnbHCtWwLTXF49sQrGbfR1UzM172", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SNvp7ipZKtXJ83KxGn2bhJnbHCtWwLTXF49sQrGbfR1UzM172", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 196799 - },{ - "name": "bts-lpmorin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81MLKGwNB6w4Jt7bg4MtxzgJgvHVexHB7gu7BfbEEJ9j68ZHsb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81MLKGwNB6w4Jt7bg4MtxzgJgvHVexHB7gu7BfbEEJ9j68ZHsb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2297 - },{ - "name": "bts-victor2002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xi8Avt2u4QHEeqhNB6e7jAsnsoYTA23taV9ciHXxgvuejYTYh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xi8Avt2u4QHEeqhNB6e7jAsnsoYTA23taV9ciHXxgvuejYTYh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50989 - },{ - "name": "bts-mcxcwbtsx123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vz7rwUzKNN2U7vb4ShTeQFxqCuTJrNU1yYNSGkqDxu9eWzJQU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vz7rwUzKNN2U7vb4ShTeQFxqCuTJrNU1yYNSGkqDxu9eWzJQU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 220804 - },{ - "name": "bts-petros", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cZXJZT9KnnVyZxQrbZXxRPTpQ2aFkcFmdAV49qMt7C79agt3r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cZXJZT9KnnVyZxQrbZXxRPTpQ2aFkcFmdAV49qMt7C79agt3r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-alfa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wRbsg7J7P6ZNwp5vwe6XVNom64rX6i1Ntf9X98wN9WVqBb88g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wRbsg7J7P6ZNwp5vwe6XVNom64rX6i1Ntf9X98wN9WVqBb88g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-poloniex-deposit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73SxtG7GhKG5BHNFJgGCciFsRXZq44zqLcYCWBTpApTwb8UAmN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73SxtG7GhKG5BHNFJgGCciFsRXZq44zqLcYCWBTpApTwb8UAmN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7902 - },{ - "name": "bts-asimov", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dpaEifXoSUH4RZoGqJ8Mc8oynjWbF4f777Sqpj665CwrE9Rsv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dpaEifXoSUH4RZoGqJ8Mc8oynjWbF4f777Sqpj665CwrE9Rsv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2594 - },{ - "name": "bts-njord", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t7G6apo1bHywUkdYQm2MMEWPzydb3HsTij7TK43JDoNYuf4aN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t7G6apo1bHywUkdYQm2MMEWPzydb3HsTij7TK43JDoNYuf4aN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27799 - },{ - "name": "bts-brasilbiker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XRmb15UbKeYasx3cM456Abh4KCGc3RRG6j5gNYKzv59ha7sys", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XRmb15UbKeYasx3cM456Abh4KCGc3RRG6j5gNYKzv59ha7sys", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376307 - },{ - "name": "bts-greendefender", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qUmM5BUJTunywqXKP3g9txcq2Z3abvBwJKkbbP5MCoPBioSh8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qUmM5BUJTunywqXKP3g9txcq2Z3abvBwJKkbbP5MCoPBioSh8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 571381 - },{ - "name": "bts-poloiexwallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yhhZRU1PELp619E1GpcRW36RJhpf8T271dRdZVnbvJSJfXkka", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yhhZRU1PELp619E1GpcRW36RJhpf8T271dRdZVnbvJSJfXkka", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3198 - },{ - "name": "bts-hox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c9Te6cbG5hk29Q6zcvi3dDTrGBVD7Azx2i8SJXcwnTHkVU8CG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c9Te6cbG5hk29Q6zcvi3dDTrGBVD7Azx2i8SJXcwnTHkVU8CG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7508 - },{ - "name": "bts-kersive", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qT13oJto21Ptzx8CVWLsMHMMBsNEgBhdEYwYa8jn5GHhbQjAN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qT13oJto21Ptzx8CVWLsMHMMBsNEgBhdEYwYa8jn5GHhbQjAN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-whizz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hvaR47iiSDEpj3ETHXoxoE5cXHNVWrDGYYCDxTbgEDT3cBRa4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hvaR47iiSDEpj3ETHXoxoE5cXHNVWrDGYYCDxTbgEDT3cBRa4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4804 - },{ - "name": "bts-jtest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VvRRHAV1eihkjGspWAPMNJAWkCyp5DgcjxhxAXs6BALCAxYFp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VvRRHAV1eihkjGspWAPMNJAWkCyp5DgcjxhxAXs6BALCAxYFp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16914 - },{ - "name": "bts-downloads", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E2XYcLYXgUz3421F2KKduBYHhmWMvtPj8215htSE2CD6q7HaS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E2XYcLYXgUz3421F2KKduBYHhmWMvtPj8215htSE2CD6q7HaS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 739627 - },{ - "name": "bts-pcc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XVXzw7Vzx8B55kx1bhnfwRL5yuxr7TXt88ZMAEijaCWweQLWi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XVXzw7Vzx8B55kx1bhnfwRL5yuxr7TXt88ZMAEijaCWweQLWi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 318066 - },{ - "name": "bts-polmax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h1Ls2mjbjPxEKL8J9iHzMJ79MRk5E5xrc2KW3pAH7nfKXnVA5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h1Ls2mjbjPxEKL8J9iHzMJ79MRk5E5xrc2KW3pAH7nfKXnVA5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108634 - },{ - "name": "bts-profet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TQo3TQ9y1HB9pkCLjNFM2ykdQTeMwZmiASEKGxU3zic6vx7RB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TQo3TQ9y1HB9pkCLjNFM2ykdQTeMwZmiASEKGxU3zic6vx7RB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-btsbob", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zNDW2kScoPF4ZRsADkvkwBwuE3pbQwhHXyNRavsWsFwsEGGhz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zNDW2kScoPF4ZRsADkvkwBwuE3pbQwhHXyNRavsWsFwsEGGhz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 329091 - },{ - "name": "bts-lakerta06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bFeUjUrTEr4F61YYSR126Jzddmv2FhXr7YEFBtpfZ89CRcbuo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bFeUjUrTEr4F61YYSR126Jzddmv2FhXr7YEFBtpfZ89CRcbuo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 922465 - },{ - "name": "bts-qiuzixiao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gvFKVHdmPx4veNa1wmcrQiKxhP1xoz9Fg83s1gk2kg84diuxb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gvFKVHdmPx4veNa1wmcrQiKxhP1xoz9Fg83s1gk2kg84diuxb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-sidhujag", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yU2esemTWkzx7AsrCQzHFfb2dZVMKSFsfu9puHeJzyF4P6JZY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yU2esemTWkzx7AsrCQzHFfb2dZVMKSFsfu9puHeJzyF4P6JZY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-xfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Sntj77kVnW3yudEh5VG5kLvAGtywGSsBqNidUuU4SErwSnSo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Sntj77kVnW3yudEh5VG5kLvAGtywGSsBqNidUuU4SErwSnSo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92248 - },{ - "name": "bts-timmy444", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f38g5mkk9rqaW8oE2NfjJgDhtZhYRoRJEfpP9NorFcL8zA29t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f38g5mkk9rqaW8oE2NfjJgDhtZhYRoRJEfpP9NorFcL8zA29t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2286345 - },{ - "name": "bts-vahan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MjkP52q2VAVEhNth2csQBRcFgUkffGELdMuz7YZkWtT51CbLF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MjkP52q2VAVEhNth2csQBRcFgUkffGELdMuz7YZkWtT51CbLF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-zansuni-gate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST659gdRLkGQ5PqgghiN2tKz2HEm1BCDwT7oPV6X7dWXmrM3YBV9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST659gdRLkGQ5PqgghiN2tKz2HEm1BCDwT7oPV6X7dWXmrM3YBV9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-btsk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kr6XfRU8AdtdP3Ruhfc4s6LxcZ1HmSA1vF1Ehn9MEu991TZb5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kr6XfRU8AdtdP3Ruhfc4s6LxcZ1HmSA1vF1Ehn9MEu991TZb5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 737 - },{ - "name": "bts-wintrop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EqwAM5V3iJpMncv2uHei8eMQoBY8EGxrpi5DmCvKZMY63Jodg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EqwAM5V3iJpMncv2uHei8eMQoBY8EGxrpi5DmCvKZMY63Jodg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-dgiors", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eVju9ZnPtwRQMAPJJaq4UfK72wqrnWJL89NyTfdkuGvSjVmWt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eVju9ZnPtwRQMAPJJaq4UfK72wqrnWJL89NyTfdkuGvSjVmWt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 283696 - },{ - "name": "bts-saber", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TTkdjRibpgc11WmXwE1V3UxQbXEbDwjzNxhK1HKqgdb5A3y66", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TTkdjRibpgc11WmXwE1V3UxQbXEbDwjzNxhK1HKqgdb5A3y66", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1288922 - },{ - "name": "bts-btsx.chongzhi.yunbi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PFNDPJizBKXwK3KpTwxJkWxGiUcPRVBY848VrqFJcZxNWzxu4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PFNDPJizBKXwK3KpTwxJkWxGiUcPRVBY848VrqFJcZxNWzxu4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 68 - },{ - "name": "bts-stewartj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xihSeq5sytH275BKtmpbEfSQJ37t4RdWPkGmQTCohRgN89xkK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xihSeq5sytH275BKtmpbEfSQJ37t4RdWPkGmQTCohRgN89xkK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66 - },{ - "name": "bts-bts-la", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NXewwkJJRj3qVk95dn36TmbMfWEANB3PoaFYqQNSJGSMw4HRF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NXewwkJJRj3qVk95dn36TmbMfWEANB3PoaFYqQNSJGSMw4HRF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 561127 - },{ - "name": "bts-cyrano", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MkMxwBjFWmcDjXRoJ4mW9Hd4LCSPwtv9tKG1qYW5Kgu4AhoZy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P81BWgssYQoxNg8yMKJgGPxWSzAN7WuPLgyHH82KtuvtKc3jB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10917 - },{ - "name": "bts-snicks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h5HELevNExcJzHCjz8rTDUBzbfP7MXAvgmp3Pqh4mVWatyYZM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h5HELevNExcJzHCjz8rTDUBzbfP7MXAvgmp3Pqh4mVWatyYZM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24416 - },{ - "name": "bts-dkhahm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VpcnufzFxMYqo3mDD8teXadm2PsRY5FDf8t7n3ayuhM59vd2h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VpcnufzFxMYqo3mDD8teXadm2PsRY5FDf8t7n3ayuhM59vd2h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13118384 - },{ - "name": "bts-wubeen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71ZgeM7aS8K1Wj71RCoF9hDai7uhEfh46U6RHzmUGRPCJvt5C6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71ZgeM7aS8K1Wj71RCoF9hDai7uhEfh46U6RHzmUGRPCJvt5C6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797708 - },{ - "name": "bts-won", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HbB8qg1EY5oxwRNSpU7noqEbSdBPPTzkWpciU8cBFVZBPAVKa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HbB8qg1EY5oxwRNSpU7noqEbSdBPPTzkWpciU8cBFVZBPAVKa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-beta-delegate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q5gZBYxXcVar4WLSpqYcVfB8yKrg8QenSKULeyasBRAsm9Tvn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69o2Lo4rKbGuAqSmDKvsH5odPnvZpzto82fQuq9jmKCHzs6tpK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 282155 - },{ - "name": "bts-feng0625", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55y7a1EpHFDA4hu3p6n7Hzcii4M6wFXHRuRrZ1xY6erxcLmsXW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55y7a1EpHFDA4hu3p6n7Hzcii4M6wFXHRuRrZ1xY6erxcLmsXW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19770 - },{ - "name": "bts-freead", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m7bzBeBd9v8Gtbmj6tjvh4KC6Q59WAXtLsjxig71ebn83ezeo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m7bzBeBd9v8Gtbmj6tjvh4KC6Q59WAXtLsjxig71ebn83ezeo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3254 - },{ - "name": "bts-tywinlannister", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PLY83wYnmCN75wRmsjnzEjRFoRB9SEkPZRD3LiW5pg9iV2Kcu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PLY83wYnmCN75wRmsjnzEjRFoRB9SEkPZRD3LiW5pg9iV2Kcu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 394041 - },{ - "name": "bts-techadept", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V5jw33Xpcx8MCyq8xLKnFzjdk7ptc6S1YrVNT9CZTCTH2Fbg1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V5jw33Xpcx8MCyq8xLKnFzjdk7ptc6S1YrVNT9CZTCTH2Fbg1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2059 - },{ - "name": "bts-bbcbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F4vDJSPwe7K3aXKm4bD4wFXbxtsDr5UFUawbm7c7FzbyVxmH2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F4vDJSPwe7K3aXKm4bD4wFXbxtsDr5UFUawbm7c7FzbyVxmH2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9875 - },{ - "name": "bts-kurtduncan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WTx27yicRg5YjYfLxVBfEBV1hEyiKYZJJ2YAkmk3dGbjLW1pP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WTx27yicRg5YjYfLxVBfEBV1hEyiKYZJJ2YAkmk3dGbjLW1pP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 217764 - },{ - "name": "bts-baicai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aCSNKm9TAD5UBEPh6MGFV1YUgQrFY5BqbEL6JmZynroS6tp2J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aCSNKm9TAD5UBEPh6MGFV1YUgQrFY5BqbEL6JmZynroS6tp2J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 168 - },{ - "name": "bts-pyc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qR5RmcT5yeA6omgFWrTH38HpWRzN5cDXqPcKNRdyBgNJvVSbf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qR5RmcT5yeA6omgFWrTH38HpWRzN5cDXqPcKNRdyBgNJvVSbf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-btsx-wuzhongyi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t9oZft3zpoiGJo3cidh5PcpV2RnT1mX2QQA6ii7hkwQQofESA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t9oZft3zpoiGJo3cidh5PcpV2RnT1mX2QQA6ii7hkwQQofESA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 580266 - },{ - "name": "bts-c-style", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WKwBZuqWLpHJdcWxHZA3H7QXhuRB78gLs83x6kRJAmwwVGE2T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WKwBZuqWLpHJdcWxHZA3H7QXhuRB78gLs83x6kRJAmwwVGE2T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1391769 - },{ - "name": "bts-pp123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Q5sJzkMUveUju8g8CAZhD4roZENWaU5dDbz2r2habTR59Et4R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Q5sJzkMUveUju8g8CAZhD4roZENWaU5dDbz2r2habTR59Et4R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 70086 - },{ - "name": "bts-pineapple", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73Xmvh6qe89WC7EgofFEXBxYwdHQoxJX9HrmYhSbEhrMwj4CLX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73Xmvh6qe89WC7EgofFEXBxYwdHQoxJX9HrmYhSbEhrMwj4CLX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-btc38-btsx-octo-727222", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uQ2YJaotyQCm1AXXmBqkjWVkAW53nXkzFTqUn21caUb27HszM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uQ2YJaotyQCm1AXXmBqkjWVkAW53nXkzFTqUn21caUb27HszM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 447934 - },{ - "name": "bts-btc38-btsx-octo-7272", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7beAuDXiiSjUwzjYZ1QQvC39WE5WFVoze6fnFGQAy5DPgyuk7m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7beAuDXiiSjUwzjYZ1QQvC39WE5WFVoze6fnFGQAy5DPgyuk7m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 940791 - },{ - "name": "bts-btsbtsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bBU3FMg6A7kiBFV18Kqz98DZN2Qjto6hYxvcJhFocwEYw4mLh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bBU3FMg6A7kiBFV18Kqz98DZN2Qjto6hYxvcJhFocwEYw4mLh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128010 - },{ - "name": "bts-carlhan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dypcxPgN6TG9U1k8d91qqbWoTB9ba1M6NYeUxyscKgE9Wnx49", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dypcxPgN6TG9U1k8d91qqbWoTB9ba1M6NYeUxyscKgE9Wnx49", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69648 - },{ - "name": "bts-wu-song", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zAu1cfC5qi64VTD6C6ao1zqJgXRmofsmNK1ujNcv6tKJC4zwk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zAu1cfC5qi64VTD6C6ao1zqJgXRmofsmNK1ujNcv6tKJC4zwk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-jcalfee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gccdDw1todyLFU7W9yDJbzf8EqXUqqnP4UwaUK6pgZSi4qGdj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gccdDw1todyLFU7W9yDJbzf8EqXUqqnP4UwaUK6pgZSi4qGdj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3923763 - },{ - "name": "bts-aloisdecroon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eVX1Vag8LVPfoFzQbySKYspqnp66SybAZjUpLqBwCCGK1SzAo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eVX1Vag8LVPfoFzQbySKYspqnp66SybAZjUpLqBwCCGK1SzAo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67189 - },{ - "name": "bts-johnerfx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CJh4ifL2NvmFDGL5LxpGmgioKfbFDuan9rVr3d3iPYYUQ1xnh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CJh4ifL2NvmFDGL5LxpGmgioKfbFDuan9rVr3d3iPYYUQ1xnh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20914 - },{ - "name": "bts-tc38-btsx-octo-72722", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55SvvZwtRQw5MZKYSiGPySzbtfUAdKSy5816ZLEqLTe4nNsyWj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55SvvZwtRQw5MZKYSiGPySzbtfUAdKSy5816ZLEqLTe4nNsyWj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 493746 - },{ - "name": "bts-btc38--btsx--octo--72722", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NE4s2VLkP1VyixBFGTbnQvVbkqjQWy69yKDHs797zrDBN2hRd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NE4s2VLkP1VyixBFGTbnQvVbkqjQWy69yKDHs797zrDBN2hRd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182 - },{ - "name": "bts-manyacy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nm7ZTukR6nGB31GQV1o46wR6T9o2V9uKFqUFcFx43L3VjxQht", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nm7ZTukR6nGB31GQV1o46wR6T9o2V9uKFqUFcFx43L3VjxQht", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-haitham", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mPF1mhUgHuX4MowsMyTwY9oBo7ic8yYzrVJi3QPQU6JPNAjrn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mPF1mhUgHuX4MowsMyTwY9oBo7ic8yYzrVJi3QPQU6JPNAjrn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33447 - },{ - "name": "bts-nonotangmash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SPSQ6TeoihsKBBkcxRfkPbUSY4QBUtLtEn2sRKL5NRHyC9pJP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SPSQ6TeoihsKBBkcxRfkPbUSY4QBUtLtEn2sRKL5NRHyC9pJP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1426088 - },{ - "name": "bts-delegate-clayop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YnsFfU7TKZPa9awCtRAYKtoM4qBNqb4YXbF6DYdbz1YJLyzpG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YnsFfU7TKZPa9awCtRAYKtoM4qBNqb4YXbF6DYdbz1YJLyzpG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 245966 - },{ - "name": "bts-slonya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tKpL7kzkVr8SfurBpdKoSrcdD3wbFynMfkKSQ2rXQEKpPZSHF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tKpL7kzkVr8SfurBpdKoSrcdD3wbFynMfkKSQ2rXQEKpPZSHF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-zhang928", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XsGQRPnEgyNixQg9sP77cGavyMD22AnMNi4QJt6qNKnrDKh4U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XsGQRPnEgyNixQg9sP77cGavyMD22AnMNi4QJt6qNKnrDKh4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1780363 - },{ - "name": "bts-alifafa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VupuWLLFijXGV1ATcLV2MpdKSqX58xXVbPhJofpyhUuynRUVT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VupuWLLFijXGV1ATcLV2MpdKSqX58xXVbPhJofpyhUuynRUVT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-yoo-pupu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wNBR2BXZ4Mn7QEqtKJeyR11tbp9du47p9p13zpZngTJFucVzW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wNBR2BXZ4Mn7QEqtKJeyR11tbp9du47p9p13zpZngTJFucVzW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 180289 - },{ - "name": "bts-atu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST847eGTyqSGxxmfy3AqN2BUrsitHDJ6QZWBnR8JoKRVZ5kUo3D8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST847eGTyqSGxxmfy3AqN2BUrsitHDJ6QZWBnR8JoKRVZ5kUo3D8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-yunb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jh8hykpdEFDC68BrTki1SSkuWmZd7XxDM5w7W1qZSWrEkmToy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jh8hykpdEFDC68BrTki1SSkuWmZd7XxDM5w7W1qZSWrEkmToy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11288 - },{ - "name": "bts-panagiotis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wfFR9XVsZusuCLxdpnRLdMSzJqC7xp6iQyHAsrKGQCQC9PbvZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wfFR9XVsZusuCLxdpnRLdMSzJqC7xp6iQyHAsrKGQCQC9PbvZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 139 - },{ - "name": "bts-realrover", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FhnwDaSaEFoYAMPcMwvqtYpRMCj17RRTtSaK9kCTUeqBVtbva", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FhnwDaSaEFoYAMPcMwvqtYpRMCj17RRTtSaK9kCTUeqBVtbva", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-inforra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MnKQWCria8jMBkzamF7xQ6oeNvDkMoLN7JZjFcw4n8Pd5AzZ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MnKQWCria8jMBkzamF7xQ6oeNvDkMoLN7JZjFcw4n8Pd5AzZ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-leonidas13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8McjC24ViaAJP558pVdUAfifZpV3bBYmouNrcPk34o3pfx8YAQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8McjC24ViaAJP558pVdUAfifZpV3bBYmouNrcPk34o3pfx8YAQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5600558 - },{ - "name": "bts-mlewis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n3MZyR2RtPUbcJsCojTTuhVMNp8es1QSthDwksuKPVQar4u98", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n3MZyR2RtPUbcJsCojTTuhVMNp8es1QSthDwksuKPVQar4u98", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 428122 - },{ - "name": "bts-adarin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WbGegiirBKokGaDbXzzr4GafWQMWcuffvWLYhBS7cSMYpx3JZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WbGegiirBKokGaDbXzzr4GafWQMWcuffvWLYhBS7cSMYpx3JZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4798 - },{ - "name": "bts-orbedragones", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8du7BE5WsJmspCX98oxDUYTimPWARX7J3UYX8Uy7G4xNg9c1vs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8du7BE5WsJmspCX98oxDUYTimPWARX7J3UYX8Uy7G4xNg9c1vs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3763 - },{ - "name": "bts-alohacs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74M8HLZhvKov7SJ2Dm5ZvkTspW4UChteHFHQsqxgHXQN13Mfv4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74M8HLZhvKov7SJ2Dm5ZvkTspW4UChteHFHQsqxgHXQN13Mfv4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63425210 - },{ - "name": "bts-ccedk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LpC53qBkaCfARcrXkAZoNrzfwPy5BTzG7mtKYYP94oc6QEoUX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LpC53qBkaCfARcrXkAZoNrzfwPy5BTzG7mtKYYP94oc6QEoUX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35980 - },{ - "name": "bts-bncee3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SPFJtWkocpfkAKCvQJ6Ezy19JA1a4NhtzA5Yg6XMjx99E3iSv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SPFJtWkocpfkAKCvQJ6Ezy19JA1a4NhtzA5Yg6XMjx99E3iSv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-bitcz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cisWFszE82FWo6rsnf2V3YDvTXhsitC3S38FnNNUs5mg1miZw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cisWFszE82FWo6rsnf2V3YDvTXhsitC3S38FnNNUs5mg1miZw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-zoomzero", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K3B6P7oLxBToEhtQw4qSqeuPUtdQNHbbwsQyq2VuskdyZCrqe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K3B6P7oLxBToEhtQw4qSqeuPUtdQNHbbwsQyq2VuskdyZCrqe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 256540 - },{ - "name": "bts-bichitomalvado", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LWRMASCLqMpFpu61KkdSfjjjyMosPSJ4GKx5Qa45Zz5KCXmZ9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LWRMASCLqMpFpu61KkdSfjjjyMosPSJ4GKx5Qa45Zz5KCXmZ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 129052 - },{ - "name": "bts-kaftaesque", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YtW1MNt6Z2EwLXRBshsZJUYZGuPV8GcE2ALVTz69GwuME4DmS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YtW1MNt6Z2EwLXRBshsZJUYZGuPV8GcE2ALVTz69GwuME4DmS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469584 - },{ - "name": "bts-marcy01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mSNyhWGFShUytwLPTrzTb4vyVMgphpRf35AhtjUX2tLGRYurD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mSNyhWGFShUytwLPTrzTb4vyVMgphpRf35AhtjUX2tLGRYurD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-nj01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a7BFq5PRukZbM9EwshjxbfnhJ3e4QVNYFN1VzpYW8bt5Z3qEJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a7BFq5PRukZbM9EwshjxbfnhJ3e4QVNYFN1VzpYW8bt5Z3qEJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 265675 - },{ - "name": "bts-drones", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63nkKX1sTd8u9GGyVmdazNruT6u9XAybthu4JgPm6iwbp9NYV6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63nkKX1sTd8u9GGyVmdazNruT6u9XAybthu4JgPm6iwbp9NYV6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-alphaalpha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f8uyyqJ9QgBrPxXQ5eZNGZt2eWzpebtvzD7jdeAMsZz6dXjAZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f8uyyqJ9QgBrPxXQ5eZNGZt2eWzpebtvzD7jdeAMsZz6dXjAZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 206481 - },{ - "name": "bts-bitshares1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wva3E5VG5J5PQ9qXiRBCrxgCz64XSPRoEBBLiFRga23gvn8Da", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wva3E5VG5J5PQ9qXiRBCrxgCz64XSPRoEBBLiFRga23gvn8Da", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1215 - },{ - "name": "bts-monsterer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RwSWSFcnzWLBfXuvG4XkqSqeuDaqMzoMr6V5LRX2ietxF8APy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-pay.monsterer", - 1 - ] - ], - "key_auths": [[ - "TEST8RwSWSFcnzWLBfXuvG4XkqSqeuDaqMzoMr6V5LRX2ietxF8APy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 316 - },{ - "name": "bts-mattjohnson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oPyf7UUqwfHkpJNXk5JhsuFFTgCucP7bj89NFEzYVeWHY4hds", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oPyf7UUqwfHkpJNXk5JhsuFFTgCucP7bj89NFEzYVeWHY4hds", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-proctologic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C7yQ4CNaBmjvBBYtSPDZ6BCDEi8WosduA6SyXTYyG2ewRXPjx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C7yQ4CNaBmjvBBYtSPDZ6BCDEi8WosduA6SyXTYyG2ewRXPjx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-freebit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kgePAz8D8avnVHWZPSwmGUSSByEnte7XUhxfnbvg4pRdNUx5b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kgePAz8D8avnVHWZPSwmGUSSByEnte7XUhxfnbvg4pRdNUx5b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cybermonetarist", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GhmGhhrDDjfphSauz3YhM9N2FNi9bAAmCt5C6s8FVijknRKUp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GhmGhhrDDjfphSauz3YhM9N2FNi9bAAmCt5C6s8FVijknRKUp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 547 - },{ - "name": "bts-thedarkknight", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QH1PQvFadJX5mTpNEACMxtj9tctM21SJZfBgspi4F37tF6o42", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QH1PQvFadJX5mTpNEACMxtj9tctM21SJZfBgspi4F37tF6o42", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-script", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qzZcCs5VHfF1PHMhdNiEXB4xtYHqWtBuZSAF3AHq7Vni1js1u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qzZcCs5VHfF1PHMhdNiEXB4xtYHqWtBuZSAF3AHq7Vni1js1u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-nickpiantedosi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gwcKa3SL5LriZLVyKL7ZUeFQfQv2oezUUJq35S7b65LTTuGN2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gwcKa3SL5LriZLVyKL7ZUeFQfQv2oezUUJq35S7b65LTTuGN2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-vrenich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST779Cu177XyUmKqLNntPS7pT31TZy1rJrfn4r8jNLH3yyVpEdZ6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST779Cu177XyUmKqLNntPS7pT31TZy1rJrfn4r8jNLH3yyVpEdZ6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3781 - },{ - "name": "bts-cliff", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZExCbRjnqwmQrMnqgcizJsCeaewsfpq8pmpaPr4LAGYqtPBpN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZExCbRjnqwmQrMnqgcizJsCeaewsfpq8pmpaPr4LAGYqtPBpN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1265747 - },{ - "name": "bts-sastroswiss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63zvVbpiFwsTbewCa1ueysb5wS7S6TFxbuQfedW95gqn7FtnpS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63zvVbpiFwsTbewCa1ueysb5wS7S6TFxbuQfedW95gqn7FtnpS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2425 - },{ - "name": "bts-jwf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S6NeiW3VmRuJjtwcu8hyHt8SMcwKqgbECq85z4vib5PYDo1su", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S6NeiW3VmRuJjtwcu8hyHt8SMcwKqgbECq85z4vib5PYDo1su", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 380336 - },{ - "name": "bts-pasha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59No5MpFVz4GtgqeFCBcupKZpKaQi2rxzCktD37fX7LGeNpC8y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59No5MpFVz4GtgqeFCBcupKZpKaQi2rxzCktD37fX7LGeNpC8y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 483623 - },{ - "name": "bts-jackiechen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F5C4Mi2uNMvJF2s4PzvG263hoW2pp9RSrYPu4ps1a6VjnbBew", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F5C4Mi2uNMvJF2s4PzvG263hoW2pp9RSrYPu4ps1a6VjnbBew", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7908297 - },{ - "name": "bts-vato", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pgLe3dvCmcNKXTVN9eVYLYeoWMSw3zhzLsZLLjcd5NNAfuqFK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pgLe3dvCmcNKXTVN9eVYLYeoWMSw3zhzLsZLLjcd5NNAfuqFK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44 - },{ - "name": "bts-agent86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ho2eCVzKmj749gQt7vKoimn1FjMLfv8iewq87aRmLdg3ct6oP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ho2eCVzKmj749gQt7vKoimn1FjMLfv8iewq87aRmLdg3ct6oP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 648 - },{ - "name": "bts-filipinoviking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bfuPnhffy6v4m53LX55AYiT3BarW2Dt9jmrHVimRhds3h5AJZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bfuPnhffy6v4m53LX55AYiT3BarW2Dt9jmrHVimRhds3h5AJZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 491 - },{ - "name": "bts-snufkin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LP7CNB2TWesXF8xm4kDa7fsKfwDKbMW7yr5XFZGjvXKqLuFQv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LP7CNB2TWesXF8xm4kDa7fsKfwDKbMW7yr5XFZGjvXKqLuFQv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 302 - },{ - "name": "bts-enorm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65BJresApdQcE6nmzPn1kfAtDyDhhjHxXHpMKWJWJTuGd2DzHY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65BJresApdQcE6nmzPn1kfAtDyDhhjHxXHpMKWJWJTuGd2DzHY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16961 - },{ - "name": "bts-affiliate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST596wru5Yn78XVnEqnCPvKzbx6Tgn3FpbLiJSbaVXKb9NyxqvJa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST596wru5Yn78XVnEqnCPvKzbx6Tgn3FpbLiJSbaVXKb9NyxqvJa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1447012 - },{ - "name": "bts-mcxcwbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yJ3rB6KX1WEBK246GW2gZf7auNwmn6Fk2wcbXBsUZYEsLKPnZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yJ3rB6KX1WEBK246GW2gZf7auNwmn6Fk2wcbXBsUZYEsLKPnZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40712188 - },{ - "name": "bts-fullcoincom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SMN42Yi2JQNQafvodLKmeta9ZWviNP8h2zUDhB4HMFb1wseya", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SMN42Yi2JQNQafvodLKmeta9ZWviNP8h2zUDhB4HMFb1wseya", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-julian1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WhZ1jAotW5RnXfrn6yCpenZLM86eiEtEd1gKeP26ZDny9oZUb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WhZ1jAotW5RnXfrn6yCpenZLM86eiEtEd1gKeP26ZDny9oZUb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1682720 - },{ - "name": "bts-viking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qhqtQfLnVjDDgGM5H8PR91v6pY1kDVFhGiDjsAXmTnzByi7vp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qhqtQfLnVjDDgGM5H8PR91v6pY1kDVFhGiDjsAXmTnzByi7vp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-sisehu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nr4e7qstb9BvR77zCZgMPSo2CSYAdNnbi6Zq4jbYMSuqGz2fP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nr4e7qstb9BvR77zCZgMPSo2CSYAdNnbi6Zq4jbYMSuqGz2fP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176 - },{ - "name": "bts-theredpill", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gSzaDEXP6mQk9otDaMfneoUZP8Ks8My4Be3FT31qAuH2guXaX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gSzaDEXP6mQk9otDaMfneoUZP8Ks8My4Be3FT31qAuH2guXaX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1481 - },{ - "name": "bts-francesco-simonetti", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WaD9Mi2UbyVKMgMSkZeGaoXyNVgf97kxQWvdUSeHzPwb3J6aE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WaD9Mi2UbyVKMgMSkZeGaoXyNVgf97kxQWvdUSeHzPwb3J6aE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fragamemnon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fRdM5BBGRW35cogw79RRwAomG6zUWRi3meLr1mDR7zcyPQ7Ei", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fRdM5BBGRW35cogw79RRwAomG6zUWRi3meLr1mDR7zcyPQ7Ei", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8464 - },{ - "name": "bts-dominick", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qGNDDHKe2jyXcmJjL4S8VPBepvCnXMFUySVsZeHBRsegvszUT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qGNDDHKe2jyXcmJjL4S8VPBepvCnXMFUySVsZeHBRsegvszUT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 568193 - },{ - "name": "bts-koberstein", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XnRV6oxxtGqpuq6W9X4XhGjepoLTV6NvEEk1RJMR3QaqGYANJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XnRV6oxxtGqpuq6W9X4XhGjepoLTV6NvEEk1RJMR3QaqGYANJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37790 - },{ - "name": "bts-tia613", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rfCbkYVFJdeEmTVD8cTwANdbShroAs5zjUw9mJjoVYyvhYkYM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rfCbkYVFJdeEmTVD8cTwANdbShroAs5zjUw9mJjoVYyvhYkYM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17155 - },{ - "name": "bts-amoyuiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uNqDgdVhgBfdGBaXNymi6vFxyGHv2C91zr7HeN132pkAh89zd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uNqDgdVhgBfdGBaXNymi6vFxyGHv2C91zr7HeN132pkAh89zd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1131551 - },{ - "name": "bts-asiwish", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jPDRQG8x2BtbQ2x1xEp7XKkxEwTeKT4WGKsashWh63PjtHubP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jPDRQG8x2BtbQ2x1xEp7XKkxEwTeKT4WGKsashWh63PjtHubP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-flippy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nE8AH7yMBtgg5kjRg35FeghuKRWiy9iUb81NMEMitPFij3UXx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nE8AH7yMBtgg5kjRg35FeghuKRWiy9iUb81NMEMitPFij3UXx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-jaehyuk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ypBerwnVcQUZM5AQLoGNB9A3fQBHh8m2734MakyuBYu3AN8Q8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ypBerwnVcQUZM5AQLoGNB9A3fQBHh8m2734MakyuBYu3AN8Q8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13648123 - },{ - "name": "bts-qball", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bYdDfzv2nhS67H68HYoRoN5KyHF3u1wcKP8yBywxGB8yKtpBj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bYdDfzv2nhS67H68HYoRoN5KyHF3u1wcKP8yBywxGB8yKtpBj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41618 - },{ - "name": "bts-ali-baba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ma3PwGkV21vCT7q8ZLEGZhG521b1ipJt9doeQFwm9tUsByM62", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ma3PwGkV21vCT7q8ZLEGZhG521b1ipJt9doeQFwm9tUsByM62", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1049641 - },{ - "name": "bts-generator", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xK4aawrQ2mgteoHmDNTRLT5MN7E7zn84cjzMZKbGeviCZEyV7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xK4aawrQ2mgteoHmDNTRLT5MN7E7zn84cjzMZKbGeviCZEyV7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33565 - },{ - "name": "bts-serg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GmfsdRoyvKJhGgpxLHi3wPXLPVCWtHz8zgQDzrmkrLucWUfKv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GmfsdRoyvKJhGgpxLHi3wPXLPVCWtHz8zgQDzrmkrLucWUfKv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9466553 - },{ - "name": "bts-canen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NgVWgKgxey6n1sMvS12E77AjnamwoFQwQqcT4uJ7cL7krhmSA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NgVWgKgxey6n1sMvS12E77AjnamwoFQwQqcT4uJ7cL7krhmSA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41824 - },{ - "name": "bts-kwangwonlee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Uvp4sPe7b45s6EFYWtMZ6mVdqSW2qHsyZiu5hEmdS7yigQ8oF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Uvp4sPe7b45s6EFYWtMZ6mVdqSW2qHsyZiu5hEmdS7yigQ8oF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3384006 - },{ - "name": "bts-mira", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QrUhqF4mRmarsMF8cezYhzBo5FCDPM1VLqVWGVJAVNQM3qZEG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QrUhqF4mRmarsMF8cezYhzBo5FCDPM1VLqVWGVJAVNQM3qZEG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5633 - },{ - "name": "bts-verfu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UpKY4d3TxRL6JZ5sXyWjnqagGTBtQ93m8RodoFRRjCfHBZf5o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UpKY4d3TxRL6JZ5sXyWjnqagGTBtQ93m8RodoFRRjCfHBZf5o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3920931 - },{ - "name": "bts-thisisatest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A14r9rqC4aCedZ7RsnQHrMzM1CE4Uije6BTEBgLyKwEefijqn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QqVJCgGZRkEJV7JmuqkdgF2KveVbEYM1xMhFAo42yrgn3qNKq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-mgh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XRmmWKT3Bw5uoWBW7uNqARXGs6fR5FE3BxYV9MDrbYxzYBFtD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XRmmWKT3Bw5uoWBW7uNqARXGs6fR5FE3BxYV9MDrbYxzYBFtD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7627 - },{ - "name": "bts-digitalasset", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W1LvwQqPsyYR1uUbpFLruo6s4mBbjzk6Ez6QzpcnA3THVCwKs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W1LvwQqPsyYR1uUbpFLruo6s4mBbjzk6Ez6QzpcnA3THVCwKs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 178 - },{ - "name": "bts-richmodel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hbu1NmVroECwFUvGpoZZKgKkNqzVThY417jEN9RgcBzhTQkfV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hbu1NmVroECwFUvGpoZZKgKkNqzVThY417jEN9RgcBzhTQkfV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17609 - },{ - "name": "bts-bitsharegame", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WuosSigWqC29m52CKoY3SkLWn2CAoYDpDy9APF7hiFiCkpwPx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WuosSigWqC29m52CKoY3SkLWn2CAoYDpDy9APF7hiFiCkpwPx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 207583 - },{ - "name": "bts-mazu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZhqfKpEpwXKZNYnLQyCMJuAcX1sWLEqtQ1f8dN3pMtpjXJc7w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZhqfKpEpwXKZNYnLQyCMJuAcX1sWLEqtQ1f8dN3pMtpjXJc7w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74826 - },{ - "name": "bts-bts-enjoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R49udUZdUUk8UWNjbfayC5t1AxzcaokpPPMBGxwUk2jp5fmfQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R49udUZdUUk8UWNjbfayC5t1AxzcaokpPPMBGxwUk2jp5fmfQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-coinelephant", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ojucBB6NNm1MFe7etDSQEwmrNoAqRpgATC3HQTD8ohfvVGzdZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ojucBB6NNm1MFe7etDSQEwmrNoAqRpgATC3HQTD8ohfvVGzdZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-sunsallo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63kZbKdv5KC5CbZwzV4f3GcCYD7Rqrruag2GJxzXLJzxoxQ5fm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63kZbKdv5KC5CbZwzV4f3GcCYD7Rqrruag2GJxzXLJzxoxQ5fm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 115 - },{ - "name": "bts-lulupon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zb9gfqobvacLeemNaJijZRaFcbfCgMCjXeLNuujbJfxp2dMeQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zb9gfqobvacLeemNaJijZRaFcbfCgMCjXeLNuujbJfxp2dMeQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356 - },{ - "name": "bts-frankyzlh723", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uiUPcXtHnALcxxpPeneaQH32scLAQ1xwbt1rxFXGNSavQM9Ka", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uiUPcXtHnALcxxpPeneaQH32scLAQ1xwbt1rxFXGNSavQM9Ka", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 106 - },{ - "name": "bts-rational", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NxjHTQ8YuXFdpDyuz6aaNPX2pxtRQXKZCCQN2t3vtq5nmNnQE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NxjHTQ8YuXFdpDyuz6aaNPX2pxtRQXKZCCQN2t3vtq5nmNnQE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-woqishama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X5WpkG3rReMw2tKcqPo7meXVy7MdnkofvJk8epyP7tfZQ8Cfx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X5WpkG3rReMw2tKcqPo7meXVy7MdnkofvJk8epyP7tfZQ8Cfx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1089698 - },{ - "name": "bts-starspirit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XawTAfgXQYngkyukTQ1RkbrUPLKrGxQ5w4NxRGm973oxYPp5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XawTAfgXQYngkyukTQ1RkbrUPLKrGxQ5w4NxRGm973oxYPp5L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 409 - },{ - "name": "bts-bind", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GJ3VHhdc2fqMQETWa2KQxgd11LzWPKh4rEXpdwv7GJTfbFPMR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GJ3VHhdc2fqMQETWa2KQxgd11LzWPKh4rEXpdwv7GJTfbFPMR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49150 - },{ - "name": "bts-bakes00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FuCxxjkS9uegf2BQKW4qMaRRf5UeHqXh22JSyjohW7SkLowc8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FuCxxjkS9uegf2BQKW4qMaRRf5UeHqXh22JSyjohW7SkLowc8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365929 - },{ - "name": "bts-hammurabi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WYKmn4RBMYfq7Tz171Ryy6QfWwVHRzuV6kL7mpqnLvPkWdBA8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WYKmn4RBMYfq7Tz171Ryy6QfWwVHRzuV6kL7mpqnLvPkWdBA8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4665927 - },{ - "name": "bts-carlzone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sf7xJCmskdz7NFPuGigLdzhkVKYy6G83K91i3fNAt4QHYTKsi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sf7xJCmskdz7NFPuGigLdzhkVKYy6G83K91i3fNAt4QHYTKsi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-fran2k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UKsDZN4Cbdq71bboAfq9riUEc9e2qM8NTRgCk3D23PgG5oYx9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UKsDZN4Cbdq71bboAfq9riUEc9e2qM8NTRgCk3D23PgG5oYx9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4029937 - },{ - "name": "bts-scottmclane", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WxNDWeMrB5wD9WyLkJmfSC4PQLgD4NFM5XCKk7sRJptAHEqSk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WxNDWeMrB5wD9WyLkJmfSC4PQLgD4NFM5XCKk7sRJptAHEqSk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12233560 - },{ - "name": "bts-kdj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nf23YTy63vuFTXD8f5wKwuorvvxxbH8pjTf3Ey6t7AXEyh2Dx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nf23YTy63vuFTXD8f5wKwuorvvxxbH8pjTf3Ey6t7AXEyh2Dx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34259 - },{ - "name": "bts-paopao4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5a7QbK5gsTnnkpm6gggbMYocjfdutyKDkoRyWsZmGwiVRovnRY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5a7QbK5gsTnnkpm6gggbMYocjfdutyKDkoRyWsZmGwiVRovnRY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7104 - },{ - "name": "bts-rage1337", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z6qjFFCiKS9aij8tHLeiWwFVaYuuC8wYBHUx1mgRqdGJiN6WR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z6qjFFCiKS9aij8tHLeiWwFVaYuuC8wYBHUx1mgRqdGJiN6WR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-reimagine", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DPzxj6oSnKKtCyuT9GKKBF6Yzke9n9Wjp24XuKbkgJ4MNjfhf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DPzxj6oSnKKtCyuT9GKKBF6Yzke9n9Wjp24XuKbkgJ4MNjfhf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-btsxzzh2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o1VnVTDQAJTHdKGmvafpxz4tmkCSHUh2rvWQKXXnLhNvqnsqw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o1VnVTDQAJTHdKGmvafpxz4tmkCSHUh2rvWQKXXnLhNvqnsqw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16362569 - },{ - "name": "bts-oscarpaytuvi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tucmEneD4i5PPNC5J4eqKLWAzNcVFEHZPLHpoAAYwafXBzAMJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tucmEneD4i5PPNC5J4eqKLWAzNcVFEHZPLHpoAAYwafXBzAMJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 422746 - },{ - "name": "bts-luoyi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fab3KD112zaP45pK66HFRBkvKcdkFPh4rfePnPiTeYUoXEy4P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fab3KD112zaP45pK66HFRBkvKcdkFPh4rfePnPiTeYUoXEy4P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 506 - },{ - "name": "bts-buratino", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85wrGiTx3RcjVswPkseJjhS4a1gjEhBKozY453AnVf1S9ZzMXm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85wrGiTx3RcjVswPkseJjhS4a1gjEhBKozY453AnVf1S9ZzMXm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2318 - },{ - "name": "bts-lighthil", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6efLsGCrXyZP7n2Rpdx1Am91u5tacKKY72tbQX92BGsh5J4m1R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6efLsGCrXyZP7n2Rpdx1Am91u5tacKKY72tbQX92BGsh5J4m1R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1465498 - },{ - "name": "bts-wayne-btsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E7gXsSSAy2p1C3oPsMQD7JBQPLmcRiR3twqWTvDruqUQrueto", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E7gXsSSAy2p1C3oPsMQD7JBQPLmcRiR3twqWTvDruqUQrueto", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7652084 - },{ - "name": "bts-bts007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W4tknP9Z4o3FVqiZDu2XX6jaW3tVCvAa7AFNtjWuoK9aLUYkJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W4tknP9Z4o3FVqiZDu2XX6jaW3tVCvAa7AFNtjWuoK9aLUYkJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1525 - },{ - "name": "bts-lain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yuVHuP7pgWA4fmexqo8x2U39hZ8dyk2eLZhbB3dDwwY7Y2cWH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yuVHuP7pgWA4fmexqo8x2U39hZ8dyk2eLZhbB3dDwwY7Y2cWH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-coindgr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mmpNuc6fLKrUYZUNbgCbiM52TC4B6UJmknLw9srzkkoCbLe6h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mmpNuc6fLKrUYZUNbgCbiM52TC4B6UJmknLw9srzkkoCbLe6h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 173513 - },{ - "name": "bts-r5s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST897VMZH9CTBLUMaSNkuCA2KDxj24g1pddHikAkGyXQFWeQBJ5S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST897VMZH9CTBLUMaSNkuCA2KDxj24g1pddHikAkGyXQFWeQBJ5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 249585 - },{ - "name": "bts-lain-capital-research", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r4mAtt8jRLwTgmsLnmpJcuCdhc7FghtrbdwqNnW5AA6kBdVuk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r4mAtt8jRLwTgmsLnmpJcuCdhc7FghtrbdwqNnW5AA6kBdVuk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-realdeal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iPHVXMHRqkBCJkWCtzYzsxLYppX3zQ6DqHj3wUZf91MmgzVo3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iPHVXMHRqkBCJkWCtzYzsxLYppX3zQ6DqHj3wUZf91MmgzVo3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-hwha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JCFe2Y9ezQ6uzAUFHrxzQqSXXTkNBNEosLdsEu5Lo1NftVSeK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JCFe2Y9ezQ6uzAUFHrxzQqSXXTkNBNEosLdsEu5Lo1NftVSeK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 237830 - },{ - "name": "bts-othou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SbActtE6zfjo3shwQhGTP81ynFSKjtkm5VDPmcM1mncvM4uzV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SbActtE6zfjo3shwQhGTP81ynFSKjtkm5VDPmcM1mncvM4uzV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93 - },{ - "name": "bts-anatom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MXeiSCcovS4LRML3BAtaRyW5zF4eiHFsFtAyAxRLdMnQYBLcF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MXeiSCcovS4LRML3BAtaRyW5zF4eiHFsFtAyAxRLdMnQYBLcF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83877 - },{ - "name": "bts-abelljefrry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vQ7jMKqAiwtN23GvhZAigv4yXzLbswGrnhZzKk7z58KmgpJgp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vQ7jMKqAiwtN23GvhZAigv4yXzLbswGrnhZzKk7z58KmgpJgp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-amirichwow01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wcmYqTYQmpanDcTgHjG4FYx8sY8A6Hu331LB4QeHowdiZzi57", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wcmYqTYQmpanDcTgHjG4FYx8sY8A6Hu331LB4QeHowdiZzi57", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-dev.bitsharesblocks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eLeqSZZtB1YHdw7KjQxRSRmaKAseCxhUSqaLxUdqvdGpp6nck", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eLeqSZZtB1YHdw7KjQxRSRmaKAseCxhUSqaLxUdqvdGpp6nck", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19085401 - },{ - "name": "bts-hunfa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68wA9KyDv6ZEhuJY93GxRzbNpHAAQmBd86sSKGSXV3t9HTU21Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68wA9KyDv6ZEhuJY93GxRzbNpHAAQmBd86sSKGSXV3t9HTU21Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1036 - },{ - "name": "bts-ramires-kuwait", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WLnJK2SYE23fSgd5yuC1sVajyGcbuo5e1tuq9gW6uB69d9dAz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WLnJK2SYE23fSgd5yuC1sVajyGcbuo5e1tuq9gW6uB69d9dAz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177081 - },{ - "name": "bts-bitsharesgame", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78AUFicc8SxBzPjomR1vRRhszNLKdevUkcJNdwRj5wCmQ9zASK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78AUFicc8SxBzPjomR1vRRhszNLKdevUkcJNdwRj5wCmQ9zASK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 194 - },{ - "name": "bts-newbtsv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ag6ffAWwrwtKsboLd2QunUkfnk8XD8pbna3QhrKsnqbrKfRzj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ag6ffAWwrwtKsboLd2QunUkfnk8XD8pbna3QhrKsnqbrKfRzj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-bitgalaxy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x35iZsroDxuKqpgAmvzVCwj4nKF4pRQuhLi547FnRo6ofxDHA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x35iZsroDxuKqpgAmvzVCwj4nKF4pRQuhLi547FnRo6ofxDHA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7874 - },{ - "name": "bts-hunfafa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZkxpdwJdazRxSGn3h1LU3mGM4DDMW5kNqzEYq41WxbXqgfYKi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZkxpdwJdazRxSGn3h1LU3mGM4DDMW5kNqzEYq41WxbXqgfYKi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76 - },{ - "name": "bts-jabberw0cky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VjKLdw6frJg7Z3iZnT3jU3nSNVrVGHUhiAuZnWLaho2Li3b6W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VjKLdw6frJg7Z3iZnT3jU3nSNVrVGHUhiAuZnWLaho2Li3b6W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9723515 - },{ - "name": "bts-tiau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qk535vuVqMDj5CLkUf77fDH2yLJUjrGQoCyXf1RT5T9okN4rL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qk535vuVqMDj5CLkUf77fDH2yLJUjrGQoCyXf1RT5T9okN4rL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86021 - },{ - "name": "bts-ibts-ml", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uxTwiCiELVLcZV4Sg2mGhwWwv9w7S86VkJThySynmZfca3sU1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uxTwiCiELVLcZV4Sg2mGhwWwv9w7S86VkJThySynmZfca3sU1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-enobit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68bLLQ1ZRNpoRKUtm5UkqY2CKmP5rUBmJvNY87zuEbs5bsh7FZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68bLLQ1ZRNpoRKUtm5UkqY2CKmP5rUBmJvNY87zuEbs5bsh7FZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24411 - },{ - "name": "bts-donator800", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DmPfnwVnP7sWrQ2T7MvBzKK76YT2YoCxLyhi3SsUBUVTZqp3d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DmPfnwVnP7sWrQ2T7MvBzKK76YT2YoCxLyhi3SsUBUVTZqp3d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11905 - },{ - "name": "bts-bands", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KFF1NoZFj2DsZLVtxeMTXGHSux6xrD7RubzHQznKhphDCfB1L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KFF1NoZFj2DsZLVtxeMTXGHSux6xrD7RubzHQznKhphDCfB1L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-mdj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aCeiWiv1QRyMJzqrNzT9Pyi9X5GdTg6A2PH3gP2xpktPgLzz3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aCeiWiv1QRyMJzqrNzT9Pyi9X5GdTg6A2PH3gP2xpktPgLzz3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1929294 - },{ - "name": "bts-mtwagner", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c9MnuKu5GP4gU2WYuY6vrYShDhm3XCdui4rZDW9SAUkVPPhGV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c9MnuKu5GP4gU2WYuY6vrYShDhm3XCdui4rZDW9SAUkVPPhGV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-johnbitsharex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LE91X6QQkbMrWn51dkn5fGrE2tL959yeWCSoGoEiGV4NoGmQm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LE91X6QQkbMrWn51dkn5fGrE2tL959yeWCSoGoEiGV4NoGmQm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-linuxuser", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7STyb4fiBJGrAwiPyDQYvxq2ThCeH3cNbLCXqXqeJhPQRWrZ3U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7STyb4fiBJGrAwiPyDQYvxq2ThCeH3cNbLCXqXqeJhPQRWrZ3U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58 - },{ - "name": "bts-eddardstark", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V2NGwDnHnQavS1AfsmVE5ADJuVDyNt8j7uTFt2fgFtQQPanvT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V2NGwDnHnQavS1AfsmVE5ADJuVDyNt8j7uTFt2fgFtQQPanvT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2712269 - },{ - "name": "bts-bts4lan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST568gzMjQsaJ7ctLvfYjZhxByQAn6LvY2aRDcwX4SF32nY3sDwU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST568gzMjQsaJ7ctLvfYjZhxByQAn6LvY2aRDcwX4SF32nY3sDwU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24712 - },{ - "name": "bts-bitty9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tjXfP5y26jGAPbJTMoX8mRP4MuA4H5Jgb6dUHpvPFCJBSHwMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tjXfP5y26jGAPbJTMoX8mRP4MuA4H5Jgb6dUHpvPFCJBSHwMo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 120920 - },{ - "name": "bts-delegate-1.lafona", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DCL5nbhL13sXBh1mwQp5pUBSw7rmwjWeiiy5b2Z2UxuYf8spU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DCL5nbhL13sXBh1mwQp5pUBSw7rmwjWeiiy5b2Z2UxuYf8spU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21857 - },{ - "name": "bts-jnjwq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83wBDsocKncrjUmmZaQRaVwyUyidoydSmmppFNVNxXS1qSBJ8c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83wBDsocKncrjUmmZaQRaVwyUyidoydSmmppFNVNxXS1qSBJ8c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3583 - },{ - "name": "bts-nametoolong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86ZdW5tzK63zQQgHXY9SZDTXL7rV1eugnch6Ne6uwv2TnGv2Zi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86ZdW5tzK63zQQgHXY9SZDTXL7rV1eugnch6Ne6uwv2TnGv2Zi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 655 - },{ - "name": "bts-gerry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yrwrWpxsLwuz85T1XM2pzYSM9PaSyZjEUS6h3FjzKATtxoRGm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yrwrWpxsLwuz85T1XM2pzYSM9PaSyZjEUS6h3FjzKATtxoRGm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 401 - },{ - "name": "bts-lubah", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tRVuWonQDDGBZNv9W88vAWTbBeQeBpAvkWhVP126QaMh4bqyG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tRVuWonQDDGBZNv9W88vAWTbBeQeBpAvkWhVP126QaMh4bqyG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36317 - },{ - "name": "bts-ake81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rNcP79tXGj7mhUcS2cyN1o4SqTLyeqimZy76VDuywBiraUHqq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rNcP79tXGj7mhUcS2cyN1o4SqTLyeqimZy76VDuywBiraUHqq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-btsfang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53XUEjbGZd6NiAMMWGX8Lv8a9tZ2ThLH1hGSEySjC24351PNj8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53XUEjbGZd6NiAMMWGX8Lv8a9tZ2ThLH1hGSEySjC24351PNj8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9320 - },{ - "name": "bts-tk.tinker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wtNbRX3bQAE5KxQqBWdcXia6iGMeETGKQf6nAoGQaovYoADpX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wtNbRX3bQAE5KxQqBWdcXia6iGMeETGKQf6nAoGQaovYoADpX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-btswildpig", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xf1T579pDW5HmjuzX1QUBfY5UDRGV4Z9t29fbTengDBZxYFAy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xf1T579pDW5HmjuzX1QUBfY5UDRGV4Z9t29fbTengDBZxYFAy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-julios-stash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xAya3qg5xgKH5TQAqXSveYL9e9fJtHkEnQvmcWYhw4ouR482s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xAya3qg5xgKH5TQAqXSveYL9e9fJtHkEnQvmcWYhw4ouR482s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4524164 - },{ - "name": "bts-dev-metaexchange.monsterer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TYERTTeySTkTVBR6AXswSMcFnGauGALyGHwq6UTvqPZdGvcqN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TYERTTeySTkTVBR6AXswSMcFnGauGALyGHwq6UTvqPZdGvcqN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7377 - },{ - "name": "bts-anquan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RmUAmXFPU3PFprvPWeHrSB4p142BUpAn5vALYdZbm3KqyvnEj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RmUAmXFPU3PFprvPWeHrSB4p142BUpAn5vALYdZbm3KqyvnEj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-anxin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aGtYHbZq6xSKKjVwXWeYRraJfC2S4t7Q1fBgBgCr9uCKBj6pY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aGtYHbZq6xSKKjVwXWeYRraJfC2S4t7Q1fBgBgCr9uCKBj6pY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-anquanfu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T8gXCKxigpEcjScaPUnTB3AW37GN4zL3gmf7aCFBM9rM98HyA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T8gXCKxigpEcjScaPUnTB3AW37GN4zL3gmf7aCFBM9rM98HyA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-xrustrader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5saGWJBqpyVAG6ySumdCqsm85V3pqnnhmBxikMW1TRXPQxU7Du", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5saGWJBqpyVAG6ySumdCqsm85V3pqnnhmBxikMW1TRXPQxU7Du", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-hhao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rt4F3fsd8M5gWkHX3KdEifWf75rzev2RU36YS4LwEaKbwF8jB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rt4F3fsd8M5gWkHX3KdEifWf75rzev2RU36YS4LwEaKbwF8jB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65606 - },{ - "name": "bts-hhaono1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wqv2r6aoub1sex9Hv1frML9k37rzCgTt1vrumUzjtVrHBZtLQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wqv2r6aoub1sex9Hv1frML9k37rzCgTt1vrumUzjtVrHBZtLQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-hhaobts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c4hJenUDiSQqmUCPYd7TarsRLtNkDS36gFjBUJjKnavEnZLoQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c4hJenUDiSQqmUCPYd7TarsRLtNkDS36gFjBUJjKnavEnZLoQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-btshhao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mFtmvBW1c4BnAqjsCuoxmRsCoajbxv38X34VQLFvG2jdfdtik", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mFtmvBW1c4BnAqjsCuoxmRsCoajbxv38X34VQLFvG2jdfdtik", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-abc.btsbots", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P2DQu3d7TCbyWMD7uMYhuSm6DPV3Cjt3LB91TkGdyWAc1iUZ4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P2DQu3d7TCbyWMD7uMYhuSm6DPV3Cjt3LB91TkGdyWAc1iUZ4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1075225 - },{ - "name": "bts-sircodealot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7btJwBmmASuh2epYfm2QeVgLgJpHahSTALyULLUWETBwNaxngn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7btJwBmmASuh2epYfm2QeVgLgJpHahSTALyULLUWETBwNaxngn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1122474 - },{ - "name": "bts-seoulcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6x4yTJqZp3T8cY5BmbSZqCS93fhEJYpNNwHNfeqvsZjrBAGZ2v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6x4yTJqZp3T8cY5BmbSZqCS93fhEJYpNNwHNfeqvsZjrBAGZ2v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-oakmaster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hMGqB7L8VPrfV9QrUCEjthtE4PT58HNMLXSJvjdwGVpxBDPE3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hMGqB7L8VPrfV9QrUCEjthtE4PT58HNMLXSJvjdwGVpxBDPE3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47557 - },{ - "name": "bts-nothosaurus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bevcDiBuWwPki76suqU984ZFE2ATA3or8VMpWYBWnmFbhK7LE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bevcDiBuWwPki76suqU984ZFE2ATA3or8VMpWYBWnmFbhK7LE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 643760 - },{ - "name": "bts-argentina-marketing.matt608", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mR3SYgcx2Ggt9PHLH9J3HGzNzxQxiHdJRS6o6G61DRXP72Zku", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mR3SYgcx2Ggt9PHLH9J3HGzNzxQxiHdJRS6o6G61DRXP72Zku", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54997 - },{ - "name": "bts-muggelus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aSynh9GXfqXkcPBLih85rcKeWAUDto99C1uY2JhFWN4AHzTfC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aSynh9GXfqXkcPBLih85rcKeWAUDto99C1uY2JhFWN4AHzTfC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 213869 - },{ - "name": "bts-szhxxt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64SvDtszJ8nqbjhv1BCaxCrkj8eSpXMDYfxDd3c5726QFvr1U9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64SvDtszJ8nqbjhv1BCaxCrkj8eSpXMDYfxDd3c5726QFvr1U9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1453096 - },{ - "name": "bts-linyisen-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HNKQXtBB9Kmvaui1Tmt1j2H35sbkG8cuoCQeDif5Z5XbGrh1Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HNKQXtBB9Kmvaui1Tmt1j2H35sbkG8cuoCQeDif5Z5XbGrh1Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-powersup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST841RsagnzuqrGTywYzdah1NZnZwQM6MAF83xXdkVNzz8h2pXxd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST841RsagnzuqrGTywYzdah1NZnZwQM6MAF83xXdkVNzz8h2pXxd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55953 - },{ - "name": "bts-reverse-abortion", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tY9Vk3bcR8Yu6qB76EvFcxitEKeK7YrthhT7kfvWAbTUNroxC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tY9Vk3bcR8Yu6qB76EvFcxitEKeK7YrthhT7kfvWAbTUNroxC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32285 - },{ - "name": "bts-yingke", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ALMSeovnMz52UTjqKWTek1CfHSDGSAwrM3Q9ES7RiWjPcH3pH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ALMSeovnMz52UTjqKWTek1CfHSDGSAwrM3Q9ES7RiWjPcH3pH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6747 - },{ - "name": "bts-pay.monsterer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7usxZ6jKRptKTr3gAZEhgxceoBBvT7ZmrVxZ2b8LPrYfz4Lsib", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7usxZ6jKRptKTr3gAZEhgxceoBBvT7ZmrVxZ2b8LPrYfz4Lsib", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61 - },{ - "name": "bts-onelove", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z8JzcfGXxcdtAgrhm2kwe4P6QSZ5hoGyN7WBWjFxNEGMBLN2b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z8JzcfGXxcdtAgrhm2kwe4P6QSZ5hoGyN7WBWjFxNEGMBLN2b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-hipster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DXQduZhyuZEJ9LLhsgkDm39RCHKTo4Nfc2KMUsrCKbtx4jAGB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DXQduZhyuZEJ9LLhsgkDm39RCHKTo4Nfc2KMUsrCKbtx4jAGB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5092 - },{ - "name": "bts-cyberfund", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 184 - },{ - "name": "bts-bitshmusic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8azPom54vQV2EHCiYr5VXCR8CAebcT5K9hUaiqLmdyoC35CJME", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8azPom54vQV2EHCiYr5VXCR8CAebcT5K9hUaiqLmdyoC35CJME", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-myles", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i52AKXvuCzsntaYgnxZ7zEc8sB23Fcp7VxkGGAkwvHbEJxi3R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i52AKXvuCzsntaYgnxZ7zEc8sB23Fcp7VxkGGAkwvHbEJxi3R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108623 - },{ - "name": "bts-marcotullio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xw51SErLeQKffGD8iHoTmZsFpr5gPjUuCZFt4XwNjqLqj7iiS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xw51SErLeQKffGD8iHoTmZsFpr5gPjUuCZFt4XwNjqLqj7iiS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-scott.mclane", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZG5VSVhB18MjHbt9ocbbxjCZNTtJwpB6HygxgFxTKeAshAxQP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZG5VSVhB18MjHbt9ocbbxjCZNTtJwpB6HygxgFxTKeAshAxQP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 288 - },{ - "name": "bts-bitsharestoday", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MwiRKngZpbRkYCV2gXbx5YM8eboXcBqbVeonr7NXsWM9jUWhq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MwiRKngZpbRkYCV2gXbx5YM8eboXcBqbVeonr7NXsWM9jUWhq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136 - },{ - "name": "bts-woojejin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nETKP2fjAwdw4RLEsgvHg4ZAoT9qtoXCwXEohV19h6iBjpXk4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nETKP2fjAwdw4RLEsgvHg4ZAoT9qtoXCwXEohV19h6iBjpXk4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-simplest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sJspoL5tR69bEE4jezpxfVdCqHdZ7PuNYyku2x8KdUbVD2225", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sJspoL5tR69bEE4jezpxfVdCqHdZ7PuNYyku2x8KdUbVD2225", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-elcomandante", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MHBjkL7vBAuZNx2cV2vJQqidrLG1mxys3RybroTn7d5dbMCkJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MHBjkL7vBAuZNx2cV2vJQqidrLG1mxys3RybroTn7d5dbMCkJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-icebird", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uJKTyFMLaikC8e24QHibdr28Wsvn3PfVFeGRqEWyAKmrLJ1NP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uJKTyFMLaikC8e24QHibdr28Wsvn3PfVFeGRqEWyAKmrLJ1NP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 416955 - },{ - "name": "bts-btsxking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mxaz4G4vJwvwRVb2hr5ePDJhWcqxE2E9ty9NoLw2BPwx8L5oJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mxaz4G4vJwvwRVb2hr5ePDJhWcqxE2E9ty9NoLw2BPwx8L5oJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13862286 - },{ - "name": "bts-delegate.freedom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82gpUjKxNDPHBqxeBCBdF3jC8k95mo9Hs5PhugDtH7VskgqQce", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82gpUjKxNDPHBqxeBCBdF3jC8k95mo9Hs5PhugDtH7VskgqQce", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1902 - },{ - "name": "bts-bitstar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QgCRXejtoYrEstSz64PBhZCt86QnaDVvhu15pskgRB7BbFngv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST842eqF715CsLVKN3bJcmf1pjr1GCrqGeGdLu5hNshqQEnf5SpJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 594 - },{ - "name": "bts-symbol", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST877gk1rEnf3QhCDTV6RmYreaEpsefGfDLyt5SLdJRjoVvBvg28", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BZah8WJtJfgABST6j6Rk7upVhnGN1jCSdoempp7muBk1susXM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3378 - },{ - "name": "bts-neweric", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GDeLTRmnmg9z6fXjgUnHQn1k4SAXr9zcuSvkjwhSCnS4EQbHa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kbj52j7hKA2sAxZTCzx1tr1AzfgWpfFFX2SfWcp3sGksPG3j9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-lovcom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NMNpsdCsWNUDb8nDUnECK2xQiJrsGfzgdtMLSHKwkYAASqM6h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NMNpsdCsWNUDb8nDUnECK2xQiJrsGfzgdtMLSHKwkYAASqM6h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1358426 - },{ - "name": "bts-for-gary", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xctam24nbGDLrt4akQPFEoDNHZBaDGFa7NpVFxwH2EqpGV6rE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-spook", - 1 - ] - ], - "key_auths": [[ - "TEST6XqXyvJW4N16oYrUku7TpGhG3ykEaRSpdVAhPjQ2VBGnLkprAy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2265575 - },{ - "name": "bts-for-dana", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fPV7NZ7povnKbYpxW89DjudpDRB51My4eVfd6ZAjYYFJDjq57", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-spook", - 1 - ] - ], - "key_auths": [[ - "TEST5tJwgde3hxMkfKCJEVQV7hYkfoLQiDCTWVmDYXA8NENJCDw3fv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7162053 - },{ - "name": "bts-orrechorre", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uxMdsqyCgsAFp1ibaHzwtSgFnSoqqBfzbj7ad2cMgptHx9Tjq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gAHjVb4VG6AuNGSsoxiEkCC3aov6GrsPEYr2Bap4gu1nqJRDV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53727 - },{ - "name": "bts-f35720", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VG9xdkrbe93pgHdV2XkW2R7jquqDRyfvHEoDrSXkJgB7qBspx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VG9xdkrbe93pgHdV2XkW2R7jquqDRyfvHEoDrSXkJgB7qBspx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 163 - },{ - "name": "bts-cashes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VR9b91PgLvmxJHVw4XvQusXrNNERiACumNiVnRiQdsYKJ39pb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W1A7BzijKXGx2n1PL8kjsyha9sk3SYvuurdGiB8vGVQhrRBU6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-jaycrypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QMWRhRtEtJg2RZsVQxoEJckvnu3K82a2TtymJZwMWoTGHG5kB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QMWRhRtEtJg2RZsVQxoEJckvnu3K82a2TtymJZwMWoTGHG5kB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-work2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FKgEcrnVZLr8gdFA65eeEPvy2WrDQexbAbZxqEpF7xfhQUqAt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K8mhMRqYAJHaquq2NxfEnaVUeAjnEP3cqVQ3DFcRYLm9CjpgF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1101119 - },{ - "name": "bts-account1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XQwQaawGX1wqRA3TDFpCTqiJjsqQekWMUmhxeSujMYyK6j5ZR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51ibyvbk8uHknaVeNZzbzi8yHCdaTdi4SyKXADeoVjqx7dbRXv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6361 - },{ - "name": "bts-theoretical", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AG85XpmRkwh1mP6T4LtjPzQrT15jPp4RfFjW6nSA1piHGbqfb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w69Hj3bjDWRCTfF8nVj4RauQWdtfQpw73KqkZKdwbXAYDLHZV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-tramker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oJPUAbvPQhvSKnxjU4g5VvNmticW19i1fSMQE9cTwEi59KVkA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST846Mgy6ah1Hig5Cev3NDmdYpsZX2upk48Sc7tznM9SM1aDC2xL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 628916 - },{ - "name": "bts-freevpn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pTV1mgxCoshk9oU6tJrHt4XWhxReq61QeDp1DvGSNW5wkz7dj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ESg6U1f53zM2EAJsE42i2S5QKEAtcTXmZiewcToNwBWpPm37x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2922 - },{ - "name": "bts-danjacobsmith", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cX5qnD7KdC4BzzkupJjnLyTtakeSRgEB31GJAJ4doQ1miCo8F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cX5qnD7KdC4BzzkupJjnLyTtakeSRgEB31GJAJ4doQ1miCo8F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182324 - },{ - "name": "bts-bongtaman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ys3sjJshMccCYhY2VCyVcSgZfDgnFaNpR2WygT2hsXm4ru6sX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ys3sjJshMccCYhY2VCyVcSgZfDgnFaNpR2WygT2hsXm4ru6sX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64343 - },{ - "name": "bts-elmato", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-committee-account", - 1 - ] - ], - "key_auths": [[ - "TEST6DyMRhAshVj8wyq5VrSxvR6SyNPk8SwWnV1vVESvWswiPWGku3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-committee-account", - 1 - ] - ], - "key_auths": [[ - "TEST6HihtEB8LfvLe4cSSrqtyxkdfKDkeMocKwu7PJkb6W8gqddi3R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3795 - },{ - "name": "bts-bitbuckster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kdigZ4M4Q5CJZUUdnBob7cZ2HDceyxZWre4FiWFDaW4bnCqp9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62y3X6tbtKSJAFKrAgj1VZgdAUXpEp1rdtM7SgcTsjUTYJaXPK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7269 - },{ - "name": "bts-bitsharegame2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST745LCqdGDn5eSXh4AZamihkgNqFYg7NL3iZLfCQUfkvwaDF4xe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Chyvi2mneDVgEpXAx2NNmWMuen4efhmCDCjfB6ZWymxCawFUp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-alza", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ujW1E5BPxbbFoK7SEmF2USjnKcPxk45CSdvMWDKUxgDYRHWTf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST521pTwyeALs1T3Bmgf9fG887brjV5xizXd7FjeR4BBj1SdoVAj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-arista", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KivHYhpJo5a6w443FPAtALRzFMRVYAbUtcX92mAm7VZozc3iP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zKuGfPDKth2ypMFmPfoioRRsan4ex72qVPLGp1sBrVnMjQYq9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fundomatic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RBe8PsscS9vbh3dK9tUbS4RX5VWMHPM3gGeR2ooikqnomSpgz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PWULLnH7eFjwaR89Jtwz8kHUopKNK3AkMZcDiKRbbQUQELa5U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4137 - },{ - "name": "bts-rouble", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C6LFXCSnJ4MZSmfWt62LDHNgqPAz9x6iHuvGwdB7DGgksKFAo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51wuFZdhNCA7dZ3JXeBaMDTbdx9JZ5hyKYs9vYkZrUhPWLWgaZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 87 - },{ - "name": "bts-metaexchange", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86oK18eRRoPFJzSHcaHDN4yCwKeYLswiEU3iqKLdfFefhvGkvA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tSQ7dkZY3Qa6D9YNM9FHwf7UdCeczL77QqKx8AkCVAZca714B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44181 - },{ - "name": "bts-batcat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71Rrekx9gzW1LDQUVE91rjTCb3RsbtzoUaVD9nx1qc16m8HAMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YSR8os6AHj1ENgNAsHxe9fhYy5G3N1H7qvzTCrhH1MU5vfoBA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 70182 - },{ - "name": "bts-bowmar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bdgHG3t757rr6k8P49Z5GVBegTavuaWnEzmb5SifUHPx2H8ie", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bdgHG3t757rr6k8P49Z5GVBegTavuaWnEzmb5SifUHPx2H8ie", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-talent", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VNi4dRZeQay3vBCCDaNUHKGvAF4uZQQ7o4RAAmjD9TnsFqL2E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52bsrWEnyrva3niaMGfDL1ApmvaiExf993iCCyHDnfkExwTdhM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-poppetless", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D6yqNDgq1ztZ2bXRatqnZ1KXmNiqE1z998YdGEPwN9BnUKBc1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D6yqNDgq1ztZ2bXRatqnZ1KXmNiqE1z998YdGEPwN9BnUKBc1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-moonshine", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xeJzTsgLrrWoWRBt6N5q8NbZUQ31rWV6JbAtZf319R2ADfkkw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SNGngnCLamKRA3AYiTvijswphAdaKY7DQLvtMUMDqSfiqCm9V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bts-cc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Uv3tSkLDn4gbxG9AAu4QdqqJXxPANtjGUPbKQkuWeSYCzP7L8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7297x8FPq2bByMH2nXLQTCZQwv9fvD4sEomcDje9iYVzaQA2C5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-bts-mm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nyZ7Zmin5e2i3prEeD2a2k44wevUrXJf8r9tHfWR6npx6uSMt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hbpXLQtN9RcszrJCxyVHNqS4XcXV3q5Y2zYoSvRifNzP1iA5z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-neipan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AbgW8nZXnkjmrVrkFGvQDVArrMz6Xmuq9ZdfyfzhW25o2nXMK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8joV89bNV6vW5fcTPw8o5HMQ2aJ6GHyZBdPMdoBuVTQd7wBGNX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57 - },{ - "name": "bts-jiucai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54AaUeoSgNfXogBvjWtk1i2RPDBEj2339CjXYcTVN4Fdqc466y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71NRTFBm7KrDzKkSyH3XiJdzM6S95L9bZRnvy8jGtQWYRYq6h6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 341 - },{ - "name": "bts-ziyuan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GGH8jQvN4PD2bvKNy3Zr1Vs5UCmLBfyLm443Q5yZnoovmGqDK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dQSuajr389Kk61S1KywE8Tor43gbPMi4YgmZwGRnjiRe7ksu3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56539 - },{ - "name": "bts-btc38-cny-kuos-72722", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jzpQVzgjysbSe4KigyTxVdQEtHK9xTX6zbHoKwiudtfHL6k8h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nw39QAcxrjCu9yRAWEW5sTHD2Fz1uL3CqYqbXPRmvYFeNcwrW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2940894 - },{ - "name": "bts-noblelhama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XGprimCa6p3HUwipMqzFE8cgp2ja8dQviiBdEB3RgvxZ82TUr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yqyVpUH4nELo5xUsZFzJ56gv9NS5kRqWX98dzdnNM4wNbmVZK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44090 - },{ - "name": "bts-startnow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Yp2dehLwMA6RHMBguoMd3zJKd1Vziiq7MHi6ZDtSUEwYHtigP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64uFzA9aFJVap8rG8HDsSmLmT2itYi4vTPR6FzPszjT56972qG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 252 - },{ - "name": "bts-zoo-roon-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VqJp12gTKVbGxgaKyEraY9TFjBVrvYWhrvCrAHaQCa9F2GcQc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VqJp12gTKVbGxgaKyEraY9TFjBVrvYWhrvCrAHaQCa9F2GcQc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 736920 - },{ - "name": "bts-yxyy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67g6xmu2bxUkmcQhPJ43kRqJrbHRzXc5ExmzeHaR1dw8A1wyFg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WdhvH9bvZigbC2k1JS3S5Rd8hymyKQsBARzdhEvdTzUetjnFd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1858 - },{ - "name": "bts-cashier", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cJLeSf4NeWdMVReaxbQCYEGtp2EwJuwbGnMNAY5YxmzVFrAqV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JRiK2eNUzsk4LCe2PfJT17LjJvJdFribUYetPN8MftQvrqzfJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6310 - },{ - "name": "bts-nahu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XPB9UnJmvm2VxrsG5uFrQ6X8TTKNtqYV4FyDzwCM3cRGVedkN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g6EpwFqkKCiU7uJa6BJ5o1DieaDyhDn39FYFAu65weMUS5jVH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 840423 - },{ - "name": "bts-rnglab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KTX2mQqwcYeczmFGLncdDRtqXxJBSC8RtmEPgCVnHTdRPg2am", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TQMAXUjRho49fsiS2wYVYKYFQdse2JJeiStWNrKBh8ujVCy7g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 103127 - },{ - "name": "bts-evg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b3Vq2NKqxMs991HtuZRhVuG7vvv4kMcjbt9L7qJYqQUrLatJU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b3Vq2NKqxMs991HtuZRhVuG7vvv4kMcjbt9L7qJYqQUrLatJU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 677 - },{ - "name": "bts-botfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g88N5cotavLkBik5BqS4R4yRXRwjyhvNKpnquo2g1j88rb9Li", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g88N5cotavLkBik5BqS4R4yRXRwjyhvNKpnquo2g1j88rb9Li", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3984 - },{ - "name": "bts-zheli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RMGc4hi3a13AXx9WEiTHSUxkjgnmmXYhmWntr8gUCrsUvM2Rr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RMGc4hi3a13AXx9WEiTHSUxkjgnmmXYhmWntr8gUCrsUvM2Rr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14928 - },{ - "name": "bts-pal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tkUTuFBDowGTJh2UKgtseqLtpuacPnnsakGEtEyiADrKnZJkA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tkUTuFBDowGTJh2UKgtseqLtpuacPnnsakGEtEyiADrKnZJkA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543681 - },{ - "name": "bts-faber", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST832JsEGYJqnJMa8AZK1crYSfGdQZxQ7CHKkfbcGZpAwEjBvueX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST832JsEGYJqnJMa8AZK1crYSfGdQZxQ7CHKkfbcGZpAwEjBvueX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24834 - },{ - "name": "bts-capr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ArDrcE3S62SUggPCX8zrVJ63KgMxdvf8vLdABJ3gzHTsZQtgM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ArDrcE3S62SUggPCX8zrVJ63KgMxdvf8vLdABJ3gzHTsZQtgM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1799190 - },{ - "name": "bts-rick01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ijFG6kFfyk3fBFBKAbWoxHwk5W8mSouudHWjrUemoMbDpMHxC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ijFG6kFfyk3fBFBKAbWoxHwk5W8mSouudHWjrUemoMbDpMHxC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379 - },{ - "name": "bts-btsabc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67kg475tw3uyMReihvpYwDwcywCJSnUPo7zKHwmFkha6uj8wzU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88krQtQf37ubSG2cMkfBhytV4DZ8GKvsMEwAU7Nt3jpunFZhdw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2850686 - },{ - "name": "bts-roadscape", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QhCpQSAxoJGXYfpqaG3WGrEYRg6Ht1uUnGfdYx5vnTcR6XDcf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QhCpQSAxoJGXYfpqaG3WGrEYRg6Ht1uUnGfdYx5vnTcR6XDcf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 381521 - },{ - "name": "bts-laith", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SzT38Nac8tdZKX4UdQ5rtFigUtgzvzaaQrQtc1WhPuekznufv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SzT38Nac8tdZKX4UdQ5rtFigUtgzvzaaQrQtc1WhPuekznufv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cobb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F5fRAe1NQznfZ6TQaou8F8vGsg6nMhgFCiV8QtgLHmx5D67xu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F5fRAe1NQznfZ6TQaou8F8vGsg6nMhgFCiV8QtgLHmx5D67xu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2332964 - },{ - "name": "bts-ybcinvestor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MDpCkutkFzbmAw99SRxBxgiW1mXhP9aFRx67QJRExQiLYoYYg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MDpCkutkFzbmAw99SRxBxgiW1mXhP9aFRx67QJRExQiLYoYYg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-seamus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uR44YAAy4tWsTTjAEeXDyqYmDDuqYqgQFUrM6S5UzQM6GbwRi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uR44YAAy4tWsTTjAEeXDyqYmDDuqYqgQFUrM6S5UzQM6GbwRi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2196464 - },{ - "name": "bts-bsx1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TQQ64ZoUfjbQktRtfMuNSvy888qptpHy5Dqniv5LHDx8Gpoqi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TQQ64ZoUfjbQktRtfMuNSvy888qptpHy5Dqniv5LHDx8Gpoqi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-holytransaction", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vZn8RvWbxYkFujq7szyeZTKCKzA9mnnnES6Eqm4fyGEDXS4G5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oiaSidAPvaqDUZR7poXnhJDd81Ebx7qqF8JCpBHzGMjuTQcDq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119256 - },{ - "name": "bts-modeyou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST726ZPfCnYf5miW8p2uufp4LwYY3AvoJ8sGKr4eMRsBP42VVoJU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST726ZPfCnYf5miW8p2uufp4LwYY3AvoJ8sGKr4eMRsBP42VVoJU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-cryptfun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LtdxN5zVicj1MK93Bq1wtknnshwXXvoSJmqpxXysY9zyQ6XXD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LtdxN5zVicj1MK93Bq1wtknnshwXXvoSJmqpxXysY9zyQ6XXD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bitdan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mcRyV1du5A2Ub4oX1ijWmnjkW9PH63eBmKFJ2dPSF46p7j4Qd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mcRyV1du5A2Ub4oX1ijWmnjkW9PH63eBmKFJ2dPSF46p7j4Qd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-jonvalencia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HpjaW4HWyGyxjqKHifk4Sk9YGdAFpx1UEoqHmX8bRXvib81Hu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HpjaW4HWyGyxjqKHifk4Sk9YGdAFpx1UEoqHmX8bRXvib81Hu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53167 - },{ - "name": "bts-sevenx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DDLD9xwQUWtaxKy3dASENirKJFsNYD4WxTi8GbdJSoSJCtYxX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DDLD9xwQUWtaxKy3dASENirKJFsNYD4WxTi8GbdJSoSJCtYxX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10539 - },{ - "name": "bts-waxo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zeAYBMd4aPPq2GYrPrMv6QuFu83nQTeNWdkpL29xsoCG1ewxp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zeAYBMd4aPPq2GYrPrMv6QuFu83nQTeNWdkpL29xsoCG1ewxp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 289 - },{ - "name": "bts-btszzh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zxYDST6UKVBJs2wSQ7eTY9TQvJKA4RFDeAxpfnQqZiH23rsv1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hY3ti4RR2f67UxswdGTRRR5UQ3a1WBuFi8BvGg759AHunZbJR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1265 - },{ - "name": "bts-btszhqxf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NtNKbprhAGJg8jimKRKyTiasdxTroUhrAXC8LAxDCeMxpM8Zt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FcYhJus5sZpTTZ39dSjquNcuwhYKhyGuZxuvrSWjwXrdiCWCi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21578953 - },{ - "name": "bts-btsfunds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GSrAeWNM7taa51op6Q8Lx6zXAHv3QuQSg6jLvvzY3YVtS7xeg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7w89nx5nLKPsZW4Q9EwVMXLjnxBx483zH3UAkvWT7QdSkzrhCs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1035 - },{ - "name": "bts-apophis974", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GoEtJhh57PA4aXdEuCDZgWUgyLUj5NNzUHn9TuMXs3YxEmrkt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GoEtJhh57PA4aXdEuCDZgWUgyLUj5NNzUHn9TuMXs3YxEmrkt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5784 - },{ - "name": "bts-xiaobai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YMYECtHvqZPjaQNgR4rcN2s46nkaPKPxyWPX3rNgMr8hjLMZx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nQA23viakRvkaoYpGiuf7chvF46yZFd3RmqFqbyoFxTaJYnav", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 68482 - },{ - "name": "bts-firstbitshareaccount", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W84NkBMpNsxSB65zRE3U4pBFUz5F48KbvGkxtAffEoXRKsqqK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W84NkBMpNsxSB65zRE3U4pBFUz5F48KbvGkxtAffEoXRKsqqK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2366045 - },{ - "name": "bts-abot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aetiZQgFScYt5cFvvL3WBS9f8oNEsPebNCyBge569JoDa7sc9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qtXAipVBerN3Zi2BXvs5Ju4tYqwgdmTJohWU2Lkz3Mf3f5hhs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1164945 - },{ - "name": "bts-c0m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XnkkoTVDgCHt7bXkL3hthY2kcgb7CqkE1GWKCGscVDbFS1muS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SmrjeaPVZLTGMGfEkt5DYaWMHAntkGVDFc3nxe3VgkEEvsqap", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-mark0z", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nn7fUyjQD8C5qW8uh1SyY7K9Pw3Qu3Kf34dWTuTsdd9Ma1wkv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nn7fUyjQD8C5qW8uh1SyY7K9Pw3Qu3Kf34dWTuTsdd9Ma1wkv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 199364 - },{ - "name": "bts-delegate-dev1.btsnow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UY4R1mmaB5XLzvncFFsahPuyDktBJwYjVCb9Fwb37a1hNKbir", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qixER3gN4GtEcipXD6oUvp4Rnxtap1Y1ihbPcQcNDKP5kvWkQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 846847 - },{ - "name": "bts-cryptofresh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YteKwrHMWCcz4daJ3yYNuBHkAY2nZpJ53TKwsuUfnpQYxdXuv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AcSwUTMxEuigwjKwwFVdFDkiM6SHqKqXffqcWfgFqddVad9ec", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 388926 - },{ - "name": "bts-emf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T8K1iaP678mqcnB35irSe1kmeF1mMzSpANVs7Mqag5VUWx8Lo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZnchTteQtDoDehJp3eoLJmwcFX1BJ8xLCVRnADD6xCrYzRjto", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1713 - },{ - "name": "bts-bitsharesbreakout", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xKd9eBZCrb9La23osdN4puM9vsLq5MwM1W4mKyzy8LGq3sfFP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BuLxB48BCHXgw1fcfpKHC8AQH48BVoNdQPBwVCwzy9VCvsBce", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-btsbreakout", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uiT4sRUfgiKhs2esCnnnLibwHtMN4TaWg4GSMfST8vXmJAyZ9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KHYCpk4wMAkaCyVojxEuZU56pR6sXYBqL8cmVbmUQVVuZ3bdw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-rumz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M17GZNjvwtYcF3TtBVn9QNyQHtX1Lr3TaKwBdz2c6iN7PkrVw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M17GZNjvwtYcF3TtBVn9QNyQHtX1Lr3TaKwBdz2c6iN7PkrVw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 826521 - },{ - "name": "bts-lihuajkl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WYrpo5YDbjH9BTgqVdprbndCrT862WqwoMekw9VhHwHfPMZas", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WYrpo5YDbjH9BTgqVdprbndCrT862WqwoMekw9VhHwHfPMZas", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-dgf888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N7j29w6Yq4s5ZmaX19r3SyD5rh5QBTVVQB2ELg6ShNY9WUjLs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SyjAbMYjx6D7dSzZtZddod1afcKQSbg8fwvD8r7ioD1T5RkPU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3768349 - },{ - "name": "bts-cyans", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xyAZ5VWb21naHzAbYxXZEFVc7P4ZcQQpnT1f6cBJVtrKBS4qH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xyAZ5VWb21naHzAbYxXZEFVc7P4ZcQQpnT1f6cBJVtrKBS4qH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bitsharesblog", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oyS8NQRbTuJcHJ2SmMajg9We8C9sLcZmHN8yjaMPXxwZVci3j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yzVuXfpZ25x37CWZ58cKdgDB8mGXaMuX1bESSZLdWeCCfHn7E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-applecart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59c5KuadCzR3EX41Ba6qySyqstsecfwsNif9BDXroeDoaV9x2R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59c5KuadCzR3EX41Ba6qySyqstsecfwsNif9BDXroeDoaV9x2R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182 - },{ - "name": "bts-jonnybitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LDaEoUZjP9xgXYMvhrwp2CKnsSrxTv19MYK33c6j6ZwnnzeDx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LDaEoUZjP9xgXYMvhrwp2CKnsSrxTv19MYK33c6j6ZwnnzeDx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18887619 - },{ - "name": "bts-gatewaytest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dvyrpghWB9vmcZtcJVWJtYhLCQ4S8ptriskuLv45Qqi4FDe8X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SekcLhriLeAhtLrnNhoBjy4tqSgacgnWm95WB5x28sau1DsoX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1264 - },{ - "name": "bts-hqd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jWU3gKBHUa4Ktttxx1GxkiqsHMTLZhAKF2cY8FVZ48qFE6gpk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bwpLiwnTHnDZYJpVBvALgVgwWMYhnY47SJWghAdnWZ5hQtaDo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-page01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xzPDzAXK8AzG57968kqXnX9gqHFmzMuKRnd9FtEr7MDx2Yiu6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xzPDzAXK8AzG57968kqXnX9gqHFmzMuKRnd9FtEr7MDx2Yiu6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301029 - },{ - "name": "bts-jayesbee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JvkYMwQbmVvhBncT4LbjC7MUv7CSCaesfctvfpUSk5AKLJV9W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JvkYMwQbmVvhBncT4LbjC7MUv7CSCaesfctvfpUSk5AKLJV9W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51948 - },{ - "name": "bts-lanky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eEVmSTFfiEDu4hXHuEXSW3m8WjbycMMZoT6pbKJkumjYr1w3V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eEVmSTFfiEDu4hXHuEXSW3m8WjbycMMZoT6pbKJkumjYr1w3V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7363 - },{ - "name": "bts-triox-delegate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aRgEtnCAXt18WVTeyvu49qNmGeVcHiech2VQYnpfom97eMxxG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jnprUyAGGJ4M2HGD1kKNN5NgE85anQEdsvrFpLX4nvQ4CxA2k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2799 - },{ - "name": "bts-delegate.rgcrypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7snRbY5eLBVM2mDKkxgCxvEUnGguXSCF82KVsLUMVaRBNhiivQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BXemr2sGjoEWnrTundJBbHHLLYR5pJfFfBNK5YjYYejaJrz8u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3353 - },{ - "name": "bts-hvs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vQLGaybmasASWvwSYdAeFNgzcaS36pY3T5fM2bsFcA5Rv2XaZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pHqBXM8RsdzaBPVyPVTNJanWKNa12m4YU9eG8RU89esdZTdni", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1227 - },{ - "name": "bts-rr2cornell", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QQNfzvGhYT8BnHMEsavadFBLJ9duLhdt8NDF9ppFiY85TXvTg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QQNfzvGhYT8BnHMEsavadFBLJ9duLhdt8NDF9ppFiY85TXvTg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-qq358649669", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Czma1A8GXt9geDbTzoD3dX8sjQEzFQTXAK4Qv4XFeLhMkRsVV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DTwWUneJq4q4F2c7kzEacPeFGLaJqWS3TBFPGiTAJxWsEVeRK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 218 - },{ - "name": "bts-crisdoe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zwVyrsYqLn2eiqCwhvNPQ4hoRcdP5dig2nBYtqx9xXtAneSor", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zwVyrsYqLn2eiqCwhvNPQ4hoRcdP5dig2nBYtqx9xXtAneSor", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-verybigman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gsew8shbuAE79ESrALWqEpBwHiv5gqAxjVQKjofL3jp1Sy4CB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gsew8shbuAE79ESrALWqEpBwHiv5gqAxjVQKjofL3jp1Sy4CB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38328 - },{ - "name": "bts-chromox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oXePGHjmx7CKoPynckas54siFuXSK7ZhksyAsfoikHCF4Xeou", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oXePGHjmx7CKoPynckas54siFuXSK7ZhksyAsfoikHCF4Xeou", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3296 - },{ - "name": "bts-thread", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JAi22eZTyZdaPSGrCs68oPaysz3kAkvvvQw25VzA3jMrrJTTM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JAi22eZTyZdaPSGrCs68oPaysz3kAkvvvQw25VzA3jMrrJTTM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9797256 - },{ - "name": "bts-pyhta4og", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YgbWQ63o4YJy5FbD5UWzznuBsts7zEp1REZEzmueYsiKBBZ5m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YgbWQ63o4YJy5FbD5UWzznuBsts7zEp1REZEzmueYsiKBBZ5m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 618971 - },{ - "name": "bts-bitcracy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VMeXgZtLB9V8DSL1PNwvxHkYzRFr1uPBsjwnZrE9p27te49qZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DCV26T7Yk6p5GsYmkQjsyTbpfXeAKZYijMJNNrxYiruxLXTXk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-ptcgroup10009", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iTJMwJTywQuKFvrGjjKvPQCLLUBEdBiHLJLYS96cVmaQZSMEu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iTJMwJTywQuKFvrGjjKvPQCLLUBEdBiHLJLYS96cVmaQZSMEu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-mayday", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Voz6DzwpE3NzzzckeD3eeG5Q2R2gAufXMoaRQa2dt8c1o7a1h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Voz6DzwpE3NzzzckeD3eeG5Q2R2gAufXMoaRQa2dt8c1o7a1h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-alja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tS3FPeBNYazZGy9ZU6R6FRYk3iybJGWy3n6YLZmm5zgoGfVKd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tS3FPeBNYazZGy9ZU6R6FRYk3iybJGWy3n6YLZmm5zgoGfVKd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-helper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ehczAL5BPEhJPW4Zs6EYLZtdzumuye5VReg445aCX6GwLVY4J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ehczAL5BPEhJPW4Zs6EYLZtdzumuye5VReg445aCX6GwLVY4J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-klsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bgKQSQL9Tgp2i7jrvzxnynwngzsdvY7xnRVD7eb1PmHQxcswW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bgKQSQL9Tgp2i7jrvzxnynwngzsdvY7xnRVD7eb1PmHQxcswW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20621 - },{ - "name": "bts-metaexchangebtc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tL52BShHadNnSSjdJ98LmbBP9p7DfvAeabE9qFYVvUVL8kEur", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST549jJCfuBX3ruCyVdPivMendBoX5hYE1LCvLj8TsV7gSb6roWd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 102 - },{ - "name": "bts-dianzilai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b2RCh6WkbbNaVT6nfXAh4zjFCU6VrAoZunsW8KDu6gJNwmcVq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b2RCh6WkbbNaVT6nfXAh4zjFCU6VrAoZunsW8KDu6gJNwmcVq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 190 - },{ - "name": "bts-spectral", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LpZEYG6QzNiD9sb6j5AfFPH8rb5ofWhCsgjaW4dJoJpjnM8hJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LpZEYG6QzNiD9sb6j5AfFPH8rb5ofWhCsgjaW4dJoJpjnM8hJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1990817 - },{ - "name": "bts-buffer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YQFTgab5WwdmsChqtmh214Cwq6eEK22FRdCkU4zLdVJtKSGSC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u2ndAHSRQ2mTJMjnwjmdVXRdCqPrfGghRNdzTdGpAV27eFgw5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-work3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EoYEJrDhfnbMg9gdV7ZzPZoFTQLASTDSNMEzKBDvMeKUjtrWN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rnqVDQ84kruUX2yMM3Mq31QSNHbrGmbugPNDBRLbZvC3mU7zz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-work4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VEiwiSp9LhER2E1CLtwewz6LBVp6Y2o3CLr2RikJ3GEMi8bv2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W9XmzmHNp5aeChAfvyMwDCV3Pf5BtMg4nCdUUexzc39fouRBs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 718 - },{ - "name": "bts-piro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oLgQks7385kWXB9VpXwctQ2KbnLk6yVCUgS925HSL7Uw1Wjwn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R2ZKcPw5y2V3N39Yd7dCDojQeakhwAQVo4iuad8UJ2zjaunyn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177 - },{ - "name": "bts-yourmom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RvZSBMkctJv3kQQa4VHyiEs7Uo89nf5AMea985AMspQZmAZZK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RvZSBMkctJv3kQQa4VHyiEs7Uo89nf5AMea985AMspQZmAZZK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-highlander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MjLKnHrbt9dXwVTvd9TFF2zDR1widKYt5SVvZ5HYPzkGAYS6u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55RLirXTaPcrdK9RAJ9tf8ZwDdXxMBgV9CAbt9RX18YhWVJaDi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-zwk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7i8WgE3co4poyL7aw7PpmBkCz7BwVRS3cvJN9sTiwu5Dm4e7Mc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7i8WgE3co4poyL7aw7PpmBkCz7BwVRS3cvJN9sTiwu5Dm4e7Mc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-acceptance", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gGnN6RVdBQuhMqSWH8dSpWWFtwgLy6HDfFJkJe7JbsYWnsoep", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gGnN6RVdBQuhMqSWH8dSpWWFtwgLy6HDfFJkJe7JbsYWnsoep", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-btsbull", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wkTvv2b6cd3pcBW9P7JCbXRqX6X3k4kTN6nXXmnxMN2PLj5kY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wkTvv2b6cd3pcBW9P7JCbXRqX6X3k4kTN6nXXmnxMN2PLj5kY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347642 - },{ - "name": "bts-blocktrades", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53ehf9Qoeg9o4E1KuxdZRXCVg3Z9ApbEDHVdQhERDJDEFkPkGs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MmcVDiutGynSpi5vSr8tWbrTDWYWpAkTXUD24sJu45DBFLSRK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119933473 - },{ - "name": "bts-j20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89mojNymdQcBxrrah8QAwmDowiinvKeu8jN9j8nchiungAr1kt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xTYUQWEojhsfBG5kcpmHoq9SvXsNd73qjAC1bFLKKiQv3CSpZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-bts-v.yao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xMrXupa2g5hHACr1wFueByk2ntw8fGVLzCUvpA92tN4MykKVx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xMrXupa2g5hHACr1wFueByk2ntw8fGVLzCUvpA92tN4MykKVx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2204 - },{ - "name": "bts-xmuiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UbR9BbSEn5vWZQR8GfnhfE27kiPKaN2KmNmQEs5PsNscXKQPe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77DWk4LFJ2CNv45VCkMrJF2c1Ly8WqvZ7EFfdhjm5iiHBjZu4F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-dnsvesting", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tVvZopdbrwb5hB4jXmtixLG6T1oMkcTcX1abs5ufQFdn7q4nf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BzUoa2KzxquAFVbacX9maLQCuDepMF6zo1RXQh1GTbx2qFxyi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-tim.mclane", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mQGbKZgUCZnzuGr3MCNRfnqKkX1ApdZHpZKuvSDMSy5Dmd4Hv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82zcfUDW7m422hzA8gUvTMYG5DG5suub7vyHxSRsNsr7TsrTGW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-acct.advisors", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SsMiAcBDanvNWvBrYh9Rqh764bBg9uGpuE3uTWucoYmPG7i5Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RZpsqkpKX7ZRx7mm1A8dzR82iuhUJixF2ZaYMgtvrbBoRxkyB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1312 - },{ - "name": "bts-qq930124", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zAjE5tGfyUZAdQzfiWaLv85ez1gudsgPpfLWjZDqx1b36iiUb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x8EQxaaHwx8aMv4MtdZe118RQBZu6UbWE4wew6ev1i8zHNdZs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 273598 - },{ - "name": "bts-altair", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kGagGefmycyHQBxFn3JM7gK68mWkboTuASALVh4nMceZhNMJa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kGagGefmycyHQBxFn3JM7gK68mWkboTuASALVh4nMceZhNMJa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35814 - },{ - "name": "bts-minebitshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81Rx7gQXKkE43a57E6CgiKzCGJTW9SE97WdKDvgMhspg4z5Ats", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81Rx7gQXKkE43a57E6CgiKzCGJTW9SE97WdKDvgMhspg4z5Ats", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59 - },{ - "name": "bts-jameszoromski", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pKUDo5Ea7PHogv7RD6vLKKKqGhrok19GE2w3MKFreZ4DavEpz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pKUDo5Ea7PHogv7RD6vLKKKqGhrok19GE2w3MKFreZ4DavEpz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8735 - },{ - "name": "bts-welloop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hc29WsScMB7RR66hbtRaU6snQ3b14RrcxXURzrDLoLxm7BfTW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PLUdc5bAn68xSN3gV6Lk6e83mMKezMZHwUGpzWaS7p1mNGLWK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19342 - },{ - "name": "bts-tangliping", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53EbpkucAVmuDzy6qw7hDTt1yXbiSGX3q5KX4Mn5txrZ39d2MV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aZBd8nULg5G6yt9izxKUaAmevjnjNPqmJD9gLTNNZAic3odMB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1506 - },{ - "name": "bts-bj2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87HhthLYFXiVCkZRxXZCvPrCCCZabzjvrTvEW5PxxZzfxEV1Bo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87HhthLYFXiVCkZRxXZCvPrCCCZabzjvrTvEW5PxxZzfxEV1Bo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 862 - },{ - "name": "bts-lzx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63qLr3MMxscHV8pH2G8jfExen7NEVS4BacmCRYY2cxJBuWcMUp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63qLr3MMxscHV8pH2G8jfExen7NEVS4BacmCRYY2cxJBuWcMUp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1006 - },{ - "name": "bts-felixxia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ss1AzAvDXz34UKArUU2VTa83GcnAERP2nUZ84nvLMAXLeRCkB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ss1AzAvDXz34UKArUU2VTa83GcnAERP2nUZ84nvLMAXLeRCkB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2606 - },{ - "name": "bts-logcold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SWQ8sa7DektMQDX9mweu9tuQjDmgYLMmuxzU2QHMnVE6YYA98", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dY4JeNPSNYz4pNM8PPbmRSyEvTV3ofLvgfH7mpdjb7XrdzuAR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 703 - },{ - "name": "bts-winner2018", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yc3VR5m1rjrkiWccbDpvwpjcq858mc5SLsDqiSsbvcSGtUVF2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yc3VR5m1rjrkiWccbDpvwpjcq858mc5SLsDqiSsbvcSGtUVF2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2857785 - },{ - "name": "bts-waldoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EgoJdpGRPnqyS1ayt5f671eQAZRbc6gjCuhBbLb1bPYWv9AEN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EgoJdpGRPnqyS1ayt5f671eQAZRbc6gjCuhBbLb1bPYWv9AEN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176837 - },{ - "name": "bts-zerro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6na6QoHYZKb49qEDWjPfz7sD7Yw7btnzhNQDn8MDdGjQvhz4CU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6na6QoHYZKb49qEDWjPfz7sD7Yw7btnzhNQDn8MDdGjQvhz4CU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 951 - },{ - "name": "bts-btsmoney", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZXtw9gFvNo1TW1Zz3aoJUwSRocZjvAvUfvUS1TgLbqBR2jriy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6G4eMFf3tA4daUJ6Ld75LvrWAoHGZJzgptgRGSqpiDsazDX34R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-fallout-complex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KFYwMFodzumAd58zBkqUfzBVqE9Wbq9daofRSTtCV1he5BpWg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KFYwMFodzumAd58zBkqUfzBVqE9Wbq9daofRSTtCV1he5BpWg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3311539 - },{ - "name": "bts-eins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84YGUNrZb85G57rT5c1e97Si2mCNsdnLndufkCaXEZKqBgEFEK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84YGUNrZb85G57rT5c1e97Si2mCNsdnLndufkCaXEZKqBgEFEK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 423521 - },{ - "name": "bts-xinid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qoeLYJGDD233YKxricrN28nDPEUtw879yMfzigUfv56Ai8KHX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yhPJVYYJ1Ea5ByyKtY5g2TY29d51TyC6qBwrmdRNvM6zpabRT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48685 - },{ - "name": "bts-complexring", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LrQqq5JZgLe1E1krkALyzgcgMuFGxAYXBPZLHW5DmRtSNU6dM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LrQqq5JZgLe1E1krkALyzgcgMuFGxAYXBPZLHW5DmRtSNU6dM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4049363 - },{ - "name": "bts-shapeshiftio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KZmJ8TajtZ19qS6FDrqNrARa323xPn4mHT3TfsFD6Aap3SnjH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dj5CNnYz5qApftHYUQ1GRBAoy1PtBorGn4sBHibVMAwufZsMu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1039622 - },{ - "name": "bts-cnfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gpNTvmG1xU8yW7uyQsihaLGREJFfZtWo9zPrHqEX5DEdKUwgV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yp2B2LDCQH2sd4rAs9ZjqHKaxh9KynAsuehS6NdG8fBU8mkqW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19424692 - },{ - "name": "bts-admitonetickets", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JAkT3UKL1rPKZdTbzRNoJMVgHuEA7p6TNdY1dN6ULofUUYenx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HZ3bKUAauNanUUp8y6cWqcaKuiEPLYMLmTv8ChQn3oT6S8yny", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1883 - },{ - "name": "bts-redphntm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mT9JprYob1oWhDbXHhTs3jLHLm5eNrKMG8xdU1HCLb6kVgrxZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mT9JprYob1oWhDbXHhTs3jLHLm5eNrKMG8xdU1HCLb6kVgrxZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1635 - },{ - "name": "bts-bitshares-songha7125", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cuNN3ESGbFpR8ZsAmNikwoyoemX5Hr76uXWw5bzwNHZVW6pVu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cuNN3ESGbFpR8ZsAmNikwoyoemX5Hr76uXWw5bzwNHZVW6pVu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-ander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MAL8L8GPHb9ED6NmjQZzDy4oVR8228ix4rarGNA7bqadjAD7d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MAL8L8GPHb9ED6NmjQZzDy4oVR8228ix4rarGNA7bqadjAD7d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3964231 - },{ - "name": "bts-bitshares101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zGSmKugeW23iDefXTmr2NS3bYXQetpqowYnbU2WY4bejsWD8H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zGSmKugeW23iDefXTmr2NS3bYXQetpqowYnbU2WY4bejsWD8H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21486 - },{ - "name": "bts-yaozongping", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DZ2YQENikJjfiQ87J72g4Ea6EvWxQ1Ncx4E1Mx6RrZPwFwoTo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4triN2kHMQ7w8xrZExNW8nEK3p5s4LDGMt6HmuLYV7vTFA9dxc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60388 - },{ - "name": "bts-xruspro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52x5QWj6STwGsmxmE5LMPhrHvD7U82FtGBRsgxcZmDJcVQhMZq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F1765eekVSfrSTzPyt2VJJ2UhESHGeshkpgErbygRMiRGHoKw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378 - },{ - "name": "bts-lapause", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JN65XvSN5yX6wfj4B9k5HeBQo4frPrHwomCPCmcSFqLS4Kxx2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JN65XvSN5yX6wfj4B9k5HeBQo4frPrHwomCPCmcSFqLS4Kxx2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-necropaz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nZ756SpQrLCzmgcMEibq5yXcWZLkokdGjrmcaGviPb4D6NUFM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nZ756SpQrLCzmgcMEibq5yXcWZLkokdGjrmcaGviPb4D6NUFM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 386995 - },{ - "name": "bts-swedishspade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4z9bHdVT6btayMbTRM8JBUsE5spyQT3cavuH94V1pKGePHait8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4z9bHdVT6btayMbTRM8JBUsE5spyQT3cavuH94V1pKGePHait8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-jsdl16kb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XfRzwCaTchKyt5EbYD8Hn3k2yCvFzeenuYdxV3qXv7aoDBM3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XfRzwCaTchKyt5EbYD8Hn3k2yCvFzeenuYdxV3qXv7aoDBM3a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185681 - },{ - "name": "bts-bts-win", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fR5TyesNwT9Qv4odaodxe6KiySPX4twHGta5e7bUTfgDu38NG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UQsbmhWZmRfAwn8aznjJbMyMiiysA6LKRAP851KeD1hXr9Jif", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5951960 - },{ - "name": "bts-exchange.btsbots", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77YWywAYXLCd2habdqHpWh1EZ5MXYhYfTPCvBt5wqUdUos6cC5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xd7eKqebJAZVeXNmSvMJGcTFmhjFF1J4ZGWM7zmreiUgahgd7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12119361 - },{ - "name": "bts-dev-pc.bitcube", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d6M6iUXSJfAKMkXGvSFKjXLwPGBUEz6kvVypbdzVxsPX6214V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KhkT7pnM4rv4orBc7Xo7wzzowgQNW2jjh38vUhsx6cSz6Y9p6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 132845 - },{ - "name": "bts-bubbah", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56d931e1rpGcFW9w8W9zNndjB6RTvy3MEqQZaFeddpcR1AJ7Ff", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56d931e1rpGcFW9w8W9zNndjB6RTvy3MEqQZaFeddpcR1AJ7Ff", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52368 - },{ - "name": "bts-armin39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sJFixuy9WmFdAWD5rtb21D1bGLREKi8CMzJuzjp9pR5agxZYn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sJFixuy9WmFdAWD5rtb21D1bGLREKi8CMzJuzjp9pR5agxZYn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-flypig", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71iifbXtkiLLxYPHsmNTgBy15H4vMjZt3kHcWB8n2E1183Lbr6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nVEthrpoov6ma1ZWNyeVJig6QH6R7XgV3X9nwLJ82MKNZsepr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 78643 - },{ - "name": "bts-zbt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66EMuwb1sr8xSgk3Nr2xRiLMjm6XpwWujKuiMSzi7rJ1CVyT6m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66EMuwb1sr8xSgk3Nr2xRiLMjm6XpwWujKuiMSzi7rJ1CVyT6m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 366 - },{ - "name": "bts-morningtoker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZL6GbAFmPcdN2swmsHbyRncPLuKTkU9hd91F2FekrP8FdgxhG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZL6GbAFmPcdN2swmsHbyRncPLuKTkU9hd91F2FekrP8FdgxhG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 116434 - },{ - "name": "bts-bitshares777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XCQVF8n2787EEqsnHW4gdh9AtZVvQnXMuiAk8RYXD87WK2acX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XCQVF8n2787EEqsnHW4gdh9AtZVvQnXMuiAk8RYXD87WK2acX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-asabovesobelow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J8UALhi7eNTgR4AcvUVHsZU6aVxz9uciTXKdq7mn4RQNcoKJz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55u5RJugcyLCCwutKNE6a5B6wKKUG4NyNUiw9DVaoYikY55a9Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3567498 - },{ - "name": "bts-lxw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rMYjcYaSSLdtjSkdASsU3GwaWPUP19bnJNEpLaBzuHTjeVRUY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rMYjcYaSSLdtjSkdASsU3GwaWPUP19bnJNEpLaBzuHTjeVRUY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1636 - },{ - "name": "bts-xrussaver", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k4S4nJ7YD4YCymAtAotoWWAoKDYWhyA78vZQR1DMu2QLWFauw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T9eQoKcD6xJd6Q18Cfzg88sWUTx4xDEk8FCwZ8LkKTyJ1vn48", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ubits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jsUxHyihsaeL84F7vgibA4FtFzwvGfSGpmrnjPVA4X6eNwizs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wh8HPV5dPMNV5Wx1agQXbno1EyRSkGjZUmgV2FFJnwDH2j34t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-skunin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FxWhSAUVauoyu8sMjdEB2wueeFFhpixS1NMETM7dNDSS3kCLG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68wN9zPB9SX5x6DfRANWZ16Kgve4aDru674kFSU2dnbs864uuz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-jwk56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81JAyxwhbNaZ85CrMd2LZgW7RhB3iwicNcfRn5TrBuvMTMfJTq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81JAyxwhbNaZ85CrMd2LZgW7RhB3iwicNcfRn5TrBuvMTMfJTq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1237090 - },{ - "name": "bts-jwinterm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qAaatV24GS9tx7FLxd1a4AuAAkcRgbvPVMziFgyrDQSBhnu7p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qAaatV24GS9tx7FLxd1a4AuAAkcRgbvPVMziFgyrDQSBhnu7p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 98692 - },{ - "name": "bts-wangyangliut", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RPCQ9voSLGfSdBjoKuzzWPN67LTZgwGNoXBJBg8e5RNcbzfHV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RPCQ9voSLGfSdBjoKuzzWPN67LTZgwGNoXBJBg8e5RNcbzfHV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-pablosf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kwW4DoQwvp7GHLQmFxH9MKeEAtkobZzox62Ns3WDDkV1UofM1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kwW4DoQwvp7GHLQmFxH9MKeEAtkobZzox62Ns3WDDkV1UofM1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 157 - },{ - "name": "bts-bearspear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AFj32VS7BFC4bqJpgZmpDoUUEwS7SJNQzpVPwUohvqTUvaSg1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hTnLbjcHsVW5rsa7PmKD8mJTNWMC8iH7m74hFGZsQXUS6rTCG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18622 - },{ - "name": "bts-mindsage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jt77eN38hkpuRcyPZp515PJz6jKGZQVEjxtMinTd9jSYcfGAs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PwUgYY523ip9zw5ggyYXWTQSdzHGp1r4G4VRNfWs99t9Y3uEG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52196 - },{ - "name": "bts-starchild", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JTd4qu7xggbwFo3gDVpsiC8zSFxueeazrWL753utzBR8Svo3h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ytnrZNB83MiiRy2NEpEtZvwcx31FseQnQK1vUu3VcLLRPZVbb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47222 - },{ - "name": "bts-soco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S4BmfW4wrwNhu8CCQDmNVCNFMt3Y4RnDEo6BBo87PpDmmdt3g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S4BmfW4wrwNhu8CCQDmNVCNFMt3Y4RnDEo6BBo87PpDmmdt3g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 102431 - },{ - "name": "bts-nugpro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F2poyKmY4iYuSBZ7TjNZYLeD57qGz672K5SdVJdNFcA68pRT4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F2poyKmY4iYuSBZ7TjNZYLeD57qGz672K5SdVJdNFcA68pRT4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3766 - },{ - "name": "bts-coloradosprings", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78oLBdp3MnAqfoUbU747yAwEQvGCtUATNLMLWYA3YnVvFseZqA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78oLBdp3MnAqfoUbU747yAwEQvGCtUATNLMLWYA3YnVvFseZqA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3721 - },{ - "name": "bts-xiahui135", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RLmGPK41W5najCubaTLqp9JEehKKhnET2MKj2iLQZz2GBJ9Lk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WXYfyYCdc89DotHTSs6E1uWSiKAs35Cs64EBj8TjALcSCvCpU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5690 - },{ - "name": "bts-wifi1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56bM4ZpRpcjxs2mFyw1DrM8gjNJndeFpBTkvJGnRdXimxWGsjU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JdEgCmugJcK2Hms9xY2bpmLqZeBzDh6gakpVPPHAZMHMnFvnb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-lovejoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rSZjsqHtpKYd4XNfY9CXgvVfUSGLFZT3fXfqGwbDL8kvNw61A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w2CKGuxCAkC1FNpmUHXtvLUWt2mMdzGdP4YMNRRR3Fxg7hFfV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 558799 - },{ - "name": "bts-alexpimania", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XY8YS2PZdkL7ea1o46onwpNpFfD7iXeJvs3jJ2k8KXKqQ9uCU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XY8YS2PZdkL7ea1o46onwpNpFfD7iXeJvs3jJ2k8KXKqQ9uCU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-rhys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XeuQZPWRwJJQmtakefoJZbPWt4v51cdsDASS7i3HRSJUXn2Dy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XeuQZPWRwJJQmtakefoJZbPWt4v51cdsDASS7i3HRSJUXn2Dy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-giannet4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XWR6FnWspSVW57fFwbqcCVHQ7qxKwamRSqnP32AHNDySMzg4v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XWR6FnWspSVW57fFwbqcCVHQ7qxKwamRSqnP32AHNDySMzg4v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 250715 - },{ - "name": "bts-kalinda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TZqfqa1R4K63UEgQ7ZgMp4CiFRCvZHHEMDzCwvtyi4j7e9zSA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eiCCV2eQhWYLabY5dWhgpZ4TdyWuu5XQvYoqVePduryQXMRqC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-silverback", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K3JDS5H24P3t2YWksqMTQ5NKZGynR4fAEqSGwqDUtYcBNbWeV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iG25VnvRkDEeh7zK6bZr9iSM4rKcnZQLG5Rh85xdvfNU3ByUf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3766 - },{ - "name": "bts-rapdog", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64LVmdpDxsDjCNUxAqf5HdD4UmvVu8Z1WuCVCeCQ7p1QkKsWom", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KZQ9duNh9ptRHcfxAe4FdM9T2VLacpEEAY8uBHtUou7hqDhxi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-unthinktank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hTfG6ZRdPBe4KS6L1rBpA52ahqT6zmaMX3dh58yeHo9ov74v8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t2RzdKFfquGYpSpX7fHQixVzucdFfRE6gEoYCWb7ezLBPDQpG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3766 - },{ - "name": "bts-aimee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DyCp7z39pqeYjmX1FJnPhjQ9mruYxbeWkkxDfc6b8fBNFJeWg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j2RHriJvY8icqd4rM3Fy6fnnWmysY1zJZ5SYfuiTroVRyuvei", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 230469 - },{ - "name": "bts-btsvpn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WWkxcifxNg3RH97duDqKJBBco3XUJHHw9vqpd8zwjWbkn66fF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DNrZwzZ2EtHjpSDhu77j8Gqju3eDqC3X6oSc8eaw2sibpYK8F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-yasuiqian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L4KVxKWsk9WDeyhkGAZKqFu8PAK5AEfLhy4zMkiRXbmJEFs7F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hu9ovvyyNYXoBZs3PyH8aaF98Hcj2NW1quW4fwLCgwAUUF93P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1184 - },{ - "name": "bts-yokko", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5utnQDti2WYDijZNEvdsX5Ea4WDSTzavjosiaXFQZax65SZQSn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5utnQDti2WYDijZNEvdsX5Ea4WDSTzavjosiaXFQZax65SZQSn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 362 - },{ - "name": "bts-bitpilot56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87MyCpWD7JsFjq8LCTcmDY58TXbXBiDvv7jyYA2rydEErRXztB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87MyCpWD7JsFjq8LCTcmDY58TXbXBiDvv7jyYA2rydEErRXztB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1319742 - },{ - "name": "bts-longtime", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BS7w5r1bz8SMEikFpHyyy1eV6e5tSjBfEw182VSv5kNVzTWyu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89x5gqovoRKpsjd6mM8Y3VQMxhApQsm9t3WMKBjCDhDLeTD6tW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27454 - },{ - "name": "bts-btstable", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QQ4iQ7H1uVrBkNCQtZEfahN4ectL1yKFus1n4DouA99vZrwbq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rdZYpnivv8ej4n3x9H6tJ5ZkTYrMg1CuqydEfmnD1WkCu2rkF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-sysop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61UaPRNbFf6tua4UD8c1P8mX6FUH3RRtBFoSuL2hcDXZbGXE14", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fHkfs9YYE2fowXQRvntwpuu6xjQ5YywNkvoNQeJTUQTARYXhp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39510 - },{ - "name": "bts-boulder", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eyfjfJDpx7XvVq9mHzbRuN227fXs4tNSmD3cKGaumZak9tZuz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T13Z3QjbeKpRJGqQWVZQDEmu16mv3DtNPzm9Czt2KzX82kvyJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15804 - },{ - "name": "bts-vail", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uhzoLr5AxHWZjQN716GoVhbJ2daUhXVqd6tB1a8bXDg5QhZai", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bqLotUbCQ7eepFneGoXRxWMPPw3aB8qi3T5CR7BsRrn1sZEmT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-aspen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xm55qq2Kro5H8edTq3wz8A4bsDDgGFJFZgfutuCjVbkZN8ev2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79xW675LAsz5bQTz7SrTgb1PoXGKrocG8HLZFE4hXXjrf2uSUC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-pikespeak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T6LtbDun5Lqqgc7NVfB658ULaGoj7bUkuB9QDv4vMpPPwJbQt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fA9Qg8VT6KaK6JDxu7W8VaMzd8ANio6hAoPNbvdQTAXTBbJ6L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15804 - },{ - "name": "bts-dirtbike", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hcQ9r1Kyt8sZ7eYqXY5bMpgKXbV84BQ5LZC3k1Nzhv5vC9hUA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hqXDq5QnRRE2RJy9w3niiyhpHXv2s2n8gm48ssWiBapQgk9FB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-oilytheotter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tjd4KAfDNWdGbzQoi7KrsUptZkhysUw6F4Wmrta2YpLRHvpEY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tjd4KAfDNWdGbzQoi7KrsUptZkhysUw6F4Wmrta2YpLRHvpEY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21521 - },{ - "name": "bts-bdr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BPcPJa8kGtox1JGEnD9vPebtTsaJkG4nLCMuesdCAQQ3PUSfd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TJCpqn1d1eNVM8G8N294DFporPzZ9YGuXFjY8Hbge9PBAQJtm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97 - },{ - "name": "bts-claygate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7As4XCY7ubRhKMAyhi87hSdvnBiDpAEufmnFuamzeZ1dq1uJeh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B1ZXditVn8bWVynvpnFxvxGLW86iFwPzmuMTyv5KcTXfc1B1B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1135 - },{ - "name": "bts-beefeifei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xcfzBDTAR8e5HkC4ZETanPGE2mh9TWAqtTMwt2g7NMbrzMEpd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YPhNYk21Wc4HySaCWZn1sbn5hopLp7PVMpw2SRXXQuCzCScER", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 352172 - },{ - "name": "bts-infobot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gsGMV3z9udPDaSpRgyUDMXDkLLzZ4XDsYaiw2AZpVBRoPtCx8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62FMMKQ2CPwF217ujMzWHykwAshMzj7CKK7bB4MxrhBgFx9DgC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1197 - },{ - "name": "bts-royluo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gEZpNLpMC3yXGRekFTGAURWLA8Wn9Euj3YBXnj7Y6WzwXjGeX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mkWMJdd5uB1PF8K1rUKk61yb5u4hGfySmwLD4b8j5dq4jh6fR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-iluvmartini", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5maMm6WVdScHM92RS6vgBgUEnshTGDtLgfv5MwuBHzyJKWS9ki", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gAVdQFbfsHk5y1bbo9miwkwNsDjaMeGJUcjKa2gSobonVnosr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80 - },{ - "name": "bts-pelling", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TsAV27zArkHyLSRRq9KjxrYnx9Z9HCrHTWiuWSVsikSZm2ZLU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mK5ZEC9QBRJ3HqVA8S3CJ9R67qfuqB5bQobiRxvzB9Ys96zHb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 206957 - },{ - "name": "bts-ftcollins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65NpLYGWaVn3cFpQYQ17ENeMB1AEu7fzbyHaDtd7CaeMRgqpt8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5o2qtZnAUqW7Ca7dQLVQVLgvVyuDyt2qiNLaNg5NwDG1nnoxJz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3766 - },{ - "name": "bts-btswolf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52m7f2Ah79AgVmcsrEAN35uQf6XAatH5TjARcew4cCqGmrLnmC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d6etWkowyR1ek19uEZmjRzLqbyMBZ8kXnRw4mgEv5awwVC6mY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38 - },{ - "name": "bts-speer1905", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84sbHFoBkqvPMxRQDCdUSFPBWMN6cmeNnq7ZZq1HiiokfUnSKU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84sbHFoBkqvPMxRQDCdUSFPBWMN6cmeNnq7ZZq1HiiokfUnSKU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37384 - },{ - "name": "bts-mmj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s7WzzQi8KvtFMdtDGqqYMePWGsECdof2xVFvANPQDYV9ta47r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5R1vjHfK9KPUmqZkfoHdcaEcEFpi7Kk2tbjd1GxjVCr2nqGofN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30416 - },{ - "name": "bts-hermes3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NrZN45hWBAiZqPjPu9oo8Eoi8oyBBcPALjc5LXRCNpRqadg8F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Toco8up1BdBVbPZ9ERUtBGUfF7FZQhrtcQFnSnFq2R9CjngQE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14420040 - },{ - "name": "bts-josephjeanemmanuel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MTGjfNkRW22ptDamq8zbDUo2Ak1GUCAQPpyz5YoBJvnMmCFMN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R6bt7DsYYdGfe6zqHk8QY7KPzg5RX4TZDmqGDewsS3jTh92M4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-yu-r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XBWLxoJfkVxUsD2Thd6Nz7FRoYF16tBES99U65sscEoAyQQ3w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hWUzpipmwEgFTAAYhi5grB9dh538s8y4WgmagoTqiDRS6yYfU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 189 - },{ - "name": "bts-yourship", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Q9kyBwcD6kUsZK4RArf3XqaqwNfJVzs885qsd2uKWj13sUu3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83pjTLZmXaHNgz5S3TTkJu4MoBkGT6qBcT7ofzcGUxAFzoFHNb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135725 - },{ - "name": "bts-estefantt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pffhBinbzR4JQfs7T3E1qJCpKiRyzAz5ETfar7xxDX8StRv5q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ifK9imGzxgJddC2aGJuWXposRUBTjf3HYuFsxFPrdN215dGFR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5485846 - },{ - "name": "bts-greenshoe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pxvDZVB1bmdUc3oMHCShyjHqDYyzgiAGWYs3y1rUy9sXJp1mL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A4SHNYLXfEjPMgaof3A98zhX4jjtSShRTju4q534ExMKF3Las", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-autobot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76QiMWYfECZixJPQuCdomPu6ujrbRz2z1SwewkgjfnUgQBNrjt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78zcVvx8FfzM4dzK9fzjrtP1hXp6c2zV1bApkacuyAGxq8jShZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3752131 - },{ - "name": "bts-wongthomas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nvJvgPbFN158ZoJXX1rY4FjW3EjnKxv1v7AeMimtbcqFGC3Lr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kMhjyNEkQtTTUo149v7A526izBgFD9N1U4h2eVf1u8g7py4Rd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1373375 - },{ - "name": "bts-lemontree", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QwNsuerLf8feaZZNykhmHEbJG4oxjSNYfetjsEBCXEVFm5AoE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RLm2h73MsTWBk2JmRvZYs6DYLZi1tErHKeYmxdq5hetiHVC1K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-networker2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yCa6yWqZjBTSPauS4jNVS6GVFyD6RCUhyjDnTigEzrm8Ufx8H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52dgGv33jt13Un4DiMULauZFuC81zc4sLVP9HXuyqbviYi3xaD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4769068 - },{ - "name": "bts-kingofalltheland", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vyeUerR82aaxdBCAy9cygTVVsEo5weW3WgqdxobEpaR2D6Rhk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UoPrLy9dsYwd3fTXN49sqvkNjoSks6ctWqAXWWFkATfYwUGGZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2384350 - },{ - "name": "bts-miningfox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dwWe9ojVKFFCoZ8qmDaMCuTafnUEwb5Y9XMk3gp7XpGJ7X5QL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6amTV2qZWa1H6pm9XREvkyP6wFSnAmSfHgiAsmRPg3DhhdxxF5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 548432 - },{ - "name": "bts-samupaha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AUGWN4EzhLdkZv8mNuTuVCZXZRK3SwzLDGKReDvZcwKXYN4Eh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54WnEsXSqgAU31KMGdwLxxKAvFW81SRmxw5XMSRMYULzy4hrib", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 763159 - },{ - "name": "bts-kencode", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tN3GiyQ7v8PudLcifvAXjud3hrrsVSnXGsvNfNakRWN9XTteH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zEc53ZizvYHZEjK7Fm63dnM4buGqf9KamurkynTxryKrzEypw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4189453 - },{ - "name": "bts-innerself", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66gvV7XxsnoqTCDsp3CGKH72RhG6Bs3de9bdtGcCpN6bj56Z1d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77vpzq8ErzUYkzwyLSZRKPPjTNEkAhKYhJhNw5MKMZzXgmjryd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53918 - },{ - "name": "bts-banaani", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VhWzFPvXRRf5rokvorirHWFJcWD8dbbV96ckazatznV8aUYGj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZSCkytzJ57pNNa7mCFojtBXzwegxvaqMbMRVFvfRfjiAbUJs2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-jtest1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6udjRZFUw7UgLQjR2zSvGTBW9uCA3TQFf2CMabo2QBYhDond7Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yCfjLwbPaF7FcmTJUVCDWg5ZzUtGi3W3ovdkSEXrT43igWQyz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69 - },{ - "name": "bts-duster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mgx764ZJ8j6p1hyCuFz9P6nky9tR6hkv1PnpzLp2RFJYvkDn9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6W3qfPdBn6oiUSE2G48FGsMMRLeKbDPt3WQxsCniB3jaa3tXvy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 661 - },{ - "name": "bts-solomonsollarsnsense", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vHo3ovjX7PbRrAGC8ESGU4evBKLq8NRdYCBznVRNkB1QEMS6F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eJZgJwxRtCBtDPN81RtCxaukavqVuZFBQL8mtfyKKjfV1BDN7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31880 - },{ - "name": "bts-leaderquest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U1qBioVNHKNbBvr2e6EimHVYdq2Ugg3rTX2qKxo6ZqyLz1iNP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63N5QhWoveCw4x52UgES6dzZZMNVzJ5ayQ9z7q3cLSRfay7cU8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2761252 - },{ - "name": "bts-leaderquest1983", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kxANcMXro5ED2MeZjMBqvAs1bvKiv8FH895XYDMubfgdtqeLr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fvdcM7zj61ACpUWXzqxYhe2vfujvWsdB75RcZQgKHSQ5ih92r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2904642 - },{ - "name": "bts-mchurchill", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bNAFVnnTgLwg1hWxQoYo6aa8FNfG6x97dnRSkgCyvSjGDaVXM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CgpR5Pg1RDtyKrPzbeUYLfYDnyvhi1YVnUkyYGwQdNS3AFaFq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 262092 - },{ - "name": "bts-bradyful", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rFKFJh8aAVwPepM2wQwqJwuXKP5mA3BjeVt9bSeXSBvrnFote", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rFKFJh8aAVwPepM2wQwqJwuXKP5mA3BjeVt9bSeXSBvrnFote", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 560648 - },{ - "name": "bts-xeno", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5knf1CnwGhN2848E5FcdmBhU2eQLRDDX1E75zHP3geLfUKwS4h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5knf1CnwGhN2848E5FcdmBhU2eQLRDDX1E75zHP3geLfUKwS4h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5164128 - },{ - "name": "bts-langchao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PLC86Bbj7PnP9z85DeVcwLUY2cvAzjNKrXMg2C8LvGEo2VFLW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KQ2j4cKWyBQKMiSrBZcmkm9i8u2C3dbdwxovAvM4YQ1n1fLSE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7478967 - },{ - "name": "bts-clayop-online", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89nHkZ6yydV8V88L6MXoCvbLyvQ6rMwrtkzB4oSAvZ3C1Ccyqy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qxi7EAdpsKUwn7GYtq68dpa5n9LzD2DhtDQK5EeEcRVBRZbMf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-gabes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8haujvVTEY4PdGtWm7GeugCo6Ejfv7HLvfo2Y8AnJgtKum6otx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SnK7EE57K3U4hzjGGYmXEG5K1UM14JvVqk45ke54EyT2ByfVi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-hotep", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69ZYwYwzdeA2uT3YfRi1VvkUYb9ZzKhKzDx32PU8j7a9guvLVd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fLRH5tiqJA957WVFPE8u9WMHcwhoVRQK7BDvMQDC7ywzmjeZN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-totem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EijyRkxzyJ9cd5Tcthmn8j9CFD9yE2bwwGxmh3cebcVBY7dyn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LB4zTuKkkQNuqkgW68fTMPs7ZVuzu9ivC9xR2di6UJKMDMQp4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1648 - },{ - "name": "bts-loglight", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y5E1ZkH9E7cGh6Upvjtqoe7HFzeUXqGYVBvwp7RL4HJbpwB5E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ViSLotv8zdce472zTTHDFFjJHqjkHgB9qip4xcyXKoAXMbhQm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-meriver", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uv6QXoqPrYuminaCN15jrEzVBuauRx5VoSXiMxSNN62kNcAcF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Rs5fEontEjD5oh6QxLvNL6BoYb7dpnvWAqXZyZM6VXK6KAsin", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 468033 - },{ - "name": "bts-agree8848", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 364 - },{ - "name": "bts-btslan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WvsKnggQ5215RMQhF3NwwuZp4ZDCkEwPbbZkP19RHZJLXw9Bg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84v5xdUSBBDyKZWQMgXrzL9W5WDoLJqAkRmkap26uoCq3KiDSa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1817 - },{ - "name": "bts-manuel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xbKGTQw5Qb729fHq99oCCeEu6pVC1PCfRXKnyceyf8a6dRXHj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S8zv7M2xDkZsyXJYTLiTvyjpVUw4G8rjifFKC7SCP3ng8Yddr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-test777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FewpgHR8t8kZF31PphJvrxj2jugpiWoiUPqmbJ1tcgn3ksvJ6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bkAeJnEU7i6Hd1YWTNTKW1aqDoxpruezGxqLDunFV1qGANfxM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-gwtopb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kBqwG6b3MLCW3y9x7sLyptb8iGuQS3752FBXg6uGQQi7J1yp5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YD9y5a5orDEQtLHXbSTGez9UM44qThwH4GURi1Sbjk4VCB8MT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-huangpan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73vfgDwdJuYdk46f1LxoRssAgdw72uUdf85uQ9sgMiyboyWBGH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RhiCjdqRFZHSMswgoJjborH4Afmo61oq4dKLWpheBfHpRZLXB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2930758 - },{ - "name": "bts-allisone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T95hVDuMXtxr59KDWW1bn12WFcwV1847DgYKoyMKxq6dNLQnz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67ZX7r2K9jbWEt5qPZPXWzdShmoE3DNs7qXicB5JKE6nV3p8u8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16395 - },{ - "name": "bts-jlightwallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p6ynT5CDGGWzRBXQfC1bVmTnBkBjBupzTLPUieGZbcdumFfjV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ocxxUZHXZNZcWFxYQ2mQm53NCChLo5swjwL8VPXrCqSSW2Wjm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-tommybstring1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z9DTkUjhRUJagTUvF87zXftdKApnZozsMgrgkhMUGNCam5MVc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QomxVSAJMP1BHnktmQ5H1RsDNAK7Yw9cFKAiiE9Kfc3yVyPH9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-agamer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Vi6xQPksnfgCkLjvS2292Tkj8Uz1YiMyU1xS8GtKQcfvtXsBZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pCddzMYD1KxVYCQLK6gjUn1tDDmag67Uzfcm77SJTEnyPrs5n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6065408 - },{ - "name": "bts-axel102", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CSSVDwABLB55o51V6po1Xuhiu53D1FwHnsg9QpVCZTAEV4Hnd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZhgCVpmvpi2dbNaLv2pu6Gx2wujAGMyBE5LkndQM9XZK5Varg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1975 - },{ - "name": "bts-agerui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BQ5hi29vF7H853aVpASwYjtvkstdErLQGnKcKk1yHquEANg9W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST862bSBYY2CVv5XbXxZZ4kwQyWVzxk5MDiK83PUABrvfUWXofGq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 68 - },{ - "name": "bts-belgique", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m2h3dKApk1fj6HqMFsQVZVXhxHbm1QtE2qbWfc2vnzuegcctF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61t6nXZxA5PUPUfwTFVAgnXae9cexftGLNMXs8UmRfEXURstBg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83619 - },{ - "name": "bts-wallonie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65QH5hDXC4AZ2q6vYvy7NDg5qcdMo8HTvNwEHfTMfAepkDB8e2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N4DZZkHtjMF168sAijFLXdYap8fesoWpxStX551j1odfZK4zy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 105360 - },{ - "name": "bts-destbest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uq48TBoHjR222D4xauAAzKemrC4LU9V6eMJCsYAxZaw2WuAoU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59vHkfkqQwPqG1nqdBuuiH5wRiLEzBGDjvMkYJSvvW3PZ4kogE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38154 - },{ - "name": "bts-dafu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69sZooHh8HarNWDX7gEw1pPYLBkgVbHzQdo2u9WYdo1QxmXtfi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51Mom4MNFkvDtVeKqrwnuhGP7az4XHjPy6uJBsapLZjaoTNczS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2819094 - },{ - "name": "bts-tedx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f5mm9w6TKW3ZUN4KVFFDohfWcyGigtZmuvQUNSz7b8voQJA9D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T4FeMtaRrFmLufdxmbkcDUPnDcgvfTYz1nDag8NyQU4GfbASW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77331 - },{ - "name": "bts-anonymityforall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8C4dfSDSP2HgngR7Pt9ybERCBHCVudSDmt23pW9r29xFmfUt5B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bSyqTLMvArJEBER3LmLP7wPTJkFF1egzfEDrhqRTWVjbLiCAX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4536556 - },{ - "name": "bts-ted-jones", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AvHFNAu2JwVFCfeKBqZMt6iDfEv99XRWabUzUScBa2exQSoPG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64Ru8mgBV4hJN9CAjTcwtTFuAn9EphJyKfmTceQm2QS2ao31ZT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47674 - },{ - "name": "bts-referral.btswolf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ht7gWy5AiAmDqSfvMsGYSHv51gQoHiVct3g7vGXPUwpbFTm49", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ovvJPNknydBNnTpJ39YhbCr57UYpbTqJgnDV8EK2iNgSgjezY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9843 - },{ - "name": "bts-noone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oXsJqrueyuzHG14DVaXZNjPCHnBCiAsLSupuv57KP3bgrHncD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bgJ6dwhaKS49T6bVY2JY7m5UmkmwjvzzqZdprBLTWmqp74GSq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-btsamerica", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tkx6ru1Hx4nNBdXywkAN3hbvR4GqZ7LCEDWApRf5wVzP3YYvh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tkx6ru1Hx4nNBdXywkAN3hbvR4GqZ7LCEDWApRf5wVzP3YYvh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 723 - },{ - "name": "bts-mrjeans", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6x9BBAzw196CxFBpXun82JaWmPewZxjhLWGXBkapoKJkCUewwL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6x9BBAzw196CxFBpXun82JaWmPewZxjhLWGXBkapoKJkCUewwL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21236 - },{ - "name": "bts-andrewstephanrost", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R9gji3RXSN9kyjiD5b5kyx55LHzvcVfoo56MuPsqztQtN24HA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51FLaqsLxZDmdVg1quTHDQcxiR4Mufsh9bBiD9CUzR2mF2bmpi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-slack", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EAPjEvDZ8QgxH7b6n1BDRf2gWLaGz2gbjZmaW426Dtn494zgk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LXfWJpfr8ZVB46zvzPN38zuCYXXWviNUqK8WYD5DQZbcVat13", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14254 - },{ - "name": "bts-gig12345678", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PcCTm4ku1msbz2rE3k5ywPQ5mbm9Li8EutB1YqnTQGwRQu1kc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QngrQgSdDLj91mnw3bXieG4kGEhh645mPqmJJTn9R1b2Ykrb9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-sunnybob", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tMbLd1s5uAUxWFDtdCs1BYXF2BqifePiGeKUqGBipP9nbD1Ka", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XaFkASqRrPG9NcQE6gR9rQbkgEHNmXGoa4iBBPeGYxPuc5Y6C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7293773 - },{ - "name": "bts-luckluck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ah6nkxk5uNsCnJtv5tZ64yjEgmCyL2RQuGeV9dD5aTWRmrTEo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xGNBWUriVWuXDydkTseJthzE7VtbLDBAhMZD4KJuD8m9QRkkF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-agree360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52ZKN1r9QBdnD2iBrS6ySgQggKRVzSkLTogadCnh14nzNAAFxz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NvTsSqapMDpSHAvLaWUQMXJTS6DHZCk5w5qe6WbeCL8xuqFkU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-com.btstable", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FYnPiFimx17Jas6ntRFVZwjjbW7hPGmU7ARCUBQK4LXMcDnFf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w3oMTC21qotmqEs1Azg22ZvyN4yhpmEHgMXn7NU5MfL9TMGbU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-dak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nJ5auf1ik33euS9em1eEmG8cqr9v7WEMQ8TEUvbdoD1rz1A65", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o8dYfMz5U3xMNNgc4nfwCZoL4hXXRhgqMR9TvjrdSM8RUasja", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131135 - },{ - "name": "bts-bitpilotace", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GJXkBhVZAjN3z1VpEnjMUBoWUat5Anmy8fTEYRMgUnVhdtiFh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YefMW2VMVDQQfJ9tz4odLEoxkrF5tkSnjMoDfDrXAuk7AyNYW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14379 - },{ - "name": "bts-antman890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SJoJySZsxTNFywP3dQEnT9fdKEjLzq6jzVRxki5vaoPxjFMSd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZEPT5tq3HpogbpazQAnyfpWDFjTfG6pPW97tG2MAe6YAZCuMc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 141 - },{ - "name": "bts-bluesky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aqFYWnRzL6sQ8Chw8SVQQ13mH3iU31x3XLKaDiDf6rkLrw7CV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CScwZhvauzq2TYaaL9wVjgqcL7xCU6riAbUdGv49NkXMD3rMA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 523 - },{ - "name": "bts-uzitgc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QbXaKPX1zF9yUyD4RZKpCxXScxfFavKhG767tBc8VQF6CbkkZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7orM1ou4cYg9uRHjbGTcR8YzsHvn9C1i8SWQpMKVJJS7YVRYii", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4416 - },{ - "name": "bts-bts-12126769", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ytdexfucmMRN9TuvpDepJ4doktFFbx78izaBSqDg7Ltxysiff", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YEGYBa4XSYhS9jbaLjiLVqobbRoco2phthiiyPdHNjvmySw5G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-mangou007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TzsNxFYQwP5rnVow4HQj5ctebULDB3cCqaHdQB1yruPcruhr3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jyzgYW93GvvkBHFYFsgEUqjVTwfwW3Yqm6mKAq9ZWouGAmJ8o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 931969 - },{ - "name": "bts-windstorm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fKieRBNmEnxVxPoTTWFsbUwDfrYYKKh2QbQLExkChq6FMgwCG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q3j6ibQj8yyRugbfFyZgvUZey4kwYSYSkDEXuSkCQLwxGTFg8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3072096 - },{ - "name": "bts-evex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CjeEAUv5aVC3H3tNgSG7J7cWwmsAj1pMCCT7KAYpCXUKHNpy4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xZsYUzegugzAa43qBoPoFZisQ2C2RnCPJm8zpfFnfFi3z3thh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2644087 - },{ - "name": "bts-tradeforfun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64X4uEcuJSTNT7yPdPmBSmaH4KR9Azma5zbyBLLK3j4GyjAY1V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75ADbBo3v9nZbcWsczZmeMChozncZajyjBBMYGpsZ2AbvuBoTY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3204213 - },{ - "name": "bts-alphabot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mXxPU1uAuS8tMJyeY4kJtZNKHZvNhsHJT5xMddayzNcv2Wi9Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mXxPU1uAuS8tMJyeY4kJtZNKHZvNhsHJT5xMddayzNcv2Wi9Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14390 - },{ - "name": "bts-nannar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EcJiRnUtqPiS8ZnWUBCRJP3hLZKqDc8SoZcjRkFJy6Qo8ZdY7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST586n3kwTckVVJj9vxqgqvSydz83EpBbUxZoaWaz2CXfcT5Rnof", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 254394 - },{ - "name": "bts-backup.yao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XQmoVnaJ3qJPKYUjsknY1YUk4uWakYFD4FzKNX82UrhjsDh3K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kgwGewxo2poQwBiPST1Zvz8K1aGULgrN1uoiAvMzfqw1xwVRU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6419744 - },{ - "name": "bts-senna", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HweZHhiYJct6NRdoUprMq13owVdvhtFsjuDfggt8oZRMj7Q3p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HweZHhiYJct6NRdoUprMq13owVdvhtFsjuDfggt8oZRMj7Q3p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1005 - },{ - "name": "bts-skybank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58Yc9vFCxbham79rXJ2XYN5xjiLhShKznnu6G6TN2J6BsDtZCM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5t8zVbqdB291EEvZ7a1FbL9zKEj2agAuhiif6SYGaSym4QekmW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-airbank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BtnoPg4VNsDodqHee9bj7YR5HMVRkec5UnR3rmbf9ENQaJYjy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57V5ntUzbQnCNK3vmf6GfEqoFqwzzdX6AkchUWznDpWdVQMXKo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41120 - },{ - "name": "bts-myairbank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xFBWP9UGSGMREicurStXkMNicYFYzneB8mCAMWjy39uJYq3ch", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81FL8rBBvo6vpkM6YqVXVMMaQCu9aN2jWaKiZCmYEVjWPc2JhJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-phynxfire666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MGdVCc1b13Ci1HqvyApEPdT5kJhRkBmfvAGKnMZ1H9kQ7V53m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X5UNQ4e5hPkw9hEqnCsx2h5hbJfxAVNsLRvgnTtimfHVzSJ8G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128693 - },{ - "name": "bts-btcmedia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72XAfMyr5arkfVywJdZ2Tw4eFjmemWM2RsKnyNgh19qYsDe96w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61v3QP39Nqc9eQmZhyKRHBawx3VBrwHLqi7NQ5h1FdiEQizn4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-bitgao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LBJ6VLieDash5N7U8gBiS4q5V7rvbo2moYwAS2bd92bDnBRCk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EJncGW4Nbnqs7QavcJoHBG5mf9xyXwogmCGbQSw7noMHQ9YT6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 280050 - },{ - "name": "bts-majia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DVKp6FjRYM2zyg7Qy4PXmWjBEuUytTREJDmcWk2ZCVkqreR1w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LCpTGJgCwWBoQqdoAa86FVhdJUqtxFg6CH3Jap5mkZ25WJVrm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 148191 - },{ - "name": "bts-revelacaogr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tUXPVYiFs7uMPJuGQwo2aFXQF73QrT3LmssNtu2ME2otYjDJD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hi7joYeeVhg57jRGGXj2tsCKmnx8BwPEg89uoM4NJv9C2TVym", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17873 - },{ - "name": "bts-benjaminsheehan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qMJrnfb5TNAszhedSkYkkeqeP3ZKC9BWJVyoDmNdzsbY9RhED", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69MXFjMH6u7kYTTRLmjvgSbPxSQniTzrg5qvTdiun22kUD21Qv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 193613 - },{ - "name": "bts-banx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LCq3i8fGiiBfrcqRyDc63cpoHAeZx6nQ8ikvAT2xLPvBxcSdx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75R7aUmpPP9E3H3WmqnQerJKUiryqxYj4WCHzjhC1CCDncZPkD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-agree-notitan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 3 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 3 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-deposit.bdr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B98dWAWb3aCJ4PBvoCkJWkHSTsuKgMa4BeRCmyAdPJPJLb7m4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B98dWAWb3aCJ4PBvoCkJWkHSTsuKgMa4BeRCmyAdPJPJLb7m4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 316 - },{ - "name": "bts-altfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qPcyq4i21oPY9xEmi4HdFZwnmrQhUgPnaiuPqJt2RY2dBiAHi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mF927vL38KhhGVjMNxpNSfncvcaTJ3f8ZidP3iDebBwwYy13E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1669306 - },{ - "name": "bts-deniskaru", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Cy7Zks7ne6AmFwPREqWCSRpJityz3souZodcinMvMJsz3qcjh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Cy7Zks7ne6AmFwPREqWCSRpJityz3souZodcinMvMJsz3qcjh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357648 - },{ - "name": "bts-littleelbow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54gqWHLPyN3tXTGRWg3kiKm5djKSKY7AtC169wFeyCv2j959qx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54gqWHLPyN3tXTGRWg3kiKm5djKSKY7AtC169wFeyCv2j959qx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301102 - },{ - "name": "bts-geatb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bUkXvJe1PYdmwJXppW7wVuzMXEyzsGZ8UenyxHZCBoYPrfAWV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HNWJLhK9RA6K6LmWyDUQwhswsUzM2xPZNjmo6VSZmijAKBQUD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-metaexchangepartners", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h7TwUbb65vyni5vC3RDxkkKf9bnDFw8BPpJKYE6CDyC1NHsDb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZSw3BejJWspQvojBH1eU8A9ZRrg5ctrawZbAQ7okgMeZKS9gu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375505 - },{ - "name": "bts-minebitshares-reloaded", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dH2X1q7xTpG9BxFG8d3H8s4DKhFQuGF624aokJcajWWjLrjJH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8enr6BCifngycpQSvntbtneaKq32zTSXw8stJAaJcANqtT5Jjt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7971 - },{ - "name": "bts-hwan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fmdsWg7wz8wNCmy5JjaXk2edHCnpJosfKr26nBc9umzVaes5q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SC7YfWN5XzaeUSe4RFoK1LKvhJco9XfnJzsmQj9ehLcSvA6kD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2058104 - },{ - "name": "bts-happycat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZjxDF6WXVhSqXVP22Pxe4obD8MPbpjabA7axVbzCTckrJvDP7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6udXTvxs2yZ82zxRpKLckYL7vUwYEDqrsZkb8TF5jTM3JAtyh9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 224 - },{ - "name": "bts-rolandmsun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xwEcLa8hyNDJdynz2QwXw6GLrYYd5nAMeVEyjdTHi1JSyoYdk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CfLGggy4VjsiqKF26WSzx75wdBpPTPqhfcwjf1VPxtz8kFeib", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 304281 - },{ - "name": "bts-jlight", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lc3swzX43dZ5qGbNG1eyxKVgMmJHuQwWp6h57vXofUcDW2gdd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GimhseNzW8KhBqBr4WXySnSdE9YLN2Y9VUjdChLBHnQyTGdzb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6713 - },{ - "name": "bts-mike1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7socoKdU51Uw6tVo8aXwg62GneQWciQPxK7SZ8eTswwivs4w1R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yASBJ5XicjC8Z8QGaChg8uDmGUQtCzmz3BMxDcgNuXbPfUB7p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-mike2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kcCnm3nyrV7GLTWuqJ2umMK3N3R69HHAYkXM9BmqdeFrkJBhc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8apK6wyKrBZSh2crNPzh5P2EYtUYiA7t5VyAkLyDB2emSdJuFj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-mike3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bQ4UsZLfSZgwXRsW1SWFcVzyioGP1AjTyuhjVYoMWDzCnV74B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DLxxRfsE6Z4TW4xnDooUE5JfrTe6bhDRpHYfYrHidSRvwPx6B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-mike4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KUGoiDHh5zQLf3t5sZnHH4ZH1qc6McrLTMXKrFBB9wztomQUS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bHkAgHRCCyK4jJ5a4nurGJEEtt2Hjk9CzozgbC771FZPrDhnh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-mostar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GrpkYsVSqadRXA8dXJ4HUAuJ52bJFqd253kSvQAjoSiEuWpJs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87A8B4svYaRLS7t8pPvySws27ww88Fa6uwSVd1TYJfJUfKpRLq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10536008 - },{ - "name": "bts-rocheeding", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yNLHk38QdWzdBPAcMQhb55ipZ77agnyuibKDBsD6ahtt4Hwqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UczBpigwXz5je23KRoCYDUDShjuCCrYjUFt1jqukFSWj7oRQE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188480 - },{ - "name": "bts-jessesullivan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7npBLwXVjqnwU8fJihN686BuRdiwsrFhmkcZjMmYsmxGvLQUjr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hXjiF28PFbwQXFXFaegyJLdS145kc1CL8y4NfwtMpGqZqT6AV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18318 - },{ - "name": "bts-gaddo112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HMBEpjGsF4bMZNo9ewAAydRawjk6dZb4A2XbxkoyV6XeaEx7K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UfCmKk7dbZoHpUxXYVPw1oonvT2ubx5Zju5B139A9NY7kbvwa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 373080 - },{ - "name": "bts-zogov", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6w44PGwm3rSECrv1BFwQ8TezkZPqPoydnz4p2xFvokoF65LYgk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xAPSFfGRFAC6qU9GfuuhbpgqMp29PLMZF7C7j9hKo3vhcHJtJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5544086 - },{ - "name": "bts-awcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Gj2feAzRKip9GwSB42QmgCgS8TvK4iBB95BKzQWhiKgQFXckk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D8yX6pV32J6SSyS9aJCkmYC7UrwFSknrWMMFHiA3C6anoSZm5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1830 - },{ - "name": "bts-minou068", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NgUCHKBvNBRvsD7GajYh83qCdUPsigSsan7wh8BcmTYRT8gc5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BQZ3fMMrjVfSh8qyt6HPoXiHtWmNH4meEfV5USWap6hrjafjL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38004 - },{ - "name": "bts-mawiewawie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q2LcNFNWNrFXhidKaNHA61Dwoca58htsaY5FzWVMgyWuGKH37", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wo48cyHSPffyCcVSmcWZTQKmqa1KhxotJMvsQgKan3KFN6vZ6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55009 - },{ - "name": "bts-k-rapper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8J3ctLnw3B1V1M812w2aHZZcsxD2SZLSyUD3CoweH2aLoLrzSP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bRNvvhFDgEEgPYEP5AyjnSak71fBHUwY2NuK5KG38WevDRePs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1097 - },{ - "name": "bts-stevenrowlstone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r1isztDMA3vZhKeqJpD8g5SUarw1EcJYsxDJiJiFxT9XLXME3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aGFkwru9XCfmT55iQ3aEato51vbaYURPyZwXtvXCbSSJrxHg9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881433 - },{ - "name": "bts-cissy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VHdAQM4mrHYXk3vvnWRagit7GEGRT7rfHmgLBhYqah4kxQ3Ri", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bE9v7AZjUccqJiAGvuvUxHnFBZ3uEndoYGGVMt1fC9npdwBRF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11695549 - },{ - "name": "bts-simonseclife", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CQdpCAHTuttjFnB8TtiRrUUWQCW5sq7PzN3dtHKEzR5kqrUq5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tUtEjnqU1azkYS9ojaCnnnSGx9KkBxYuP1taSxrziiJkyUGtu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16097 - },{ - "name": "bts-prounion", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST536Rrb2HMHFhUaeRxqPzHu6gzfdTzNb5bhKbh2TSr3TsTLxNN8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63iv4MdZ5vTooBKhu27aXWAwEgYgt7jXx5NWanLZYKDj3HFwsL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17605 - },{ - "name": "bts-sdi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XAzfDnKf8mEMbpXFcLpyBJy6jhg8bBEqDuWGz5iKshoqQo4YT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vkR5hjxVYs6KDn78XnFAu9whUgMR267vFWBy7ReQttQ1f8VTL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-paranoanarchiste", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RVXBjScm8eN25aj2VBxwUP5zrrSSc9uUrS8o4hzRuWRKGo9F8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v9mQ6WB4jPsYQNNJU5EHA1Bet7JDXNfD2jfjEkNi6G5R3isAw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1640361 - },{ - "name": "bts-fatherchristmas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QuUwEjJd7hUMDRDyqdgFtnV62XXToJAoevp4TUVLsTiHZ42gE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QuUwEjJd7hUMDRDyqdgFtnV62XXToJAoevp4TUVLsTiHZ42gE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-del.fav", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SjzGSFBDVD74iufx8rfxqtW9evMp9cAd8TBGLMjthGYic4R1Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75iVy2uPESTnLQAUeC6tnQ8hZVaHipR4LTyhPNt4CjoSU3zSJQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-x55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NVrUmC8LeZksyAu23mgZSCkKNZjQ68MfmdNbPCxX23mfDb8ix", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Wfz7NoCPCU6fPLRB6TDER5AxsWoYLQ7GdCYCNJpxQHRV2EfWn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-neilswallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53pYJE83GWes43z4L12VC3Vt1cwdnZoWFefEFrbRiJde4hwLb4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bfh9paw3cbfANUrH2WCrNf7nBJuTBbW47JU3t7ceF9YqMQ5UC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41992 - },{ - "name": "bts-dontyouknow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54FPw53xY814woDTYTQuKfmguhQucXg6R4kdn9sAMH3kw8QZgB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54FPw53xY814woDTYTQuKfmguhQucXg6R4kdn9sAMH3kw8QZgB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2762583 - },{ - "name": "bts-closetoya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TiHmCMbi73AwyhdrVzYNAAa7TyyM2up89CAxYH33dVh8kYCW7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jdG65fzKANubcPbPGLF7u66ZUdfbVs1gZiqFZsAWGHKBx2jjW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43850 - },{ - "name": "bts-transwiser", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WhA16nGb9kV7kgs3kuHotMJDAodLmduqnVJhWD2UVca8b6yCc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mgt9xGypWQh4uaEnjSC6Fv2aixyghu7wfN8q4uSMHgqc8TfWF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33440 - },{ - "name": "bts-luquanwei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T3UCmhZBatCUvbar2XRVXtzQiJSV5KjejpNUGYqzTVHTDC8TB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ty55RP2BHpL81EYckzZKeeAUnX3ko1AfEDVX6fc6FPQLmfd4j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 726973 - },{ - "name": "bts-bitsharesfcx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8McvVCPh47wErZNZ8dKB5qYUKxnVRFcucU7eUEy2uN8Zjzha3V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51z7a6yeynDnP7Q7d495fyC6FJiEEQsQAP5LGP3V5opmncY2d2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 133153 - },{ - "name": "bts-shapeshiftio3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LwRVSNU3jvo3fFXiV8rhoTVD1WvRDXhzxSJXukR5G2LKSAgNR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kbkgBtbWaFRjr8KhWsRwXHgTbhcDy1cmUBmiQ68fCT4cq2DAp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3764 - },{ - "name": "bts-in.abit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YMpb1uAREZaU8YGeC92JF71fTfmakD77iM5SrqecgZ2kgKWBM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SakKqZ8HamkTr7FdPn9qYxYmtSh2QzFNn49CiFAkdFAvQVMg6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1831382 - },{ - "name": "bts-bitcoinindonesia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rs2tVnUxvmbZHD86egWGKw5mxGfqoF5dxJSS2a5775weQYv5G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HFVkGLjugdBb5gaMawg1LkG2Z7NX3hzwuSXsNhm5LWFbVPZYn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7300016 - },{ - "name": "bts-duang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7koWsP31anGt72QMQY7sR4hZnMpgevZ8EZ2yoKhP5CLGmpw1RT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BxhYhd2phZf88neWWoyqeUfTPTx2heyjqefq85YzLoBiYKcjY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bitcoinsig-webwallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dTHQyadFmNkLtnB68MK7ENu8hB1GvjFbuY5RngGz7YofLd78y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84ckFf4TeWCdeR5fuzQjAREaDaRmycUCfSt3fG12PzuZzRYbyP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 372 - },{ - "name": "bts-pdqjones", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bg7DxgtK1ZzcxXiEDhNJttEuqJZAoLuge7Zii3oPNqMxeNfTf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bg7DxgtK1ZzcxXiEDhNJttEuqJZAoLuge7Zii3oPNqMxeNfTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44 - },{ - "name": "bts-bitsharesinvestment", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PyUJxEKS8hXdjyffTRXqmJ5yqDhM9noxoL9CobSgKJcTt2wAE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HCVUozR2UdbQvYAyk2Zi8zgVMYSA3h7PzbfrexMySKcBsdc5c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 287 - },{ - "name": "bts-testgui-081", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JSYqRDDGUMMPFEJY434cY74g5b5vyrbfezRd5qeNaKrSFM8ut", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GGf5Mfr6gHApPXGaksxRtHjMrHHTDQhpLDMzuHstBTPm4wVXb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-jdroa92", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NeeJno18fnJPZjLtPnS5PoMnHnfZZAoteR77C8tSgoohBtPnf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pE2MkoSeQPtVMERjkvzo2HmZGTQCSpmnHtsYo3CXxhSeWrvbH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8213 - },{ - "name": "bts-delmoro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rHvxxPDHwNuqAqaacwGkV7fMjDdfMrGWhcJxJmeAYoVnQbweB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E2j3weVWuz7eWqj9eSkBpK5xnCkmzDBynsvbW3FuXH88SyKEb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-facer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CBun2nc7xojfftYrPtKEhD3acggDK1dkk6sT2YbtLPtxSSdDD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XvmLNsmk2DmPCfRib6AmqVzWJ5woafztYrrorqRvh74f3BfSS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 352237 - },{ - "name": "bts-btcid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57sBqMPXhrXN58UjCmDNsiKK1aXCMuGWksuAAktYzzV57MNmkk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57sBqMPXhrXN58UjCmDNsiKK1aXCMuGWksuAAktYzzV57MNmkk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 147 - },{ - "name": "bts-zahidaliayub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xdYeU7BkLeDse2sB6YhxTQBPzZnH7vkMZNQNjwusMaoAUYr8v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q9CpMdnZRBZczAfWtH4eu3jeotfgBV2KLFxLrxqxnbucQk851", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3960 - },{ - "name": "bts-philander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68PiF1akmbeaZJo81mDvT2X38Y9X25RRpj67scv8tijw8EsvX9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hUKzaE5LsebYWo9nxXU3f9oz4q82uahhDmkzGox1a5xMMbTQD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-azerpoiu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Hfx6rE3TEfejn9meuyBfV94FzPCaKN5Xc247F6jahyLD4SCJa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NnoVnGk71nTmL8NZ1oMakNFewQcaD4hr76CqmnMKG9iN85gjJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 774213 - },{ - "name": "bts-orpheus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K2UnqbCTjZom2M6FPoGucyTGPBBAyheJGB1zqC7xGmCh4DLCn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zsnLN7LVu8UuabTD21dcsjougdmf4pKs4sSyeDPCfMDioqmEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-gouwa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87ofny6EyiYCyP9ssuKrDDcToQ7mxeiqN6xLYm1rDaZDhFo86b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86wQn7qBAzLFgiCKvfC8HBWz6ne2jhbTpbpXKTcueT4hXuC7Rn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1298 - },{ - "name": "bts-architect.yao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cD27FQR82gLHKWCVxVhMc69XkyojEPfTd9H1hotPJBuNvDyav", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B4NJkArdNXxF361W5DTErnjSZ42Bu87iW7s3XwMTdrdL1hb6i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1492880 - },{ - "name": "bts-xtac4u22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UdEvBUxDZCHY9W3mhuvUZoe7K32gqU2yH8z2jB74hjewm1wTg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MmzSKd3Cfg35YvG72y7f1jKoVwy3FEkWaKvKpUgVjHzohLSBF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-kimhyeonwoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST544uj6Tc1NeRGJUihVYgfKhm7KU1bbd4LKx88nvurGoJZtYLAF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST544uj6Tc1NeRGJUihVYgfKhm7KU1bbd4LKx88nvurGoJZtYLAF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-brettik", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vyeHdmk4eRU8wN1okcBMaMehHo2Hxcr5vpEzPoKkknaZUZWMb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Vdnf6oaPZwVdQ3pZXbWigaemD2vzv48NtgcdjPvX8HoQds9rA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 199873 - },{ - "name": "bts-yuma300", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yg78FMUfJEtYq2ce7RPzuK8RDLLmmMTH3sfn3CsXDtsRqPfWW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C4Z7RF2EusNYudBmLP8Afvh8VKZSb5PRCKEwXR77yKWzFuqHU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 395 - },{ - "name": "bts-tbellinson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W1xaWM1vGSBEHWxuoobh37327SkqfV1XjfWhpFnw4C9nriyVp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85X8WeedyVFjjaugiightXyqNa6LEFNNCioqNbytWb8YuzwYPz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67571 - },{ - "name": "bts-xmrk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ck31R4AxP9CA4gCMxJZSCgpcxDounJQ1uAgbeUX973HCoRLZf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pXGfCGoYtHwyhZwkuwyt5avtFHqqtaDYRTessxZDf1iYqoaKk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 280052 - },{ - "name": "bts-don-don-bon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53nv9LKrCLatNyjVLoeoQKqPyVQT33JnvfS3HwdHCUTpFAAk5n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TGT3BhEMUzM8x2VYttvVGMCkeYJEtBny5A1p8hzLqkYB6P9KK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75618 - },{ - "name": "bts-circledavid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QuVhUo6dDewBYcYqwiGyx3o7WNAqpmrp6LksKXb5Q4EpeEn3X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5abHxgGMbuYyZyK2wgoAbfxxCf1KSuCb9X7groMHqJ5W8X1qhv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1025891 - },{ - "name": "bts-puremind", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AKm6SVfDnrcWUZY9jVtBvQcnf9K6H94Yb6nP9G7QYzfC1Kjtj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U8rU8ZmPmnqByMxEZ8XsRWVcNBbLeYuQc8p8Jrqky6eEc9XoQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-lightworker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8goEhHRuevaYUmDconPXNz28Mbt4zRzxGruFyg7GVtkDjxM5cF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vXXSRW5memfwWAtahRgWofmh6UFrMcfNKHmUVWN8y1JNUrxdL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-mysuper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wc7mKDh4juJ6rco7vhkUfECfPNQ4mz9Q4sNbon8sYCvqZYwjr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7utzF13EbY9yjpzwjGaCLbNTfAa8ZacCEP7EFRYeprMSbukye3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-diletpoly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KwiJEsc1paKtm3eu1fEYNNZeBinc3GDkV13jc7TXUGK6b6x2K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h3KzQREwEXF46z6XLcTnH6jcDzBBT5y4jV9eKHQpjqKehkqhJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 404 - },{ - "name": "bts-skerberus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PW831pUTzVsujYAafTP9Fw1yy6Rz4KmUN8RncG9sn5ERdsuNe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MqjnNK4CAWiozGAQcvJqmUwCijZdVcmLY1bvSLeyjMC3dmTRh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 127125 - },{ - "name": "bts-minedo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FcSkuuT9mJC52CoNGsZryRaNYM686EwUGeRSRrtCDU7wXJ8aG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bBXGZtKrFZnskm7kNE2U9gP4qLcP2YwscqNoKigK1gcjiQ36d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 207 - },{ - "name": "bts-comp6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aqmtfPeCqi8ma6KtromqHkS1AMcNwXzd3cuziAJxNYGJ2UAQC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aqmtfPeCqi8ma6KtromqHkS1AMcNwXzd3cuziAJxNYGJ2UAQC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 743205 - },{ - "name": "bts-papiros", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XRmtbcck62LsEedVg8EaYDZ4XQ8K8GPeuDvYUPxUdZUPwM48A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XRmtbcck62LsEedVg8EaYDZ4XQ8K8GPeuDvYUPxUdZUPwM48A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 675326 - },{ - "name": "bts-markyfinalnotes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TC8TSrWwEzBsb4o37ERYtW7x36y8wdxMz2awM2QJ1333aqD1e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NkYb9Zhjqi8AgTuEG96YuZSZwFGhQAS41kxPvSfnFGJJqNH9i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bhaal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LtNJZ2rGWpzSUmNh6B9tZ5h5fY2wsx4Awwoq4otpf7iRoNHUs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D3hUrH4M8Z5EWAnJTECiygjU1QYBkYEAY7jQN1DoyBKyKzR7a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4150513 - },{ - "name": "bts-shadowfox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ioWSSrAK5vrRjE4fmqSGfv1gfNofCX73ZJJfFw3qdSrJZHreE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ioWSSrAK5vrRjE4fmqSGfv1gfNofCX73ZJJfFw3qdSrJZHreE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50262 - },{ - "name": "bts-btsfair", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5faekH9yEim1Wq1AZ4dAnmm2ZjeAeFz6E6H9sh1BJwj3yTE5ar", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZdBmSVepUb1V4HSWrCDinGtdZV3TPuxvtPA6Gnzzwky4f7Tzv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37218 - },{ - "name": "bts-minebitshares.blasulz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vM7oXyBmnkX61YibaBou6xgGHYwXaYcwCLiWHWYy1z9Mc86fi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6njHmvdqK5hV8kjnMKhTHfxUhpE3rvRB1MRfr8dijkYBmfG4sD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5766 - },{ - "name": "bts-bravo-golf-golf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79gcYvvmwQGFEueeEahcfGP5EgbQtt9FDdhvHnUWxwtbeGyykd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W9fbZDEpiGbd73svBmzv1xmkysDmAhwHfHvEgUiB9vV7DuAtK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-frozenfan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5brKy5yCToGnXWFEeiFSbXmGVgmUmM2hofnQrwNZigb1SeFhUU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KYJVp412Kx778LAB44NfWMtZJUgKR4zbwkusW3nJmXrHbDBQY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-content", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fec4JSFYS3ca6pqeen6w2iqt7PSkm4u22o3tAL2Hmr3HbKegN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EjJ88zuaUWHmUVnNyPTVrbRHQvuKjFYyxKHMSE8Jtvfg5A8Qu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 253897 - },{ - "name": "bts-tractordpm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LoYHqbXud8i6BaYkq9KGEPuG2bA7QwkCwKFRduiNwfBLn5c3J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MmaFRCTUbGJEXTbAZuuxeR9wtXuKVak4mvjSLpmXtr8adMv5H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-test.btswolf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-receiver1", - 1 - ],[ - "bts-test.btswolf", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-receiver1", - 1 - ],[ - "bts-test.btswolf", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 178 - },{ - "name": "bts-benj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MA3yWiFt5vZ3oRJ1VyQuLZVHhQDA4vmJT5C7yzX2WdgMM89Lt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6susAXm2ZBCDxNichbT8s5aKCNmwAwSZAqVdtBBpg4uHpaFqXx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2901221 - },{ - "name": "bts-maw488", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qiYJLoYQL1mstTHYDbzRi2Tr1JEGYNMwDjco8KptNRvCuNxCB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ogzniuEGJVPMzF86rBkurQ1SAnHUcLa94LfvqESTgSBTJouW9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48857 - },{ - "name": "bts-uiatest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ackVVCtNNwNaZ2TtBwuPLQvEayk43DbxqjdQqd53F2L5cT9ZE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s9ygLQdxNa94nwPa5SUKTkuLmNVmnHkZ6D9bd9gKBkyrc4US9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33630 - },{ - "name": "bts-garylarimer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QmYdwgTdFjFtux99gAjq9w4jajxHsMNvEDYB6wXV5tPkcNBsW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-hyperetas", - 1 - ] - ], - "key_auths": [[ - "TEST5QmYdwgTdFjFtux99gAjq9w4jajxHsMNvEDYB6wXV5tPkcNBsW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7106383 - },{ - "name": "bts-tomo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QaEb6yEqYpMEkkTWnW75dCk2YYyfqhCnpnhhp6dLZGWNY82Aq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST668fUeYvVEjMnbx1FAZE9FuixDS2k316jthKxJ1Ya4GJbnHG2v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-allworknoplay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AgpwDCKJGpEguCzDghgkaFKmpzJfJV5D99VdQQDCb1HCmwQRn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68Yr15FL44QMn5PNsgk5rqNmFoxdkSKc6yddMRTcrbovv3MUpc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136 - },{ - "name": "bts-lyx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pymCxL7M6qGUaVjaYrtL3xVTFv5kdd57TJRpe3CgieJMFKeQc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m3W3xcs1yFQPits3RZEoQZV336cgS4Hv6PYzzbfVEiDs6VsfH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5985752 - },{ - "name": "bts-twin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u3bedJDsbUooKqhYRtwLEDwPQYYiYwuC4njZCnnjYKeVwbaqF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i2LX6uSGZH9cvwet4rBGbrfXne2kG1z8hHz24PgzqCutpH6xj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1495639 - },{ - "name": "bts-balto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NtugtkKwXP8mGn4iBksEfraixKwC6cyi9ctxJbCLmJfYrtMou", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MQ6EHtRBnXnGyWJmuAKHtA8eV2DRXrZx56kNr28mvpEC1brfC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 362601 - },{ - "name": "bts-cryptoctopus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xvw5MK4nVFN4frF5scvpU5DK9BrgNe6qaWCnX1KxzWSSEqnqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NSARthrynmopBZrixm3r6ETUj2UzuEw99Q4gPqaaoMtewCMz5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-ttena", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mNhnrkBQcGk2otSLCj2d2uRq95hzkcqFPv6NTvFXi8RyoMRJw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zJorGniteh7AQdJvR5gBBGFcTLfiosaj8kYxbW8dhVCKVmRdh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 287401 - },{ - "name": "bts-totocoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Jsqzf3aCC8WY7BiPY7LHjp8jNaA92b9YZaCTRzFQ9erU7gmvu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST528zBkgowSZpxxfjBCcsDhePYEZBzD3xyob49WHXdkKGTbwDU8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 411 - },{ - "name": "bts-suilenroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HhgN2dRdV5afRwXZF6oWmqkxtgW9YE8nVQi8jpNbrf1ZeSDi1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hrhz9VxGyWcR8RtWbeMYWqBHHLBhVNr6sVbAdPddexbyBw9Kt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161181 - },{ - "name": "bts-upup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qr7seNez9JrwnqMvn16iSPT3e9iHjdfLKk259eu4LdZhhoaY9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UBmKcjrdYzwspeVdniSofSj8aakEZV1n6R3FYmDD5wJyD1goh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3200332 - },{ - "name": "bts-andretti", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pdxXJHDcm8GtSexANny74fxvH764RdsVzGUekqpTSj5wYwVG9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RsGKV5WR4FE11gQ2j83ThRrxHs8wSe8PzdUsXrafsaeGhs1Cc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 534 - },{ - "name": "bts-artg1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C9Ez41FhZJwnSuAucb2niS5dPm73BM5Pt19SbFdDRaSTc59Hv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a83Dyg2kSLukMELchNShLPhfbFV5mozvGd5ndaZsBoTG7jqtm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-minedo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BHAT36SWu1FohfW4bQuCW6xsPCQQ71hKGs2n4F3xw8E5yxr1N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LViU5Vw853bb29x9kRHsWF7d86jgsGkQwdNGQ3SzUULdaF4fw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-socal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o3eR21QB67FDRquUwb1GodPY59yjron67aAToey9uYAP9dPug", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AxmpvTVASk1AiUPVP9XnSLHngsQsRcxQBZ4TYLk32F4NDVc7b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 794 - },{ - "name": "bts-teiva", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ejaFwLP7ptQy6EiAixmPkLTcWLzwY7XJBsYmoEkg1qMevu9DH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HPZAevASpCKoX73WeXYWTYq1xeqRP5p8M6vmY8kDKjeD3AUX7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8982426 - },{ - "name": "bts-woaitou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xp1E1hzkwD6yv4d86F3ewi47M9kX1eAaNvZGDPxdwjEvZNd5s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52h3aPEPBMpNremQDVydEccB6hM6iSBBE3gzoaWPNRVqWHsbHZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 154276 - },{ - "name": "bts-tora62", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X6CTiAyUoF1wByDA17QfbSoo6HuWsudpkAkEKWP8KTjWracf4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4urtTdpJYUFp34uMQEqkpoKVTurwppUcnadDAsJJKfTEGCmfAR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47041 - },{ - "name": "bts-wildman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CtTGbT3ykgASYyP9o9D3gXwjpzEA9fX11i82mStYewD4sQaDv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83tHAYBwVmwSoihUK5RMPyTPy7AUUr1aENdndt28wn7uXwz38x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 238356 - },{ - "name": "bts-shmitoshi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m4KqrJDoSaaxmodpcR3kkT31gUVqX7n5XDxAt57DwfZJcH8W4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WmAK1PUzUsb2H22bq2VnnzzjjpSoStaX4ofsLAvWe89bhrrjg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18167 - },{ - "name": "bts-onebyone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BHqM6ZDrnpaDYRHJPV8PwgkSY3ffSWpednRwrzwyWuDnWu51q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53AakpyWSRnRwgXHLPiZ41wV22EaMMaKKYGKT9CYYuk1ZqbeTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 595030 - },{ - "name": "bts-w.tinker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6usgBisbDnRtDdkUW44AMxGTKeu9TVdZh6QY8ptbFxxtxJB2w6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51fbRSzHJBVaJW4P2NyaEqdHM5hxGoTcHyKhyWpCZMU4QZNgG1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bts-employee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bbgLkyeJrQQiy4vXiRGhHmLhF9p3Kxdf2pgHFDGZCJKfUfxWR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YCYaYqcFt8TK14LpiSuLV3n4d2HBcmeq42wtifEcyLJvAEnrU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-lvyaluo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dQmBvCDDWiKQWNSCoaJU5JPCnKPQAYioPHbDV3Dqi4Mn7cDSu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67ADeu4ZTedJtETemqjbg6W9USdvFWwfC7LMfPpmdq1oi4fVfN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108 - },{ - "name": "bts-taryn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pvmeXA78Wfa8uDaRNrCQPA2HF9poBqztQqbPUmjBAwcTyU6Up", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C7QKcHMwrqoBmbSpCmG5yvvVQpJuCsgnfDfKqUgwxnH84jcRk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-braydend", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NgE5y1VjqDBWm4NQmaovb4Ri58GgK93gryaFuKJyBRRHWvVhK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vjvyaa4NEQwg79FVExPWhtNxPs3bdu8yoZJUDQpKUyHRYB97H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-profoot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CiY6wX8vUbNHGfj8MGoNu6QBJ17Mk8PRBdpDa4ioqWNcp36FE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mtQhdp7PEKbv3QGnnsW2jP76edE8gqzYkfbc92gfyeJ8He4d9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11288610 - },{ - "name": "bts-personam", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Kn3vDPJELVuMtVRkNMLvNAuYzxpWg5EQw9HsVV5ExpTc269Ht", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r2C4AR43SY5rjFkkpP7S7Wrv4vnEhgPruqWU2a2oktoVVFvxQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2151686 - },{ - "name": "bts-mole", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wcTTLdnkVt1vyc4shJK7sXsQtxaNayy536pkg7P59U6wox6Gh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84D7W2suqKhGLuZz9vCcV779Vqnyq7wyJf25KpUopjszc9UmMa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21223103 - },{ - "name": "bts-hd39nc392n3x29n392n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61LX4mj1de5T2smhK6Bpjz8RqzPSzMVAiCtHbYVkcNLijeJx5X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dVmEJQdFaUXRnaybsUcoWK3hmp465DzEmpXx9VdvnC3b74hkA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-toten", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AtusN7FfFUq6HFCHxBaU1EMhxS5ZfxZ3ccMFGvDAx2wVzY2Zx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eGdnKyefKAwUZ8qUGCKMvy2C4LMCTSciEamYgymKPiuWoJfJm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-totom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u1VqybZAZ15LXg2S46GeYVgjUGELGNAhE3SGerThvDqfswaEN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PydoWrMm4kSSbaqZrPj2k8hx9tWbUdtBNrrQVorAEYxs5PyWF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-toton", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yNnxjnnKJH2W9Fj5aouePJZFka1J1MxCxcK8oFn8TREbQwR4K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qh7FptymamgNLin9ibBe1QHyE8vcm3UKE3pdUTwnL33VeQzWH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-tuten", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hNAaneq3RXghkwrwVurHjCzm95QZ6cng3KQY7vZ28RgSKEoSj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L7ZXXbsg6NroCvfGjdYVSFWLqFtFCxxUaY14DKdCyQpm8to4m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-tuteng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MbvchE1FhQyjkqvHz1kcQVgw9Hdj4YJhBDyuLm8AjQHR46gWL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6suCvBXufHzujPhtR6WunV1TzyKXBi8hMY68U25ZHhDWpyyDnU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-hellothere", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gAUbuKPUN1mgE5JAayAVUnP1P3rooLieSKgi9kp7WhhJRhFaL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gAUbuKPUN1mgE5JAayAVUnP1P3rooLieSKgi9kp7WhhJRhFaL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 350857 - },{ - "name": "bts-yangjie2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d8K2xYhkXZmutJgAViEbgx6isLz8qDW78bzEqutKY3qfrt6HX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d8K2xYhkXZmutJgAViEbgx6isLz8qDW78bzEqutKY3qfrt6HX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-bunkermining", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52AcRVq1Mo1oSCYuw3joKoGwuTZVQujzKCgZeo59M2BTj5PSmB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GcUaDZgtq8Gc3CTLNMofsA1CUv6qfZcVLk7cFw5E7xz5ew42Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 863669 - },{ - "name": "bts-acdsee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pEuAjmQwP12LmFKB6jiTF8H9SDseP3m6zpwWnBgjWgsNrgyy7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zKUAUYkxFzpnNPV8i37kD2Y6p94kTQwFFGFDUYZLtxTkyHsTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-chris4210", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TSPsR98bu9i3iAu2JCD2VsPZ6u6NMKM4NxzguK7YFyUtW5Rck", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f92AiEUb8QdYTKpqTm8PShZYovDRmocZVAEDWcKUroQEMUUqm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 127451 - },{ - "name": "bts-miningkp1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JkhSZ6iQaaWscT7AdKiaT53ZzuNyMHt6bKoLY7yWWUtrbePYU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RJwC88P8cvqpPLoVrn6BjmtkWLZK85VndCbAdGzuLRBFrr4DD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-cryptonut", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yyCLx3Tmf7YM8o2svY5K2JmHBqH5K6L78s6NfcVdtSK4yR3DQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PL4MmYQwpDLrLzwxgEpGDsmZawnK5ETL22VJEspshq4wwi6Ft", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5777 - },{ - "name": "bts-webxeld", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aweSbeh7YT1dYjdfp3q1LRdL5Srf6eTen6MKZSJnkYk3EyhRC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ARfYKbqkwbNUMKH1yH8B2DkZaGQfpXaQo1GLaRpcQBZ1cicR1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 206957 - },{ - "name": "bts-aiwe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uHKpM5XgCfZbNmt2eRTCFzsaZQDdfMrhxXjm8ccgV6eNjUPxb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89riuFnaWzy8orKfmCPopWckDppgtFKjqfD6jJ7g6gYLdQdT5M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 123 - },{ - "name": "bts-rilu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pVGBuiWr8uHPwRX8AfaMEot5ZQCTrF73LjSouSbg4rBm7Jf8G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xWWf9fVnVYfSL1jshKiWP7nWMSJ5K8FCbkXiuMR8EVXzY4WPZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bitshares-ca", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CBL3yiQkfiApW4YoDs17BaSU6WdZWL43xmE8V22WDjkEhxBiK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nDVDsEPFy5KnitdVoxpAaB6imoJT2PkHifjvNHuaWn6WCePT4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 179 - },{ - "name": "bts-kim-webwallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iCcQomM25XbYYVgL3SJKUcT9p9P9KET3tQKU1AQ8k1psianH9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AkzfHBHjJNQVxtfYuz3rD7s6oR5egtLuPQjYkHLP1LCE8je7D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-facers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73reC5y1UTGERx71eZzj3Wh13Jy1RcwphA9xGcvxMdGbXkuv4y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56ur9gL4Krkm83L4G74zoirVGAQzoPQWHQcurL2ogybeUaoM5u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23203 - },{ - "name": "bts-kimhomewalleta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jd12LVKtad8nSM6VM3oL8UZrDVDeoTff3q8RvUZDH1LKwKFjt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uSW75hjuifWeMPYtbVzzW5jza1X8kFognGWg9iutJyBPwCNL3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 186 - },{ - "name": "bts-tutem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fh9gSrjzhNe7CB87ot7yEphKGCg1bSKq9aZz2292h4Y3f34o7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yjPYXwCGn37vD4HXqWGcDhLsPdsbpSzsjybR6pSAkMacoxnXh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-tuton", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tDpaa59wU3i1LMUEQoxnozYCGVu7Sd9i39iyYqyKB6rZBsv2U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sBrMtuqB5nYxzZXKZLwx52rYh2BUjL8SahqWM4ZXECdiVvwVq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-tutom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83hKBm1pCMgmAzhajaqCQ1LGTQQL5eAnqXiLqaWPGVMaAgbptE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L2Z4FkdgBYkPUm5SHy1SZ21KWX737Ejb4QyjXNrLgRUzcMxTF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-t50", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J2iDK3z4xcT577QP8BpELtxhUnj44dVMQE6ft9BD3td6MzQ9N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST546F2cLXYe2D7emw6iNrnYof7vF5gvvCfEMQ5LDTyh35PtrWwd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cec", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hq8ouCcQ9Rf85454ATrTR6VHMnrRd7igdcStVyfGw8ma7QvVn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YzKuCPj9qZY6AFRzDdshx6tmnQ2twsoTmfekzYBCBgbdfmDVM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-pshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XBUr3Da4c2Aa8H1ABBvhqcvTrhDkMHdMoyDqyYrcenQkvsBZG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52UWaX7SYpXgrpd5pe9Xtk1S1V5YbjBEXEQz5TUrJwqUc2tDeT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-vladare", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LHDXcVnh9hMZg2xzZqXNivKq8Ekp7vj6aJJhsxaqajbf5XRPH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TZj3iFRxxvaeu4Zwt1N417XFwqJrJPaUb3ywQ5xYBtAicPoeJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18612 - },{ - "name": "bts-pilot515", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mBPtuWQWU55WEt1NsaB4HMwVswsVWUb1i72Z5riL3Gxfackud", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X7q6tgzPauQPhfTDUvXQQAhc5WWRvncbg8J8hMoDGMnkPd8r6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49378 - },{ - "name": "bts-oconnor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k2SKZQ374WK1hSTJYrwJYVqNCZjBddqTCftNASq8tHNr7Yuyo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FUBNit8SDRiaL4FbXmv9vp8rtrGnVeQ4G2H19rM1Z1SuKbHV5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143567 - },{ - "name": "bts-skc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rum7z5B947iHvh6FJNU56U6MaXirfPPsKXRrHLApc4vKsDB5p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sgtSohSy9c8G9hjgavDJPkMEWj8nqw4UcT6Wt4e48Ts8Zf39S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1114 - },{ - "name": "bts-negative-vote", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XLQaW3GZSqpXDeaCNtEwghkY7SHvXHyEyWAExBNMWujba7t2h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B7XoZGa4wRa57K8vZNNpptTFbGdNzW66nMuFtHSwaFpd2S4kA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 276 - },{ - "name": "bts-yunbi-exchange", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XtcQx79yH5LD8hMYLzbi448b6QaoxCkfMx7ms8mZD8YjoxUj6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61GudJ62RkziQmna4aKPBUJ551ePZjbQQRwUuW6cDT9wnWeuAZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ed-tred", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71m7RpxB1RkBMHcXiEnHJ5vZXEGE2P8NabVeCKCTzAT49ZLrSA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AUujrd3k4hWYhVSX48JTmCP8g96G3YPHFRsCvjodKvDKSNEt4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 70 - },{ - "name": "bts-detect", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jqN13khhdpB82C2CPJCRurvrJStVCr7CTyGzRma5zJpdpgDAp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bKntBR1NrEFTz4rXL7VPA39LJrKfN3TvCBcEBK5NxmEKahJuU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 142 - },{ - "name": "bts-valdon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YwL6Qaqne4umb8dq8avFeomY1qBQruyR1TgwP3qLCCWh9jdEb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UG6CrbkwtgMQzHGmzdAwQq6PRon5zmLAJDhjjpDG2SAofQAgw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-arslanmito", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UtnSiahnTNiLkWZP1EcFRBmJ3jdDUN3EFh3HDGRPN6FLX6xUD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZZ2YG3DGrBZRVazhDhehi8QXB2rGfFF6kvZLytY722FNhkeAE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 962 - },{ - "name": "bts-hornedpanda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t2dGYt81gKzLzWj9KDTwmwaw7b37BgLCZiBLGfFfZrunUN3ii", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZiJXjMRz8FmCuQvh9ZVqVmdRS7AsyoPjb9Kw5NQbLB2ghaZej", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 191489 - },{ - "name": "bts-cylonmaker2053", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5p8FwrGDbEFSmCPYuZmWUsza5yzSFoycdP1TPp9opfrrHQ6iwF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Cwu5CSJCrjj4savnZeW5nitCznK4syvxKdWhwGDAVnNisLkX5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8635336 - },{ - "name": "bts-d0n-j0hnny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Civg2hK8qsjiCA82DoY4BgJ7mvogLfTr7KRh3qGwmSA3NBmsL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6svSHgA7HFbgxUmuUgLZocGqLKZgobDFYMC1wSxCNBD8yy5EeT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 668943 - },{ - "name": "bts-krzysiek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qaw2rShzzUgppPL4BDPJu8ioaBUMFLiC914enPk8eEeWzpUX2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5641z3Uff3ACF4mKtqEQNdn7ivSa5Rvmxb8m2PhzzFehth72EL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-psyc1i", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FytnHqta4K6CdeFqCqN9BsxmGuk7SEnmxFfhD7HPRkE7LdXMM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d8k6McKybMq9JAeHa6g8ynfx8rZG5Dy7PBCEgdCsqASmuw8Q5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379887 - },{ - "name": "bts-telebit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5re1QiZa4cbBazG4b5aU8YZGv6gFVBa5Gau5pFCKsTjQXtP7X2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YEghEPnQs6KCeEJD4Hc3214R98tmM6LmLTQGmCt7mEk81YcVQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469 - },{ - "name": "bts-bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53smwxmnFY5cW1Ab7kTrdY8wmd2B2uooV5nRC2wrP1br1NHBod", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MTMXrZjB5RFHPgbgeqakNx3c2m5CXD6nUzsDHhGyqKDwyRtYA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-minebts1.bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65geZ4DAkmA7kagw1BEzc8oahcru62XkDmMkaWBj1fAZuXH1LF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ero2gbMfJd3mPBXREqbfco8Unq13jdzPVEhogSvZsNVrbJBok", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-minebts3.bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BoveC5ydWa1zshjN9jx4EeYLykPX3GvJq8eRoSTGQo49JYWsd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RJVhwqV8ifMU9f3aSPuANb4BMu8p3kETDcKXKGCjTu7PdE11q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7040 - },{ - "name": "bts-minebts4.bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Uj1uow2xFSJ7LHVwo3t6rHmPbwRC3BhVVGZUibt3yJDLP39DT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YK4W3r5uXMqMd4rX5Jd6M8pFKxo5yxZvL7ajvxsR1ZnUrCxKf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7825 - },{ - "name": "bts-minebts5.bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pcJZdh1XZQpCLpG15PXKkmsc8jF9qB77D18H4wBUiB7HXYJkF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78pcUmxjW7rRzNPnQUfJ2m8JbR74cXJxzUyv3AESZ5T1CJ165M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1027 - },{ - "name": "bts-minebts6.bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5em5uxDRJRXFoecmKLx4SnjYLMmw3Nfxu2zao3WLHUELL9h1Pj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YaGzFHf1EYEiAr4ZDn9gG3XeFnYGwE5JBREv6xBfAkjXvvoJ6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7219 - },{ - "name": "bts-minebts2.bunkermining-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m6yYGF8Tu64xs5Udw24GiAAGcv7XpdJdzR9rz9X3af8bMnu8m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Pbftc2L9qxR23bS7jmS5WhUXdSPujgmiFRPkAE1y7bMuPZvhB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bitacer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QsX535p8TFFpUujypYQrf25q8WXj1SnPpG6rpk4vUU7ZpCiEh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zGHjzyeq6c6FugZcSZAWF8evdjgYUFFyDs7F89m3qK7DdoJtM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2208 - },{ - "name": "bts-aldogbites", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NH9eKEHYA3qLUKKsFoCbznq99fgoujfGmrukSQY2SfGjUCSdP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ANv95uFPzS4PM7mVVW8qvFgiZQ7yLHddURJ8NY3epGHvyWqQD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-blockchainjs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tv3bRSwZsmALKAGy14tYHx1M3mLVzJoA7V33yXvQuYS18FrZ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AvFeWE1doPtucS8gLRYupwwQsnPwftyJdxRkQzAvHNNjhbVft", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150514 - },{ - "name": "bts-midas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6heMqPAP76ZEdZ57DWsAfh5pq2Yvr3MEnqfyW5Tf3o14TDZr74", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hqyTvWc3xwqvMa38MwffaGnHhJRzqf3LmPTCKeb5EtWAWdLnE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136574 - },{ - "name": "bts-tony1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wpzB3BgMrZW88KWfdeeSpy3s8jtzDSLgxSgHGibjHxCRvtgjU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76C8WKBPu9X1eUt8FH6zfWnCw82f1u1AFviDtry25yK6qaSq2g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-mindphlux-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nsFqd2Wp1jj87dfKAEGmXxCFWe8ak6ptz5kaCpXVgaFuGekKJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-h4ki", - 1 - ],[ - "bts-mindphlux", - 1 - ],[ - "bts-mindphlux.witness", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-privat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69g9xfLu2Yre5jKrEYkc5iqG7kprMFqF2LR3GqSDtLTknuqpBv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69g9xfLu2Yre5jKrEYkc5iqG7kprMFqF2LR3GqSDtLTknuqpBv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1086721 - },{ - "name": "bts-li-strong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DfFVe6XuYjQ2SdNphM8uZba3bHMBQg5gLND3jxt5KjbG8zreh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fr9vKupnYknb1UAxA8Nuf2TcY6NwZk2Wv4F4L5zPbS5gi5rcc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119 - },{ - "name": "bts-nurse-m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61ePdbMJTqS95aV3Aq3EnySuWUajgfvrShPR33p4XwU3mPhL2Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SBxpun1CwCLDTfviVp1TjYMs5BHTmpFrAfYctLxRUwjHwonow", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119 - },{ - "name": "bts-churchandgolf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61kmpNQ5MVE48c5Bvi2WzzbFcKAqoVsvJCwSnADqEqepoNc4MR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73TQ6FAT3AabQ9LqgTHcHtfSV3rYHmdZzGENFf2Jeb4fAnSfdb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 109 - },{ - "name": "bts-bitsnpieces", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4utcBfZxTSXyLLqSbmXSk9AddyVHHtskhU9z7WdCzm4GPhkqWq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TM5SSuKF5DV8BLYicm2NBjXQRpp8KVUvxNG9z7uF3ftMWGzEr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 486134 - },{ - "name": "bts-bitsage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L3L3h1jPZZfm3GBZGZ1Hm8ppzUaQ4oFFVaog2G5FppqQfUV3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7muu5u3tqmua9m4pp5v4S6eJo2iWAR6sxJ9dAJzHiTyyJkj5Ft", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bitshareshundredn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JrYwxrajBTX6XthnPPL4MSWYySkk85aNvvyZpFX3VdZKKDQNj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dX6ukeBitsXAA67rP9rgNUSnpVaWwhYt9SJCweiHWrgctxjT9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 123007 - },{ - "name": "bts-devlux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tLw1ZiCapDikYfobi6xPEnR8mH5YY12SMg6sJoAwtNSnHFDGu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72pvJKpBVvyvbBJpJebKH4xwkBmzkcRx8yFjomECBCrsUVNdtZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-dwknch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58iecEioepZ58GDTdvZ4ttXxMbWSEyaYPYcPmnCEdCP3kKxYLD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kbu1cZMZJZ4HZPpKbuFYqNvD8ZtX1CU4tn8L2uG2F4feRB4Fq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 676562 - },{ - "name": "bts-christopherhamersley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NjvpTz3ntRoPpNeFGPwsVjBjQvJHQCUcHQqG7wwoCUpZRXAkv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NjvpTz3ntRoPpNeFGPwsVjBjQvJHQCUcHQqG7wwoCUpZRXAkv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 118 - },{ - "name": "bts-yqs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HbyLXHYjUgGewiGVgoH4CJWquyUE18mjmc5HeSoLgbSdFk8i9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tiZArJDjVvXtUkJTXhk7x3seAvYXcaGBwBXjavfUFB1mrAhjz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2343 - },{ - "name": "bts-anonwallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87VLkFf3cAsdT2yLxK3RB8AdyPGThuHb9XJonByUuiiiZmL6kp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JTEMJmmVeBk7PeRcrkypmMfEQ72g7FeGdcP8Zp2tHaRFPm2BX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6753088 - },{ - "name": "bts-spielwiese", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jvVuoYCSUwrXxWaEKbKxFK2GSqZBP3mE8i9sUmkoT7daFeFQG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Knzk7U11bQkPA8vqa445a4mJEqH2EzP97TFfSXeQcumiBkXKe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ayarvon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oEvPYWVEEX8RrK15hJiDZK8oCnZs1wX5f541ehMihLwXHXaFo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wqPzjEKGUWh99tKbkjZwgghqEaZqd6S3iyKuMwBiRuij5suk9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 511634 - },{ - "name": "bts-themessiah", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xEqgh5MJCdBpW37HuipFNSCmdLoYT2ztqQ1Jvr9CUpPeba32s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MxNJW11YVSXJD7UqkiPBSXZn8oBZVybf3cSDfHr4aEGoqcXYK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 786543 - },{ - "name": "bts-chmiela", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K85sFzE59JpvVxXsYsbaW1UdeE2rpu6NpbCUKaUNriMugXgw1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yQE8smUNK2Uc1HeiFyDbpiiTb3AadAvGC6Hih72goBzwn7GU8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5331207 - },{ - "name": "bts-tomotomo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JMNswsQGQoUjABosUgyN6bvvzkzCcjaRxsCd9W5pmXb39vSR4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uPqC28EabDUochXtovD2x8RtvtndAasGuw3NZDrkAbUWQ4sPZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6776277 - },{ - "name": "bts-yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UKUZaLLwy8vBByNRyrsXnJ6DxptpHNRjhMZ9rrJ5PhjXS4eY1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST831C5m5gMK9HYq6CzNV5cbE9cbd6rfzVLt41WgUtkTaxBWhoCJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-btc.yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aLfc5fSoCkfKfQGNnhuEvyAV3Z9dn2NHZ69biVuM9snJZNyBQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f4NbSxYFJppmYCDWzE5TmvC1Zbe57NDr5DUAwdJH2BmkV3aaG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4139 - },{ - "name": "bts-bts.yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ReRUwsAoKeK4vxYb6NUbiUKtHgeHjJrgvLYSz1vRNaximdkaf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HDdbDLzMbqEwDTgSoKLDnnZ6cYqUtjsoDbDxdy1GYfvpV7CN4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13122 - },{ - "name": "bts-cny.yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i2jG4ApTQPmSXCRcdV9Y7YJVEph7oVttSf7mCdC3HCYxBC95T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8af6AovZbXWJB6CpvymouoZYapU9GC5wNj3AiGNr5yeuqxoPJ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3938 - },{ - "name": "bts-note.yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u4hr86xfJfguaCKG3jDE1YZyD8mC84uuxaCMZaVfEuVByvhWr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RsVb2QAVHZS4MQKBsNpAt4xRFmNB8LDdFLz5ohds89MxTYjW3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-usd.yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ynaExtbRttdLi9qjLyQpPscG5VvptDJih3k5bPMNAQGq5ewTN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63vhrWdB8TucM98HcyMrprJ1UoG3uDP2hht2eUjXpKL9agg7nP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4237 - },{ - "name": "bts-dcpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EqPE7pxiiuELcvLLUETuLR5uYc1kchUarsQLytNL6NxR1hAcn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NbVC2kCaAH21yHLQJUFHnqpCh6cBorXcqa8DYQhfrXZM5v1uj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8767 - },{ - "name": "bts-cyber-multi-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C2CXuqtyZVFoHQAQnn9bBg8M1XuiEe7DKTMs6HW5CqdZZaxeM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rjVvPv6Un58HSftaJQtido7wFMMjzcDr8BkfF3APsTRj8hfgs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-zhangbitao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rEsUwVXp8GygmXSUcLiJ5qBrr6rDZtCHoP4AqeMKhRwoNTBEZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rEsUwVXp8GygmXSUcLiJ5qBrr6rDZtCHoP4AqeMKhRwoNTBEZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 126850 - },{ - "name": "bts-yangsbovip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QBvq3NDdqHoPrFDiXtc3krFg11X3PJe1PmjkqRBZPHmaZ8DjK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UTahWXYyNhghDkVNcRCpGQZ5HwQG79YiXVcn9LMHJRJ2ubsF6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2117557 - },{ - "name": "bts-theeleventhhour", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZnBi7sj8MBs88Zpt9FWik8gAfLNHPBo5JcdRatiXWdxd17y7h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TKef26X3g7WZBmz44oJhK5poF8jwWP57Yviyq4Gj32oLcDfyU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 557233 - },{ - "name": "bts-peerhub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S4eQ7rYukfrGUWgAZGVTvX8rrKsbapBxPZ1QD4hzYEFFwatAZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zQ4SQqBRBKh8yx1WksWj6mxyVafXdRy1BZqMC6BnvP1WxLAcr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 610517 - },{ - "name": "bts-yun.yunbi-stg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84m39FecjTA3ZQs7eTrhzykM2v77Tp6gaEG4EiCedXaWQ2SEkg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ajTe84BcRjrrbcgmHVaUfWuawAs78b3BeTSt5nT3EEadV7g9M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3445 - },{ - "name": "bts-buycoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D3JF9YAjGb6L9bciXmcNqeriMeUvtuhTi5yp15VtgC2jixcao", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QYSBKdca8CcUadQq7rAaTRfaA8EXihng2byfjxg9iuD99PSN6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 84339 - },{ - "name": "bts-www.bitshares.today.zwilla", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cSWG5jdwZ2J7CSLDyQe7F79k9gu3DG5EaQiMvGb8mJp72Kdsx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MCXfo9ey84GRx4Ny4yYGwKSLbZqtwyKqihzZKmSfagtMH1QtF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 939104 - },{ - "name": "bts-yht801", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5biKqStQzXP7LqX7Pg5EftnUUaSeeNJiVnEGygtJtSkccR21rT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aVSYz4ZnaUyqzrvDAjqHcqTzyuMgo8iqdZDFJZKrzFqQQTJ4N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31256 - },{ - "name": "bts-vesting", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xxgezjYDHFcKfBLqastKsNcDJquPwBsC841ZLQodKe7DNE8Vz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p8ggcZbBadb6JNdJekZFoiTtbX5ufaUKQrjmbC1mRX9UUC9nb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-dashbuster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Dyovok6N2MqZtpgVrN3HvAfRKZSr9gCh3nG6d41fDopJzkYHg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ygetWq7dLMv4gpMuxpFR73RvHPCRs6v9t8b9Tr6JiuqeEnQTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bitn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ffXqZ38ce6N2yxWxX8kSShkQdzABoJ5TDmhLNikkhFd9Uv5Df", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DVTydnGadDQwEQbgigp2YcvdpurcPrz3zUZJ2mzSY8LFrAMJP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 800 - },{ - "name": "bts-ccedkusd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61oKdpZKCKQS91H12fEZCpqKyxU3tJr7oMsWyM2jcEGUU6qiAs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JaYVYDE9q4mmh9gNaxiXC6xnCKyaqvKGF1K21cHwg2TyZgyTz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1613 - },{ - "name": "bts-ccedkeur", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54mHsVYKgFgR2jETUG9r97sYxPxREnPu4joTSnyPQF7pcw1DSD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4thhFUUmBxXJCBnPrQw9KU62LxFMjanHGy17AzAtKCEMW3c1Sj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1795 - },{ - "name": "bts-ccedkcny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yn6Pbni3RnP5ggsGTkZMkNkkVix3hJVeZeCmmUkLLr2ZMzc5e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZGT2cq6CA7y7hfWDqSEoUcMpfQKik1tADkZhhWuc7DsNQNo8P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-soros", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c6LZHEwooK9UVmQ866rqMoaAhMgU7DWGhDkPc8wai2MRHwmHK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GECzDnR5TwF1Qp12Xg2wHL6VuBeVX764ETxUQmnwCpHStMZ6n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-aqiang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FAGAEerYQ5bR8oEFcicS51sbwmYHsFgsPgPnFdy4NctkyGqDm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cA5ybT2s5frLAS6WbrCZqQS4Rm6a1x8VmmcV1zKp692PpS7e4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34338 - },{ - "name": "bts-bitsharesmjb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cFEvDGdFqd2QyyJ6LHJK7MAEPRYQUvWWRnYngg26pXpNHZgY1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Lw65LKANTP53w4WNaWUShu5dcNVz2FLAqsRvBCwfAfSRmTRme", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-lhtry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52HRQ8e1TtrrKSsGsQE1vejzYHtefK4hsjXXaxPPanVzb7AYqq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PpdQJ8YbvWnKVyF9PMgbBxKiUhAYrmrf2V22F3C2GQfZAonbM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-ebitags", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51sDdJ9VkdPYPRa2K4jy8uB4toitiRU4sHyg7hBkeDsLLWZnkY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68LYY2JWJXWRobqbweX3i7mtDx6TTqjAxxyjVEyWd6NJZ1x479", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 308 - },{ - "name": "bts-deric02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66brwSe5mFjSuYyxMjEWMe8YTH61msDTnHTj6VrCfcELDgSG7M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qYiUTZZ5u48FPJ2DWRAKZc1TiaJcAMTqEzeu2ePXwnmMVQoGM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2281 - },{ - "name": "bts-game-awcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pE56cUyaauBwcVE231uHxQUvHVsYUfrf25qMFWjcxx1r1dFii", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ezqh8yu1Ad3EgNEjDAGqUuSTVAAZCQaxv8foeXkRhwX4WP2Gp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 332 - },{ - "name": "bts-cryptonomex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dwy8JbZLagEGyhN2y9iKyaU9yYxPD9sBTv8xSd2G1qYZqWUTH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P61Ln5aDbPabKccxaLRpgWn8SnJqRYRVCSo3df1DhTnurT6tQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3146370 - },{ - "name": "bts-banxio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G6oPWhRisZfJ8ZSStNfuSaCQcJD1PYKNxuAhJpsrS48LoXLwV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59BXDh1Asj6X9EegCbtYBmYvAd6ZQMJXiWbjq4r5gT2ny9XPrq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130388 - },{ - "name": "bts-datasecuritynode-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B5nX9UKXNPuBJGauPcYMVtozqY7tUniLLLMKHj1bJmJA7HXBt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YeCBUz6N6DYwgRtZHUYtxSt8HenAtKCen15huEfJ2M6uB5WE6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-payment.datasecuritynode-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HohSBNRdt2hPnhtnQUdWjgCdDEs89Xv91zWs2p81fgWBD6ZnA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69Aibx5wXTFkC2kNmH6HWZQXnbTn4DkeGuzswEze1Jz78n2y68", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-gph", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TbboSDx4d1BboffY9qZhMhtiUehLWJGdTAXCLqt8HHUvThjf7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xb8wvsSDNJtodACZVHrscFXhxwDs57xXBgrBjY2XfyTXPVtnP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3647 - },{ - "name": "bts-ccedkadmin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vhgkxZC57P1vY4beRhYReYKmtCPJnBDsyDfv3frb5QS3dXH9W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6StjhjGeMQwunbnKhGedDXoofQVdDrUoP2kWiNHbk5P9d5DP71", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3744 - },{ - "name": "bts-couz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71cBTtajedV8rGxZBQg8TaCsMvvvZuJ1Lbi9b282s314RF3r6E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NNMrxRG9DPQpiAUiqY7KHoftHvPMkhLHtEBDE9TK29ucSuiyC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188145 - },{ - "name": "bts-ccedkbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6opQJj29UrwxkTtZgcuBkW8WVUs6AyRGKsAg6ay6BF2CpeBtQ2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tqXBbtJwDoT8b2LY3kx547ocVfSacTirBMFEsDyhGf2FNR48p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5174 - },{ - "name": "bts-skywalker-og", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Bi6Lpi6Fp8J21CQrJGaMUnoSvumybayQfJQVk7UdAUyxdy69q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yZeGkV54pY6HfxJwCGWuLAZSvphx59TBpRySwd4CZeDMufCEN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25196 - },{ - "name": "bts-bitcoinjim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GeanRdPgFqYbmVuQx2UdcHKD2aMXJtoA1GVwQWE8SWbKUYc6Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GM8m2kPzyQEt5ahkBDrJor371Mf8qkp7jw3wPS3N7x5V1zdyJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1260 - },{ - "name": "bts-ryclub81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cwhxmy8jKgTCXQRxd43UYEkKYoZSrcHNrzASdWUihKaZKYNuV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5asjB94pCWX6F16Ryr14Hq43PqH65aY6rKo2pqa2Wpay9mFH6i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 416882 - },{ - "name": "bts-bts-obtrader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rRm8Q1E5eW2j5Xhao8Ryp7yHcJRVnm9mGYHm21QFRqKs9ksP6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YdChap9ox4PDfEe1QGS5wTjBqwStXm42wucueVycRknvyJB17", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bts-softwarebrain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58rm7ks9khqZ6osN682kW4N8B9BFcnfgagkY7ymQEo2nJQhJ5B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6msDW7wx9BQqnu3zGcRBmuQ9qqWSMXyscAKqezXE8Qt5ZrSpx1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188169 - },{ - "name": "bts-bts-smartcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zKDkudiJLx1fffVcqVEhfFifKxpBAZqQq9b9RPFpgwMYLWTvF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65P2GefBw7fGoKJ3qYLzMLtUCNVyt7d9v1a8dRXJ1gvcSUMDS9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 284 - },{ - "name": "bts-zapeta1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hSZ6BLU78nsAiouH7du47a5WbFzzUpMoAh4LmZNy3mEaojQSb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PRd8RQmibF9mwMR8ECx5AAerVrWxcN9uz3D9fyvpxKcdFLoSD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65034 - },{ - "name": "bts-keeper123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XLjTBiLS8JYkYbfApE1Ff9PqHANeRqRdQ7Qu8TQWDPkdiNzzc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88U9JSfonUwDYmiLFSp6n3k8B6CR1dGbBB6sndeBfHxppj7vKU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1147 - },{ - "name": "bts-posa88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST655DLTKFX93d5XJMo62nPnAcg9D9yabM5jSbRqfiWzJJ9VYopS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST748xhPW3Qr6jxwZwbYi2z1gNHqQHZbXrRbdXvWaUdsvyLbFmVN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-crypto-petroman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88wTkXRpsboCFL91J76yZAAnNdr6R6u2bQLmLXHNNc6sYQNF3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q4AGoCPS5AB7ioMJbm1gTrMZgoq3Vw5youK47tGwKk9vNbV3t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 649852 - },{ - "name": "bts-msrfy-btsnts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ttHp8efDNkPRakbGBJJnuyWUib4fDCpvMLDdqCG6arSfVRWNZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55rgGrCieXPexpoxvv5xwaU4bHgMsvGJs91YTgK4vUzYEq3p5Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 215367 - },{ - "name": "bts-bts-sixteendigits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dGLYGSz7jbjhiQAg4dCmtbPgHrnXJvtXuQct6TJKmCLMfKNgD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aA2oh3nCQyRUvMwW14YgCudVBdLaaJEsBBcrSbyTgVxpxT8hj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jdf2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qoWHqgoWkUseXP5gmbHjNvZpCKUmdHfahrjG4pX772KG5FCBa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wLavJmXsD36U22mQaZcj3GHnzzcoDo4uLsH9FR2VDPkMCY6Uz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 590916 - },{ - "name": "bts-bts-assashin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CADNx4YYUZfnUFaaURYeDvRCvqeXJf3XBETR1kAXXYXgdGzV1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CADNx4YYUZfnUFaaURYeDvRCvqeXJf3XBETR1kAXXYXgdGzV1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-chrisoncrypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c8fvZ6xNvFpCSVPmCifJuw5q6JAPURiWTbhGGQNWyzdQHNR41", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jGZV9toqVqsEPMHY1iyqQCSMLTz73tfeBDXYnpgBHuYLHSi5Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169328 - },{ - "name": "bts-er1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pDayuNhQvTB3aqX36zBzY5WtgE5FPV6KoPxJJP18m6MJPgFKJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mbHzr8okbYo6pihxWjfuFef1n7dvBtv9UDoQacuVreHG5ZHyi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112882 - },{ - "name": "bts-srk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ukBNTZFvk8EuCZuYhxjeh41FZUks9ipFu4AfxvxpnLEMZGB67", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7He2vpJm9uZTknwZp8zHuC7SRBRmexkxdCX9iHod3MP8xooVMm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1080 - },{ - "name": "bts-scarl3tt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fDvwFvnGE66vxLRWbuiX4jZV1WQUgAqQSG8DMEQHWqQrpGtkD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xRgw782m7Phjo4APBPGJy3vWMkSS9jbH8s1rqzJxwgsUwpb9K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bts-krw.claygate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AoCRivr7gjbCm2cuECfre3MJ7Zspa7JGqCs3aSMk7Zw4joXpY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5juY8ThJyKTTKzd3ghrXcdKBZGFTnr5xFXtMhgnbQ2BkwhY8xR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 198 - },{ - "name": "bts-claude-homml", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A84uM1z5GnDbRgUwZr24m6C6K4qDATnRiuE8tStNXqbGSnPs2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SAeCb3UM4YiQo7TMY6NQ2bkMwYh1EALQTfWboQKwaaEpop8vA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7415216 - },{ - "name": "bts-bts-calamity12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B7xKPoqHmj6MbYTtX8goFt1c28hosVDqfATmULJDpEzLXcpYo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HUUtK5Co9PG5td6gnZyC5Gs9jjSw7ATPgT84cowfGpC4Yhgrw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 337777 - },{ - "name": "bts-butlerholdings", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e2BQmr67feRG91yuwLGuL5W1EM48QNksNtP3TQb9e7GsHx9xP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h4cNVAG9C1aDJgEgodoSLBrmcN5Fr3cHmDDhBkTuUxmapDxam", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 635954 - },{ - "name": "bts-bts-cryptomiracles", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K3gC3NJFRwB4SBoNNdcXMqefjDKPmDbEgHo1UPhPg5ddZmFFE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fCy153HTBnUdPjvZ6WTh5CL7BxnLWVacNuYk9ohV989RSBwRr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21262 - },{ - "name": "bts-banxcapital", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GqWN4FJ7qcTEUjts1M5Xm7sdZrY1qG4KeWKHAPCrkQAkVcfdg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yizpzEFsP3XHBfh2CFxUcdCzNMFfX1HJKGmM49vHDvGqg9L7y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-runnyeye", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7awjWKzHHTgKeu8HqP5Pf1LscF9MCb3BG1q2hpXVoFN1gWtRjC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jLsMN4Tnmqx2uJqowkFTGQW44eU6LsrybgzYQ1QajxkVA8xzt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 425 - },{ - "name": "bts-bts-bitshares-argentina", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dbqzyBiT3gdjRYDTkxeUNjNytzcT62fM78WFNjmDDYcNQALHH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 66, - "account_auths": [[ - "bts-testing-permissions-a", - 33 - ],[ - "bts-testing-permissions-b", - 33 - ],[ - "bts-testing-permissions-c", - 33 - ] - ], - "key_auths": [[ - "TEST7B4bszRYW5SKGFUKuM6ta95MUR81ZsjUTyxLAn4Pezu5Ck9xsw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 292 - },{ - "name": "bts-bts-duanjunwei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tJRP1TCKv9YUcAueask8HuttReT5uAkYvKTKAUbwJgiQzKTpx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BDxQ8vFM3zTZrqQLrm6f2hHYgQm2Ai2ZTWgkRuqHDCMrBc8rF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-huanxisha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wRw5r97yXzpCF4AQnEo8MfiNHDD9P4nphBjPUo91ZRbtuS1gt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nknQ6PDAyJxbQTmiZoF6bHsLDcNQ6Y9ruo7eHaD42F8vfejme", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-bts-bit89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JPtwKdLUyJfq69TQpAwqjy1vQikNhXnFdBJpLAvzaHGVEhCWU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fm6pXXDH1qdNYzhVUQXbheEDG1vHpEJyody9XsdTAcYyobJ29", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-robert-main", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K72k9KVWexrWJvnWzdM6WgJ42zYYnTWd9AEsAWoysSANGkNsi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YDgpaeDd1jDiym8y4fTpXN2A79fBi5YgNzq9j666XtSQfhkKk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 227430 - },{ - "name": "bts-bts-printdesign", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52GZ96YiDGmf7Yqc5KabuzcN2W3vEaLd8Fk4QqfjsuVJDXrE2h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cAs7yjvxyKsovF8uCpus5CTgex6xP5SaJuxR8d5uxjP17gq1D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-akamasaccountbitpower", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nUd7srGBqkXmSvk6gdzncNSh62fEHyyJukWvvifEnaGKyG3z5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73PCvD8BHup1GjpQyfwQwPvXPQq5ZapXP53yUKzQBc4V6VPXLk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149 - },{ - "name": "bts-bts-tloze", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HYzcEEodW5QDehEKMv1B32qZ7mYBv99wTEU9cyeHreQ4sUZP8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JkpNysq7AQunvdKw3Xi28M7wiKKZ1uY87e73vzeuxHZCvE3Nr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2344698 - },{ - "name": "bts-sharestoreone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8he34MSZKwxT1f2zsCDTgVQFBENMzq3yXt4LeKVhb4hgZwhEcS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66bJb57NE6BdDGfKmMKGxFBWpFZhbpXodWuk4fxW9B7EzHq1U2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 148977 - },{ - "name": "bts-slightperil", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V8gpow4Att1vKKii8k6aJ1uUZ3vKFpGSBQts3S8ThrvTGxbfq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V85S311NUPmHC5enXhowJGiefuDhtFMEmTPTtetSF62hfFfGM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-bts-savvy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FUPVrXd1L3gYHLNdCLdaaTGqDx9NaSP4mvPJVTPadRyok5tY5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SDogApdftde5WvysZN7AvwAWZqMSWhgpzxpKfNycQczDKKNL7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 120880 - },{ - "name": "bts-bts-shimomura", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SXQv5ejQ68rvnu6rMK7MisRmxwYzc1QfuGWjV6Q6s5Hedbg45", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Phc1qK9ktKkXhLDpGk1W9f65SQd7NosBQZ4t2KWE84rWoCUM3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-pfmmsbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EDeBo86j3grREpeiUcnjjdBCzH8WoMwxMrmc59QfuHwaEvjAa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77ka7Vqf6qEsUzHs2rgLSfDCfUiSa1nHmXAmTzMf1mFAnZtU5p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-mylove521", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8e81yrZsJ9VacPePp7LnsKCdtjkVgVqwZ5J6Cy4myVd7p84byx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xTJsVbk89Bp34akraHdvv7M3ew84v9PA1iPgd26gq1gSimXCY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2168 - },{ - "name": "bts-thanksforryou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xivjwYjETAQwnwpf2438iGMhVZq7PQz7oTbHyjMArnMZw6ZqA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wRjbbajL5CnafLbco6f6Zo4AvtybPiP82n8fUvf4k2e21uFWc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 212 - },{ - "name": "bts-xiaoguaishou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56ZszU4tt9nH5TyCa1rcgd67p4pEQXA1g5uZDS9qUkipc3zwM6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54aouGiihcwt3zqoYmGFCNW3DJEPa3Xo4NFxFb3eydJtUBVrSZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17654 - },{ - "name": "bts-leeyoungnam", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84q1RNGk9Uyiv8WpLzvmZBy4Z71vLsFbC7n5SgjTrr8iDTW4Dn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Vv2ffyAT9GiDxw1zdTQxsRkspikfM4idqGmhByBxFrmPbKXvQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-smartecarte", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7D8p6QqTGYjy3usJ5hw8YdUXH2p5eDARB2Z8MrNeMbsc3RsbQ8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7erzCuCREgidsYH8sYn3kXRE7uFsjhjqFzfGfdNNv3DToYQQt8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293 - },{ - "name": "bts-missingcd20150716", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UamKop1X6w2TkhkrnMwn4wyQoAzcXgfxCBpaFGUNw1d9wZBHj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87RTA7jXgGBYSkazjvnxzxYsysdEpdjgVYh3LceeRhUmbYNtYc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-xuzhihao168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST893DvQVBWLgtjACvD6W9gWR1u1z5ePHgoDrBVym8wC2gTwuKJ6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6G3cQvEaajJciE55bqb8TQhfStsvDRtj8f7UuF5Cpu1TqQVRfg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 921 - },{ - "name": "bts-bts-payroll.delegate.xeroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST691VH4SyvyhNCUR9YeoF9EBVsf3xqZgeAtts92Kg8f2FU6HQN5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KCM4uBfL51mZB23bVXxebKbd7RakgtjZAjAYok3QvchMzXtgE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2020429 - },{ - "name": "bts-bts-zhangbaisong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jw6rqXMSz8p5efGWeRWBN7qFykMLVk3QqEv8VxwgRFgkXptvv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bpqgKkzUmYSexsZUr9BU2kFqRX9djGyNPg3kaETqGwcWqxagC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-zxcvbnmkl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JcL6ExoXGW9QDhkPDDEYceMjR82Z8D4Pu8ZwTrRA234FJh62h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gPnQsp1PxZbM6sapP5wKCcmNbfNR5p12Ld9pJMS5ju5hZt5y8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-martin-thirtyeightptswarrior-raum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uxKUZsGoWN1jvuSurd6stQJpqykH24bpEntCorTYJqkZkJACY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lsbpx7EWRSQdArDyK6YLkyn3VGm6KsVSnaL4LqyvpHnTok2ow", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bts-malcolm-x-collins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58C5tKQAyDXHqo9iTY6QLvBzRDkjwn7WC2TBVjjcKbkGQZxbFK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qxSULxBsqrGx5UW2SZrVJtimKGr7UEsNtngGTcGuqmcQ8EQYQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-bts-vanmark", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k5mmXADM5dD8Ukg1G6s667JdLGp9bdMwpzdJ5zRksukQKW1Mz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8b4eHRGdoXg3HBS5VV7unn9UTPCD4gyXD7p7kdMi3fsdyQwQH9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 370898 - },{ - "name": "bts-bts-pts-warrior", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jc5AzMCJ5K5wWsKAJ7UW4a3BgvZ9Df7iWqsptXY92HBdxMgUq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qhb1qK7KKcXnKNJCbPuxnGs5Gb4Jm5yZHLrDR4gcN7x4o8fRz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bts-thirty-eight.pts-warrior", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59TbFwR8Mi5yeYVFTmYa1MhZZ5K6CuV6mMVD6H96Mcf7e6HoYa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST796ah5m43V5AR6Eov6QEhsoGz86mDia4sW5XZXJKeB7mzmQ3ku", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47 - },{ - "name": "bts-bts-kryptor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XMxPk6ansRYDXxyfdTjEgx8MCBSaTTqEUEfsysXEq5xWG6Gj3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wNp1BW8BN6REq9Ssj6HGQRfUAboXNgYr3a1zytwxyBohvjSW3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 532 - },{ - "name": "bts-bts-zhangyi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76BjBdzH7WSjQ1NgWuYrpdFwNC1f65Ehte12nUGJBPhZAQUgBb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Karr2PG3LM2yQYVK2WAQcntaANrTZBhDLzDTtZvWi4c3zq9z7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bts-lijing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CV22SUYUGPNQqsPKAEWcGnDbwad1iam5UByhcycoHttxkbGFp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AWR7q6AfMMqF7T979smFxTuori4YFrRdaE5Qgw4KdMPzMScRc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bts-lifangying", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PQyNfiWeeoKkh15QaRAwNUSV12y1knfh9VGezjXeJiEaZLSGT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cqym1zhqHgXacBGJM3bFqjJHd7uEggf74jkzZ7Z9fRpfypi1j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-bts-zhoutaoran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57frjGnJv88Pm1BhTfGvpF2afRNGzpvrMJZHA9DGVnvWwzt7SC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NoCvmLvekMypet9PmVFHmxBPdVfjP4anisVDNHWqV8YHeR5is", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1638081 - },{ - "name": "bts-bts-pour-kevin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cd8M2Xz4k3i5MAu79RLCxPN2Q82HtFDw3ZpaQAbntkdmmRRMA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KvfxdjW4bD7dDZe6U1tAkwVYFxTt1vpaNaoPTfQjiAJdjLCYf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 196518 - },{ - "name": "bts-bts-keewee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CfJJjpCC11Zk1ETGF5Pv7BRjGnRNwWNFpCmVYCSCfNbpgnZYQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f6KkiHLFCdq6nBrUECboR47faMx74pr8baqzCHLPFqAiWDaY3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20883 - },{ - "name": "bts-bts-cb007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Lqmuqbr33N9w3vSsDTBxDXbd1d78SWVN9cLpGKJQAVxADGFhz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JhgwzxvguYUPxRasjiYp8XyCvKT1q1gHcUs4ArwLVWU7hKW5f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3025 - },{ - "name": "bts-bts-angleshare", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EcF7j6XFRmSAb6DLGesRadXNdsuwmg7jfaKqB5MoTWQvPQcDo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a7RANcdNPgMJYaC8WCSjmfo72KkfZjm2QAsETcwtro6QZHHyq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 166 - },{ - "name": "bts-jeagershields", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yXcoHmqaSrQmx9qzFMTS7ebfyuEPvEzZajHFVrdPapvF15HX3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EjnAJha26yRv2jh3CHWtgWBHHjb7s8u5U5xGp28nnk3XvFQ4c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 103 - },{ - "name": "bts-bts-scotter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TZtqJscEqrXdNCKjui7mv7BkUGA2g5DLPz2oUxWQirxW3neME", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5k355EEtFUo1d9AtMp579rVgbwNotpAhfLeKg8tjYoeobB29cF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49230829 - },{ - "name": "bts-bts-usd.scotter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yqBdeTaUYcQXFCMtCvfgLbYaZg8YvXWZd1XBUg5BLixNTFnaH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZLz7d4aAWkrv87uiQCDuizAScib4ZF3BmEm9hc5jDifyTcbGE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27152505 - },{ - "name": "bts-paliboyqqq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dKZk6aL54ZEyXrarADrFXmPpx1UsS5yoPJwS7kk7r1Kr3xLFP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gdzYXMBrMtLJPxmeGsFtboANDBHmR2vph6tMwzFHoQmjMo4nF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 452391 - },{ - "name": "bts-bts-missingcd20150729", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WGC7QErBDjmXvooPojLNsvS4SAaWUjbJThb3b1eMXjuYsG1b8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4udZL8PwXptBpTACGTeJBC3tFxTRxUEpweC3oPz9BWnC3pM8cf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89336 - },{ - "name": "bts-randi-acci", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LpyZMcNaFmNByXJ9GJZYLLnQgRTAWwFaJYAnXRGotdimNRB7y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Nt4bucQHv3syPjni2sKWWuRBQLqF3DGWiJqnvWCToNdurzKi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-i-feel-appreciated", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y62spqcrUS7kz9Ua4vjfKymiYz6Vf61nrRwdy83gXPcPybyeY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GccR8BuWPFkecBecqD3o2r5g3LzsemMV3MiwtndzS762EtH66", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-bts-daizongguan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8drU563eZZWJ5oggFr4U7ARcyMiLkWvn9aMbXwFKwbXNgUrFju", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7psNJqpASSztidMjLcY3BYpw47KE4FFD14XpnRuxJRMr76vDgZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 367 - },{ - "name": "bts-rayday11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-rayday11", - 1 - ] - ], - "key_auths": [[ - "TEST5W5wEQu69XoPABRz8fk9ZLyfkC42HCneGKASuoiB7KGz2cfBF3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-rayday11", - 1 - ] - ], - "key_auths": [[ - "TEST7ZgRGFeNMEszj7UBK3jj3ESwv9S7ctDAtGq8oYFKahBKYppiYY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76 - },{ - "name": "bts-bts-tructhienbui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56rozmpYwTw66q2AfVVm6h7s8ZjXLVhiopstQZPhGyPg9xMTqa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST576dF7oWkAY6nuhuDNFHxVcvhmeQ5N8L2q66TwEU5MFaKFzuf6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-bts-robobit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nU5eqppyXVAhFz797NEyZX51Nop3XmvNU5u92A87SG6xNF9ip", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sa1jy7ULyAnQFfoBP8YYnXE1D7RaZeDdzt6iotG7GnA5QEACE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 257656 - },{ - "name": "bts-p1g30ns", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HgqBH46wMXpLgZeeryFSKSbr5pxPNn2WPaKA1MyBd11cNg5gm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84LP6civW8b4sRZ1UYiRTj9C7GSUU7AVfcmHyD8Bu4XqcvQsSX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1823 - },{ - "name": "bts-bts-bitethereum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GqgLL74cWua36DowtkXJBPNS6dNpyrq39bDn7JPAh1jhQsr9k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hsMp5DD5b837rgTKSaXXRUewPzPTfdPjpqFaDKRPkMvFZUoaW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1552169 - },{ - "name": "bts-bts-yidaidaxiong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CExqLRkNVRBayd1WKEzjzCbvs4vnBMVM5KB2ppnuEwRGDrLX4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vLHYg23nv31Bx9AbsM5rPkgQcwQb1iYNCscLQn9SdsTewqUZp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 88 - },{ - "name": "bts-chateaux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dmsKpfCJ6UeMxuUsAc8NmvSWnhNJjRnwgSSNrRJmpZ5b1RENx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eW4AXieSBtcCCmLiTrXrmmsTkUD5D2q38G8rYxruPjAN816c5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1210 - },{ - "name": "bts-browniedistro", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8C12xYmbtxJE89SUMKs5P3T7aiEeDFSTYMJjwK9HxCE4Betyby", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LWkZLmsnWjgtT1PNHT5XGAu1z1ueQkBHBQTVfECFVQfD3s7CF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1187742 - },{ - "name": "bts-hamed-dk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YN35dWv84aLVmmzerkKgvReobMybK4v7oUPPdCa8Yn8amZPQE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YTm7jDmXXex5a7pg6PhytugATLDE59eCLm4jKKga1Tdync9hc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188634 - },{ - "name": "bts-cryptomni", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hbpYu9G3iJsBCDb8PdkTeBgKWwuYG1dbGj7XUsqgu3xyo99PU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dSeA7n2bN5744x6j5uGsmCALFN1ctrPiTxbfzrtJEsxy7xhWP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bts-missingcd20150812", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Wm6BMZAGeAK2DcbVTzyvaB4Wmq2FJJcaH5ufQVHbc1omgYS4Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNFxSeWFQ5hLQcLfQmjEkYuLFRMiUdrHtr9gqmgYtjhZXRMX3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 153663 - },{ - "name": "bts-bts-anglebaby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7otLsKNGZbHbedN7rNfCNjAGHewhGKFa1JtQ9goAUFpMcn9HmW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7otLsKNGZbHbedN7rNfCNjAGHewhGKFa1JtQ9goAUFpMcn9HmW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54538 - },{ - "name": "bts-bts-xiangyibuli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qkcyt15vzgGSY2VvMHAUc6d8FavqpUserepagnZWtCRpNj4G6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qkcyt15vzgGSY2VvMHAUc6d8FavqpUserepagnZWtCRpNj4G6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bts-anglelove", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bC576vfUnA6o2tMbK3PSH6Tg6MNpgXQtkhn2cceZ5tFAUnbci", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bC576vfUnA6o2tMbK3PSH6Tg6MNpgXQtkhn2cceZ5tFAUnbci", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-bts-fruitsalad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P9f4W6HvU8TqcM2hJ4nheLR5w3hEopT5FDgSWnr1GZVXqaQXx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6n7msrfWFEJC8nxMcRJmwyk3QPD75i5rEKyJgYBjVLXRc7dEzR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97 - },{ - "name": "bts-bts-theophoric", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XHa5M82nayC3qpY8ThnfYqN3VaoY1HwmbHsjJz2jrYgHH5BXJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86e7nTacTyuYbfzhsmumKYw3dJevxjfQ612s4JgQfUmMvxkqWL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158030 - },{ - "name": "bts-bts-peerstone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KDgW2te5j6B18jpGLwq1iSfUmvBPRFqvMhACXZwQf9QS1Lb7i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82p9MpKD7TzAAWSCQ6QGm8aBEZnZ64mHQQWGUSTvKxYpLDgu7T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-hugogoulart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eJXz9AR7ZK2PBFc3VDHPdqcZawCu53BC34mEfjavuTXsybHDT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FwjQhyFqWmwWJuadJZtB83WxUHTrY3SJgnDUDrESTni3mp3wH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 407532 - },{ - "name": "bts-rs21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z9vt2FoeRT2xiSzrDyWAKi2WYgeEQSYWoD3ub9WatussxfQZZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59wp1GpJaibUWfwPy3AgztrSVg3bgZMT54ZX9dRikBaX7rFSmo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-k123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85F5FYidsw7VwrCvmka7TYB8yAMn5wbpnTHaCMenLVxdNLzPsV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gQqipVy69Civ55u2T3es8y7LjaiikegV36UjNMWYYbVfnB1Wi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-bts-phlebas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST755EN4VrfPgeChcXPvq2B8b7eqLKgYKTMKtCeQcjPMaZsGF6gw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XFpSpifiuCoMa5oGUPa9N2e5bUpiFpbgwsuxxA5sBUgaV29cs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bts-bitshares-argentina-testnet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HcY4QhwcMYuShddn7S79gYDsMQeKYw6uvyGsfkybdvV99CQGQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77huru5zp4cDwVywe1jx3ehBej9kZgg1UnetUArXRi9WXL6HSH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-lespierce1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zmneKJaJpH9UgUc5ReiQ6Ws6px56DJwEnyHrkHeEN4rbpwSBi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6abFGZ6zaxiDhHmXPQo9Gh2LodxEQKHSftteeKGTL7ytwm3ybq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3604 - },{ - "name": "bts-quantumspirit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61R3Nyj27VXBhvW2yHRPUskh63gQ4rWvJhsX1SkhgXNRv6HVmx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vouDePzSLvAczzzhkX8v3NS3UgF13AhPPB8iVwRsYr1MJ1jfn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1007 - },{ - "name": "bts-bts-showgirlgame", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rhcmVR8TSxQ38yxVcd8pYM4GydaNWi5dkLb5UPZyem1M8ZJPa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53hx2BbgoWQdmwEHxY5UGix2TWEZcCfmJfpqrHBtbjyFWUWmZ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 857 - },{ - "name": "bts-b33lz38v8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KPWDsVt2r4MaUfrjiYgDbqZDY3awBgYfYbK7a59i3adn45Shs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ffAwJAQ8mpfLABVvhfXPjyRebhQSU5mvpKTNMRb6D8qc4PZsx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1981 - },{ - "name": "bts-nicholasmills", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fVV33ebkH7kSHpNUPoV9rpVtB6pyu3NTndtxxYSJGdGmTJaQT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mWK9vqYvweUMHcmkE6gGWQmGu4sL9DxbLzWgKD1D2S8v33xBx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 421995 - },{ - "name": "bts-sl34k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uu5kc1Nirpke9mdoeb9x1R5LTo5uwTpkdALfAjjwbmdbzy9n9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7p9mCZae36ZrNDeyXTzwDe4mLDgRtbzLfi2TBC9NL7iNFJmizj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-bts-tau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zorRXicUrAMjNgBnYHeKiiRAYM7vLCKkxE83Xgr5fMFzsJ4wH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZfP6AEVqmoMnGmksW1ZUCGXZiicb98RnSXym8UDwP6dczanoD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-rycon872", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55Lp1SdNgYymZSAqMooKXMfoniVgehNd4KPpyBNQyrMxeHAmz5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZRjRWHyL252DuQk9NGJ2hjYV7U2FdWzLS64sLKYEo8RkSKRTs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-bts-joshh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dAd64j6tqo4B1ruqxA7jCjsoxtWAK34dD9SWpexJeDRJtHjT5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U8CukUMp1LsUnBSWhnmHRrPgSPbfps2pep7ft3gGgKuvPYcEc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-joeboomofo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EPHJnmP1fZt7vNmU6dmm356qo22x5XGkCUL2o3mNUzc2QW8bM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BbZqGbPVjHkYtswX92QbJwgAKovnwkRddW4Qq3zvyLYWKCD88", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1159109 - },{ - "name": "bts-bts-test-acc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61rnwxK3ND4gn7nPyreWiJjNpoTrTNEfTnyEZytetNWV4utrbm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61rnwxK3ND4gn7nPyreWiJjNpoTrTNEfTnyEZytetNWV4utrbm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-alexava8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FZ7wW4GjkUXPQqgZ1ByWoeL1pHZgKqMvUTJ6vneUP1m1qN4SH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wZ1Q2FbpRopMQsrRRjdzY2TWgUJWbhZ17UbG6hoFD7dKKcn3P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bts-fc1892", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LyXkbwwZpEYrDhFLt1o1qE4DuU5Wpc1USTDqKhPR337DN4toF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LyXkbwwZpEYrDhFLt1o1qE4DuU5Wpc1USTDqKhPR337DN4toF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-roxton5oxore", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CwHouLtfJqGHMSwoxdhY3Ur8EtWbJQWkQtLxeuGSJvNz2T8EC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EMXnUwN8kjnndg16gyY6koqQDEiCct8qerqfokNAobkfiVRQ2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-jtmeinit1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bQj9s5qrPb2pWuhNX9D6UNFQGES5QUgUXviR9XLJ3yB7p296c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82anbc9yNKwspPDqsNtp8GqUiS7wkT6yR883FhWqXjCLiRTHoW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158157 - },{ - "name": "bts-bitshares-munich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58an3xSP1Zj4CY4wbtNBp6L7fcyh6WnH5Uy7nCe6NY3NwoU3sU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SikTKLY6DsUmSJefhjk3Cw9TiYAv1AkAK2Yh76u9yVjfjvYGE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2014580 - },{ - "name": "bts-yobaa350", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f9Yjs9Gs9EWCAW6iQ1HyJGg3uwnRE6Br1zwkXvmKZfQMTXyzU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST511jbz4idbPYKEHsDFEmoeYvGRW1cKMu75qt5BsXRE2AkgvA9v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-evil-cosinus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VBhHv5g5cXVr3V9xmpCtGEEV9jRqeCocZevbTirTfdySpX6JJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Dq4Uj7Wqe8XzA1d9HjFNGzYBQXf3B7qkvX35WkxdcMkyPAnwR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2195736 - },{ - "name": "bts-mranderson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nbFuY7PM5Ue9cH1EbpJjtKoinCPozieQspSHQBPKWo58xNgcN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vvUZpMENQLhz4NBHqemFyP1PFJ6GtaLubct6a3v8ueTLfSRna", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2918149 - },{ - "name": "bts-bts-hering", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aYjmMuKgJDXA4bHmaXRn1kAdtEobaVgWBzbCAFJncjqUmJGnU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Uh4enqtx8sKGcWMQCS5BP61q2soq1EAP8VZXxgNjGB1PozqSp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-bts-christoph.hering", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-bts-hering", - 1 - ],[ - "bts-bts-kryptor", - 1 - ],[ - "bts-bts-pay.chris4210", - 1 - ] - ], - "key_auths": [[ - "TEST71Tnt4ndwNhFsGLvn1ECfQkLuXeNfSPwPEYtvoF8iUEhD91cHB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bts-christoph.hering", - 1 - ] - ], - "key_auths": [[ - "TEST6eFtZ6hfi4e9enuZeJkPEj8RnPd6P1m4yiEwTZ1cc5jKYNJBJB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37969 - },{ - "name": "bts-frik6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6thbWQGfAYUyYuUJ8PqGwmPSnMEjmn6oDEtUbsADarYHF9itw3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5obqGZ7Fppg3mzCW9uvD3Tm3wUVshsa6aVjo6SXGVW4FapqfLQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-awc-cny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84mor6pH7TqgfzrKAxuVFPekTx6jpEbZf7SzFDNMRrfdXavJ91", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54mGWAbf4eXBygMvNQBJAvfUkF4V93C4VrvD9CPqpDeAX4R6F1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161 - },{ - "name": "bts-bts-bta.transwiser", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Gh1csThhkwu7nCXrpVWWyVboKHqWo3dKACRVF69HLxGgbL4w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64LU61PxfRh2QhBTVg5QJiUSxX9vZUnZYcQCn2nUXzKP9hSZBm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4133 - },{ - "name": "bts-bts-slimjim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ukNxaaHB47jFzemM8mkYsaBScVWQKLkGeLEkMnz3FZ2aBnQ2E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DfTLzAyW6zEru5jwQ3NLaeoB2Y6PU6NQpq855RhfR6e5E7BN8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-bts-godzirra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fF2WSQYkFRsLuBpWMUXENwj3Qt9BoYdLZbTD8MT9NWQtk82XQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67FeeFT43BGrQd4mPRG19DSt6eCCm93Dt4meBFFuT3VS6zY4Kb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11481 - },{ - "name": "bts-bts-vrontis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eZtWpCyfkBMsc6s81fWPnYUReW4L3byomVCr84RzU5eyfeFCk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72UNVnWKwqsfShAUemGiUFP9EXX9cKJd2uSzhhNai2DBnZQgjJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-bts-r0ach", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pc3Fkg68oAJPAch21nzBJWQPMB3M8dyyMQKXLdiZmyJDf1UKN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dZSzNf8NJ6yRdcPHbDbpHn4WM3QTJVDATjeDaMNerbw3DCKXM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-bts-ethaugur", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YdpH2yrjnY9AvTen8zYMAAPP2xMMXHyFufmgcHX97kg6Kwuau", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST629tubbPju1BXM6WUXKZaT1NfCzXjxfgVJYwW69XQRH5gvYLyn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 274 - },{ - "name": "bts-lovemoney", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v8pBii2Ghbje45tXJP3vqujmU959Ja8trGLrjRUNW7YqYpLUu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L6fUoHAMsH8kZwARm8T2wdwvT1hFYGGSVqLpoA3TwNwsoUWYf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38 - },{ - "name": "bts-bourgeois101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Vxm7bDtMdY6pxZMDdThtQaSmyqGt2kpNdQsKoaGyAEx6DjdvF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RdhjnyAaekmbhm3sGAJZn7GxdNHWi85Z6XphZxnNthi8DzDTa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11023 - },{ - "name": "bts-ordg45f3fa-3d3j394b2j-wnp1qa03j2ms-3eodpfnemt-3jdkwx9z0e3m1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Jqd3pxrZFoUarZhqnV9aL2yC1Sxhst2j7C8fkk1dQ7po53t9w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dzsfaL98Hr816bQh2JUiahPRM1CGvR5eMzRfUZ6meUBdyA2sB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 262393 - },{ - "name": "bts-ryepdx-maker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AycbpYfUAoNkRPt5J2CDVWxrnNkJt54r2N8FFqftsQwVS2KiL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DWCBEacBxH5hdySr4GjosqwjfKnzJiwCGj8FXCqAejxGZPNQr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37630 - },{ - "name": "bts-bts-johnyb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RBWS2DSgYnRLAJ7s2ndFyN6daT1SqMPHXWy5kNzLza8MpPWkL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61n6Kpmffu142XcjbAaWrwWftRuVZRbq8eXffKQbv4qYeR97Fc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564430 - },{ - "name": "bts-bts-johny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6d9gDtnBAKYp6D3U7j7nkaywWUiBGa2bbUQnPGo7sTSTcocYbr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65Kyn73BrG7uqgcKHwU2yffopeWZUrgUWHLYGdmHfWXjqcq9t4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564430 - },{ - "name": "bts-nastan70z", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SjRJZByB6k6PUwMZKEe8RtrKGMznn6jYdRgJZyeKTRnGzGZ1K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MgGe4P5WPJYTrNP44sTHgKPiD85tjWkZYEPqqo9JCpRCbVTUR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-lin9uxis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NBq9MidnNVKFcHzQxMEnnuSnpiowr5m1XxtoBXQ8aL6LRQ5ci", - 1 - ],[ - "TEST6ct5sLU4mUuLRxJegs6qTc21mhFp8aTbWJr1c2j7rvdB4EJaEA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NBq9MidnNVKFcHzQxMEnnuSnpiowr5m1XxtoBXQ8aL6LRQ5ci", - 1 - ],[ - "TEST6ct5sLU4mUuLRxJegs6qTc21mhFp8aTbWJr1c2j7rvdB4EJaEA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344038 - },{ - "name": "bts-s-e-r-g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RqSvwxUcitxQQN1FAJDMfjb6woJHj4vohxwe67eLtrWjxzUvS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GW6MKyLCrtd6thqTyexsxbvK6xXtPgcTaJUvVB8oQgcS1XqUJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-nkdejong11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h9XMdiorvKbPRFJEG9QsKCXiFjYFEppGBqVjrP5P51cTMkJ1C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bggo62LccfJw2FteSCMKD3U1xg8YYqZwKhsatW8CrzuF6JJe3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 168 - },{ - "name": "bts-cloudzeye", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST737j7pBkYt1ZJbDyHPoVetrA8f6QmX9Vd2f7GdCPSYv7C9gdgW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZD6D71z76P8Z39PvWiULdgLmR47pz3KunJgrNKRjzE6Ht1d6g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75376 - },{ - "name": "bts-mt1381", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KfTvczB2oR7vjuHpz3F1maxLzdH25KwUcYvQraDUdCSVQ6APB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BAg3qBWyeSm2vQjH8Q1WWtG2vsjg9xafYnMMuNS31cQitxQ2r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-kvt999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pB6JgvFiRkM8ErCNPCK4Way9BysAotLu9YzgzN9godzrUy6XR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6x26hhK3JzViF626zHDUj6Hf14eMdttsZirc47ySi663Zjk9SR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-djandre77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cqWg4gm6oB8YPYJyJHHebfWA1RxSaj7LehrqXPjNqKTSB4Wcp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AQwPhaGDgkxLXEctnS1tq7T8zBsGQMtAQwQftrq58CYwLJHJa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-btcaccount1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BjVcbqBU8MqPXfbRwPj7bpo8VAh4qyvdARVDH1mYQLfp8qQm8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ULeutTfB7xUnKjLX1kEELH6VxW9zMxyUF3HUqmYuPMvK2kxtG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1652 - },{ - "name": "bts-tellus15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ush1TCYGJMquWVKGsCZjDTnRW3YfBuAT3vw18DUPi6SedxJmT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZRYdjgUWYKiMkqbigGYm7CiEEYhDtv6zfuMesoioai1JHDLd5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3251 - },{ - "name": "bts-bit-shares-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uBqvWVwTCTdLuCr2QC5s9JtXe3aadseMomGX6wpXyUVY8yQ2s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c7m4RJMZk5wyVcizUuS7dEeAP5xHQopGzrhuz96fvEwyw8pA4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1659530 - },{ - "name": "bts-bts-cerebral-incantation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69596RkAgmSSfHF9HEXjNKTAKTJ5CGJATGMfbWWW1fPaYA7bca", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YSwjN7d7gwTwfuzbL5PVkubW9ST2zQ5CeZ3hgiyeysVWV1Jmf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176 - },{ - "name": "bts-dj-coin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aYU8iZkCt42NKikis4nrKKkxDvFpkKsr1cxa8QHoW2cCAXxXJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DMJFy2YgNUGZWix5YnuLA6hfXhxPum6bMyaVQKTxVvBN8mQ3p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 973175 - },{ - "name": "bts-beta20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZG7eoEEsx8QESARLB8FXC2L3FSzyx1gZEhbom3yuXTryiNMf4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JiCPphmKestsdWREj4F7qqy9XWnZ4J9XSt6UnfbhyktPRMJTC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11288 - },{ - "name": "bts-bts-sidgrip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w8LZ1UCsEUvs7NmVtp5pxJWaWTXZh7w5g4Ut7sCKwjDFU5yFJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jTiUo5vJm8h6gLJnSnoWMch4T7d1NHgtUHz7cN1dQg7ghFMGZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-quickmick1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fj6XTwCrNSbVeJfCGUtmypc8jBDfi2QyPtgpqy8MJiujhaq36", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81woosWUctWYkAWj4YyWwCrukyTXAdxa6K2A9wA1de8hLk9ecT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-mrflz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mWHGK2W9tu4ZnK66kdcLSXBBqVNqwqqG8nQtPouZFrFjXZn2L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cmXJ2JUN4P4xf4RFQXPVmzKQGMs5Wkof7icAS5EbZnT6rBukA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83 - },{ - "name": "bts-thezman007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FRbKqAsCfqy6n8KZrtQMEJVTDQe6qpimdjkJQdWtVfjrsTkMF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FRbKqAsCfqy6n8KZrtQMEJVTDQe6qpimdjkJQdWtVfjrsTkMF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131350 - },{ - "name": "bts-bts-h99t1-new", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JQdsTEud6mV6Ek6QizxjU7NVGchsXdN28BiSkTsPZ9nf8NffG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ueUh8cF2i1r8FEw3Zy5SVWgkR88pkYQriK4gggs2fPyrkcQX2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25647 - },{ - "name": "bts-bazee1984", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YndxCLgEwVy36aU4fCDwo1Rgtc634Z2Dz5LD2gmvKWNqNYWtN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eCV2pwKmrW7A1JPJ5uPiuhp5AfPvUyxTkeLoZvfHe4dq8noFW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-minima1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NMUD5KezSoKRCoSra1CagUmYBAjbarAdtw3twj9Csvm2ocq6e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6apJfUubZ3Zrp5AB71s3mBVzLC5shvuWA3SRmQfGNTyi6MKjD7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93 - },{ - "name": "bts-btsssrr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XocASH1boiQ8qBt17eyA1pCv3C2erZnzwFQm6F9JnfNxeCJup", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CKzPoDVaXZKjatkxYjSXZubJepBhN64k1vdRLwehuMPMRDnfB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 544 - },{ - "name": "bts-mada1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VhFAFXCQ2qZnfS4uhDrHeK85sE6AgzCMbbqikrPXActPaXJPn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55rFUKxysqwPorRfMa5V3AxrwxkNzzCXK9D3K6U32eobEgjsHa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47602 - },{ - "name": "bts-bts-transcriptor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fTKBTfWWjDaimZzYFaY4mkK2WhjqBU9Q8oUASBCH8CGuXN193", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FmvXqh6kxGn5cXegq8tT3sBCxfSm9FNTR1JkhNWz3ZzSmfs7m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 236 - },{ - "name": "bts-bts-dongchengdiao-save", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q68yb7Ep35GikaqJrwpdte2ur7aHTP7LU3nzSMW2FiXTQeFb9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eLZzwMf6LoaogS8ecbpXvvGrWbCDVNYiVqjNpXUtFj85aa4B4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 282406 - },{ - "name": "bts-cryptolex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vHtAZKsB5qMWbyQMdTQUY8KaWQeCbdrkReJ936CxkDUKALCMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aELiQgsRAaCFqhFHEPXQupK53Nteazk1tkuJwno6Dyw49Ppy8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19121 - },{ - "name": "bts-bts-bitsharesxcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74VoPsn58TNcrTR7YpE197rw59vgvRAqJJjYiCM8pqnYr84bdJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jLtdR6sbKXVXHX6ZEthnhrCLUcwLA8aL2VdqF1GmusZh6E782", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 87701 - },{ - "name": "bts-bts-hob", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X6tHQ31JNhHJLSh2CzxhSukw84kJffULFiHFiuGBtkfmo6NKn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7avBEuziFyqow944cqut46TKSg8deK53LM3u2uanQmnfnzeJyR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 494782 - },{ - "name": "bts-a-z0-9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PeLQ3vRygBLrnBLft83fcN7NyBFr7s36aTbQhGvYN9SpoqpiE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uLkNKvhFWksiT6g1PsqD6h3cXNiWjHVDuRNdBa4WMsbVv9hBZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 916 - },{ - "name": "bts-keh-2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84Ph8tendkEEWabJVjQ32t72ST2TFFKHLB2qBoCkefwQSUBgdC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dVwYwQrs7E3XChDQ6FBiHBiE8FMwraWeFmXHYVCy5p7mP7ZPU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-bts-bitshares-zone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FPpufXz5VJwE9RzVBgDtk4BDdoBwuAwax8eM4AAi6oPEgBpSx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yaehbwFaocjznC1FTD1dv2b7nLJRnuG2PGMzAo9VyEEKyDfJf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-bit-keh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gYwL264tnSa8Vx625KLLEYpautyzVVaGeEfCHLrMiNqnQJzwx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L4VJoeiYjPauBaQ5LBRtbXhbLLYrbSuocoj5WkUwozwR8Trto", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 207 - },{ - "name": "bts-jbit11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mGrg7Z8DY7AteYJqoXRxmAHdgULM2v5ZPTBzxUbsZNc59VxVy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f33oDSYzoiDLr7efuzi7wxxAb5ZxRVRjcQCQfwNK1aKyiX7Fm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11782 - },{ - "name": "bts-bit-ehk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LNKDkdn37kzS5BodfcSRvZbJstbw4wqDNfRTAU62NfTt8bHv5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63UM5ocX1iPBMxDGsoDZFr1RmCoYkY94KPPXX9AJnLwySekyXQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2675787 - },{ - "name": "bts-bts-feeds.delegate.ihashfury", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ei11huPjG3t7wCHMXwEJ3qZUuYGNyyAJZg2H9RtSoizF78xZ2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7juA7F8MuytbWSdk1FSq8we13yCcoqMi54mzq4rzRrx4QKsbxR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3744218 - },{ - "name": "bts-bts-kdvst1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X9PbNrwaJADLpVcrvgJff5BTVVzRyUi9a5yhDLnzbfHMBjJn1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62a6aMnqGZkuu7ESxzwCLrXRrHpMXNX2D27mr2fjxiEj2C9p8j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1468 - },{ - "name": "bts-chrisconey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F67jRMrYBzQn5GzUVCUgfMP53iw1hQdVdf763iLJk6S2ayscr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v1X2kGZqJ45FvyvzyJvGE2eSk8uMqAZPBEhWLWvAhqG5rA6EM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8644 - },{ - "name": "bts-lottosharesdonate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KJerTUszHM9dpDKKpMFCjEpYyCeE39Fbb1i8tQCwtJS6jkEza", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Dxe1Nf1oPLU7ig9Ltx89czH1P2xXpEkJqzMSvnQnshM8RmsKS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-sjsqd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YK3mE49XRVgDC7ov1wmxB7tsDhVhfXG4oDLVUrL1YybCD9hbu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b3QBD9ZeTvBRKWqcrxaoncocNfHGJcVy1dJZQU8DTjrWWdLNa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 228515 - },{ - "name": "bts-lmrs1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XabGQxh8Vk7P1pZsKrznE5xr9RwCuXWSZKvNCyy6vCdwFnPMx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dFrfn2c94cUSFWjkN4EKj37LbVyLE73QfAAajDBJpZLenc9xs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-sunsallokor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MoeU6H1uMJ5jpPEwC6LJskgrrVvT8fgqEcGTG2zMKSGtT6dWk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GGDjAid97rWG8yVFJfpHi9Yx2FzozrNYKCeFCnaDRv4bXH5Sz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 504849 - },{ - "name": "bts-governor-001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TECMjDnfGqk1uEDdxy5nNFV7DdupQgxevjTC2yDEgXsx9oDTE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RhnqzTKWZeZiu1dhw8NnnHXCr8DidWKYC2iGfRZnAZp3G3s7m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3197299 - },{ - "name": "bts-bitshekel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82uf2EedvrxUY29sB6hVEUxff4B4n4hvuWG1Uc4iME45CuxFvt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65q1HQo6WB6Wnpc2r6ZeiPEwfJCZEXnkS9aCkHq9XTaekPTqKt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19228 - },{ - "name": "bts-bts-pequet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52XPpNhynbW2jWnqBeCb9Nh8F1EVipeg8QoUESKBjKsYXm4ss2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ws71sYXgq5jH7ffB6qqQGhheh41m4T2RaEaFuhcHqtpYphabZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-bts-spacekangaroo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JBz8PVvk87E9D21LgZZxTkKeNnCnPWt47x6J1Vt669bMG1bne", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HhsAgg9c7aft2y8vH6f6QMpByPxY2RCAN3m8UP7x8nY93mgWm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2447850 - },{ - "name": "bts-bts-bitteaser", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bdecct8B7wVEsX2vWgQVpitaYjo4Yc5NhavpjBc6dZY4LWX2j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uEjjxWBNj3CRaw2S6gCvQWnmkh59zupD5FnwCmaY3if9ioqZi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188143 - },{ - "name": "bts-bts-linepay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86Uigs6ZpYqeSAHxsRUgG8WB42PYtd52XFdqykDPVU55BvEq2d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d6wD8UVWn5kXD4fE15nz3d2WK4geQ3nJT3ky3EGpefWetwvxS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bts-genericaccount0002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kinzA9bZJUfTHnfJMtoPim3YAfWsbKdtpHABC3eUEZnvMybJj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f962E9cBXBinri7vthyrgWLdeaCR7P89nN7h8YBahqyDuPi1R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bts-mycoldstorage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kysxcLbxnvB99VdwvEaxRTBEiu6kbLjLUseDCBJPwWFSPEXfq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sVtVtpqdpghpH3PuFKEfQFgJ9ZV7LTiUsVHHfYD2czgb192vJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 175541 - },{ - "name": "bts-bts-seireiteiunleashed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xHyX4kv4agPFL76FtzvmDJF1e4m8QtvRUAW5FA6cQbqBpDwc3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59B6pAdTcDFtKRHg1uGa3gqkFxm82WyckJsVfMFNv9wYQpyTRu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1394 - },{ - "name": "bts-bts-katarynie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73hHr3GW9ZWaee8pfmcZ7nYmkBno15BH196xJDofmANrgYNo1j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QGDQY6UGwXGFcauDsVV3Zx8uLJUnDvAAaNSR3u7JhtZg1ThmK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 694193 - },{ - "name": "bts-bts-vapingace", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CMJjhqBrmxbvgzE68m8s2nWegXh26DYz3hsuEukmZG1w43Si2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dj11WVxWwzC6h2xgLj3xYktvwKaC6xrYsUffiTkjdUTSCs5kg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bts-weizhe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TpJQTzzHgzmGVxXiGahGaySYAiAG5GTizaCFg4H16Qy2So3wk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wF8epmNZbXX9t5wovpS42sKmBZR6BoFCHeZru87PgwxgHX23X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 82627 - },{ - "name": "bts-samhughes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Vr3tG51AmJ7tHSPrT1ZhAFVpoMnKPGU8pMQm73PXabNvs6f1p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YTzfvDeTwLESidgHEcDPD3sjzu3z1ECgBaGpj789b2AYaAKdt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23705 - },{ - "name": "bts-tehprophet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LdtbZHnFpf7Byg1LX1AaXj3xkPTwGtqKyHWDEzN5ruu3RCRL8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mJzjjHCsewQpkWKNvEJ3p7q1TPvoq7qULdVksnYa6Jh94BrpG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-foobar108", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GJ2SxATHDG55wWLbZ6YdsEgS4eRx2cV787tz6FbVZvxqePMrf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tRAj7dCxiWBzx8QBRcNH7mZDABe6WKps3bXpS2JJfDxTEbnW5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1231 - },{ - "name": "bts-bts-antiyoga", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST668Z9BXQJTJRJy78Xrfcep3wEjnn143yoUSqvmUpcwPf3b23sG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y1q4fn3S4TWGxDbcp3MqNTwzZZZBuRchWa59xSKntTZESpM3G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 284818 - },{ - "name": "bts-manwithplan1802", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53kvRW2RFWL9kZgMgnXxPC29cuocDt2ZC5DHMHE6HV5XhdP2re", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58cSyAbtPsfpKi979Jh1Q4qDtXMMAGZmAXxvzEEebcU2rr1myy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2223 - },{ - "name": "bts-bts-twentythree", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ncxiVSe9EX2a1y89afEmFoPM8Sxh7ec3iXHkuzAzpia59vF4V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zWV7isyov7ohLYrLKGwc3DDA5QqHaGB6tC2FLjgH52yqEUnnN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-syncmescouilles", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MZMYDeuiwQCnswRAkWYhxquAza2cRhHT7sJQnhekafv6SqVeY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GD32jPBNdg8NvrbgAZBvkvFE9zJWC5VFccaRdJdTKJR8ArZPJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-apple7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84GD3cz9Sy6kid5NMBzBeDttLQwmnBDtgjvFktWsPRLKmQSW3c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VUcSUgDBqKv4Lo5ZSk19nHXYdcGbbpyPRv97h714qjsaBAPx9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4975 - },{ - "name": "bts-formula1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U7p3dtrn7C3DRUVriwqUJEW4HuBLZzFZuDsRoqZYLMiiKS2Mp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5snsuSFuJVEzcGkNCQdR1TAAznrcrkJcRweLhyLtHL9AuTFEks", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3913981 - },{ - "name": "bts-localpage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wpDKomMquBLePcysUYVHrXgozcphNfKQWbuTPqnJkj6FVP2n8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eAugqgX2WuzkGWgqaGPcz57v3bj6JsJ7giwfurqvsKBXFHFE7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-bts-scopibits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MurXXgbcS7Kg7z6NK2p55RwsGTP3WRt9xxjvprZxwv6ccJ6YR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dCaM6mi9Ut3yqeY11sqeiFrXKsEufwX2rFM9Qi1gQBCF4voMC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208829 - },{ - "name": "bts-init0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kNeoCM1ZGutGKQbooTpnDZsvc2vTbyCTG2VMvUi1MF6isAtxj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HNDFu3yHgh3pXsbTReWEQ5xv1x9e6YcgtKRzE56dRS1oDT4zT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13824 - },{ - "name": "bts-init1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5owPmEse7JdVWa17yRrT2Kr3m475ch2sbvsYnbBXoANa2vPtTE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57VBTQPxNqWSdeNRy27tqdmsha9APaWQPpGDtVs3R7bbyqCpfP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1053 - },{ - "name": "bts-init2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Q4ymyMJkNM3s7LBZMTJHB8baBnoFX6gjFoTc6xYF81xwHZcGH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uowAerhdDC6VCnGeHTwWkzwvWTtsuQU6C5rt2gDwHHDSqeniQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18314 - },{ - "name": "bts-init3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qLmedUkgvN2fDzrh7v16PTcdVh6zwpfUPG6hpY827Cuh4yF66", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TVMhP5cpLf5xPmiqCrAm9eCAgQxL8Z1DMtu2b9jfGT2PQrBDn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31211 - },{ - "name": "bts-init4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RCnPBNs2voYPvyjeofhUmxsPJvCDnsmgEu1qtdZB9eZdoBzh9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LhzStHsfq52wHhewAt2qtQcyBbffmKFofQd9NGdvevCGU8dpv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1053 - },{ - "name": "bts-init5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X4pViHb48ukVBJav3KJLSzBaRz6dJfdCdTRv56KXPLCDw5guq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vJudP3zMhi8SXNUvxRtfLYQVF1RSUs5DaZuZm743Qay74uvLu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-init6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zfNWiLRYyEspiU94miYabuMynZFAc5SPqP3TuT6geRZKzvNnk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VUo5DMAC1yjtXo5DeRss2q2UYB6tqJkYNs6Nw4nYpszvSrocJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 978 - },{ - "name": "bts-init7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86BwsSjQsbCiCHVQ4KCyS3Lb22j64bjs6JARTRVJHUFn3X9aVg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c5uD32WSfpZkAMGfyA5gwJqRer9ZFfEv7oxemiieJv7uy7rny", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1053 - },{ - "name": "bts-init8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SppVpZVMmLp3YE6so4w38B4FjDqYSYyV9hZnxxewsAd2QWzRa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8By29YL8PNvFi61WnZ5fMkRRo21SGNnyVRHHZDXpN4LPpJrSr3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1053 - },{ - "name": "bts-init9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L8ZJWZ3U7EuX6eSQKvpE1G8hW5C9ex2ZfJxhXycpdULztcpQt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UKbCEWFmD5S8VnDuB39dgefHdCENaE68qeWjPGo5ys6y4hc9c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 978 - },{ - "name": "bts-init10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oWLqBupyPCvjXHmJcBUF4Weazh68h6DhkrJHkqU7TqgDc7SWN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iAEzy4NoAxBwBwt4APbi3RGXTJTSEMWyb3q8rqEjLm1cexS39", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 978 - },{ - "name": "bts-btc-collateral-holder-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKee2uYvpMkAZUxgEkN9obu6N17wk8594", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKee2uYvpMkAZUxgEkN9obu6N17wk8594", - 1 - ] - ] - }, - "core_balance": 32293 - },{ - "name": "bts-btc-collateral-holder-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2xoKRTfAdx2JDoo1DbmAVGtFouqAGdH9M", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2xoKRTfAdx2JDoo1DbmAVGtFouqAGdH9M", - 1 - ] - ] - }, - "core_balance": 447012 - },{ - "name": "bts-btc-collateral-holder-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST36tTFtD6gAeqQon7HsnR38eEWfSjuiLRK", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST36tTFtD6gAeqQon7HsnR38eEWfSjuiLRK", - 1 - ] - ] - }, - "core_balance": 2822 - },{ - "name": "bts-btc-collateral-holder-3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3964rn6LxCr3XjoefQDRyz1iEunYt48xZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3964rn6LxCr3XjoefQDRyz1iEunYt48xZ", - 1 - ] - ] - }, - "core_balance": 227 - },{ - "name": "bts-btc-collateral-holder-4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3xtmcBnyEtBKAZWc6Tn9voQmZVs2pesjj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3xtmcBnyEtBKAZWc6Tn9voQmZVs2pesjj", - 1 - ] - ] - }, - "core_balance": 230813 - },{ - "name": "bts-btc-collateral-holder-6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5LtoEu7VyZeSbpuAKrjDq5xdQQ4DJqk25", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5LtoEu7VyZeSbpuAKrjDq5xdQQ4DJqk25", - 1 - ] - ] - }, - "core_balance": 21021 - },{ - "name": "bts-btc-collateral-holder-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6kurVM5Yd1TfsXG5J1pZnPjxGCreXZZLH", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6kurVM5Yd1TfsXG5J1pZnPjxGCreXZZLH", - 1 - ] - ] - }, - "core_balance": 43005 - },{ - "name": "bts-btc-collateral-holder-12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6mYvN2jCr15vy71d7mFrbUwZjG6A9FH4r", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6mYvN2jCr15vy71d7mFrbUwZjG6A9FH4r", - 1 - ] - ] - }, - "core_balance": 44343 - },{ - "name": "bts-btc-collateral-holder-13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6nJSxxuuhf65CB51RRRNaFKNkKMH3zPEZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6nJSxxuuhf65CB51RRRNaFKNkKMH3zPEZ", - 1 - ] - ] - }, - "core_balance": 304114 - },{ - "name": "bts-btc-collateral-holder-16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8oxCgPRvkchDK7jWr9AjXTZW7zibvLmPt", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8oxCgPRvkchDK7jWr9AjXTZW7zibvLmPt", - 1 - ] - ] - }, - "core_balance": 453665 - },{ - "name": "bts-btc-collateral-holder-17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST988Bk7yV6aC3bdpKHeMPcUrLNdygM1riW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST988Bk7yV6aC3bdpKHeMPcUrLNdygM1riW", - 1 - ] - ] - }, - "core_balance": 2886 - },{ - "name": "bts-btc-collateral-holder-21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBNU6NX6FryG3BtkVjV49KNK2fRcGziPt1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBNU6NX6FryG3BtkVjV49KNK2fRcGziPt1", - 1 - ] - ] - }, - "core_balance": 8856 - },{ - "name": "bts-btc-collateral-holder-25", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDeBitwxgVHXfpEm6Lh4upbwiuTQqGPKwJ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDeBitwxgVHXfpEm6Lh4upbwiuTQqGPKwJ", - 1 - ] - ] - }, - "core_balance": 25667 - },{ - "name": "bts-btc-collateral-holder-27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEqRBeL7i4ZNGpYMmkhmcVG88v8mPi3wdF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEqRBeL7i4ZNGpYMmkhmcVG88v8mPi3wdF", - 1 - ] - ] - }, - "core_balance": 923520 - },{ - "name": "bts-btc-collateral-holder-28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEyKwMw6aBEFx4mWJdoiMREe69Td4BiViw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEyKwMw6aBEFx4mWJdoiMREe69Td4BiViw", - 1 - ] - ] - }, - "core_balance": 2588 - },{ - "name": "bts-btc-collateral-holder-31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFQ3RZhHbgKTWxLoycae4ck6so5J97WNAL", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFQ3RZhHbgKTWxLoycae4ck6so5J97WNAL", - 1 - ] - ] - }, - "core_balance": 35359 - },{ - "name": "bts-btc-collateral-holder-32", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGpemhNHmsfCLsc63fN6jKSxmko8kLAkcZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGpemhNHmsfCLsc63fN6jKSxmko8kLAkcZ", - 1 - ] - ] - }, - "core_balance": 1964 - },{ - "name": "bts-btc-collateral-holder-35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ11b9QJuNKUvmUdaxsGZbFXartJu8UfNK", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ11b9QJuNKUvmUdaxsGZbFXartJu8UfNK", - 1 - ] - ] - }, - "core_balance": 4895095 - },{ - "name": "bts-btc-collateral-holder-36", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJZWpK2BVuPfEc7oovtpyWGK4eQxckCsVG", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJZWpK2BVuPfEc7oovtpyWGK4eQxckCsVG", - 1 - ] - ] - }, - "core_balance": 32487 - },{ - "name": "bts-btc-collateral-holder-39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM3YTHNbzdtGksbciTsn5s2cKdnDMTKBBy", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM3YTHNbzdtGksbciTsn5s2cKdnDMTKBBy", - 1 - ] - ] - }, - "core_balance": 100337 - },{ - "name": "bts-btc-collateral-holder-41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMZh49eK32QXpAwkN26Vc8FqzG68sYNNQG", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMZh49eK32QXpAwkN26Vc8FqzG68sYNNQG", - 1 - ] - ] - }, - "core_balance": 1224452 - },{ - "name": "bts-btc-collateral-holder-43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNHyHzXRuCQo34QZmMxqra6oksxHYEw3s4", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNHyHzXRuCQo34QZmMxqra6oksxHYEw3s4", - 1 - ] - ] - }, - "core_balance": 48650 - },{ - "name": "bts-btc-collateral-holder-44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPD8i8s1ivYiZrYroMw2upmT1MAPiTJZNy", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPD8i8s1ivYiZrYroMw2upmT1MAPiTJZNy", - 1 - ] - ] - }, - "core_balance": 1150090 - },{ - "name": "bts-btc-collateral-holder-47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPNCrWq39SfaAwbiiB1vJjnEuFuVoA2GSw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPNCrWq39SfaAwbiiB1vJjnEuFuVoA2GSw", - 1 - ] - ] - }, - "core_balance": 1035971 - },{ - "name": "bts-btc-collateral-holder-50", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQ9CL6sm96epVfNuHRQBQUAce3y8FYM2je", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQ9CL6sm96epVfNuHRQBQUAce3y8FYM2je", - 1 - ] - ] - }, - "core_balance": 1299710 - },{ - "name": "bts-silver-collateral-holder-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST1AD19X6HPV2F9NcZUGzDmeLiZ6dWxAST", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST1AD19X6HPV2F9NcZUGzDmeLiZ6dWxAST", - 1 - ] - ] - }, - "core_balance": 162439 - },{ - "name": "bts-silver-collateral-holder-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCM17Cjc25K5efUchE4JBUrsFHkhvCUk3", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCM17Cjc25K5efUchE4JBUrsFHkhvCUk3", - 1 - ] - ] - }, - "core_balance": 150994 - },{ - "name": "bts-silver-collateral-holder-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2KnF9H2PjPgww8fGQR9aC17gkatg2ns7W", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2KnF9H2PjPgww8fGQR9aC17gkatg2ns7W", - 1 - ] - ] - }, - "core_balance": 146287 - },{ - "name": "bts-silver-collateral-holder-3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2tMzZjgbVfofZDvPXq6EkWsjHSEwrnXtc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2tMzZjgbVfofZDvPXq6EkWsjHSEwrnXtc", - 1 - ] - ] - }, - "core_balance": 1073084 - },{ - "name": "bts-silver-collateral-holder-4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3mh6umywKtYXmRCjjTpLk91FsN76sCDSB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3mh6umywKtYXmRCjjTpLk91FsN76sCDSB", - 1 - ] - ] - }, - "core_balance": 145613 - },{ - "name": "bts-silver-collateral-holder-5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3s81dC2mtic5cCVyCZ1PLCfdkWXcTsNJL", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3s81dC2mtic5cCVyCZ1PLCfdkWXcTsNJL", - 1 - ] - ] - }, - "core_balance": 147976 - },{ - "name": "bts-silver-collateral-holder-7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5Vy3jJfVULNShbtCGFjwYDqp5YQGRkFtW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5Vy3jJfVULNShbtCGFjwYDqp5YQGRkFtW", - 1 - ] - ] - }, - "core_balance": 147129 - },{ - "name": "bts-silver-collateral-holder-9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST62i4zn4riVQ8jr31CXw4tMtokp1cXfCXs", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST62i4zn4riVQ8jr31CXw4tMtokp1cXfCXs", - 1 - ] - ] - }, - "core_balance": 123968 - },{ - "name": "bts-silver-collateral-holder-10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6V5FuyfFPV3GWF7diUFYCsVj9y89BsWzV", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6V5FuyfFPV3GWF7diUFYCsVj9y89BsWzV", - 1 - ] - ] - }, - "core_balance": 32360 - },{ - "name": "bts-silver-collateral-holder-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST94JfhM1txZ551PDYSHrvsDcXxFiAKuWny", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST94JfhM1txZ551PDYSHrvsDcXxFiAKuWny", - 1 - ] - ] - }, - "core_balance": 160184 - },{ - "name": "bts-silver-collateral-holder-12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAyA42rGhabqtJqWSkxGv3odhzHEAzqkRe", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAyA42rGhabqtJqWSkxGv3odhzHEAzqkRe", - 1 - ] - ] - }, - "core_balance": 157140 - },{ - "name": "bts-silver-collateral-holder-13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAyZVPYqcUUFa5GALLDzh88NYFhxpEMXPk", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAyZVPYqcUUFa5GALLDzh88NYFhxpEMXPk", - 1 - ] - ] - }, - "core_balance": 4717 - },{ - "name": "bts-silver-collateral-holder-20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE8MHthfu5XzmnWDdM9VYSe94jxfgDcoMZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE8MHthfu5XzmnWDdM9VYSe94jxfgDcoMZ", - 1 - ] - ] - }, - "core_balance": 163065 - },{ - "name": "bts-silver-collateral-holder-22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTG1tRmvhdVxZyGbQ6MZeFzUjYLUiavCQae", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTG1tRmvhdVxZyGbQ6MZeFzUjYLUiavCQae", - 1 - ] - ] - }, - "core_balance": 32483 - },{ - "name": "bts-silver-collateral-holder-25", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLnb73y56WKL8N3yC9M6a1ZypSjks4tW7d", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLnb73y56WKL8N3yC9M6a1ZypSjks4tW7d", - 1 - ] - ] - }, - "core_balance": 7 - },{ - "name": "bts-silver-collateral-holder-28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN9r7bhP8beARqAndVY6AKnEUkQcHrvxKM", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN9r7bhP8beARqAndVY6AKnEUkQcHrvxKM", - 1 - ] - ] - }, - "core_balance": 123968 - },{ - "name": "bts-gold-collateral-holder-17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCnHYAtJXXhtiibnDMT6Pznn5XQ8hBQeZN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCnHYAtJXXhtiibnDMT6Pznn5XQ8hBQeZN", - 1 - ] - ] - }, - "core_balance": 10693 - },{ - "name": "bts-gold-collateral-holder-27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLGQySpxK6E8cZ16Bkciq3XMfooBHDoUBh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLGQySpxK6E8cZ16Bkciq3XMfooBHDoUBh", - 1 - ] - ] - }, - "core_balance": 376 - },{ - "name": "bts-gold-collateral-holder-33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQBJXuJacXmkKjWE3rPHby8RPSQ7rqX3AL", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQBJXuJacXmkKjWE3rPHby8RPSQ7rqX3AL", - 1 - ] - ] - }, - "core_balance": 71030 - },{ - "name": "bts-cny-collateral-holder-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6ttuwTFR4mu1PrfF2YwprUMBkmGaWmH3", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6ttuwTFR4mu1PrfF2YwprUMBkmGaWmH3", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTU3sGCfJfkXs9uczKVNsMExifiwK39kEH", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTU3sGCfJfkXs9uczKVNsMExifiwK39kEH", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESToEEc4FivtpuyUbaYAHDy96kuaki3UA5G", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESToEEc4FivtpuyUbaYAHDy96kuaki3UA5G", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2HRkeapdrrHwRPCfJ9NxPwAfbevtaJbNr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2HRkeapdrrHwRPCfJ9NxPwAfbevtaJbNr", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2XTSPZ78SRyq51CKB1FHJDtQ9W8iLnDpJ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2XTSPZ78SRyq51CKB1FHJDtQ9W8iLnDpJ", - 1 - ] - ] - }, - "core_balance": 856 - },{ - "name": "bts-cny-collateral-holder-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2ZvTeVAEBMeRwE4LzzvzL5BMFb8DKW7CM", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2ZvTeVAEBMeRwE4LzzvzL5BMFb8DKW7CM", - 1 - ] - ] - }, - "core_balance": 26 - },{ - "name": "bts-cny-collateral-holder-13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2mzwWPdby5gFwKZyJQpwiLzyLRwMjH969", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2mzwWPdby5gFwKZyJQpwiLzyLRwMjH969", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2qWUcDHvUxxnwT3rb2ndRj2AaBs6rKnwx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2qWUcDHvUxxnwT3rb2ndRj2AaBs6rKnwx", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2uZt8hxRGgGWsQshAgjxuCjrP8u8hAXw3", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2uZt8hxRGgGWsQshAgjxuCjrP8u8hAXw3", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3QgANvhf9ZuQHE36o3GoH9MDM8WUwHwGq", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3QgANvhf9ZuQHE36o3GoH9MDM8WUwHwGq", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3mt9kv1tMLMxaZ3ZfyYCafanzRGZ4W6ZK", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3mt9kv1tMLMxaZ3ZfyYCafanzRGZ4W6ZK", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3o4fzYyGfcens3ZYNDeJw3B8YRVEgtz2o", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3o4fzYyGfcens3ZYNDeJw3B8YRVEgtz2o", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3sSfAPVCfbKSvFvjWFzBq1WfJ4qD4md7L", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3sSfAPVCfbKSvFvjWFzBq1WfJ4qD4md7L", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3zAnbrf4xGErBCYaVJZ7dzdJ54D1MRJtj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3zAnbrf4xGErBCYaVJZ7dzdJ54D1MRJtj", - 1 - ] - ] - }, - "core_balance": 64 - },{ - "name": "bts-cny-collateral-holder-27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4RxwEarMHo3mCggo1ddwPdzic4vJGtB34", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4RxwEarMHo3mCggo1ddwPdzic4vJGtB34", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5SC8S7BpgHtFVHfY1X3MQjqR6AZUepaxK", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5SC8S7BpgHtFVHfY1X3MQjqR6AZUepaxK", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-36", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5VaTPKBRhFdSGMvTkQQQgFxA9FbkUTFuC", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5VaTPKBRhFdSGMvTkQQQgFxA9FbkUTFuC", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5r6WENvhCAAc7kGjGSmHW8YSffTUqrudb", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5r6WENvhCAAc7kGjGSmHW8YSffTUqrudb", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6G9cu3TiUEE7FrwGtLie4HaxUgiWDLmXC", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6G9cu3TiUEE7FrwGtLie4HaxUgiWDLmXC", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-40", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6GK4RHzJiXPZsGCP35ZYzRkg5JoTcKoKb", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6GK4RHzJiXPZsGCP35ZYzRkg5JoTcKoKb", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6Qvce4qHcw4krbK5vXTexJmhDxzE7issf", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6Qvce4qHcw4krbK5vXTexJmhDxzE7issf", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6TdJeYgrJ2D8qtJW1QiSb5VpnCsj6NvUp", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6TdJeYgrJ2D8qtJW1QiSb5VpnCsj6NvUp", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6X4xAnaKr99ayxyHsVsn5VtamexcF763D", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6X4xAnaKr99ayxyHsVsn5VtamexcF763D", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6ZkeabcYmTKApsnviut1t4w9o5kPR7oFX", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6ZkeabcYmTKApsnviut1t4w9o5kPR7oFX", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-46", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST75qtF4DoDhHTvYNh5YNnnhpHCBY6qrCsE", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST75qtF4DoDhHTvYNh5YNnnhpHCBY6qrCsE", - 1 - ] - ] - }, - "core_balance": 6 - },{ - "name": "bts-cny-collateral-holder-47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7FH4V3KddePKGGjQYVFL9WXXoXXV6ZVWn", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7FH4V3KddePKGGjQYVFL9WXXoXXV6ZVWn", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-49", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7bEx5wyNQcKWta5qodP3gv2LUb4gTTzcz", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7bEx5wyNQcKWta5qodP3gv2LUb4gTTzcz", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-50", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7kHBtogaaYq3BBQQ4k9B5zoiuAVkQVVsr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7kHBtogaaYq3BBQQ4k9B5zoiuAVkQVVsr", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7qrHqGxAMWBQRC81FVr92M4mKAKF3ppuB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7qrHqGxAMWBQRC81FVr92M4mKAKF3ppuB", - 1 - ] - ] - }, - "core_balance": 9 - },{ - "name": "bts-cny-collateral-holder-53", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST859oDhZwSkbSgAUwcdyZZ7Zsr9isQcjkz", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST859oDhZwSkbSgAUwcdyZZ7Zsr9isQcjkz", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-54", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST882eeLdqEQ7gnyhVidnGS4ew5ipY8xw22", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST882eeLdqEQ7gnyhVidnGS4ew5ipY8xw22", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST886Y8LF72932iSUYjM6GudkykjeqoC3hm", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST886Y8LF72932iSUYjM6GudkykjeqoC3hm", - 1 - ] - ] - }, - "core_balance": 15 - },{ - "name": "bts-cny-collateral-holder-56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8CFpKEq78tnGokMUN9My8hvEvw9tW5H5e", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8CFpKEq78tnGokMUN9My8hvEvw9tW5H5e", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8L6ixjX6Toxn2SeDAkXLFhCAnKNdcJyxN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8L6ixjX6Toxn2SeDAkXLFhCAnKNdcJyxN", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-58", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8U2U2otma9Vc6SknJVv2Z7xH7Q4tj3XqA", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8U2U2otma9Vc6SknJVv2Z7xH7Q4tj3XqA", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8aVnvR5T9Yh3ujmfQogm6UDHaPEmQEAom", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8aVnvR5T9Yh3ujmfQogm6UDHaPEmQEAom", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-64", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST99oUus9xWPKLk4qGZYc2fgFuc3T8RNWyN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST99oUus9xWPKLk4qGZYc2fgFuc3T8RNWyN", - 1 - ] - ] - }, - "core_balance": 5 - },{ - "name": "bts-cny-collateral-holder-65", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9BRY15BZcsjMr4mwxp5ufz9F4jimx3JQ5", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9BRY15BZcsjMr4mwxp5ufz9F4jimx3JQ5", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-66", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9Ejg4j5PDFechEiKA31PcSd2cNR46Gd84", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9Ejg4j5PDFechEiKA31PcSd2cNR46Gd84", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-67", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9fYnja3seukpWv4iug9TN5E9svGkvEq6b", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9fYnja3seukpWv4iug9TN5E9svGkvEq6b", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-68", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9kD9KETPiZFpsgQTiD3fGqVdVza91pFcF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9kD9KETPiZFpsgQTiD3fGqVdVza91pFcF", - 1 - ] - ] - }, - "core_balance": 209 - },{ - "name": "bts-cny-collateral-holder-69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9paiktPSsa6YJbrpypZWKu8j1XskvjMwD", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9paiktPSsa6YJbrpypZWKu8j1XskvjMwD", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-71", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTA3Hm8j3itkGDaFCePVMUPS54Mx7cY72oD", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTA3Hm8j3itkGDaFCePVMUPS54Mx7cY72oD", - 1 - ] - ] - }, - "core_balance": 806 - },{ - "name": "bts-cny-collateral-holder-72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTACftL44Csw3NYjj4QfdMYiQAaoFFgeJss", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTACftL44Csw3NYjj4QfdMYiQAaoFFgeJss", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-73", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTASrjWYCyoH5MmVYXA1okaoZ7RfdzaZCr4", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTASrjWYCyoH5MmVYXA1okaoZ7RfdzaZCr4", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAvgqrubyvnP1BLCg5GDtmQSyde2oNaepF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAvgqrubyvnP1BLCg5GDtmQSyde2oNaepF", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-75", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTB1R7YMtWZRDUfCNnsQvDFruXxAFxYJCCw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTB1R7YMtWZRDUfCNnsQvDFruXxAFxYJCCw", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTB4SXBqKXZiCDz1BCf92Xcu1iHt31L3e2u", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTB4SXBqKXZiCDz1BCf92Xcu1iHt31L3e2u", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTB95QdNnhqq2cu3v92d6JyiNQ6zcKmNRAP", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTB95QdNnhqq2cu3v92d6JyiNQ6zcKmNRAP", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-78", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBJiyjf9Tr9vzBRaXRWS9BTyycETtY9C1o", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBJiyjf9Tr9vzBRaXRWS9BTyycETtY9C1o", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBakBxcPuwT6K7vMYeswCbs3b1orSBpBZs", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBakBxcPuwT6K7vMYeswCbs3b1orSBpBZs", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCUm1o8cKDUTzcx2JJ86jmyCFhYzD96aQZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCUm1o8cKDUTzcx2JJ86jmyCFhYzD96aQZ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCVcmSqyQ2AoFhgnC9oYxUX5tGRJDmdeRh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCVcmSqyQ2AoFhgnC9oYxUX5tGRJDmdeRh", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-85", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCeKomszDjUSkzT7Tt86GbiALYZ58AStDN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCeKomszDjUSkzT7Tt86GbiALYZ58AStDN", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDLWrU3dhk3L4mp1s4WjmuDrXvMCdwCtGx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDLWrU3dhk3L4mp1s4WjmuDrXvMCdwCtGx", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-87", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDNMdUXDdFw6tpnHVP7mT7uNiVFaTFUZQW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDNMdUXDdFw6tpnHVP7mT7uNiVFaTFUZQW", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDPH57Tr4nGDD76r7naCK7mC3ZqAvsSnmq", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDPH57Tr4nGDD76r7naCK7mC3ZqAvsSnmq", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDa8rLLTekY69ax4dPhxJsbAQigsWaDLk9", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDa8rLLTekY69ax4dPhxJsbAQigsWaDLk9", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDaKLnT1rPvhs1atxAFbzboM762ia3S4Pf", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDaKLnT1rPvhs1atxAFbzboM762ia3S4Pf", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-91", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDhyU5tY24x9qt1psgkZrHiLHcUSjtcFSh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDhyU5tY24x9qt1psgkZrHiLHcUSjtcFSh", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-92", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDjb2N98jBsYtb6jHejmZczXfd9cKnb1mh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDjb2N98jBsYtb6jHejmZczXfd9cKnb1mh", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-94", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE5gBvjsMgWM24PJoYBW7Kyq4hoiBgvgNX", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE5gBvjsMgWM24PJoYBW7Kyq4hoiBgvgNX", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-95", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE6NFZ4JqJuNnW1aJras6jrdqtcuyP7M9f", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE6NFZ4JqJuNnW1aJras6jrdqtcuyP7M9f", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-98", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEYo7xjVfBuX87btEr8cwzRoSXN9cdoSN1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEYo7xjVfBuX87btEr8cwzRoSXN9cdoSN1", - 1 - ] - ] - }, - "core_balance": 21 - },{ - "name": "bts-cny-collateral-holder-99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEciFUtmKrsKo7YjR8HbHRR17cYMCZpttk", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEciFUtmKrsKo7YjR8HbHRR17cYMCZpttk", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEdNmvuF1fWnFPAwGQjNLmUVVzXEVRJ7jD", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEdNmvuF1fWnFPAwGQjNLmUVVzXEVRJ7jD", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-103", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTErsVH7aAXANiei7QYEyE4nyNHvnc1HrgX", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTErsVH7aAXANiei7QYEyE4nyNHvnc1HrgX", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-104", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEsZiss1uzsqaftgCicRkJkUjrkK6SgC1S", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEsZiss1uzsqaftgCicRkJkUjrkK6SgC1S", - 1 - ] - ] - }, - "core_balance": 383231 - },{ - "name": "bts-cny-collateral-holder-106", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFLAcRNHyDHVrmS8SYwvAsYrAaSpWYgRe1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFLAcRNHyDHVrmS8SYwvAsYrAaSpWYgRe1", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-107", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFQp1bgYivq9K15pv3V7p14JDPHrqvqkdp", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFQp1bgYivq9K15pv3V7p14JDPHrqvqkdp", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-108", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFZeD2DiGxfEBYNr5ehUGKFXztHkVRPhjc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFZeD2DiGxfEBYNr5ehUGKFXztHkVRPhjc", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cny-collateral-holder-109", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFgXTgaJkzqi7pU47MvB2M8KHxVwYfkWqj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFgXTgaJkzqi7pU47MvB2M8KHxVwYfkWqj", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-110", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFh34utRHFJTehMG1imTzUrAJvNe9ChiEd", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFh34utRHFJTehMG1imTzUrAJvNe9ChiEd", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFiqSJ3vyGLgXz9U2xLA9eTgVgnSC6JzaZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFiqSJ3vyGLgXz9U2xLA9eTgVgnSC6JzaZ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-114", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFppXzZwMS9rFU9KqYggGk5eneW4efULNL", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFppXzZwMS9rFU9KqYggGk5eneW4efULNL", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-115", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFqcv72HDSWL8sgtKAkWcdKH3Pt5pNA5jr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFqcv72HDSWL8sgtKAkWcdKH3Pt5pNA5jr", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-116", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFqk2YXWuPGGEoXK6sWf2VzUrSuVnDRRpZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFqk2YXWuPGGEoXK6sWf2VzUrSuVnDRRpZ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-117", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFuXhNWhQbM3xVBzaRVZZjFqS1K5sznSb6", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFuXhNWhQbM3xVBzaRVZZjFqS1K5sznSb6", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-118", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFz8s8ErjVGhVUruZAN2aiopBMZUhBw2bE", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFz8s8ErjVGhVUruZAN2aiopBMZUhBw2bE", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-120", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGDdwCkxeRPn6EwnLBmNk19hnmqUUHxPCy", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGDdwCkxeRPn6EwnLBmNk19hnmqUUHxPCy", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-121", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGMN1MsPGu19ucuWQNyr14YtfWWgcpVGvU", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGMN1MsPGu19ucuWQNyr14YtfWWgcpVGvU", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGXjCvRPPQKoMUCiG7iH5vcsdTvhnMmuyR", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGXjCvRPPQKoMUCiG7iH5vcsdTvhnMmuyR", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-124", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGcWwgjpGdUKRw1omkSNw67nVyBsS6iBXy", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGcWwgjpGdUKRw1omkSNw67nVyBsS6iBXy", - 1 - ] - ] - }, - "core_balance": 175667 - },{ - "name": "bts-cny-collateral-holder-127", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH3SBZcwGdSstJcudSPBoXF8ATnMXkPMAu", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH3SBZcwGdSstJcudSPBoXF8ATnMXkPMAu", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-128", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHCv91qXNYZAdxuvi1CjEbEquhTsgqnSnN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHCv91qXNYZAdxuvi1CjEbEquhTsgqnSnN", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-129", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHQxPHdG8rkrQHKidcq18LWyhJFCr3FQka", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHQxPHdG8rkrQHKidcq18LWyhJFCr3FQka", - 1 - ] - ] - }, - "core_balance": 10 - },{ - "name": "bts-cny-collateral-holder-131", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHXiVAQEg8S7wbhp7BBxTy7A2t1PbWPLJV", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHXiVAQEg8S7wbhp7BBxTy7A2t1PbWPLJV", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-134", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHoKRYvmuGCgiiPiAXCZ9Tgg1gDGFYoNrD", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHoKRYvmuGCgiiPiAXCZ9Tgg1gDGFYoNrD", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-135", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHsxCXrJ1vBJpSEfT5UcVEFy2Lro1evssP", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHsxCXrJ1vBJpSEfT5UcVEFy2Lro1evssP", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-137", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ5FA4HDBPSSNYsgDGgGvKvRoreAWcTUFW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ5FA4HDBPSSNYsgDGgGvKvRoreAWcTUFW", - 1 - ] - ] - }, - "core_balance": 38405 - },{ - "name": "bts-cny-collateral-holder-138", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ8Htp5pWiCxsgcmgaRht9FUn1eCypxJsh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ8Htp5pWiCxsgcmgaRht9FUn1eCypxJsh", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-139", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJBQ2xvsF2HVNZe9KCHXbqPBCc1pBQYVqA", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJBQ2xvsF2HVNZe9KCHXbqPBCc1pBQYVqA", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cny-collateral-holder-140", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJBoMmJ7faV8SHX2YCSdcQEQxNURs5qqVB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJBoMmJ7faV8SHX2YCSdcQEQxNURs5qqVB", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-142", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJMFimKRUNKKyn84YLhF5cUeUX4qsgLCv9", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJMFimKRUNKKyn84YLhF5cUeUX4qsgLCv9", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-144", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJYXfPqdKzD1HPzxnrAcAHwVxaVjDBnscc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJYXfPqdKzD1HPzxnrAcAHwVxaVjDBnscc", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-145", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJb2LQ6E64V6C2ecXoSocAL93f4zPGVShr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJb2LQ6E64V6C2ecXoSocAL93f4zPGVShr", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-146", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJeXJXAUqBQdUebbvR51jzGrd4Jes14E3J", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJeXJXAUqBQdUebbvR51jzGrd4Jes14E3J", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-147", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJgEgZjfmVFy4j44CPQDc1wDNSg74aWAmc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJgEgZjfmVFy4j44CPQDc1wDNSg74aWAmc", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-148", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJgivxPfbXQE83AiXyCzJfkcDD2m3BagQZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJgivxPfbXQE83AiXyCzJfkcDD2m3BagQZ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-150", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJkh4hvoEREVHkRcXS3UEqc54RfmBHehaq", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJkh4hvoEREVHkRcXS3UEqc54RfmBHehaq", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-153", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK3ELTYan1px5gQSAYxef4ec2had4TWV8R", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK3ELTYan1px5gQSAYxef4ec2had4TWV8R", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-154", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKdYiqnXmEME3gtzATkx1Tk6ggZnfHVFqx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKdYiqnXmEME3gtzATkx1Tk6ggZnfHVFqx", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-155", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKtHFXcSZr6x4mh9DqKm8Xm1rihnJWWnun", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKtHFXcSZr6x4mh9DqKm8Xm1rihnJWWnun", - 1 - ] - ] - }, - "core_balance": 28 - },{ - "name": "bts-cny-collateral-holder-159", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLQGUaCpzreB9g4GkRSn1v7DNMuAD7S8qt", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLQGUaCpzreB9g4GkRSn1v7DNMuAD7S8qt", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-160", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLRYVsih9wuc8i3Gw4qumzvbgfMNzvW93S", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLRYVsih9wuc8i3Gw4qumzvbgfMNzvW93S", - 1 - ] - ] - }, - "core_balance": 20 - },{ - "name": "bts-cny-collateral-holder-161", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLUpnm3kwPQqZs114qg5E3QrWXcdEKBLq8", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLUpnm3kwPQqZs114qg5E3QrWXcdEKBLq8", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-162", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLYBFGMDc7wJmDLgBe482czYchdaovMfUm", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLYBFGMDc7wJmDLgBe482czYchdaovMfUm", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-164", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLiDJ7PVqS1XcTf5sqntqTTQS6s6MSonUx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLiDJ7PVqS1XcTf5sqntqTTQS6s6MSonUx", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-165", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLr7aQ8cUFNGgu5nLZJZNUr1659sFAemRa", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLr7aQ8cUFNGgu5nLZJZNUr1659sFAemRa", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-166", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLrxJpnHGMy3rYr6wtiCj1YR1gTrYmsirC", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLrxJpnHGMy3rYr6wtiCj1YR1gTrYmsirC", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cny-collateral-holder-167", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM6UgXCvrFbf8Yzq6sFCPAdK56MK4NK3dS", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM6UgXCvrFbf8Yzq6sFCPAdK56MK4NK3dS", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMEe5gtrjKGmLAvFhkFU3cJQwXcGHJ8huS", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMEe5gtrjKGmLAvFhkFU3cJQwXcGHJ8huS", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-169", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMHFFLmgUVEP9Yf5Lck2uMFHp3YC1nBF6n", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMHFFLmgUVEP9Yf5Lck2uMFHp3YC1nBF6n", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-170", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMLaLM3VgyJSLRZrYy33Jh3tV6jqe6NVQ1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMLaLM3VgyJSLRZrYy33Jh3tV6jqe6NVQ1", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-171", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMRqPnCRoLgGAT2JsjMkWQw4Pu6uRxDE6j", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMRqPnCRoLgGAT2JsjMkWQw4Pu6uRxDE6j", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cny-collateral-holder-172", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMZWwgjfCpr4AGbYykN9qJaLyBcGEFafXr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMZWwgjfCpr4AGbYykN9qJaLyBcGEFafXr", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-173", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMZiERxPREKV7ZGRRBcTohSfX7Q7La3878", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMZiERxPREKV7ZGRRBcTohSfX7Q7La3878", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-175", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMi4QRhrG6CYvq5is6drrVwhq63rCAVCqN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMi4QRhrG6CYvq5is6drrVwhq63rCAVCqN", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-177", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMv39WcHKnbhURdscMae5R7fH2VrQixmHe", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMv39WcHKnbhURdscMae5R7fH2VrQixmHe", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-178", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN4pdHzw8ezSf4izD4SxBtoLp95bGbhfm1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN4pdHzw8ezSf4izD4SxBtoLp95bGbhfm1", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cny-collateral-holder-179", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN9MyQZSdcRnkgRh8eXcEU8oprazQrMYNG", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN9MyQZSdcRnkgRh8eXcEU8oprazQrMYNG", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cny-collateral-holder-181", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNJBpYs77tKZZ372AbS2qdZRjpkDXvDWde", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNJBpYs77tKZZ372AbS2qdZRjpkDXvDWde", - 1 - ] - ] - }, - "core_balance": 59 - },{ - "name": "bts-cny-collateral-holder-183", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNNiBGiCRgArwiut7vMZChjcBr8JZ3c3eQ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNNiBGiCRgArwiut7vMZChjcBr8JZ3c3eQ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-184", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNgdKaijVpmqD2xrwS446LdCu8pt35ZWCH", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNgdKaijVpmqD2xrwS446LdCu8pt35ZWCH", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-185", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNicgnSjfSZ8aZxuXk6GjfUH2U4vqFPF3N", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNicgnSjfSZ8aZxuXk6GjfUH2U4vqFPF3N", - 1 - ] - ] - }, - "core_balance": 9 - },{ - "name": "bts-cny-collateral-holder-186", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP4amQ7bGg5iQbVfLXjX4HFY6CUqwzQ22s", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP4amQ7bGg5iQbVfLXjX4HFY6CUqwzQ22s", - 1 - ] - ] - }, - "core_balance": 29 - },{ - "name": "bts-cny-collateral-holder-188", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP8QK24T5U1uUq4veQ2o4THBhewGdLMx1L", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP8QK24T5U1uUq4veQ2o4THBhewGdLMx1L", - 1 - ] - ] - }, - "core_balance": 3 - },{ - "name": "bts-cny-collateral-holder-189", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP9jkbPzukrMtgAfbWbigFZZzsQog1N52M", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP9jkbPzukrMtgAfbWbigFZZzsQog1N52M", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-191", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPCZWwY1QKFBc9ySMgRJY2DiwwQaDwKdy6", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPCZWwY1QKFBc9ySMgRJY2DiwwQaDwKdy6", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-192", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPFhWjvxMbT5kHjBDihojrw62CnsvxY1pW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPFhWjvxMbT5kHjBDihojrw62CnsvxY1pW", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-193", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPKit9ATaj6CABkdoG1WDzUwmznksZGFwa", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPKit9ATaj6CABkdoG1WDzUwmznksZGFwa", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-196", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPaAQsYvnMayyUbz2zrka5uYeHRCoUrUsY", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPaAQsYvnMayyUbz2zrka5uYeHRCoUrUsY", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-197", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPqG7pjzb7ygUubStgD5b68zy9xT6yN7av", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPqG7pjzb7ygUubStgD5b68zy9xT6yN7av", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-198", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPwVVedo4rAoKoBHHmCi81YuW7Ee9ozWNa", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPwVVedo4rAoKoBHHmCi81YuW7Ee9ozWNa", - 1 - ] - ] - }, - "core_balance": 17 - },{ - "name": "bts-cny-collateral-holder-200", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQ8sKFo4qwTz2K3sxR2bMvh7dvBydYG1Ac", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQ8sKFo4qwTz2K3sxR2bMvh7dvBydYG1Ac", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-cny-collateral-holder-201", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQGBMDs9eGjVEit9NGjT3ip3R9ZFsMLvgH", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQGBMDs9eGjVEit9NGjT3ip3R9ZFsMLvgH", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-cad-collateral-holder-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8KPQXgygU2X8QP7Q2AmjgBqSgASdWzZWj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8KPQXgygU2X8QP7Q2AmjgBqSgASdWzZWj", - 1 - ] - ] - }, - "core_balance": 50727 - },{ - "name": "bts-chf-collateral-holder-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDDMTkrxYPdhMRXaADGZuHJudbeEwfQvoJ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDDMTkrxYPdhMRXaADGZuHJudbeEwfQvoJ", - 1 - ] - ] - }, - "core_balance": 34750 - },{ - "name": "bts-jpy-collateral-holder-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5cfQ6c4AUdQydbAUY1aLujYV8c61174cC", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5cfQ6c4AUdQydbAUY1aLujYV8c61174cC", - 1 - ] - ] - }, - "core_balance": 593 - },{ - "name": "bts-jpy-collateral-holder-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8neu9EUaytjjgbFmbDMc9jFqRroBEDxZK", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8neu9EUaytjjgbFmbDMc9jFqRroBEDxZK", - 1 - ] - ] - }, - "core_balance": 1005 - },{ - "name": "bts-jpy-collateral-holder-3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAfuBMHLADTAdjNHmw8DzWEtqyu6Hejmbq", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAfuBMHLADTAdjNHmw8DzWEtqyu6Hejmbq", - 1 - ] - ] - }, - "core_balance": 806 - },{ - "name": "bts-jpy-collateral-holder-6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMhSBvqoB1g12sTBTVR1RCWvGcECAZpKLM", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMhSBvqoB1g12sTBTVR1RCWvGcECAZpKLM", - 1 - ] - ] - }, - "core_balance": 21 - },{ - "name": "bts-usd-collateral-holder-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6RgMbcPNzSm6rgf7Fk9hYTmh9awwZm84", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6RgMbcPNzSm6rgf7Fk9hYTmh9awwZm84", - 1 - ] - ] - }, - "core_balance": 68981 - },{ - "name": "bts-usd-collateral-holder-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9rkMdqjA9kY8dGCy34aCMu5VgNcXJDQ4", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9rkMdqjA9kY8dGCy34aCMu5VgNcXJDQ4", - 1 - ] - ] - }, - "core_balance": 422 - },{ - "name": "bts-usd-collateral-holder-7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQDmbwvCspfqtKhj7zqDKx8do5zwMsRz9", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQDmbwvCspfqtKhj7zqDKx8do5zwMsRz9", - 1 - ] - ] - }, - "core_balance": 429 - },{ - "name": "bts-usd-collateral-holder-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 456670 - },{ - "name": "bts-usd-collateral-holder-10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTSbhEQPJks58MQzZeUpzqwwuBr7TKVJGJ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTSbhEQPJks58MQzZeUpzqwwuBr7TKVJGJ", - 1 - ] - ] - }, - "core_balance": 160490 - },{ - "name": "bts-usd-collateral-holder-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTetz1b56amADSgiNubgPufcgxDe3HAYtu", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTetz1b56amADSgiNubgPufcgxDe3HAYtu", - 1 - ] - ] - }, - "core_balance": 376 - },{ - "name": "bts-usd-collateral-holder-17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST22R6LZ4xrLtakPLvPXnHaA2D3wAbjUXzT", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST22R6LZ4xrLtakPLvPXnHaA2D3wAbjUXzT", - 1 - ] - ] - }, - "core_balance": 413764 - },{ - "name": "bts-usd-collateral-holder-19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST28tZqanapwZhEQQNkU41zzYWDhGb8ba9k", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST28tZqanapwZhEQQNkU41zzYWDhGb8ba9k", - 1 - ] - ] - }, - "core_balance": 137215 - },{ - "name": "bts-usd-collateral-holder-20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST292sXyYbnzkEXRBf9x2iRXXfZQqLQheSE", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST292sXyYbnzkEXRBf9x2iRXXfZQqLQheSE", - 1 - ] - ] - }, - "core_balance": 903955 - },{ - "name": "bts-usd-collateral-holder-33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2U62WE5dnnaP6upgq5aJYEnhqm7NVpt46", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2U62WE5dnnaP6upgq5aJYEnhqm7NVpt46", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-38", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2hEBbqwBUkKh8dAzcoAL6T5wvto1S4UQ1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2hEBbqwBUkKh8dAzcoAL6T5wvto1S4UQ1", - 1 - ] - ] - }, - "core_balance": 214909 - },{ - "name": "bts-usd-collateral-holder-41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2jcXk58UEEAHyYQ6gJY3ghxSV3vbLziFx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2jcXk58UEEAHyYQ6gJY3ghxSV3vbLziFx", - 1 - ] - ] - }, - "core_balance": 246308 - },{ - "name": "bts-usd-collateral-holder-42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2jcp5jVsuy4r3JNbgdgS4wkGWrLZ6TAmo", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST2jcp5jVsuy4r3JNbgdgS4wkGWrLZ6TAmo", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST32NDrBe96jb3M8Z9hqZUVUTk2TSCByzMb", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST32NDrBe96jb3M8Z9hqZUVUTk2TSCByzMb", - 1 - ] - ] - }, - "core_balance": 75596 - },{ - "name": "bts-usd-collateral-holder-56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3AyqRMeXLsqEHxNodRGwqgd6FsszZNweZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3AyqRMeXLsqEHxNodRGwqgd6FsszZNweZ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 488274 - },{ - "name": "bts-usd-collateral-holder-63", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3WzkXc1YpCbfa1GT2QMMGSvf46jpG28fY", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3WzkXc1YpCbfa1GT2QMMGSvf46jpG28fY", - 1 - ] - ] - }, - "core_balance": 4480784 - },{ - "name": "bts-usd-collateral-holder-64", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3bajYtbtXygT1Q4kso7SY6W51SC5dTx3p", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3bajYtbtXygT1Q4kso7SY6W51SC5dTx3p", - 1 - ] - ] - }, - "core_balance": 4 - },{ - "name": "bts-usd-collateral-holder-69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3pJeK6aThy7cwcanHdfRxSJGioAbvmkhN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3pJeK6aThy7cwcanHdfRxSJGioAbvmkhN", - 1 - ] - ] - }, - "core_balance": 9998 - },{ - "name": "bts-usd-collateral-holder-70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3pxCCsuLrKmkvGfq4KQDpQEoJksqKC3Yx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3pxCCsuLrKmkvGfq4KQDpQEoJksqKC3Yx", - 1 - ] - ] - }, - "core_balance": 73522 - },{ - "name": "bts-usd-collateral-holder-76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3xmDAvLWdWYUjThTp1RHZ6KZ1Emdzq12n", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST3xmDAvLWdWYUjThTp1RHZ6KZ1Emdzq12n", - 1 - ] - ] - }, - "core_balance": 9 - },{ - "name": "bts-usd-collateral-holder-77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST44E9WtTmyuVQD6548v87HQi3GZ5UJWPwL", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST44E9WtTmyuVQD6548v87HQi3GZ5UJWPwL", - 1 - ] - ] - }, - "core_balance": 2357 - },{ - "name": "bts-usd-collateral-holder-78", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST452b5jMn5JSDToVoD5zVhEBR4hB4rPXSc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST452b5jMn5JSDToVoD5zVhEBR4hB4rPXSc", - 1 - ] - ] - }, - "core_balance": 29400 - },{ - "name": "bts-usd-collateral-holder-80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST47FsZC4pUHBA93vN83mjh7EPSf4GVkgGF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST47FsZC4pUHBA93vN83mjh7EPSf4GVkgGF", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-85", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4JqdXTwCPxk2FZwpncKdd5GsHyi5gv8X6", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4JqdXTwCPxk2FZwpncKdd5GsHyi5gv8X6", - 1 - ] - ] - }, - "core_balance": 5633 - },{ - "name": "bts-usd-collateral-holder-89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4WBCahKua9adjaDXeiGZGrXs4Fv7TkohF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4WBCahKua9adjaDXeiGZGrXs4Fv7TkohF", - 1 - ] - ] - }, - "core_balance": 3348 - },{ - "name": "bts-usd-collateral-holder-94", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4mYcRZ2ECRLf3Zf5JppSBhiQWywwKNs3W", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4mYcRZ2ECRLf3Zf5JppSBhiQWywwKNs3W", - 1 - ] - ] - }, - "core_balance": 540031 - },{ - "name": "bts-usd-collateral-holder-98", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4rvmoZZJ4kfvdN7pUcqZ3bVGgngwqNa3L", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4rvmoZZJ4kfvdN7pUcqZ3bVGgngwqNa3L", - 1 - ] - ] - }, - "core_balance": 90417 - },{ - "name": "bts-usd-collateral-holder-99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4sLbnd6Wps7R4uq53HKM1DWLerZTS2tmf", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST4sLbnd6Wps7R4uq53HKM1DWLerZTS2tmf", - 1 - ] - ] - }, - "core_balance": 704 - },{ - "name": "bts-usd-collateral-holder-103", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST58LNVQDoEp9ZC4AHWU8bvsQFdYsHLe6BU", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST58LNVQDoEp9ZC4AHWU8bvsQFdYsHLe6BU", - 1 - ] - ] - }, - "core_balance": 99547 - },{ - "name": "bts-usd-collateral-holder-105", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5FUAJHmSNM4H2dgUZZxFPnY5bCyyukqcy", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5FUAJHmSNM4H2dgUZZxFPnY5bCyyukqcy", - 1 - ] - ] - }, - "core_balance": 8 - },{ - "name": "bts-usd-collateral-holder-106", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5H2bf4HAdYAWXiXnWv4xjVNsMZfTEStDY", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5H2bf4HAdYAWXiXnWv4xjVNsMZfTEStDY", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-110", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5RNZC9UBXvMBiqhUghPwjZXZrSBNGsGpK", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5RNZC9UBXvMBiqhUghPwjZXZrSBNGsGpK", - 1 - ] - ] - }, - "core_balance": 8798977 - },{ - "name": "bts-usd-collateral-holder-114", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5YX5bdy7TA7xLF4q3A793F4op89Xv6KaS", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5YX5bdy7TA7xLF4q3A793F4op89Xv6KaS", - 1 - ] - ] - }, - "core_balance": 383082 - },{ - "name": "bts-usd-collateral-holder-119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5qvaiJda6LDmLjUCzdP3zdSunutLdKFE8", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST5qvaiJda6LDmLjUCzdP3zdSunutLdKFE8", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-126", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6KEA6KTBVyL5S2TgiZGCvuPV8cE54Fmnf", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST6KEA6KTBVyL5S2TgiZGCvuPV8cE54Fmnf", - 1 - ] - ] - }, - "core_balance": 806 - },{ - "name": "bts-usd-collateral-holder-139", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST73VZNmTt8rvsrJSWh4kxXdsCEU8SAjZiB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST73VZNmTt8rvsrJSWh4kxXdsCEU8SAjZiB", - 1 - ] - ] - }, - "core_balance": 412965 - },{ - "name": "bts-usd-collateral-holder-141", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7BNVDiXBkxz92VikvZwM2xByXrzh5EznS", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7BNVDiXBkxz92VikvZwM2xByXrzh5EznS", - 1 - ] - ] - }, - "core_balance": 49822 - },{ - "name": "bts-usd-collateral-holder-153", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7TVgn6nz44t4whhPrCd8LohcVhvDMefs9", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7TVgn6nz44t4whhPrCd8LohcVhvDMefs9", - 1 - ] - ] - }, - "core_balance": 6148976 - },{ - "name": "bts-usd-collateral-holder-158", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7d2vceNWBuv5UPKZZcKnQvA7UgWVwLoDN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7d2vceNWBuv5UPKZZcKnQvA7UgWVwLoDN", - 1 - ] - ] - }, - "core_balance": 90417 - },{ - "name": "bts-usd-collateral-holder-160", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7imXgV6ezE73nNtobG5FsCHg3WSaJnPV6", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7imXgV6ezE73nNtobG5FsCHg3WSaJnPV6", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-167", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7tkVC46WEKCNnorr4DSY59aL94DiMNcvx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST7tkVC46WEKCNnorr4DSY59aL94DiMNcvx", - 1 - ] - ] - }, - "core_balance": 2058 - },{ - "name": "bts-usd-collateral-holder-173", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST88GnYKskB13KtPfDoPhqUAQzssA41uVAj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST88GnYKskB13KtPfDoPhqUAQzssA41uVAj", - 1 - ] - ] - }, - "core_balance": 6882 - },{ - "name": "bts-usd-collateral-holder-180", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8WKjw6DyakLfSUTTs3PeMZ7s2KGTdX1BP", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8WKjw6DyakLfSUTTs3PeMZ7s2KGTdX1BP", - 1 - ] - ] - }, - "core_balance": 1345 - },{ - "name": "bts-usd-collateral-holder-187", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8e5ssLCxa9AmBKzFqXzZzHMBm6qKTJLft", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST8e5ssLCxa9AmBKzFqXzZzHMBm6qKTJLft", - 1 - ] - ] - }, - "core_balance": 4 - },{ - "name": "bts-usd-collateral-holder-195", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-201", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9GhzzRN1JcUeqt5nFxEhxcWPEjwAdepUx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9GhzzRN1JcUeqt5nFxEhxcWPEjwAdepUx", - 1 - ] - ] - }, - "core_balance": 560625 - },{ - "name": "bts-usd-collateral-holder-203", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9JQS9N9QkNjVAza63rGyvYzvs3kqHD79G", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9JQS9N9QkNjVAza63rGyvYzvs3kqHD79G", - 1 - ] - ] - }, - "core_balance": 6149126 - },{ - "name": "bts-usd-collateral-holder-205", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9KSf9tshrpnMeHFXTPyoA2H5xYoZPcMdF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9KSf9tshrpnMeHFXTPyoA2H5xYoZPcMdF", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-206", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9LaCBYtmMsqi6LjAWZs11JuZEn5tWeoa8", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9LaCBYtmMsqi6LjAWZs11JuZEn5tWeoa8", - 1 - ] - ] - }, - "core_balance": 8671 - },{ - "name": "bts-usd-collateral-holder-215", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9rrB7MuJyueExqM6HbLPf27pL3HPKJrx7", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9rrB7MuJyueExqM6HbLPf27pL3HPKJrx7", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-220", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9xtarqW2PGEYAGZF4WGaLap6PphDdcokp", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TEST9xtarqW2PGEYAGZF4WGaLap6PphDdcokp", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-225", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTA7exDPqG3DwJm5aWaQzFmj8ahEUNbXbvb", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTA7exDPqG3DwJm5aWaQzFmj8ahEUNbXbvb", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-226", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTA8CFYxjf6gDbwqoWiRUX6oUbUhtoe3mpG", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTA8CFYxjf6gDbwqoWiRUX6oUbUhtoe3mpG", - 1 - ] - ] - }, - "core_balance": 349139 - },{ - "name": "bts-usd-collateral-holder-228", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-229", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAD79m8vFXb1TWLeYe7Qb4fxqvK1bwfW7R", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTAD79m8vFXb1TWLeYe7Qb4fxqvK1bwfW7R", - 1 - ] - ] - }, - "core_balance": 697210 - },{ - "name": "bts-usd-collateral-holder-241", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTArazqVf5yjgfJpRh2ScmoeKEhhtcirmbJ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTArazqVf5yjgfJpRh2ScmoeKEhhtcirmbJ", - 1 - ] - ] - }, - "core_balance": 75393 - },{ - "name": "bts-usd-collateral-holder-252", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBF4Dzs3VjS9mehZ3M6pMZrBHLr1RQFmdi", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBF4Dzs3VjS9mehZ3M6pMZrBHLr1RQFmdi", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-258", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-260", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBcutNf5nw6t7hN1Bddv3zdCmdb3xbNdri", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBcutNf5nw6t7hN1Bddv3zdCmdb3xbNdri", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-261", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBhgB1oscLCZhvouQJenr16ZVvjL49RGBg", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTBhgB1oscLCZhvouQJenr16ZVvjL49RGBg", - 1 - ] - ] - }, - "core_balance": 11884 - },{ - "name": "bts-usd-collateral-holder-265", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTC1KnZNomvS7BkDW3R94E7wxVbfhJzUaBA", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTC1KnZNomvS7BkDW3R94E7wxVbfhJzUaBA", - 1 - ] - ] - }, - "core_balance": 82735 - },{ - "name": "bts-usd-collateral-holder-267", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTC8REo8WUPnjtYwQUNM1hNj4UWRbUx6xx9", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTC8REo8WUPnjtYwQUNM1hNj4UWRbUx6xx9", - 1 - ] - ] - }, - "core_balance": 1680 - },{ - "name": "bts-usd-collateral-holder-275", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCZqeAt21WejrNm48oyiPARwq415hNCVgu", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTCZqeAt21WejrNm48oyiPARwq415hNCVgu", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-279", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTD2iDGPdW52fx75ETugZeqETohx5sBkAcz", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTD2iDGPdW52fx75ETugZeqETohx5sBkAcz", - 1 - ] - ] - }, - "core_balance": 1021 - },{ - "name": "bts-usd-collateral-holder-282", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDAntNYq9QdXi9xy41TxBKw84yUGY6EEfW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDAntNYq9QdXi9xy41TxBKw84yUGY6EEfW", - 1 - ] - ] - }, - "core_balance": 1032 - },{ - "name": "bts-usd-collateral-holder-284", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDDvh84vwQVsoKp2QywjBMPQusZkkQAuss", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDDvh84vwQVsoKp2QywjBMPQusZkkQAuss", - 1 - ] - ] - }, - "core_balance": 159771 - },{ - "name": "bts-usd-collateral-holder-288", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDMh5cGTmPYtHouZCCUYf31YGrek2hNjzx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDMh5cGTmPYtHouZCCUYf31YGrek2hNjzx", - 1 - ] - ] - }, - "core_balance": 202223 - },{ - "name": "bts-usd-collateral-holder-290", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDPZMctAvvFdC6B7N471LrRV2sNi9uBtFN", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDPZMctAvvFdC6B7N471LrRV2sNi9uBtFN", - 1 - ] - ] - }, - "core_balance": 55866 - },{ - "name": "bts-usd-collateral-holder-291", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDUyG9HfRXun86xDSJfMJyeYWCLqnBc7jU", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDUyG9HfRXun86xDSJfMJyeYWCLqnBc7jU", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-295", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDk2zx9u5YPUi5B2jFc5hLoBLH5kZEReQd", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDk2zx9u5YPUi5B2jFc5hLoBLH5kZEReQd", - 1 - ] - ] - }, - "core_balance": 852 - },{ - "name": "bts-usd-collateral-holder-298", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDvvNiALNwab2kCpV78STgt3svFJdjuxLJ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTDvvNiALNwab2kCpV78STgt3svFJdjuxLJ", - 1 - ] - ] - }, - "core_balance": 987 - },{ - "name": "bts-usd-collateral-holder-302", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE6ogncWN3Z5SvxVZ6WzeagTzqYK65utUB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTE6ogncWN3Z5SvxVZ6WzeagTzqYK65utUB", - 1 - ] - ] - }, - "core_balance": 81309 - },{ - "name": "bts-usd-collateral-holder-305", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-309", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEMNhJD61Ve9zfva2fHFJhFRpPQLWpfLUo", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEMNhJD61Ve9zfva2fHFJhFRpPQLWpfLUo", - 1 - ] - ] - }, - "core_balance": 2250 - },{ - "name": "bts-usd-collateral-holder-313", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEbRyXGAcm2UEWkiU47HTQsduUea8taKjw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEbRyXGAcm2UEWkiU47HTQsduUea8taKjw", - 1 - ] - ] - }, - "core_balance": 1969 - },{ - "name": "bts-usd-collateral-holder-314", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEd7hdKfaR5PKuaPDCGaYJQghquuLDCjpj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEd7hdKfaR5PKuaPDCGaYJQghquuLDCjpj", - 1 - ] - ] - }, - "core_balance": 80096 - },{ - "name": "bts-usd-collateral-holder-315", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEeddm5tnwmXRnhBnCeAgT2NALEUjW6BbH", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEeddm5tnwmXRnhBnCeAgT2NALEUjW6BbH", - 1 - ] - ] - }, - "core_balance": 359746 - },{ - "name": "bts-usd-collateral-holder-318", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEfxTakKR3Bry48XrYJisBnPss5Deu4hYe", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEfxTakKR3Bry48XrYJisBnPss5Deu4hYe", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-319", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEgMf1UCn5NzW8w5dhn3RMvkBSpYoD22vU", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEgMf1UCn5NzW8w5dhn3RMvkBSpYoD22vU", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-326", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEtUHpK8YSonodkXbVQmpoiBNToBr7TGp8", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEtUHpK8YSonodkXbVQmpoiBNToBr7TGp8", - 1 - ] - ] - }, - "core_balance": 362614 - },{ - "name": "bts-usd-collateral-holder-328", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEvmDbAzLobfgZjtb2yuYzPmu1bM4tXEjM", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTEvmDbAzLobfgZjtb2yuYzPmu1bM4tXEjM", - 1 - ] - ] - }, - "core_balance": 90417 - },{ - "name": "bts-usd-collateral-holder-331", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTF777kPWFmPpyPDNTqDu9mneE1Ge9kE5Fi", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTF777kPWFmPpyPDNTqDu9mneE1Ge9kE5Fi", - 1 - ] - ] - }, - "core_balance": 79523 - },{ - "name": "bts-usd-collateral-holder-334", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFGr3w745LiCJubzmt7qs6WPkhoMX3LABx", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFGr3w745LiCJubzmt7qs6WPkhoMX3LABx", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-337", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFLB5VUc3CeT1P9zpjyhmeAyAMpAbyBRp3", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFLB5VUc3CeT1P9zpjyhmeAyAMpAbyBRp3", - 1 - ] - ] - }, - "core_balance": 167297 - },{ - "name": "bts-usd-collateral-holder-339", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFWr9DnJpGSF6yABb2ehdhFfmYTkThDCCs", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFWr9DnJpGSF6yABb2ehdhFfmYTkThDCCs", - 1 - ] - ] - }, - "core_balance": 2379 - },{ - "name": "bts-usd-collateral-holder-342", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFiBBdhgHpceRNFsjKHcZ2WFLqYNY6e2gh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFiBBdhgHpceRNFsjKHcZ2WFLqYNY6e2gh", - 1 - ] - ] - }, - "core_balance": 17221 - },{ - "name": "bts-usd-collateral-holder-346", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFn7H7C59gcRwqz8hbtLsyoNLNYoeBjuwB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFn7H7C59gcRwqz8hbtLsyoNLNYoeBjuwB", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-350", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFroPYqCmxcNY1kZMfktYVe5f5raWfRrLt", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFroPYqCmxcNY1kZMfktYVe5f5raWfRrLt", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-353", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFub4L9qLtpAoWGoHxcxpU4hN4mAgzYA4v", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFub4L9qLtpAoWGoHxcxpU4hN4mAgzYA4v", - 1 - ] - ] - }, - "core_balance": 2513 - },{ - "name": "bts-usd-collateral-holder-354", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFw8G5mu1CHPLRDWiRw4HxXfNAbdUeqWvE", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTFw8G5mu1CHPLRDWiRw4HxXfNAbdUeqWvE", - 1 - ] - ] - }, - "core_balance": 327 - },{ - "name": "bts-usd-collateral-holder-357", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-362", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGERCpdJ5CHp1XZXLVaqyJhZfxXkpkc3C7", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGERCpdJ5CHp1XZXLVaqyJhZfxXkpkc3C7", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-369", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGXKUp4bs8UHc282Peu3UAdaakjGxBvhHB", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGXKUp4bs8UHc282Peu3UAdaakjGxBvhHB", - 1 - ] - ] - }, - "core_balance": 319693 - },{ - "name": "bts-usd-collateral-holder-370", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGXWPa99s1h5PHhg3s5pPr8qWfzwDxdc2P", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGXWPa99s1h5PHhg3s5pPr8qWfzwDxdc2P", - 1 - ] - ] - }, - "core_balance": 17012 - },{ - "name": "bts-usd-collateral-holder-379", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGqT5rjDZzzto8EAvvuZM9nm2PddCuqGe1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGqT5rjDZzzto8EAvvuZM9nm2PddCuqGe1", - 1 - ] - ] - }, - "core_balance": 22 - },{ - "name": "bts-usd-collateral-holder-380", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGvX1i7PoUisydUHFy9D4fRXrA9SuwXhx4", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGvX1i7PoUisydUHFy9D4fRXrA9SuwXhx4", - 1 - ] - ] - }, - "core_balance": 128121 - },{ - "name": "bts-usd-collateral-holder-381", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGwK9CqLuu9sKu3U31M1Hs5Zh84oKoeEc3", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTGwK9CqLuu9sKu3U31M1Hs5Zh84oKoeEc3", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-388", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH1CSbuZbzg5ZwkMrr9MVQiy9nVBcb2YNw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH1CSbuZbzg5ZwkMrr9MVQiy9nVBcb2YNw", - 1 - ] - ] - }, - "core_balance": 23 - },{ - "name": "bts-usd-collateral-holder-391", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH7EzjLUJmfRKfxvYV9KK1HnqgTz4h7rns", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH7EzjLUJmfRKfxvYV9KK1HnqgTz4h7rns", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-392", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH7VsVYFhgkMZ4CMrxtk2JaGGHW4HdJDNM", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTH7VsVYFhgkMZ4CMrxtk2JaGGHW4HdJDNM", - 1 - ] - ] - }, - "core_balance": 37674 - },{ - "name": "bts-usd-collateral-holder-398", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHNnMUJrSBM3uko8njWuDaJmkT47zp9VUS", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHNnMUJrSBM3uko8njWuDaJmkT47zp9VUS", - 1 - ] - ] - }, - "core_balance": 190447 - },{ - "name": "bts-usd-collateral-holder-406", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHgR9frHm2KzBMtJ7WYZvc2QiJDnmrKEWt", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHgR9frHm2KzBMtJ7WYZvc2QiJDnmrKEWt", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-408", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHhrMQgdrA7J34VxY2MQuuVLbgtXoWju1P", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHhrMQgdrA7J34VxY2MQuuVLbgtXoWju1P", - 1 - ] - ] - }, - "core_balance": 5012 - },{ - "name": "bts-usd-collateral-holder-410", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHxHYHdGUmfyJHUc6zg6KZ72sDMvqt7kjT", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTHxHYHdGUmfyJHUc6zg6KZ72sDMvqt7kjT", - 1 - ] - ] - }, - "core_balance": 436988 - },{ - "name": "bts-usd-collateral-holder-411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ5LL2JpbRZwR6yppukHQqepZS3bZcbNQq", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJ5LL2JpbRZwR6yppukHQqepZS3bZcbNQq", - 1 - ] - ] - }, - "core_balance": 218444 - },{ - "name": "bts-usd-collateral-holder-415", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJF1NB4SFgy7B8LwazLm2KerGPFiFRpSXR", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJF1NB4SFgy7B8LwazLm2KerGPFiFRpSXR", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-423", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJQodFPKgppE5axus2uwhVM7XWKsQt6i23", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJQodFPKgppE5axus2uwhVM7XWKsQt6i23", - 1 - ] - ] - }, - "core_balance": 149244 - },{ - "name": "bts-usd-collateral-holder-425", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJT8MWjPhupSMa8TZo7k4txDVmgBGJVGpg", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJT8MWjPhupSMa8TZo7k4txDVmgBGJVGpg", - 1 - ] - ] - }, - "core_balance": 4155 - },{ - "name": "bts-usd-collateral-holder-427", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJWFw584F5iVu7o2eKZWYPA6LNkBK5pXz4", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJWFw584F5iVu7o2eKZWYPA6LNkBK5pXz4", - 1 - ] - ] - }, - "core_balance": 77261 - },{ - "name": "bts-usd-collateral-holder-428", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJY8GfsSVAatRLfyqgS6ZW1S1YGmEHoEkb", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJY8GfsSVAatRLfyqgS6ZW1S1YGmEHoEkb", - 1 - ] - ] - }, - "core_balance": 77466 - },{ - "name": "bts-usd-collateral-holder-435", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJmK8wBqY84QHydTMeJ7RG2uxhciNajNzA", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJmK8wBqY84QHydTMeJ7RG2uxhciNajNzA", - 1 - ] - ] - }, - "core_balance": 140859 - },{ - "name": "bts-usd-collateral-holder-437", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJnHxxk1X3mf7ocsGYaUhdStehZF58b5TQ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTJnHxxk1X3mf7ocsGYaUhdStehZF58b5TQ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-445", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-446", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK6Bg689Pypzf43Lyn9AdK916R4cZHruoh", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK6Bg689Pypzf43Lyn9AdK916R4cZHruoh", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-447", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK6NQHwz5uLsgAQxqYNXadLRseNJ282HLQ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK6NQHwz5uLsgAQxqYNXadLRseNJ282HLQ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-450", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK8cKwf8BYFz8KY4AaHLqzCGVvnCKqYgPZ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTK8cKwf8BYFz8KY4AaHLqzCGVvnCKqYgPZ", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-451", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKAJ5DkLgHc9cuBkEYCJDn1oSbQUHjSfYt", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKAJ5DkLgHc9cuBkEYCJDn1oSbQUHjSfYt", - 1 - ] - ] - }, - "core_balance": 3718450 - },{ - "name": "bts-usd-collateral-holder-453", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKUBFzGx2XZyxMPVpgWeSD49dQB2Q6CqWr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKUBFzGx2XZyxMPVpgWeSD49dQB2Q6CqWr", - 1 - ] - ] - }, - "core_balance": 2585 - },{ - "name": "bts-usd-collateral-holder-457", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKenH2PQMgTwzP7hdFwAB4J8G2pvdcYG2C", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKenH2PQMgTwzP7hdFwAB4J8G2pvdcYG2C", - 1 - ] - ] - }, - "core_balance": 5726933 - },{ - "name": "bts-usd-collateral-holder-458", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKuWbDgPr1omyPj9iNkwsyr1yudtNjyeQE", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKuWbDgPr1omyPj9iNkwsyr1yudtNjyeQE", - 1 - ] - ] - }, - "core_balance": 3135 - },{ - "name": "bts-usd-collateral-holder-459", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKvA2FyQ2oHkRLHoEHMby9r6RysHCkn9Xw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKvA2FyQ2oHkRLHoEHMby9r6RysHCkn9Xw", - 1 - ] - ] - }, - "core_balance": 61643 - },{ - "name": "bts-usd-collateral-holder-460", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKw7JzsbcMRzMxtbLRDBqwpnUAWQWpbp7o", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTKw7JzsbcMRzMxtbLRDBqwpnUAWQWpbp7o", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-464", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTL8D788CkpkZkYDZ1M15dqGrmzwjpnaH1S", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTL8D788CkpkZkYDZ1M15dqGrmzwjpnaH1S", - 1 - ] - ] - }, - "core_balance": 123 - },{ - "name": "bts-usd-collateral-holder-465", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLBU3kLyrA2F5qZbAcog2h88kMN6mjFSLn", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLBU3kLyrA2F5qZbAcog2h88kMN6mjFSLn", - 1 - ] - ] - }, - "core_balance": 1083 - },{ - "name": "bts-usd-collateral-holder-469", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-470", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLMJEytNcybfPet5Mxq4c1yqbKRqSzXGmz", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLMJEytNcybfPet5Mxq4c1yqbKRqSzXGmz", - 1 - ] - ] - }, - "core_balance": 2130 - },{ - "name": "bts-usd-collateral-holder-472", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLPv2xfaMt5oUk1SWDBJuoMVUxyY46chTQ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLPv2xfaMt5oUk1SWDBJuoMVUxyY46chTQ", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-473", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLU1PgqajsCMq7XxFhitmsysN6y4L5hypr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLU1PgqajsCMq7XxFhitmsysN6y4L5hypr", - 1 - ] - ] - }, - "core_balance": 560625 - },{ - "name": "bts-usd-collateral-holder-475", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLXLwZtwfvuxgohGvUqdzf7RKcTNfozPKA", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLXLwZtwfvuxgohGvUqdzf7RKcTNfozPKA", - 1 - ] - ] - }, - "core_balance": 41346 - },{ - "name": "bts-usd-collateral-holder-479", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-480", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-481", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLvUh2KMH6fpodCpvQtx2S3fCDUAuhTEU8", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLvUh2KMH6fpodCpvQtx2S3fCDUAuhTEU8", - 1 - ] - ] - }, - "core_balance": 95253 - },{ - "name": "bts-usd-collateral-holder-482", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLvW2nKPspEhyiqMNgt2eEw2f7D6SPxbWu", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTLvW2nKPspEhyiqMNgt2eEw2f7D6SPxbWu", - 1 - ] - ] - }, - "core_balance": 38 - },{ - "name": "bts-usd-collateral-holder-486", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM6Jc34agrnKV9DYcKmXC2uxqKgHxNLXcs", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM6Jc34agrnKV9DYcKmXC2uxqKgHxNLXcs", - 1 - ] - ] - }, - "core_balance": 79523 - },{ - "name": "bts-usd-collateral-holder-487", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM6YLLzNckTr8Vjh72RnKLhEXNiPVkRZCW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTM6YLLzNckTr8Vjh72RnKLhEXNiPVkRZCW", - 1 - ] - ] - }, - "core_balance": 159771 - },{ - "name": "bts-usd-collateral-holder-491", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMLsX9YGgerjJ1UySiyRjCZFFBhWembCPj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMLsX9YGgerjJ1UySiyRjCZFFBhWembCPj", - 1 - ] - ] - }, - "core_balance": 20331 - },{ - "name": "bts-usd-collateral-holder-492", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-pcc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 394941 - },{ - "name": "bts-usd-collateral-holder-493", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMPWCEG8fAmwSBFC1myhBxxUwUPt4UJ5jy", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMPWCEG8fAmwSBFC1myhBxxUwUPt4UJ5jy", - 1 - ] - ] - }, - "core_balance": 1240 - },{ - "name": "bts-usd-collateral-holder-502", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMhMs7DhbTSvax4U1aChfU76JNMq4XLzKi", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMhMs7DhbTSvax4U1aChfU76JNMq4XLzKi", - 1 - ] - ] - }, - "core_balance": 60536 - },{ - "name": "bts-usd-collateral-holder-507", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMwj97rASKPRCXmv3dUj7m2uyzrvmA6aaY", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMwj97rASKPRCXmv3dUj7m2uyzrvmA6aaY", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-510", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMzN3AdDZoqQQV1s5AEGfobUeXpvdyKGcw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTMzN3AdDZoqQQV1s5AEGfobUeXpvdyKGcw", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-513", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN3e7QkwTZYqxkjibddRA6oRbyugDWwxY1", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN3e7QkwTZYqxkjibddRA6oRbyugDWwxY1", - 1 - ] - ] - }, - "core_balance": 98 - },{ - "name": "bts-usd-collateral-holder-514", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN4Qzu3V3BWhKhb9yaQvi7BcVS1uhwYkWF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN4Qzu3V3BWhKhb9yaQvi7BcVS1uhwYkWF", - 1 - ] - ] - }, - "core_balance": 362082 - },{ - "name": "bts-usd-collateral-holder-516", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN86GzGsZYYNdr1zFeU4bgPBY8YvcW2HhU", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN86GzGsZYYNdr1zFeU4bgPBY8YvcW2HhU", - 1 - ] - ] - }, - "core_balance": 172 - },{ - "name": "bts-usd-collateral-holder-517", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN9XA2JWVSDBLdZCFZ5N6oJKnCyTFytbUt", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTN9XA2JWVSDBLdZCFZ5N6oJKnCyTFytbUt", - 1 - ] - ] - }, - "core_balance": 298046 - },{ - "name": "bts-usd-collateral-holder-518", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNBaAdpwdQ86D8yXGUDEbNgLknqQmUQNjW", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNBaAdpwdQ86D8yXGUDEbNgLknqQmUQNjW", - 1 - ] - ] - }, - "core_balance": 159771 - },{ - "name": "bts-usd-collateral-holder-520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNEyGNXd9XETVr8oyGcniHBnqc5dkXyui2", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNEyGNXd9XETVr8oyGcniHBnqc5dkXyui2", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-521", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNN7EzDeR6ifji3LyY7q1ftQhA7eJxykNS", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNN7EzDeR6ifji3LyY7q1ftQhA7eJxykNS", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-525", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNQryysU71bkouTsWq2igv6rtPe31fHgtk", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNQryysU71bkouTsWq2igv6rtPe31fHgtk", - 1 - ] - ] - }, - "core_balance": 355172 - },{ - "name": "bts-usd-collateral-holder-528", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNZHfMivrQ6NF1ijc3qMxgrSLyEhzyrLNF", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNZHfMivrQ6NF1ijc3qMxgrSLyEhzyrLNF", - 1 - ] - ] - }, - "core_balance": 351388 - },{ - "name": "bts-usd-collateral-holder-529", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNZoCCun8ZdCBPtkfmkhzSYw1cJPhDHu55", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNZoCCun8ZdCBPtkfmkhzSYw1cJPhDHu55", - 1 - ] - ] - }, - "core_balance": 189754 - },{ - "name": "bts-usd-collateral-holder-532", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNiTSZNyPRgPfEGH9GZSff8hk14qGLbMtr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTNiTSZNyPRgPfEGH9GZSff8hk14qGLbMtr", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-537", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP3ShW2K4nkWpyf2W2PffbyEs54r5mWfLc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTP3ShW2K4nkWpyf2W2PffbyEs54r5mWfLc", - 1 - ] - ] - }, - "core_balance": 295308 - },{ - "name": "bts-usd-collateral-holder-550", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPQhbgEvU2pcCAfKaNRDfZ7CSQ1b9AZQfQ", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPQhbgEvU2pcCAfKaNRDfZ7CSQ1b9AZQfQ", - 1 - ] - ] - }, - "core_balance": 457 - },{ - "name": "bts-usd-collateral-holder-557", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPVyQWmbvVZmj3gk2EupCeUGgGdKA879bc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPVyQWmbvVZmj3gk2EupCeUGgGdKA879bc", - 1 - ] - ] - }, - "core_balance": 2 - },{ - "name": "bts-usd-collateral-holder-567", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPt73eT3SC889VR3UYsX8YU3cuoTeLCrsc", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPt73eT3SC889VR3UYsX8YU3cuoTeLCrsc", - 1 - ] - ] - }, - "core_balance": 2517 - },{ - "name": "bts-usd-collateral-holder-570", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPyyBmxH8Vk6Y5DMmSi9G1HagFtaudjv1n", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTPyyBmxH8Vk6Y5DMmSi9G1HagFtaudjv1n", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-571", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQ3nAgkogeUExnBJeSB8ymxULYBXng8aCj", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQ3nAgkogeUExnBJeSB8ymxULYBXng8aCj", - 1 - ] - ] - }, - "core_balance": 4143 - },{ - "name": "bts-usd-collateral-holder-573", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQBE8vNdqGj9X4BRxbKEkHjKgnXoDoFNjo", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQBE8vNdqGj9X4BRxbKEkHjKgnXoDoFNjo", - 1 - ] - ] - }, - "core_balance": 3290701 - },{ - "name": "bts-usd-collateral-holder-576", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQD13L7P2sjgiw5QRxfFzZEdFSBvhXKGTw", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQD13L7P2sjgiw5QRxfFzZEdFSBvhXKGTw", - 1 - ] - ] - }, - "core_balance": 1 - },{ - "name": "bts-usd-collateral-holder-578", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQDDWXSLffD52MYoXDJDZZ21bsDJBbh7Nr", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQDDWXSLffD52MYoXDJDZZ21bsDJBbh7Nr", - 1 - ] - ] - }, - "core_balance": 189610 - },{ - "name": "bts-usd-collateral-holder-580", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQFo4YLAwXkrbB1Eiu345t116hJ3uFCR5x", - 1 - ] - ] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [[ - "TESTQFo4YLAwXkrbB1Eiu345t116hJ3uFCR5x", - 1 - ] - ] - }, - "core_balance": 15809 - },{ - "name": "bts-mindphlux.witness", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QkJk1veo2dHAbidEwhRZ1dNKPSGATZHLB33YZj6k8NL3VdUDH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71CkeCmNPWabiZDJQFZChTxQ3DxfmbACGcprHq9g6V2CcVyvuK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-vj000000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KxaRe8SJ4UvMbvvp8hCdCSbGbTDWfBYco1TW9p8PN3osERKEB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KTAjaX4NcNb59Xx4fYc36eP1HeCsubh6BJjb9aQne5W8hCzXs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-tester12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jLrXkNF2oYncbtVi5eKzbfYWgjvzR8NdcX4ZP78NWeZbMGWg9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iHZDMbHLZCpyRaKwLk8RpQW3rmWEbhzVhjFAvYz6wRgNoxfNQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-tony-hughes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vP99QZ7B6YYetgwFcEgo82wgd2wY5myETVjjN4mLoqm1Yj8US", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77U98Yogq8KXXxnkKHwdHTiYFA9A44AQhNZ6aRfbh7CnrGtW2c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 296413 - },{ - "name": "bts-jbbit-shares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vW8GhTsHKEYVJ1L1tq9L6izWKRdGgESBNLMg45bUD6hVJRpq6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y2DwAiVTEcRA5ca648q3xiVGhZ1Qp37QTtt3cjW6DNp38dB1t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 214 - },{ - "name": "bts-necro-paz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ghyUGDYRxS7fdTEvQWM9pz9BnmVLpph9aVF2kFCRekDURKTjC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8evMoikcJwE8dswJtQ2WeDA39BPv3hRLnMw6K6hnyruE3YcAnS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-alden-pogi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55y5oqvp5A7jiETHQK3RY1bQg8CoG84b1w3jBaLhDXHgLckv8N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KBk8BxGNokwAbdvjrkucDxz7uXMkMjCSoQFHE7v8LR3ABdnjY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-znmj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bCuAyGEUf7WseTzpjgrQTDfzFTFPNQ2cGUP5SCLUcMAxjgunY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DSTgpTf26aik76LbLSoBpvkwyT38yV9DvQvRaWBT77oaqnSKu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-mutualidentity2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kVW6tfPvmsfBhNzF7ArQgm2ADjPHfnUTxPwRyMzFj2cfEnWWK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KPBAXrNcjruGrjuDvU984PnJRTdJ87Hm5BCHHitDYzhXY2ctv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 360895 - },{ - "name": "bts-lats2013", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5p748JJFx9n9bum3PkoKopqfoLXwx5QsksZi2m8YQD9gkGyXNT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mk4QGhWBS3ypccCFrc6yiAdGu7NMfqpjJnZpba7MqLvMZi6JJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1535 - },{ - "name": "bts-crypto-creations", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7v3TZikV4HzwDH3YLBkyhn87KLp8TzjtnzXX6A82SjQ9AJeWUt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73PhyvQBVBC93ttYuofKX8o5aBxrFXJfrrZFwN2aegUwczYGb8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 872418 - },{ - "name": "bts-clayop-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST861pb5cvNMZiZ7FtV13EBFhxw6us5S3yWTuoQx4f2AmGaHcBWf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rWbhQjGcCGDYnbJsXVj4j2iXQj1CUpunRdRNoG1CXoRXqvvuk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-cnrd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GP4YTgBYnTM2oQEy6HQoNmWtfdYoJN1NtWwE7gSpB71WqQ1x4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7K1M5B3PUNrmJZ9RQd5E4HQDBvpCcEj6Jzzo9PhWwyVJ9WLzyA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35626 - },{ - "name": "bts-lor3nzo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xpFEmj94NGoFYENT5m4rHiMdqoP8wEweXgpbZViEcUpZe94mr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nofqDBB6w4kiu8rm1RwkKWsBzN1tVnkiHaCkkcJ9d9biXNotv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 303 - },{ - "name": "bts-greenfields-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85UPaiFbr1jd8ZZgpyc8NLNodXWv1XHBkXFYHuCw1XvvmY3Jsu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q2TKQc8h6dEnuaiqXxSvUHck1Tr5uJ4KKUQCmfHoMHefZeQF2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-spectral-f1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8caLJJA8ppTDBwKk1aH1RSeqbkrcCMQAmeeHkSrNUCkaqAaVDJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PfFXwqEsbDgoPZiQMoPphBEQeuAgMLUnaNonkyCZVSPGtajPq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357190 - },{ - "name": "bts-verbaltech2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q53G6XutTmUnktTT9XswYspCaBaECSoxDsWeDpE2y9DjHgvVt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oxUUKFD8SfGoXb6AwDBEoBt8WM7g4Mtz8SWdinUeHemr9yoxi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3375 - },{ - "name": "bts-nickgrebo375", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yi7fqW4X5LLNiGgGGzh4XPEShCHow8jfKFakoS1Qwz3XVLjEr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jm8GFDAQ7h96DEfKHva2f3HCjjMe47TnxAvDP6o5tt3cvBciZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10208 - },{ - "name": "bts-wild-wex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58g7cMFNWYs2zgCbWaQ4gXg3LS3FqtmCFdhPXmmaXLwCJjvXhc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4toBWBLWzM4GDsPXLMXEnaPRhQgxrQXR5N17SFxTWP1sgLY8d4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64124 - },{ - "name": "bts-satoshifund", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 345 - },{ - "name": "bts-heluwa-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8b9AQ6jMKeF4EBxETh5xSALXFTj6ZMQ1NRq6nVrLsdSo3JMFni", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72TQ9oVehNxgKu9Qrs3j8kHfaRhkaaDDKgvgxnAFEAGMkHjEaL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 68 - },{ - "name": "bts-abit-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-abit", - 1 - ] - ], - "key_auths": [[ - "TEST7zXU69DAoNcfcNxNTEwCbSS6T9wRCY12VgTTdbwLuKSjSSYybc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-abit", - 1 - ] - ], - "key_auths": [[ - "TEST8bYMsSFQ7M2jGhZJvG9WDumtF9Ku99VE3a9azHzTrKLoKiGRGU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 349 - },{ - "name": "bts-the-brain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T2AuuPTBvUY8LqxqAnw4ugMWoYTfMk22NkLFbijdH3p1K1aiH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kHKRnDa2GGoUHqhg6F6SGp9moABCXd38cN8J7kEL8VDFbTUvV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-pnc2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uduRQhRWXAXkCWZEzxaQ5J9bsW1RrtxdDXGuHrrSJ2dBmdt2y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uduRQhRWXAXkCWZEzxaQ5J9bsW1RrtxdDXGuHrrSJ2dBmdt2y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-qrtpsd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qvwns4s7suJQxbsMt4936nPj3zWvCKfu7nXV2CBiRBC4jv9HA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w73jX6fP41KPdVD5Ct4QUczebH7zEaXsedmx1eZT1PhD2oFy8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 164 - },{ - "name": "bts-asr3241981", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56NMjSt1ZAmyQ3tPWXWmxk1D2VzDvs66VKEaxjLGU43Wk1Zy56", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64KMCn7CtKo1Sy3szp1oCCcvgdmUjzTA1AvHtEcJPnCvVxcoD1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37639 - },{ - "name": "bts-bourgeois201", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kyzmu88TqGCrzbxE1Jm5h6i7yJKE7PbFPBBWBCGsmACFFcjvq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zWNcjShhDseMVA8Pbh9w1xExdUVkhh26tjCD5zjDU2kEvJSxF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-kmnk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bBsaDfsdTRicZ1h8sdQS56nefT2q7bjd41qikjka6miQdoifY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5m2RVcBTnTNGbjhPc4Q31YzAHKP8AKUspYfJdhAQ9EMHqRcqSX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10244483 - },{ - "name": "bts-mrmn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jkJLwiGG35Uyk2gAoBXJs3hynunEuswzS4Rr1oWgQXuoFPjsg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AAjJ5c1yuePrpvm8o8PKTNZEPN5guj5uVyFYKDbzn3ko4Fma4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51638 - },{ - "name": "bts-patronus-p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cuDXcqVmRAC1Fpj5dQmfzud6zxuepEomQ9fnrX99QXrxcX4KA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fBHei8yJAMTr2jSKe8vp3VmM6E2vt2dHzUBTnXaDcRENAYzcA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1135798 - },{ - "name": "bts-cldpc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Pko6aQbtQn6a4vFMst8w8AkeCEcUWmpXcH1RGLsmveqbaZ54b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pcsRXjf6crv9coJdfbY1hRhbmjefKzE4LbTZt6nEFj3VYj1kA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-reidtard36", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WaXTM96wnU2qFY4zdQ8Aox9cDUDqRN4GsWm5FThQf29tTtBYT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LgtGu4tuWUHvd3Gi7apDHNcxijd68ubmXfNCiroEwB4cthJu8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-r0ach", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EQEjn3yeebodqPKoyPd4rt9tZQK6R4zwrTkBS2GgLLhYS8jKV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m1yfdS7HEraS2waDAsSpdTJPGWwJRLX5gXXnxQ8uhEaytUTzG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-open-ledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7amLntXuJ61T6ggParZ3QoZLRvRC5jyb6vkvXYPKCc6AjirCtB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cKKKbVhToCBYUbiRhFBCz3bVm47SzGBSqtz2AGGgsnkG2m8PE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7262328 - },{ - "name": "bts-tbone2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rrz3kq8cCYAbbb7HxPkkbxtgXL8b4mGtTsCTQf5cikSfP2Wpg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mzFqkbRpBc8SaWirGkRyBKZknScUxnbnfAHwAmUm9RTGyaTsZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9555117 - },{ - "name": "bts-bts-aiwcny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZhD1RGEHRY2gZzpJ4H626Cz1x19sxb4S18sj4E91jioeuEvqc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mHiwAgvfn5UY2DYxpgFNcvGyGSu2gVpZQ55DXuj228GDNrdqt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378 - },{ - "name": "bts-always-win", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kB9JfqHkDmn7eSzfrGDKaaFQMmVCxpVbAXebpWKe1dqD2V7Uy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o9hBhHwgwuX1qhWVFpXLz7jWtaxbohquE9QWrTsJnkybvCrYo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-nodor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XQdNy7G4ysQgo3oADDzsDKGRTegnTrhgqKRatFLw3aKN6FUuV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56L9xBFv3MVQCwLHjPNHTA87WEFocpbS4iDAYv32TGf8aCnvso", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cornerstone67", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kfePJx2ycvU4zXXvAiLbMAM7eDYD5mHnLxBhXnoekQEd5RR3S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WS7HM5nEApkwQNzsSUUS9s6r4iS2yGNtr1spQZg8LCTyuGWwn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 299 - },{ - "name": "bts-tombstone1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XBhuhkazAv4KfVNxgmJUtAhKRgY5YSEUm23QfCxHHhJjTPScz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mERqgkmG33ySzSLRhTSY2ijwUBN7MD4pD9QuacEVzmEnCaz8F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-dysfunctional-cracker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gJtGx8u9d73rbKaoHcDzVD3UrQTZXArq6NhdnDCvtgkjYnCh4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NRH48Dx3Bdbuv8QSFNFQFb4ZZCZ6dUGFp7ARsnkRSjrDSiRvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 600 - },{ - "name": "bts-rx229212", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74XhwRhHj9AHwS889QwD123AXyquWXmWv67BMP2kgQsgEQyAEt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8idiHwLeirnpYsm8iWs71bqZ3hSaJ5r6n1cJLsWdYyqtGErG7D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-gammadel1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mD6QHWHQMcotKnVp3r1rYYSUewb9VKKUGN8x2X541DHGiRiBL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vRcppwcLVxAP7ScYRu4URBBLgipXFfSCxh589fSogyy3dNN7K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-usd.btsjohn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6w74naN7sMmikf3WLkJPfMbcHxEGD5k3Q6QQuQn7ZXjMfuSE7Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6w74naN7sMmikf3WLkJPfMbcHxEGD5k3Q6QQuQn7ZXjMfuSE7Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1379966 - },{ - "name": "bts-baidu.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pSnkTugMgqnUmc9JfbFXN3Cd6bvmHEAaQs43AwYT2uLgp5VYh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HYvno4JJ89mLr38SbzTcsWUG5DwdNUaxe9JfbYG4bzWjAoQZf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-qwerty8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BLAJNHRZnbVnr7jAkbQfDtyJfYy7aeUKQaz3uFRnekAdXuumd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sM8ssfR7T1Qq8da143aRxxNDhADhGWeU4wDuhxBwb6JZAucja", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21434 - },{ - "name": "bts-btmnsh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SCVQYG8KgUvZchnZPSseB2hwx5hjfpxn41G3XDc4C47ikRP4U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HrKTpesTLjkUhnB1X6FmUF7VZjThNzuRHZtaNRqKRhDu2kDXu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 105 - },{ - "name": "bts-tuckfheman.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GZyyXskfpP1FuFK1rtxDdk8Xmk457hWxt85gop5LmNz1iZLjU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S19L8C5jafpRqSSk7NLYaa1AZvyC8JMFaiLnzHsxbogMLdKuo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47 - },{ - "name": "bts-romeo1977", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JxDrdUftsN2fqG3JPSXD88yz7sNKJ7SZNckV65Frqk37YqaWj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WbQMJ7BpgKHJoHTNgWgZduwtfyymsrHfQYa38GKTB8VYxee7U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2745 - },{ - "name": "bts-jabba-jabba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cBsbhhgzKmPph5yo6ybvdEEt563nYvZaWxrq7Fcrh4B6oZu6J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eH1yJQH6kyLN61mVAr1k6tqDkTg44fxBEmbvJDNAw5XJuEZod", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-overthetop-01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WJXPPCWcr1tSiZEowgLh5e9XAzLVnwXP5QK9dfpMci2h8LWf7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qPUapHVvxo1WczuHHnLVMmJbm42cMxjAiN9JDfqoJYmcqxhfM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2022 - },{ - "name": "bts-crwth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nkzG6epFpyrCcPpqyhnDXsdDCna6ASwnWgjw4K4yKyCsxwAFc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HRgrTTgv8UDpyTMyEdP1Hycoruzav9GWmLRbntRcXrVMFd2hu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 481 - },{ - "name": "bts-limpbusta1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z6bFhbASxGs9jeGTg11Xzq4YU4TztMr4RwGZuA1otudgQ2zH7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aKtyxFeFwnr9PWCVjufEyYmycdjYM4DpxMP3rUMNypg1tBS9V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4680 - },{ - "name": "bts-air.bnb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST664H4KBV2fFFbDfmidQnckZk1zsBC3pHD9pfbVmhpwgjiBh73K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VdREo1BNidsP9jtUq4frv5vJQrhvgZsx7BJJ9ALznjUE8Y4ni", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-btcturbo777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5V6kMuXV99BisfMRekR3N74QR1vLyHYLKnZPunypYzgyVyYAb4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JoSUpwbhxDmCzm6hzTrW4wLCymcbgLYH5CwzYVAtkBXnS36k8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354177 - },{ - "name": "bts-niggalicker69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MkbZcv4H7csHJ4XK3pvAN8BFv1iVvV4TcYPDdg5BPh4oKiV6y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7inQC9i241BTSTbbY3xXJVQ6WmvDtRVuq6bGK3nNAXqTewMGPA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 712 - },{ - "name": "bts-uphold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sX4LcF25sn25yTEJUCeszQdQC3Ubc4GYWfxgZr3adqG6Wi6fs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pHrx63zrp44Xi9v7uzMEGqJP9M28VsEyq19jsc9xiy9uZbhje", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-btsusd.btsjohn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dnnm8c1AaFaYb7LJDvAJ91TfgVq9MXECn4vxktdwHanppbSXG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dnnm8c1AaFaYb7LJDvAJ91TfgVq9MXECn4vxktdwHanppbSXG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1044808 - },{ - "name": "bts-xaero3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LhDVAqF3gNVAcNpTQp4sbQjGPBzvhMZDGkZGkMvmFG4cFVQjU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CYmaPoTnpyMsM71QTNcvqHW9PxF4Cbe4PFAC1kM6LEhRuccfZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-panamera1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qU3C9He2LWCi9zoi2ZgsKX4GJtjJ4rTat5xLF2TqNHfCG37jM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U3qWw2TSKiETy12RHu1b2Vv9BJnTLiSudQAjZno8oAhyx5SG1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gamecredits1337", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P24dkqsviPTMJ4d6PeS4sDuroTLsAJiczgz6UT2Gh1i5zjeza", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56sKhurQ4zpcW5hajHsyXKP8tRzyqxntdZuMmaphss28XBEVKs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293 - },{ - "name": "bts-bonobo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y9eEjqihNnQNDoGThoEznpaLaq4F19xodYq5tno1QdVeRLJa5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rTMum26j6huBfTDtUazeXR3p2rbBR7nu4U8C5bMiV6DHCggEv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1109 - },{ - "name": "bts-xaero2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8J7qstFGEfFeCHZkTnB3bii6Mk1HmppAofUeTW5ayV4Ha5kvkK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5znitgBeqUFLbAFzN1nz6Ucrhib3SEbBSmnArNu4D7DeuVBENi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-brandon123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KjK3FU1DozBimh8Khn28F8KmbrvbHb3X6sMUW885fUpPtoupy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82wj9FZNkQuaCB5KsMgdyhkXUpRmKJ8zbmNzWJFD4FPwhGS2rZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-demiurg2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hmvQoBv2upGorPirDG2JTzXqzqeSMy1btoRuHSzV3ABpGo64r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yk34NrFBDs9ryRG9WWwQpEvpdpNU3RDf38m3sNLztX7er1CyG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-busterp0l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V2RTTRm9Gnf92pGnTHc6zGGDzyseZ59M2yiTNrnSWxrE66aFS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u4Y1h1VkzY1e9F1gJDnG2UjhjQ7Ahd9wEgtFgfxD4418AL3vq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1798 - },{ - "name": "bts-emf-testing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vUHGLmgbxvVRUWDKPioCQady95JHP1KpiQKyjNXKawd23RnZH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L7NpSRGsah2hDHVHFyXgPkJAFkpG6W2yJfcLmdDQLXPAe6VQe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9136 - },{ - "name": "bts-pnc1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qdSek9pRvHL7kFhxANTQVX2fjSNx5pZ5YRq4izYhwSiBZ3pHW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jjUi7bts9GAppKLDbLxtdnyjsQM7LmbLnfMMvcbRVCkmqKCU6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119768 - },{ - "name": "bts-ccedkwallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CGKgdhKqSiaWbWuhgXaHT1C6j1tu2nUDQbfW4kwQBBK5vdVmn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CGKgdhKqSiaWbWuhgXaHT1C6j1tu2nUDQbfW4kwQBBK5vdVmn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 126 - },{ - "name": "bts-knircky77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8649MiPS8LLr3v8624GtN1bzCq9UVvRNQvoJ5DcgDrry9RhrGp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GW4NRS3zyrcueMsrChyes71ZSb6B7GUH48aU6mp6NGtrhVZjb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 416251 - },{ - "name": "bts-deruwe1979", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KsiKnKPFdPbUg1xedU5VFYoTKK9QfCSazK8UvteMbFXrwoCQ5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5axmNYcqTbFXhUiE548VAf29TAHjxDQxXn7Fstrft3XanMh8J6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86 - },{ - "name": "bts-bannk.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78biHcHZqLgLD7SM16p5aisdBD1K19QTZnYRTbv2FDWzAMwVKZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MbpQapjvmXhKBxVCg1v6ERahoHK7Dcj8bzPmEwWNFJMcdT188", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 329 - },{ - "name": "bts-neo2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FxRvS3WRUKmZtn8RpeM9k7bnKgCUa9HLbHNEwcRXJzoP53o9k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nfoGqXSMukQu6vTxiS8two9mmiJD2ZAmAVVWtLwV6WvagxCHp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-melter66", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bjgXieBf39tke7MFUKBs2thEoBrGtKVQKMYAkUpobw8AYbtAS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cs5SruU4rysq5ZDkpiipssbWoh3DhWmfiUfxJf5f8ZiTsAqke", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-funnycat-air", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mbo73JdGsccQ9WhK9d3GtMkbZ6FRSUeP6uPVqu4uyXvp17Ed4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TPYDWuk2Lwx6ZgDxwQdNgeCgaGU494NGYoEEkbABummPBsotD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37603112 - },{ - "name": "bts-bsx3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RaLWKGLsr25kjibjj1eRhKVQNYJrMyCAhDH9zwpDXozzcoiQy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bM25fF9nzmdk6Qsm9Shz49uu7ZVonhuVG2CYipLw7Fd6dYiWb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dave-styles", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DxNae11JsojMRp5BzevRhEPiPHDM2uoHq2yF5a2Hv51qrrvMB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ohBYmook83twSnfYJ7Ti4umvYKJW7fmVDcRowX9LdR2YScdH4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 101 - },{ - "name": "bts-frsh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GHFrsuxT9aWykLx4vKYMD8nZ6oYdxpDUCCAMFxokpwCUELbUQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55piNfHpnCYkaGArp9gUMMDALvhw4dque7vHbTLrZkgQGwd1AQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-tony-hughes-design", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ovSjcE472HwoiSy9UKMVoZ8DQAQs5jqtDWzPK1aUsPaX82PWT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82E5CCCGKdetmNMoXcWpFW3TVirLoCK8LAsgwFYSUQtWNYqkqM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-youbrandinc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mvy9B25txF7F82gN5UnDe8S7ap6tswwvTCvwWSFSjAf6mPfhx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oWHcT4urJtsD3Mp9NEb6oASkAKw6wA35QTG4LPw7VLRJLVYSJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14976 - },{ - "name": "bts-brian.james.fanslau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kd5qFCT1s9kYGcLmb7mKimRa3qkfiHAtztaU77yXNxg3ocrLo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51TXUynW2w62p33sUMe8vAffwDAYGCQeNCdkHyM1ZRMu9MW2H5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56442 - },{ - "name": "bts-intelligent", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BJk5QxD1moQAUqY7iQK31Jaz8WTix2DYEz76VQFv8pcY7JTDf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5epNpK4GdbrbVjWhxYEMvLZsr3mS9W9d1218PTDTP3sfyazj7X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16629 - },{ - "name": "bts-shou01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-shou01", - 100 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 100, - "account_auths": [[ - "bts-shou01", - 100 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 217 - },{ - "name": "bts-cosanostra01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66AzRpauzuZXXGu3fZFXokcS1XKEUKKHcAY2bpiRrg7kMiU2V9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oM1nAJ21Et92YEoftZcfsEBiYkMZqWn9r2VaHgtC1EU5ygBhn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113 - },{ - "name": "bts-digibyte", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NRTXsu2RWC45YdojzAagn3Z4YvGtVQjwqC5GT2XNhaim1cRZ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dG4CAHDESczSc4TiM9iRngXp7E96Fui5b3cj4UDKu4uQkxi2d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18814 - },{ - "name": "bts-goku", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UMGB8AXx7jddm8CHEPU1Vw6mbeeg5iGmCDj3EJ7cHxWQvLRqn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52JyHk1SoABAWHhVHM2psKD7GR3vC5MpawLD5zYwWw4Hb9ue25", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185551 - },{ - "name": "bts-ats", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PSo6ikiwDMuStWkuworMVbTpxBP4p8AUr1Tm2C5yuGovYRgAz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XbkuYxTLRLAbpN47ULRWsHTScf5dCEkpCWNfEyc3AFXYYMQgK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3885 - },{ - "name": "bts-markov1976", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MqSGxgprAtcVgKbDXEdScbGX6ALTy9dTxchWuQNnhCLZr4uHf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HrMUiH3szY3WSyq5pcw6eMd4QYvt1NC1JG4Rs26tLM6zUy6vk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-makyo01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fSpUjN1XGtvGcbQAabgfFxdUFJVs26NsVCFqrzxExvRyTkc5r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VpopM3pd15hh7rcXtNSV5MY2ErTeL8nr7oR5CFm1Wshx77DfG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 816966 - },{ - "name": "bts-mazainderan-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Qj8Kf953L7VwzvQgfsgfDu2AoGTYF9rqKjBSio2hx8hkSbnVC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C4h9fDBxoDGdTusNsoSi3RWFddwAd7q1RkDKJFLy9Rpx4Bu2L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5247 - },{ - "name": "bts-giant-middle-finger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST532J3Vmz9FZ2zb46KBGMTVsyed8NfM6rtq4ntmfpGSTeZ671bx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Hjsuv7TJWcg3i3zWYPSriDffjbPphm9z6yjRcGir1jBtypiPg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-woodygar-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XgsyFs2SCR797MJgAeBoHKdzWDABBsdUkkNY2HWMFy5zCWuC1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vho5ediCxuzySoJ16YNPrqGgLTCcJQ331ASvovQcNWXeUV5WC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ta-ky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ad6j4P1yvEzqbxACSf8B82NsLaNnVZcQtB57BVgASoyE7C6M9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dmZGk7Hah2zFUJ43LDEChJhRizKM5aN3pVc9Hrz2Q326kmYJ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-zero-sum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ax4sTcu5QraQmTyg77K5i6wvRvAbRuE2SHbQBLJg7BbesirbB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66sX2q7PSkZMi2wW7vxP1ozo86XrJu5B88K3QVGUCyHFwJbTG9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-notrod69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YfYxBxTSxLSqkxSFr4RJch84pwVS8o8HQpPRbBCwGFKH1Mf1K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tqDY9qH3PWr5Jf8mnym2gexp6ZTiPFgq745V5kpvozs2TbGJ5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3173251 - },{ - "name": "bts-surfloot.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81y6mNULWJCHgbkXabwcTbUGyDhexk7QW55i8wu1eCCutDfceC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vciZdmkfjkycGrsufrTDskcdBreE93kPB6kSwbFtSZR89gFMt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 217 - },{ - "name": "bts-bts-smoothjazz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eZxQcdWaz1fC2WmRn6aRQbMHFFJb5hULQpjCd3fYsL7yDGAiU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8codpkaKTxnurwL1eHJL3cjn7HjYX8VnU8RSKZy1669Bk6G3Sf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-btcng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63CV8kitkdSvBLww1GJN3Lf6X12WWYZdpHwU9UJSbfgxcsi9vX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hef3MfvVHHF22h5StCii2CeDW3YDNXHgex5rbLdWeCYQ9mqZU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-creative310", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RopHn3N9m4dj2btd6rLMg2mxF8uZus8szfj9KX1M7KtMSUZex", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z3WGtXCie6tqBrE3MvPBH85XGY2Z6Mwo5vYbCDSFS8gpzBQNM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3563 - },{ - "name": "bts-mgl2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JKQPWf2ZkuxDntCRYHbKDmMBcpshfpbjRvZqzV3bAgKpWydRe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NR3kkhipmY6fNnUfVVzYdMxvkKNzT5XVyeQYoFfoHPVyGAbnx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 101658 - },{ - "name": "bts-kuro113", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GfWkfKkJKKdV3vbMuWFCDJr5xnog9kq53BE1UjVtEHyPuXQBR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YxwJabypMSs9kEjKSwHptD7K6z5AsVHvfkGiC7r9r4scDNP32", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-luquanwei01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74LvY9RTcB2kM8cRJZj5nBnzqXVkHVNes5LzADRrxCfcWqhqyW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78epJxU1xNZL39MjTqxGBQvX5XnzWgTzC5RScHP5LTtS8k2JBi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-luquanwei02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jgaGWGr6bXMb83tB9xZfXzXEkc179xZjCfcUB8rbuePKEwd62", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EwqZFqPJ1axeNMi9JdkTrS5riKmVW2b94kzRxM8zhtuGu2H3T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-vega1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mU1HvKo5Tc1fe73u7thk6jbfxpsm8SgMqTgZ6UssRumbDZ5zQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST843A1s4BbpovGLAgYYsh22d9EE2eH7p9SehwwT5G6xEckmabc9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 145 - },{ - "name": "bts-vg1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QkmgRaqjktj6mUckr39zt5ATnmEJ4gQJgRydVXRawj43r9Uqr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XVtZ8bKru59cp6VCJruW9mPkxKjRs1wqxriWGW3uwhJTzG9Uw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-btssb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QhS2wzRSGamHwjgVX9EFbsNdnL4UGJVJXXaaL1K86gqLR87t5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v45v3husGcuAsf5jwuT3yaMoJwH2Zpga1hx2324BAmFetJQMz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-atomic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69wjKYSyiskZxjuoiUXZUQj5U6B1qkj6RYd3NLuUj5WZXXbbeS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hd2Lf3ieTcfuJHczJFXpNCnz7FMQ7FxF8NLdNSTpAkrfn8rLg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-birmarah007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Rb2yNwfwtbonFnLncFoTQgPWbkS9ujehHfiqFf5ac3vnsy9T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RC7e1aYgfSwvP1ohRx4Thppm943zWtcBEGiRz6ALEphTuM6Mm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1798942 - },{ - "name": "bts-icreator1966", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6231C7Sb1evxU9JfVv8ieEAGTq4UWNd83y7NwPAEPyNDSd3LSJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E5827UGVx5zTD56fRxM8CNtW9VgiJHYppvSeqEA399oJ9gfWM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-mirya2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AC121vSyDngu56qrSnjhCHaWkGDCgbgnEKcgxbZv1YXNXMXWp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5upypHi4mEdfdss9hWkEnJx6Hbf6XieNGprRmVwGcH3uzmMDtq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2886 - },{ - "name": "bts-uscitabv2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qwqj3VveCW5njKYgTZyt8vF6aD5gJnoN2KvLuDSv7RKkT2Y9V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tzEZRQ5ErD1erWMv496qGQn8sKGoKvitf2SqjTFEkFr2oL5dR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3574 - },{ - "name": "bts-gizfreak1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8itC8xt26NtBvsKVsBrkbLwYexZtApuwzPi3BBUqnzNRmAb4tB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a1qoBTABg72bSJfGFdSL6Hk7DzG1KdF4YDtddpDXcKadoJFfs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-jamesbond007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST651peAh8tukjZf7HgYRnJw8DXrecey7Jxzm8HPEhCa3aiNeqAe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LtkRifyA5DewWLWTRMMyBbA14zuQ9xTdHUVHfc2xfY46UMqYM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-dupa-slonia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82GjPbqbWPAg5S4rAn5cWcANpzyGqFqAEJuJXpKqdoQEWCdfAR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74y6KrL3wY2Au5tvDLJyFnWArsV7g3nxcNrRqoiCagjvuoxdFh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1317 - },{ - "name": "bts-hcf27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nCyvi3A3WsWAyqddFAMwpSpYChaV1K3qtYTN4dV5Jj2L6phHx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iVQWCBu9sRRfk47CAPYD2rp3cBCaCdHpt7RrvxrRxwGr1KYsk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 125418 - },{ - "name": "bts-dragonball", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WywRCUw6Pek9adsZu8Xkf3Y2KQUnvnT2dfQQcW9CUDmJkcHDC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WywRCUw6Pek9adsZu8Xkf3Y2KQUnvnT2dfQQcW9CUDmJkcHDC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18412 - },{ - "name": "bts-manguy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LAMggj7RJWfz9pkseeN6MbhQWFwB87WkmkfpmGsM4KL5wWpTc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LhMAVJATVw6RykWHLnqdjtDaqTRmnTtpabyQXtLALtqk58rYW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18814 - },{ - "name": "bts-dashus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74DwV4eWUAuJaWZALqbQ9pnHzEty8KdTNRBxQj1MWTp6BK3jzB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yq56pSbennxGnueYwuYCk19AcjkMn3HE8Fkiw7c2Xn1mZvQh7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14976 - },{ - "name": "bts-fanslau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XnWD9brREhecfL5pCfjmoy894eqVztWooRFWxH5p4Jk3SbcYf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59J6AmWKVyYRpWWi7kwXosDE4RD8XTqtAG7XX9HwWDA4khm5PS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14976 - },{ - "name": "bts-thewhitehorse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HBLrPMFB1Si18pngsUMwhUtKdB5wDd6hE9e1oiKZ9czcJQgKs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64CPw1s2iP8XaZfATxZZsE3FFsHDBvtj3q9PioLXe3XM5LQy5A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-occupy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST563HynXsf1diMkpG4RkPUuagnRdYdxBSQ39nhCyXxxuuReM3uX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GoKMvsTjuzSWrUtcMcbT7j1ohye1qKSLwh2qdHKkPaPVZRRPe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-tetrahydrocannabinol", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HLna8dScmuZBHpe4vqRVquy22Vs8ZuSk7gyYAwGpjUtC64KiL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51a48GfBqbAuzpCtWSceT6RBkCyF3gd519HohvLwAuUqh1yE4q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94071 - },{ - "name": "bts-maui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89wCqVm25Cy27QPYqbrgnTKdirGBmkdeu1AjcXv5KKtibtNBYK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yrEdrYDrkABehm1rRDUJFkTuxaUMvkVSzM6QpSTJQsHD2ssUW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86399 - },{ - "name": "bts-mark-lyford", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77Ez7JvZQGk6Qpd5hwkWdAJq7a6McJ6BQNni7VXLvZSDR5NufY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66aAw5FdLfKxpTe2wgwtt2auwpoqohqouceuHJdvUcX2AuarqS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76092 - },{ - "name": "bts-gz7962889", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gQpGVEhacczYQ8LRWxMaXQ2pZ2ddq8sH3Q7B5PGuAkfru6yDk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6phns2VnkD29tpEqGngJUNDSdne2q1tbryKyjnX6fii8t6KNk4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-cybernet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6N43g38ERTYAxzHfhHXDfU2b1wfjZwCeXd2Kv14NKLjhk3DNrD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rgAfQzUjMNSJWDUKrpPm4yXo4xXXtPSBB1HCnhWP1sBGP4bLk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-bremer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S8dWedxa4S84HskiT7PGMC8qEzS2ZdqCyNLbV4ikteWPjTLVC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MdcLvDxDgy39rinLishcJ2owVTTzsDm3f1A9UgrjHnQkDiZxz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 148362 - },{ - "name": "bts-trucking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ncJqUaPv1q5YDU8X675NnmJWsLSuGgVa9rtenUbtYjM7wDbRH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VpECnNraSV8HMSPBnfn1RrHZEbXjyAE82FcqkSARgYmJq7a1Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-pkmg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bNSfEjSfVodm4s3rQbJPj4aSyL738KJY4mrutcun4kCQyHoWW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jzMvkTn8aEwx1qPXrbGfGghVeXvASAmefZFJgThGkLc1vGepv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 330434 - },{ - "name": "bts-chain.fund", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-chain.fund", - 40 - ],[ - "bts-cybermonetarist", - 33 - ],[ - "bts-hipster", - 33 - ],[ - "bts-satoshifund", - 34 - ] - ], - "key_auths": [[ - "TEST7ByoAX4w8F4bf6Whvqogtx2up7kQPwcSCYhNx3DxBhTK2VHmmg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-chain.fund", - 40 - ],[ - "bts-cybermonetarist", - 33 - ],[ - "bts-hipster", - 33 - ],[ - "bts-satoshifund", - 34 - ] - ], - "key_auths": [[ - "TEST7ByoAX4w8F4bf6Whvqogtx2up7kQPwcSCYhNx3DxBhTK2VHmmg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 364 - },{ - "name": "bts-falzq02j8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dvoqRpTbSp2UFxE9UAYf3j8M9kdUK5vUJQpSoC1ZgpuYdr1vs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RRuHvph3V5ALbv3sH2HQFynFEAzRPoQCYqQ33soMxsXeZsggn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cz-awcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CdkguwPHTowCJaqncoCeY5dRfEPsaunBViKrKTjA19Xg7s5Fb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EXwaEpCao3FZWgaVtn4QC24FWAdKfrx18QrVkiALGLVHCkEL7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3402 - },{ - "name": "bts-main-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FnF6BjzrTaYwQ6Pw7ieBDbtB7YoLLojshTCTuNRFSybzCXooe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cxPoxgAkdW48dZFt311TGFuZPGnoffmCA458mhj7kSd4GmXkF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-gypsy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hFve6SxTNgQC4vejj4Scgap1Ur5UGcdEhPKPC1MwMns5KYmt2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZgDdufvVfLQuvLEeymSSFUhanLM3rdRf3dKQQcq2UaUsEqiT5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29703 - },{ - "name": "bts-daycrypter1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UJAScAJEu43fKiTKQt2A6n2GiKDpzmjrjYAQPQ6spVvPmA33Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81pUD1NfkeKtVYioGRJTyexcVHvTXWHCdBDTovRW69LNS2uYbA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 815934 - },{ - "name": "bts-zapply81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST782vQdMGSb1xqSH1xUnA1cwmTQe5wkdavfESynRC4fo5Qs6jgt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zN9Rnoddnrtt5BtGb1GcRcg7VoDsKYhpcGPAEGUjqzisvue6R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-btc3838", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mg7hCeV8NESj4ReNu2xWimCPBcywM16H58X19VwQQP4SfhTy9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ujoYh4uyrsBeo4T4q1x5Vowj86e5KNzczp9Kc2ZKYkUpGdYLf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-marko1-openledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xwtMRnJ37VZZ3esLazsTX78GSidyFA69bcnoWeNLfF7BLmq2d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KrY8HRRhPnT8SBVwj5GNtpKgHJWE9PzSQL5EnpoNv3iMSyQUJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-thera", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yeHtan3Q1RVPQd11PqhkNdLs5Qz115SnpGkGocMtF3swia55A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AsiFpFTJ6uzQV42rMKpi24eDWwDacNpHERWgmxcNMSvTL8M7C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1124360 - },{ - "name": "bts-yang19890227yang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QqW1xrPYFpVzD5xYmojAy5KkFsf7Kspa267tVLxHn4znap8v2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pUuU5HGQcY83ikqZw2N5ygTwhyiFFEm8B54XsKm29LdELVcBZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161 - },{ - "name": "bts-mytest1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eMcLWXH9MnNWquLpwefYS234vMufHvRe1MJwQMpPJ6itjVJgV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AjU2sE2agGqYVNBuKuTPRAfpNUHYVTNn1PNRnv3wNeuhqYW6Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-k110", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LfKabUXe7A9TpH9ep4oj4PeFWoJ73xauddJFvaN4jUJHNon3X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54JdWjkqta7jGSGRdKR6Paz93DKVMybqA1hABWafRJ1C4Hn13m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5644 - },{ - "name": "bts-xyzqsdedazd-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51BMTAVuGb1zroCWmYpmciLjY8xgrkAQiTu9VPcaKsanKLjbRd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rfcqCsEgMkSZXEvFLCmvsmNjuqsetELbyUn2T5VbiPG5f9nTz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 899150 - },{ - "name": "bts-leviathan.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g5C7MCE4ed57wCW2gUk4zej9S8MDW9Cwn3BjDNGzPAGG3ngxc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Je7Lh8gSPC9EN3EthHvGUftcDE3rPK9R5agT5b7i3iy3uwJn6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bitshares2bitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XykT92W7hqCEtQdv8zAFvyxLv7dHP4D83NdXNc4tRhnc9koiG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51TgMQ2uUC9RRtcTr3f7xUDj31SP78WZQca6oxEdMHRKTbiFfY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-pigsooie1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wZbvQVndM1jSEcTpqGhPwcD9N3hmAo3FqmELFWYFvE3eWKhiB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST529DTy7SGeCopypY9fATueS5biJbneXYikEcqqpqTJV2gA9Tn3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564 - },{ - "name": "bts-bithighlander1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Jokto3mCzPffzXxUDUDcTvNC4MT644ouNPeZk3zSFa4iZkn5G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jFzbCHeVpszjoi4UZRho6YW3uD3H5pGL8mTT3s62BWtB8ACLi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3093 - },{ - "name": "bts-rickseeger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62DJQc6k7DwyJNjyTvXLRQkuzkn7bvaJpSnnuugKjJajxHjwRo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W1o67s5RAFxVRAWW15aESink66KgUdtK6Pk31iF9eXdj4Fk9m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-alex.cool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dCaF2fV6SLLJZTYBqYDVa24M6GUUktY46uDJAHYGRZ1fDEkQm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7i5MB1rgu5SMYdnuqgRPo7ZyGMzJtfU58umm4rWpV4Cqtn911v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-cryptobot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WDvsvVX83ChT7Cw58u8DwJMZqQkaZpjdV2srbJkmtaRQYFCeS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KG1UduHjqng1ZadqH2pXSc6yoe4GDg7pP1SmjfhQ4rT2oaMLv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-bxbxb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZJUeeshEzZ1aai53nLmPScUhGMnCPtqHE5BjfPab8JfDWnQ1U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DKmdTTNFKoRizrJxTYqFw91syEUiPaB1CvKJAWaK7kDoxisBD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-agent888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uWMfyrVRxiCPB7PVukiJRxxaqswerwj5GJCpmpNJUryXnzZEk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zf8VUWpZXuche7CFySduRRsGV6exe96K8GWPx5VDhDQptHMgg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50015 - },{ - "name": "bts-ash890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yeEQvDGCJACZTavZLfXdjYfBhkU1BNBjjHoFQdSxax2Xs5rfY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vemr4Yu6eKFaG1nBJekfPKA416x7Gm7d5d75tvhvTF8EQuXNK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543 - },{ - "name": "bts-trade.bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mt92DttNxfi64XdbrQh5myggGMLp7NSYqHb6xT6JpNnQUYjJh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BfxdsWxdUKLihV6c4kbvwms7EjxRUBSwmcW8hct9qqACR2s8x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-trade-btc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c7Dx98tuGVL9u11KMrrsUYEXFyUQ3E6WdRLXrPuhqKTEpbPAh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69HrRTxjfoE8G1KYVs69UjxNHtdTGAWXdV8dVF4enhmpLykUCH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-denny-wang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69jvrntK5W4JagEyXVuK6cNTHxyZSSKv7SkYMJuM3quzbkDXR1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bTiosbtAqDksK4jVhrsyMCNgrp3LV7XPcsRMR3NX58aWzEd7C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-keh9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g9zdBB5ZkU7LVkSQyNwqseNqw68mhsXQrqYXngYMsWkeDac4d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pkihrDvxwohnETiP1GFZcoXLp6JmPQ17bhwFLRXXjHxz2FNhv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 342782 - },{ - "name": "bts-sepehr-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fNZRMQFNCtLirupABMVFWUTf3zWoQQFomEufExRL2JgVor1Zj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79eAhBanoUb9SLNscjAquFHfgnVCRRo9VvH6AGeWjdgoUU8BDy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-wpu99btvcz2p46asrcak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tLSap3QUtQezGRJGrm67gc8SZpxE2VrrRPPHe5SGCyA3znNmX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dNrKDSbfUejMmqdGfa6ZX1AN3LCHmC5mEbnYZkzLLJPnBkNmN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 940 - },{ - "name": "bts-complexring2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B8esvajRRZYGxNHekSQtACcMaVKXZzJUuyGfg6DDNcMiT81u9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rnKyEqhiDhmUArhhBBEovfVozwLytmXaogeRLi7nmVcNZqu1J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-rainicorn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83s3wq7QPjJeBbcrGYD5D4uwDimcaC8gHfiLs3UUvGgjyReX49", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58XxSYYmqvrfK7mWGMSsoMLixfbEqYdG1Q93PvSve77N1yER1z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3367085 - },{ - "name": "bts-tester123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-feinarbyte", - 1 - ] - ], - "key_auths": [[ - "TEST7CSPGDmvwMYjWQz3YsGGo2dE9sbm4TGtrvkHWwHMzUiTzmEHyX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-feinarbyte", - 1 - ] - ], - "key_auths": [[ - "TEST6MsnobGyLncoumuzbvYTBhbvXURVGhZjTBXmdRmUHNdTyHDysU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 300 - },{ - "name": "bts-juha-tt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E1U6Mt2rif3xCYhb6iFSGz3ddubsYTm1TjqWpLKSLqXoj54Rd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bHwxx1tGoCgA6fp1o96CcXuTu3UnW5AxYJvGQGahXxydtSzzD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56956 - },{ - "name": "bts-roland.sun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GccDfGEYXAoBDcG2iAnetyA3s2h8adm4wb9nExL9NpdELx72u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hSPUydCpQ2wpr2Ny3Dpew8WY9LK4kHuj9wNrNpBBEMgMsJSrj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18898969 - },{ - "name": "bts-desusdesus777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55ckNkTFX49aTLirKjSzR79SXKjFByWJJWpoL8RXpdgKTACWku", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65nfxmAvkr2qv6ALWS8LUPGPKrAVFepWasQhUPRK2tGA5PSJ1b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-btsp0int", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TjHQgJY5zBbz7dkzuaeTpk1DyFWoYrxF12fqTHHacASSd95Hr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST577eyiNf9RJ4ea5yviADFNvBgExmqoLvP2qzNEZsPY925mqrWj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-pnc3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R9Ntj2oPBUde8zDGrtHDMyV57c6JUXuR4s66qRk5cEsuiwuFY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qma8iiS966HK1sq45TWt6EhSxfEQL894TCjpXuEbBbgv5NEfW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-marketing.monk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qiwA9aP9ZZsR12YXVfaJ4caPW7FCRW1QumS9qosN1hnkuru7v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XG7YsJyXf3hnkpmecHML7s6mDrdJQWutDJWPdN3JAN5Ny3ffZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91571 - },{ - "name": "bts-interference2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s2iUT56r3HabgMQm5xLpFdYCNCSwjRbpqgy2PbDFEZ2X8pxL3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nc5ismYw4eX7zW6oCVt4vjyPqv9ydWnj51eYCoAA3HNJaB2us", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42567 - },{ - "name": "bts-rtorfeh1977", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uoCtKzYEnzZ5V1UgME6LuoKG77Q4Fpinvxy4UMHjECQPpY1kQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pKy3iTbRUKjCUp5rKezkrjooY8DuTATPXbtGkvocsvSpdZuN7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1034076 - },{ - "name": "bts-sku11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AKYCSQANjM6DBUU5S4cBr2PGDvjWwS7gpnJCw6hXHmAmVDaPo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65mxso8bEhm4W2QuCacJAw48S3WBvod9Lc15nZEaPDgzw2bZiH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 705660 - },{ - "name": "bts-bts-oracle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5faanrgm7vye3yyq9ZGpJVftdc3ZoJTxvK3afCz8Z42hMRrteb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71Vzvno29Z1b2kBadrGQWQpRZCcQkwSsJqox9UNguiR7LHrNDL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-tory.jujube", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dYo4SCTk5y3KzvDTWiprTNU3Ps9tYZm84cQQc3Eephb65wX4x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dHBYsqUvxe67McuZCtPAzTgTTA6U1SBj4eVTCF3osLXo4pwQC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 828990 - },{ - "name": "bts-omalley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j3KU1nR97NSYw7HRQm7Le8fSUj2vp1BdRKCWziU131TATYy7S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XWLNkKh3cAjNGjeTVjSNXakkKJ2LZKmJ8rFkd568nKT5wPH1i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-omc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KDFBmmpGPpiLn6rHwXZX3so1hVsCYh7FXGguQckjf7vpHCoqD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zPWip2WL33vHquqiqdEibmNhchTJ9HUiTqMfv3wnbCdm9Zc7S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-icmp22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BUNd5xjSspWjnRcnmfAN3w6iLvhNiAb5JaHzn3XaFmsGDar5w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gpAr9kEfmAPqovKWyoX5UogTX2cE1rh5GpbdT8bFEzSkDcHd7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37737 - },{ - "name": "bts-itoa-atoi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6npVZLeK7tE4vdWSAFH5Lq9UuJwb7ehhWHwavzrUJHRyZDQxom", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LzCJmf8dWaoC29yVnF3N4QisNoyARamEvXBRpxn1sVzcEBPjw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9108 - },{ - "name": "bts-bit-housing-association", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SYU3PLXCJifhUwH1UUcWtKF49CDzYVddYDY3gPusqpUMTUW43", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kZJnHegAbLFh2mVtMKh8dVF5NZTTAAPe3wZtCokNWsvkjLjbN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-cryptomalley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YWLvTP8QSZBdtamDwp93prr7WthjmJzrH5j2HpGRrvHkKSZHR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GcRBdCtcQWvr3UADhdsTxW9VcbMsnHqu9LEf992cWY8JtXFRu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-btsbtc.btsjohn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MSfqNBw9Ldr8dvD8bBzFfhXqf7SE9Z2W7k8s8hoYnaXsQQ62t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MSfqNBw9Ldr8dvD8bBzFfhXqf7SE9Z2W7k8s8hoYnaXsQQ62t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 254786 - },{ - "name": "bts-testing2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gwaZQhjn1Hm1c5wtBYqvoVyjuR23ck3E4aojugDyCzfh4Ckdj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RTtXL9pW1up27aDnz5Sbc2ttvoPAtsvT2q7xV4N6Z6drgUkU1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-lo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FpvFns4cUt7J7jLCUMJEaquwbQUUpBqErdyXX9AYsDxHZyHT8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jCuVrZ4Hif1KG29uRpZRxrG9nZJan1nEvgC8H6ZuZrGgSwJya", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54687 - },{ - "name": "bts-bitsharesgr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q3EjcwwwTUb7WjupjCNEXvJQCv52tnzKVjzT2Xa5ukbYHy4Hz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sB9RQk85LgfbFCF7DRZ4uTNqX3k6PQ6TaMLvYWsxL45KRk4pQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-en2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jRMDGNuC4KDvrEQ4q6q6nFLWtj82caZGve2pF9GiCDkfkJo2u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jRMDGNuC4KDvrEQ4q6q6nFLWtj82caZGve2pF9GiCDkfkJo2u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 405 - },{ - "name": "bts-svenfjord.bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WdwVPsujkbeYe6Pi7wBz8cwFj4UJGKBctREc3UfMDzQmx5RTo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U61L5igx8h56YLD6RtnY69wYbsz1t8HfqvwsdLHH3nxZW5PiU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108 - },{ - "name": "bts-ll1ldur", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WHdjJpFkgPN39EvSER2YfDC4EZLMVSpr23RkGKEhUqCixbwHE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TmXfgmqSj7uCLYeQRfZgwh1jxEp7ANyX2CdfNUdoBy3TiAvPi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9115 - },{ - "name": "bts-cm5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5htq4hszpKEYzyQyawoBnhFUjXjZ9fBEQbFycmcxxGgBnzs6sN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aYUejX41QpaQSJHqEE48KxCPCYUkJxHrg9FAZjrHgruksminB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 940 - },{ - "name": "bts-rvrts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z6vNRF7WQwpg5YfVdTUDoLt3skK4YurGmxsd194K6iSdQKptm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67C9EVPoyf4Gs5k98nm3U5TK4BjLgBTcLLzW2wpuxzPBUZEo2P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9109958 - },{ - "name": "bts-hassenblasques43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57BeGHxE4WaNkHAcPpixmxzdrE1jtPUMoPuMvD2m9nEURQ8hpV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uskdEJT5negxPScMdid2BCG49FeEX1y3UH8n6G9uqK2453smj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-moonquarter10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BBLCrL3gxdmqmkfm7wDHA9xovk7U9LgF2PDGqZURxmKM6svUU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WfN54o1k1VrHiDieKsJkpPsmiWh1QgxKxipCWB6B63YUNo7B2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2321577 - },{ - "name": "bts-chriskross98", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68CZ4bpjQMGzjF5E4yhAJnRm51z5sbGbatFPVv3gS56RUY8f84", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GuuJFaPkr9E8Zh8PZ6VyCpe3A89uti2G38Dc6jN1gRaoR4uss", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 216 - },{ - "name": "bts-funky-homo-sapien", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wviw3oL19M4TTk26PgSR7bkhCLaADWVGrom4cUPVGg2t1B3JL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yEqx77bNPCS5nfLo2fwQ1CZ1MDZATjxxHKNCfdZR5cCsEkSmL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-shelly733", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pMsnn6dV9u77mbP9W9Nhs2GYBg9KwP3u24Dt4SczbZ4DpdVHz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mmPRA1cR2NCLQz2u85Ev7pV1kiBrSz5BLVaWUpFyVp3XFM7hC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-marxtyler1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N3Kmxno6PA5Ps3EFBhi4dAdZvWQfQTf6c1V4mmJhunQpmbyPR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zQz5NXwcHokKHwqgH2NoH77cu7Qi8Pxq3EFmUQJTAM22CYJX4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24212 - },{ - "name": "bts-yur.vikh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zb7m9Gtb84AVfHUhas4k3ZQBvKSRYXDciC5W6sp2e7DY3NiMt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BgHhg7o2WnvczcTV4p2pSuosTt64hkoGGTFwYHeuS37f9PvK3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 336845 - },{ - "name": "bts-x82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8agkdVqpknrJGrnpJj4x9Rp5NerfT8fNAbgojMsSezowVEV6Uy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AybcrTWgay6cMaRPGyPhk3mtrLPjZ6tEGDx4HjBj36iCHsEBz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1696 - },{ - "name": "bts-open.bits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SAcgqNSWdkCeRd7orwu3eE16pq65wroE2xmHin6qrKaxELdNA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WZDvs47eLVug81f1MhLFCAsvSMsAQRRv5fLBmVceNkErBdfj7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1275 - },{ - "name": "bts-qora.bits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wiy46y9qJ2WiKm13W6WL9VNFetnYJ7KQkdJta29wGsgboBTzs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5atwxnKELH3YvgXXNnmQdFR8sRGSmhK4MEU9Fx8Y1gp2ukNNRX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 711 - },{ - "name": "bts-itv-tolvik", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XzMX8H6vm8cv46zpaGXLhiL8WMVS788nmpZY9x9rP4Ku6hmjf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L3tMPynZLkU2VJgkSDJzyAxXXZnqWuqwQpB119tgnBE7N8DMS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-pls.yunbi-play", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mgtE5kVxpUbKH95T1jHWd7bjryxGjmiwZWNbin8H6tjBgoxC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EadAX49TPFTtrwUpouLyA4RtAL5dFJZJXLADaKSg1BJuHhByJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57571 - },{ - "name": "bts-decentral.exchange", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XmrXX99h3UwEXACR1ocL1jZu9NyanN6WC1jKNdKKiLAuiRJM9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68tqX2CjfLAo1mZFA9HQpGxGTHATGYpoJDE1s982wMTdHBz43y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3642 - },{ - "name": "bts-anduck.net", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XAH7ijqsjDfThfa4TnoUjwwbpLySEuaaAmeBqK4f1D12WDUGK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZwujdqiHP8Qe7pMdTWb1rLHsTW78LcPL4LkqmGsDLTTBBCLKo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564529 - },{ - "name": "bts-bitgate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XN918wFYfeBRebtkJ3cdjt8ALj79JZ8j7sso31ZM5A7JjJZMJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QQRMAgp2b4U6qfUFkw7qMgF6TLotyzAKfiQMjsevdJoKyXGHq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-kaizen-2003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Km53KbXvFcKdqdJndrzSW7wnYBwmKDYzErYPJK69Np1Qk3XFW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YFPPfXWtcko3mzKmJyEJLkNfziHGkMs4t5rMwCHbJnmEdu2A2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 297065 - },{ - "name": "bts-rayzzz57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BjfCxrhTPYSW46Hqkx9texRG8B8ygv9SNvBNALzDYSnkVF18o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77djcDLeG9bJoUKp69HVwxdpCbtYp3mioMwbDWo95yBxyGUurg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1113808 - },{ - "name": "bts-redukas1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CZH5qnz95FbGrFthrJQ7FjooHhXqKsKFh7Lh8XBV4BWuLz3vB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iFtCUA7XRCmzU9SksbWg9Txk812wmtZjd1ACWSK7fLJusRbe3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26065 - },{ - "name": "bts-scot.land", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZcvK4P9EgF59c5Z4AmnJfWqjof1PK9yaXqfGtfNEbWnJP7LX9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oCVx1TBXbJWSrFu1mFvqsuamSr96H5xmPtryH4cBUXTBAJMyg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12418 - },{ - "name": "bts-fyui.ljjhhhhhhhhhh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CjLC78vro62vDcSs5LBMvFG9fS6PfT9jpRPg2D66jAx2JDMqQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6W4trtp9aonuhCxERi4NMfksscerEEzLfMJY1JMXgRBfGsF1yX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7831 - },{ - "name": "bts-pangdamao-notcat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uB49U8Jm2XTFVhLj163NtgVii7T7RdqWn6eVqSaWV2VGgggkd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6seyoyyMnGEdhTaoh1VHYeMewznSzcGHnAf87j7p3azVvWfaQ2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-aboy10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST882Z7rwPmRZievKGn2d41k5GpWUFczCGqQnipJ8cVDs4SuaNgz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST882Z7rwPmRZievKGn2d41k5GpWUFczCGqQnipJ8cVDs4SuaNgz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72 - },{ - "name": "bts-testing100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G7Wh8a7Sp13tjQ92VTdDgcEmVVpAcDqG88TYpVeeTEpAzkbpR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RCpHwkGCpPgwKoi9DpWwQ5AKZb9r8oZCzeBvLR9n5GCFFGLWk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-hpyhacking-ex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bRikDdEKYHYxkQ1usbx3DSKmrqVRwW2PV7mYSVsPnp6WMj5on", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kRdAQcHdo7PxNzcGQXYth4k86EmpdJH8Q5KpGojAcu4SNdqvs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-yunbi-stg-ex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AVHAC3id438xqzuyF77USteM1SWt3TVaneFXhm8tQPtN44go1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VduuSjp4w5mjnuEi7BGb4ZDAEi9n3QnjXbenSs3cTxBD6nNAf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3573 - },{ - "name": "bts-decentral-exchange", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GbmRKmYJPPjqVpp1gbyyiUv2bwvqaj8coNTYmHi3FLQE9yUGH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tE8qviwHb6yy8jihoP5kbeurvnW3tu4ts2WHdtdH4Tz8vZetW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3642 - },{ - "name": "bts-nico.chrome", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YTwrJf8b2bBaWKEu45oD753SEKykaKWojSigEKUChTmYsWDLK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jMLnNDSY9dFybdMdAzM6cVWM6MeUpo1mFirBqiMMbfAaTdadp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5326397 - },{ - "name": "bts-k2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P4JRZ7bAs4Sj8TbgQVhuwhHzWMtSJLuUTjnuhrgsNg4EwSyqv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kcRbhCbcGc47DHNEWvDsL7FWFs8FXbiUhATSAM2kDCzFTRvtA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-abcd-22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wxy3nrjmWw17zit4SPA19M3pc3u8HmQjpDQZaCpXbquFbA5Te", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZDKWnRC733uEtnDL9ZXxwKyWguiGVQuA6r1E6ZryLx5DWhnYV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 197 - },{ - "name": "bts-honey-badger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xExDkrumzMuhwdrxPo3JAcsLDx9TWCD8ziiCaksFNUpE5YapD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n5FBdRWnoddTzQJ5KJjvR6GuGpejy5s8pLKMcY25U7eNzc5Mz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9361630 - },{ - "name": "bts-istheanswer42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X232K6JACvSMy4oXzvXF8qaJ1ECQ4ZWMVH5LRKoYCaM7oZjLy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MPBy5Lt6BtB58SwDS5qdXiyPVTnc1AbuTLChihDZZMeKEYbJ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1989 - },{ - "name": "bts-bitshares2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k61WXZ6qUF5UFD413zLWdFw4KxMx1hqUtCyW2wiE1vVcJY3Xg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P7bbPUJRymkZ1awB4h9mc9Swu7pdxpRKFMzAiEkLsDTbQYzhP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18988 - },{ - "name": "bts-bitshares3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pPF2TphkPxaKKvJcg5DuA4ui19XAayeVckHMJveWevHUbajPU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cJhw3BGC8fJtG3ye2eeePZS8DMSH8Hjp6YMQcGx3NZHdhVdVC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1396 - },{ - "name": "bts-bobmaloney3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bobmaloney3", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bobmaloney3", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 51241 - },{ - "name": "bts-zhenping.wei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aHdViu94tuV1Dtxnk7FPMPwiQsiA7sCpDeo7odZnXagaTacUv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sFPLEkKDSd18JL7KMSNtx4zdGAGhZgvb79375cxi4D3tLZ4ck", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-maurice-jeffery", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ngedZ4fELz4XDCfz1jAnYhUC5v3k3gBhjpLkzGfcsQqwdugTn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NSzf2eBasaV6y2dWrDvjmK4gDiAWwmBAXpbkSXFnqnN5vMGXc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-mindphlux.worker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57qFuXQSwFCdvAoMjK8VqsQL7QM521yiUqEsEBWxmYcXoGF5TJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57qFuXQSwFCdvAoMjK8VqsQL7QM521yiUqEsEBWxmYcXoGF5TJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4515 - },{ - "name": "bts-ioc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bMLPPH1aw23d7dfMChPVgECMzMuVgLGg9oovtJnRuf4c82FqN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qs2m5X4K5sFm5qpeRPCqMGAMDWD3CHFp71KAmXDRQbQHgZzf6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-mad-cow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cVY4sZb8AVxAidAX4M5EZykeNbeQnzY6a8n2hFqhLwugN9e5t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HfzHiRkQCLNavpxSYfN8LA9WhBQGmXMmHH35CdjWeDFAdwvgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42302 - },{ - "name": "bts-wallet.xeroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q3kCVm4D6BMCaB6isNjwtviCYMAuaeLRNTjT4Y3YANvoARfBR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UCbfXqWrH2BaD4Co6Uw36m7TBz66HqUL8i7puKMxqEYxtnnzG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 249903 - },{ - "name": "bts-jupiter1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ADeqDUrC5zq9cqn3dvhHWRVYYGbBwEGHbhZKsKCLdegCiEy2U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tw7xuvVzFioDz2NGHVgsDLwSzBVcrLYDfQxMm3hWmm1SB5F8G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5549 - },{ - "name": "bts-gridcoin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h3mBjq5po1HQH5PoALH2bgZjFsEX9hbrAR16qwX5ZwXqhRrkc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZVJzje6fAofaa4DzMwn5ginuojWenZvW39h6FNivqSRioKyxV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 939834 - },{ - "name": "bts-southolland7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64UdQCtWzV2Qnuypo2naw945cKSQitjTigF72DHq9QjPKpCL3k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EXJgS9G72CdTn7s5oJBZ6a2yh4gmEpALYXZ8D3EAaaEMAyGnx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 216248 - },{ - "name": "bts-honey-badger-warm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dnSsi6FQfT84VYSPsfNghA5dis1FVy4hJ8idjVxCmnjmq75bx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QAhCx3EWePyJQgoU3GoVs5Djv4txeEKpVLwPmxJ5Ypgymii52", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39376 - },{ - "name": "bts-honey-badger-cool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q6KRLSbpTSo2ZAqmNFfmBSgcTAHaBnjWCkYrMgD5zBKTSJe7U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q9ywEGCSoVUQHed8MzFYT1cAz85nCsthXJRZDNZ5WforTv6bY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-coinhoarder-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7njFS5Es29FiHdboBAfd3QBSuS9ZQ4rT95NAzFv4m77aWnxs4F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AejLAwMDUNTAfuE4TrXkAp5vRDgPdS9JGDsMy3X5aVQBm18Y4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 371650 - },{ - "name": "bts-cerebral-incantation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4z84hTFDzwT92K7q6LhonVUg7doXERwgKPJwtqTrtoYJf8Sp2D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ibi1nAv6t7bcLnqoLSFDJfubt2sSD1TF2Fsad42tUP23sxoWa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 259 - },{ - "name": "bts-rainydayfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SgaWKgFtJ1KR2N9juesMR1bq3JhQ1Pmfe3C9HxQpJJtDQPiTF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n2LKutTeReWdx6HbyjW9Ac9tDrBNr6wnXNntsDn8y9cbDbQuS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143620 - },{ - "name": "bts-hpyhacking-home", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V6MbP7pjFhBTdK7bczEEZDpQaRh2Vxvc6j1vXwH9WiCyeCH6M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EtSPxKChyVMBXc7ZD1M1GYn7NTaTAU9XfC2WY9o81snhGtNnw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-bit-sanbobs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aP52x9n22kEo2dLFKESkrkQM1DautRe1MiLH4Xf3EYGPJXekL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E1VsAi9KYLqCcH4Rpi1aQtbiioUTRjU8grnM5tNZqSathB64i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378 - },{ - "name": "bts-jcalfee2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EHA1Zn7XuVfyT8UUKcfXvugaMXE9dv2zUfZX7w7sFjzYYoRVL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jFXaFVoTQrFEYaYZW1qQaBP3JbW4vZ2WmQ2zDsWiF19VpmksC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301 - },{ - "name": "bts-lahnala2k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wT63cfCBBo1oMUHQRTxef1fmqmrjh4TrzAgzLAmMGMkosShK6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53oUseo1QiA811AYceqw2PuCfLEJxxBJCPP8eTjYkjtNdwdbnu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-btc38-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qD7nijFNqdgfwmn93jTWtfcYdFtmDV3D3uWDJZsQzaJXXT9wn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zZAKbaKnoqMp9SmdKWprUeQzzRDtYda4Gbp9SXaGKYdXfu4Ee", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29874 - },{ - "name": "bts-bts20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Gk1uXNHDcoyrZk9G4sxpGxXSZH5HwrcdSruRgmRg5ukuP5tmH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77A4KvNjuTwJ4dqarpmWQkFAFBN3UR2vtCDd8GZbz2RsVp3bnJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-gmgr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yUPubFnFGgWFXnsBDYuQR7yD1gvuJFF8yBRaom1pMtmLLmeuA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MzUS9raRYVMRVFPa5MXkxFdaWe1nppDaAsj1pEyd9xpqDnosk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts2rocks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JLh5tMnPjwhCQtVMK2L8BUSiEA7RXbEzTNktwQkKT4CbxE5oz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ugSvZJQkmY1Wbs2ZMhWN1xnxAGJAy35hihd6Vc5f3HncWYnXg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-stefanos-5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WvgotpbQDDLw7y8NiCVwf28qrHFvk2JvXftakwLyuYUtjuwms", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WzzdBV83dddBcVvCyCBHSLDhXwN4o8cidqWEbMUhyHKCQerjr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 947 - },{ - "name": "bts-bts-mytest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59ArGzKGCVf3Ty6BfZDZVwbQ1rCjjNyCnK6jh2osoKN92TFVWG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nGxuFZAKvCiC9TCuFCSkT3BhaSqr6PSUjgnJRvn6dMDz2vXJ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bts-indolaron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nNeAwNgUSJUqGYjFDihBKoLtsLXC9EfT1GLh31GU9qbURrgmx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bmXiQXb6p5VjN7YUgFpFokq4cpZCNkKGr3NwCinM3rCTE18F7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts-garden", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QjfX9TYr3cAG9LWJ18eRVcrD7yuUJ8cPquJvkRxseB8K46Vz9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Gs6uyEEjzU7ekJojnVtmDWWmUWknDwf2BJ2m6UXuJ9Yk7REj9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4139 - },{ - "name": "bts-r1c4rd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MyvrPJgBG6Fx6urSgFim3cNMN3bD7sbU6JZV7E52pD4vksJcB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZNPqB5HiGLtYDGR4PcZMcNCgc9TxGZoYhPqQbwMEb7nmJ4Nkz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bYQrJ1znC9VZnNaAS38mAbzKvcbDU3YYtWwQ2R24r4fZS8gf9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kToQrtrMPmYUdA9S6HaUAiqAhWoxn7C6yuaTTF4b4szRkdNvv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-bts-mark", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WtnCLM4U59adVHQ6URWpaSL8GyJm6PBLYMjFS4BWrrd38e16E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ztvmZg9Wk7QLoYn4pPGxPZxJJwbB9a2BMfoRxt64nRZDSAZjF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bitspace.no", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ybcCjQ9eey9XaDhkBzQnnVTDhqLaAfLKbqYKQ3EpnvXef11jH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89kx8WgD7hmNsFt5nRcVi6LRiotNAEjz2L8MFg8N8ETrsMgrFa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 624 - },{ - "name": "bts-bts-amirul", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST675PcJxvg4Rf2gJiouQDxoh7nsKwbpGY2M3BW1apxhRGqA7G1T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tYCKJB11FTCikZ78iZTtaoD2DWZoPbiYvvPeLNKuJvRFMwqDL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-cryptoalina", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xmaX8Dwx1JkR7ghk2BPNb5WfAnHmcFx3mneL7cahbUvMwLr84", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XdFwoMFmRpMgM5aMjMr2jciGyTmJKhBfsJmzVjZ5F17hQWGa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-gn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65LeadaDKKK5AB2E9C88NeiWqWXdtGURuaw2SEFwKSHS3fpxvH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51EQCStCpRPXc8P8SkHSwy13swQDjHZM7ttm3vNydSUWBWTnpw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 387335 - },{ - "name": "bts-bts-vchura", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D8sfVv7rZXsTgaRp6CiicFteqSTj1c9pKtfULFKM5mWYqssh6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mQbpVj8vXmWtsDrUxXoyN4Xi9ojMCEwnY8nd4QCUBTY98hkJg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-palantir777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BkWHuHi7v36MwsvccEPQyHK5bmaKCrvNSqusz3cprDemtAMCs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Abh7RNBSnQ4kTskLTRwQ9S6fXsmSuV3bpydTqvESpQp42jS4D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-virtualskeyes7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KCexkXnvofygXWfV16UiNmRcVjuFfM4SNmfEEeVnMrGMS6WFB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83oHMvJddRa51WYp1ohSRtcuyzGMfR9LnuL7y5cjvmLLd5YKUc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 417189 - },{ - "name": "bts-goldensky7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Cf4B5vhMNnfTGe5PByfEPfWzGEwM5ajJfYL39nRzuKL5TkqXb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iEzKdMpajxnhfEjHnx9NLDhCyXHKtR4Reu47bW9ssioBPk9ia", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2726 - },{ - "name": "bts-bts-yaremi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ASDZ4YEcsJkHSu48YBiBPGMyViPJXavQHZeS59U9pNF1Xensn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59kvHm5UdPG2GkJjc1f7eJxFap38MwQkCJ7QTReHkkupS4w9v6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts-blackyblack", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GJBgD9yXt9hx3R4o4NvAUrE914aHGxpq7wjGmpxeggVMX56jo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FRRfXNfCAaVDQoKRxojKb89zP3KHW1637NMeakrirFitLLWQw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 756046 - },{ - "name": "bts-btc-andref", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XY33na4zkWiTNSrH42Mo75hMUBcZ9YW2ZQw6PMRRXj7Q61HWn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h2CyfP49hMRJ31PggL72ECUwVMKZT4cJZu12mzStJyyArHrzK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-r1rtt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AiwBvu9ZUEyMxEpj6RThELiMiHpjcajvfnymxBSBwAvVMhcvo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rZvFNnBb9fTqCbecNJgqLmWf1rQuDmUCTNqEhhqa48SNdf97U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-high.five", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5m8FMdxn1nBLbjcdban89Xq2bA4jqtfUggky98kdymZ8WG7opy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kBJM3DLSgdVVS4tPPVPebWDypRLzPSKCvb5FSznZQuryZzTw9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7525 - },{ - "name": "bts-hasan-2397", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E22bKXHhwFFMC94Nt4VQMLj6ZNKsfXogqofPED1Yy3XKcR8tt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JsXy1ShKfnTFadfHdGFrJyVcNhCbGaJ752tuMucUHJ6G24PKD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-qhb3316", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c68hit1R2MRU5ErdbxU1Jg4qJ9niMymWqfA7F8BvPSATRpTLv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zzDd5cGbdkxTFDJV7kjN4cVVVu2R1beYhVcxRt8AESiAxMF66", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-neura01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tsgTQgGW5WibHegyd27Cuzh9XrAimx6oatjrtDjB97DoDjxDk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yFvndy7PfnzV3B3tSLUQPVUsydvZKZZZE8CbEg5xhXDgZAZwC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8872 - },{ - "name": "bts-marcovic73", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kJ1iZk19ct6kXd4fkkjpY5cZ8tPgVaGc47fhNoqbw6ZCbE3T8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XN5yvvQtHuYSyGwqpYA1togX5LvA74a9tPi8ayEPGBnFu5kDt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-openledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nii3vS85QTdLczyGTv58kNejgnkcofYKWc8T2EVFRDMDCs4f7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST894mEK1TV2EpXpHhe8xtJhhvFAZPmBRfMKL67dwtTXh5T9U22f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73432 - },{ - "name": "bts-tigriri909", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X14ZEWsmmz4vCJBqUPcJiJvWg8NH935ZQphKtXJDFPAqSB8vq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XBAenpzvviZmC3WunFpeYZwQ6EDBNQNK9kqzzRPbs6CBZ6qmr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 525 - },{ - "name": "bts-openledger-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54RQsHHnZQWg2XZwuRL5L8RtdxSbXC4Jd9e1YHAXDNDPhwLxiT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rKLweW7HSiqPsmY2tJLNA1FyPgsiyPxaUqcXjZFcgu44Z6wu9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124981 - },{ - "name": "bts-clayton-rollins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TQwQ4ZeCxWT2jeKuismzv6oVzQzp2tTseQDPFVcA9FLnJp4nG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56DcSH3rZkmEqgWe4zPZNCDLeTevMBRiCU1o3L6x7FdW42GHAF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-forest04", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W87DoPs7LiFt9XjmMwQT1t6tx5gyiRATKFz59x6G1JtaNdypC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XWvB6bFvhY9LLAMJzZnNE73suoZ3c7CvG7APnW5ByErPKD2rr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-hello-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Dg9LqnXfSrHfcT5nTR2oxSYgJFAwfrpNcXcgWKXPpaEbWJgA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u4ZbTSA5oUUxu8gER3LkhgahAodFgd69MynSJV8MJ6X3MW6Ym", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-piskaczka15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fhjherqX6fgnjnEswCr2kAQ8a2xtbatGtKKoARj8J8TGU232i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jsDyqEfQDbY48q6ZUBbmTF4APZLsrih4aq9tUKUb3VoRoU3bZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2703 - },{ - "name": "bts-schurli-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5F12954KocwTbyt8gLudWn73ms7QkLYt7CrJzgFaeKV86Y8Kp7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X5gfa2MJKBTYyTFjNoMj2cWkhBdw44LCeXKkELD7rEte949Gc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18213 - },{ - "name": "bts-sterling-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87sdGXvsUrHE3DyrVRVUqzQcZU8rBWG62VtYLfu7tyhBDam6bG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73y8a1rZENFkiZkJF33akJcyFUHpEymXXK7MRHjGUsVsyaBbbz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4279 - },{ - "name": "bts-j-asisboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bBhDQD53AMciMaRo42Ngin4kJQ8TdXWiefn67UjuU6vREY5cZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aRi9eqmoQM4bdrH8kfKHdMeADwDwmgjA5U3otDKbtSgbx4i2p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29069 - },{ - "name": "bts-mindphlux.poolfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zuZowE8ZMTYUD9RjchAsqZgm1wtpxyRkLUxfbCCmgrqr1NnYH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f94jHzqxLwKK4YxFxQKFs7Jt1ATczcadJSCUt78FFKgGHBdaG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-frka12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Vw4wDcZtEzTU4cwNKqY8ZRuWN1Mz2wiHMKwoS13pkYdmP1Hhf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZzBiwuRo5JJxbAmF5a8sHfrMNE951cafhzK3MwwqY5Qx9vUiH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 226 - },{ - "name": "bts-goldlover1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c5ekutSeYWqTt4jeQsAavq9vK6Eo6xWmMvkrT5vBYra33WRQA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mPq1nYiVvsVqn9kqa2XQFpme9U7He7EodqjBQMjssMc5wQ6b8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1160795 - },{ - "name": "bts-w100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hCrx3CifCJJcQaSSpAkmVFGVYqhUkcFyNkCdQgbGvkZHuxyUa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ghZC9wsEsSJS48em1psgeLGPgUje1Sj1tVQgGgjSCdTNnwJeB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-t11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nVDYzKKCNqy3GA5DZkrX7QebcawAN6h1oKssivhemZoy7wUwu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7M1SY1L52x8ZEtgMtgieyvnssU8euMBwL3gpCw5uE2KbvwgjBV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 247 - },{ - "name": "bts-bsx4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ewy2VYTvwvBvD4BbSDwYHAgjpJZN2fgdeRLyVcGvCwJr34bW4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oZ8LJXw11PzqYbyEXm3QBabRcyLeKgtX7YXQqJ22uh2xqX9Kw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3969026 - },{ - "name": "bts-dalemat1981", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PZ85uSJ2TiwWdbxkVNKqjvtvHQTFz9mZDxGyvUg43ywju8GqF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d2NyCxZzdNZ8jMXQShri2Kdexge3QywDz3YRB6DSUxCN9wHCD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1237 - },{ - "name": "bts-ccedk-cold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69FMKSdTjfEpU3qA18KfbVfwfjdKHqrwqiFJQuhe2F75NKU91x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7J15941Xj6aTkxb6yKfEasgCHGQZsyjWmYpXkYj3P5inVpHZJt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-mw1973", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8budJ6Gs5gSsoLSj3nQ5BQGPhetoTWKigmhKZpXVe8huymAQcu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MpqQE7RoXxwRJ4tAn8cRc5gkR1k1ttZB3J4dexnfAxVUkmex3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1024 - },{ - "name": "bts-toshiba1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85e5gAHX4pN7pVVEgrnYrMVWU8RhSYGEsXqkxyzK7pN54Dr9is", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82xUP1VedddBzqHsK9F1exPMGvd9bXkkZxyjcdHPcHT1fhU8FT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-rreye073", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7G5n6ADkEEi1J3PnBDKRxSVX2mFX7kV8A7R2bEggeG2oxeDGSv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MeWWW4pAcqQWH6deyF4eSFQnq2xDtNmhSjDKgbpiSVRnNVcox", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113241 - },{ - "name": "bts-hybr1d", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hoMx6qaB3FqEyqaQrJPHCZrL1KNiSeckouYVsxpyeJeXknTkL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HfoNGgqntXufCF9oeoYT8e2Aub8BkQqegFE2z5eV1fxQJtGFU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-btstip-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71DSunKomRFTvN3fwdSDb93TGScLEp73rfMKgDjYCg5U9cDhdt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6erijnYSteP45ZZVDf6chfi83ryFu6h6k3fWLzMSvN7V1iN5am", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-max-wax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s6cN8FamU1RrmyVycKhvGh92mVUWRsJxApAfQcgyeGCHpVGUm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54T21BwRTLuUVd5ixcBgaJxg6b9mcPUmRtSzSyGzTqrTEChxCz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18731 - },{ - "name": "bts-wyq123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TUgdRwcNUA6DYXgEBddAQsLb8WDGY9yH6vhKgisvhyANh8G1M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5a8yXXAjbdGTrBYRcsnKQmWiP8Pz1YqL1KPMLfNarqRvAZDnVR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1178 - },{ - "name": "bts-thomas-barta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EgTn8JsJrhFqwTFWDG322bi7LRkLnzJJAG9vUHpHvQV6NQQoL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75EtgzVYDwDpXQKW7dV4Xak8huFKcHVK1jAzWz39noeFv4uDPe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 85 - },{ - "name": "bts-micro-tribe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wVB5XTtq6G6nVd2czgssuYASSz9PEUbZRwUKTptHWmNQqNj7h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8anHcEWtu2aDNJH7TZJvKR2ivrZoxpChWZdViPmPaeuk47gCPU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18814 - },{ - "name": "bts-mike1975", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yGWjfNrV8Bj8BjWQeEg93bWbxfyiuhzbkmkE7hBgxAZWVtMwm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m8PgT2LevnNdur9zUXdJxvcCGWdscQuiYL6TKrYh4WE9Be5uY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-y-m-c-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CBkdBhfDmubpKQ9astVFu1jWRhqhBDq6todxVKcY7yGm63kQx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-abcd-22", - 1 - ] - ], - "key_auths": [[ - "TEST6H8EW1CwPPFcokaWv3tdZQXqWvZzNoEuC7hceowF7zdY52wzE9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 624 - },{ - "name": "bts-bosco-murray", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PM4dHUvvwf7tzdJVyDgWjYLVDKXSXVZp9EDanS3mPsnAy7s8Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ufTdUMK4wbY6GJASZRCT9y6mB93NN2JUAzTGKeYmbeu3DA2e5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4135 - },{ - "name": "bts-bts-qwas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ssL2cLVnjjnGqr9jAXyPhjPve5Z2BFisthNvWRKDahSCii2vf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y1JAzF5cK8AxHV5t39NrjYWwmhCPD5usHQLftPYcGePTL74ya", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1133792 - },{ - "name": "bts-make-tacos-not-war", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CeaxpULFqaBghHBYZGwr7cDKmKY7jkChWCooTA5ZMtyru9vE5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WRqneDEGnih4eU8mUc3GdjW1pTQrmH17FAjMQdLiDzZCMaq4E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1205789 - },{ - "name": "bts-easytrades1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dEjDL4MFiGMj7cPLp1tGSF49HRXyYqGMJwL4TswgG2ieqBmV2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MqsAdLw3wyrEyjLiTAMnDjsPnjW8pices2aSVZaGibMT5muY5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-btstip-io", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85DWkZuznYheEUaJqrNDxYZU4TMMEK8jAL7wwuccPHkwmiCLvU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TkcteN4pDPPFZ4kHUGJUBJbS2mDC7yxGn1egsciNziSXKewLE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-hyperborean1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FNyKRwjf53bpWv97mGBGNYvpaTAm6GTAU9vQCLgNQRsEySt9H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XWEQfD8gGegbz6VGWoDG7Dpy5Gmnr3trNKGwJdPQptVy8RjtG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37816 - },{ - "name": "bts-mar7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vcg7TLNJUTPd99zYTKKPDtS7C934rKAyeZUT1ffZQXX5vZbHn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PXbBJEyGFRcU6q6JTDEGBre2TfQbvNNNeVUPn2bSyb9m3FJ8S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 125 - },{ - "name": "bts-diana.mcgee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7J3zxm4pXWAzJSgjVgzzvAyrmgiQR8jgYmA91gQgfgwv1y1KCx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7J3zxm4pXWAzJSgjVgzzvAyrmgiQR8jgYmA91gQgfgwv1y1KCx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8093 - },{ - "name": "bts-demo-bts-emba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ekE8LRfhN49XBC7vMR2FhQ4L1sLpbZgvUaF3PyQqKukNMw92T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z4ciJL3YjwakWzhwUcbM4Q6u1SGZx4ZvLjTMfiHxVeMFztuUT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64 - },{ - "name": "bts-bts-zoe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HKmsQ86NeGm4tcw6DcGzLA5wDgT6JHTkK22NYztnaGpUWuenf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AGaXaDR23yyvDpTMWtNMQWnS6FgBVGaAC84UZimWpGtB3XWQ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-sofia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wJuuM3Kqug76CbX1SkRaiQuFNq7cYkMDtpEyqAdkkxYRek1kj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iNXnWiXaQSghFXdJWD4MLNHdocCiM287CkV3jzqs4CGV2Vk5o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bts-nicholas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8884YqtLBAtxTmYotPEwppK71TdBH1nFZry9cXeLnrYbg3x4dk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hT1SbS5fXcwtbJiuSvNMLt9xsZFpWBACMAiiQrUFMoHhwimjq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104 - },{ - "name": "bts-stardust7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KJzjJMNrYnEm8RrKWxTUkFbg1eogPTP7BSZFukdcxGqNWvC1C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59xKQRMh3imZtAgMcevPWzPc7fMHUS32my88RUmLJ5VxKTMJpq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3601 - },{ - "name": "bts-makomori555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LnZqDUVxNMjKXVUoUXWa8YWwmLpxrvXgUWsXHNeKaf9CJVw3u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zJUJo7oN9YwjkWZJAGYqLq7tCD4EWXcuN9uicgKc8ScS561yz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 190458 - },{ - "name": "bts-ubits-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5p97RzGJAHedFEyjRnoXsm8z7GAcGiWxdUespj4baY3EP7WBW9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST828RLrHtqKVxwS6um4XM6mDJnTf5Nvf9QtZUbcLFYkoiXUFwAn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 548497 - },{ - "name": "bts-never-say-never", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hRFsg5r99mn4EhKzGQRZ6CX3rN1tPWLDVpEEzvZKfs17EUVWW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fVpPGa5U78YqVCKgzTYNAsPWDJw5CtgtyvuJ1edKJ3AtvPzKd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3281 - },{ - "name": "bts-gorodnev-roman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YQtmxTysfGp7pPcVYvc1STAbEYBH4dijc3SZpo416Qps44RPw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d4FX5SSft9j7WqoakygPg7ppoxyBPfMpHEFRYYRLMa4y8iHD1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-bitaddict1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KU3tjTiMAuHp42bhibfSBZELBgYH9bZagLYtKgty9Yaxkpnrb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58sRaSDcdkpB4a8G9XS2xmLdmhR9tBL3v8dCEym5rtjLtc9XN9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-johnnyhomy74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6e1nN8qeszsut34ojqqs6ZH7LuYK58rPHa6WrGN35gbt5by3fw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tygSef8V96dU42moXs5eZ9RGy4xcbwKp9pzktqxjidyWkMr9N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-knock-in", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aA81PWK46kUK6RJ8x19mUK6vjB4a31Ccx65o3GgnjZHDmYmQB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UQv9hih5uTdpS3y3ygw6PGo6VLDLMuzLABSHJ55KwcfG1Y6c2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bts-subscribe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g2gHRBym4nyZeobM9frj7cgqGzyDZndGkgQ8VoFYNkLuz2obQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dHxDypqFM9X8D3ZZ3xTL87ZU3K4g9onSuLPM9mqPVaiEeH9G1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36679258 - },{ - "name": "bts-ron-smith", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vApLATuB56Jp3NycYmBt8Hi3ZH1dMoBZYMTW2KDH2yqdtbnVD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5N7BinxhP3dbjeuwLR26cJY1uQ5MggvTJZuMZbe6r8ywH7AbLu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1824923 - },{ - "name": "bts-safe-bank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U3qMuLazuyU5mYFwc58MLKTTBMduucmNtccdJuNxuDHdyjdrz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q3jdacU61Ve11hb84in7MW5S2wRaXjw8tfVd39nPMaFe1AnNw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2182 - },{ - "name": "bts-uscita2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pm6q8gvVaCCAJVJ5qNGH5dszzoxANp4mmWSoz7d3iNHfeZoWz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HcBmZXeWjDx67dCM2jigjcQZtDVZ4DRk7GnW5fgvsBMEtHKXK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8446461 - },{ - "name": "bts-geoffrey1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qUruYkht4mvk4DUNd7tPJWcf2LgyamXKJMSqXewQvCN7AcfZK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VrVMNC1aeXjiq1maUve9NEmCcUJKFYb6QmnsiuRuahZru41k4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5828699 - },{ - "name": "bts-bts-testfav", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hLGDRNk9EFa55rK8cBwG2qHBeKt6SjjHTTzKckeyqPxos5r3c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5abUJf9pchNMw1ugHPz8Bk4RS9RxAxZZfJMqcLPWBgteFcTE83", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 243 - },{ - "name": "bts-bgi-tolvik", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64i4LsmoCJJu81sUFSEdZRGaiCrRedVHUPD3YZGnkjtwNKJW6g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RNsZgDZWMX8dAE1YQurrZzPugBoRVZ6wVoujKwmFoKPw3eYVj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-freemit-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nPaXNeBpB51roJiyqaDDAaQ6XQx7LeMv9yg4BzmxSoa3XvRHU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Jq14dJDJhYzsafPgL6pSSrVzDN2vxExRHuiZqNhZrQDocFn3h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17086 - },{ - "name": "bts-sizal100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PR8q3RmDPYZ348XCBV4r52ocGw6aiajnwDa7gpuWudiHEoNFG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST564HW6hNb7aaxrb1bBiBHNsHVm6nFsqMLGXnkywgKjePsoJLhx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-graphene2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cfurBR56LiKNPUfbeFH5GnuHYZMPzA4pJ8qCb8eSwz2Nns8q8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JNmKvVNW2kmC5nbALEzJsLdJd8XQgDmYS1cyBDedK1zpwxnc4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21176616 - },{ - "name": "bts-mikem7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54VHY5UJjWvE1LPkXvK6Qy53DrMuNjbvvut3WgLe8SRSbZ8eLB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eXAhhmcNr4wed5dZC2kwRPiFJyfkq1BWDxeY7buzEZ6SdLd7Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9727 - },{ - "name": "bts-juan-s.galt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WneLetfBRRQDT1f3Wki6KBaFnMYnvaJ4JnnDJdJE5bMe8Y3wf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XMoW1zFip7m4ojmbyzSBJ8AGpAEpFcnftLx7meMTAijqZNHuW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-oliveira-faria", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SK1PuefYhogHhkC21Qd5sbPeUcuohzEnvR6oPwn5jxVzGRaMD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5a3v2tTom5Qc1iEp2PSw9rPCQcTwkQTMU3TWnYMii8jRcxbgJF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-skriptroid-2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PVqNiJZxjZxzFwqvxUXvdrdSk6YVEegufapPRwL3EF6SqKbzV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST554aEm9hp5yaRx1SdouoVaY65G8B6tLyG7CWn8r33GCsioPsyf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 98195 - },{ - "name": "bts-hardfork2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST857pU4wShBLoEFFMdPPZ2ZxoPmb9HPEYB3AvgHPDYaBMMrmcJk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HSYjFk64zPTxBwrhapKw5Jj6WAtG9JZW3Cx3NoZ3NuLraADJf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9578052 - },{ - "name": "bts-fr4nk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83b2sEV2JWiUchiZLKV95chePyP4iSc9MqTHpnrnpzYB3uWuzu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ayhncvWBSbY9AY1u1vZDTNp4hpGQmKPsULr381oNdkitLf1jW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-sepia01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82NJ5XRyFX2DzCYbyPGZaSLB8QsB9fj4v5uU1FSWSfrJnPq4Ki", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82ak5RYSjcfhThAbW7X6RNmCEXJm3JU7vnLvR8skzv6yavRbsT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 850851 - },{ - "name": "bts-blok-zinciri", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4waoGd5xrqJ2SYuq81ohvxge3QihYz81uQJVxA2ExoLSizk3XW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NwEPh5qx9htqJQvRz7kRwDPmmVx6wwbJ6LULHCw9ybaxd9UT9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15657 - },{ - "name": "bts-whiskey-mixer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83oq6U7UyJXVmrBcyhVEFhqermNAXhkTk9P64FYvGaWTTjh66s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88sHEyuaC2X4qnvJFhmJgvvEM9bSGJi4nNdnx9QN66A6MQpEtq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-mindaugo123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QGTEVS9fRJLqSPTHuXY82m7GWtcN7fwfCPyGexC4vVYEmaU5b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uZtEK4EUPcH6Zspz3BCQ9sJSYuSuHXmSApP4VuFt4vQAKTbCX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19089 - },{ - "name": "bts-realrover2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vXtJENu99RNbXseRzbocNaGoxmQ8BzCT5nUksoW3bJZ6hm1m5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XZLMhhttdFph8e71iVu8rYJ1QCs6NEnMtSW1dA9xPF9tbaWrb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 945009 - },{ - "name": "bts-david-p-brown", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7as8EW92TRWqXCzNsZ7rHy124xv6EQnkJpkJUFm6x5ZFXoJjY2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66CGRBMD2zQaRoNTTd64KUKvwxztY618W1dAyB2JUxWYCBsZNC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3825972 - },{ - "name": "bts-dan-alatriste", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8brtygkW4K4PNj7PkrnRGEdKU7WimznLz1jSBcT7MfWdxZVfCH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hBwxeZ4fsL2BZC3U4sDvBBW2EZeviPM8MJE6rUdYrVCg7XKar", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-btsfps", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vD8adutHztyhq78STZwBVsgTF1sjhHrhnhmyXpQooAhEahZc7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WRecs8o61dp5cafK79SmBkaoEUXvT8X1DkmxFvymyx3NmgMvu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-monalia92", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LkNufR2ExCemzn7JW5ifKWFcnFV9RW5TFsqrWTYtWxz9qK8GL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KcpBANjrrbSMq7ptuknf3pzJju2LFJhdUvjytCVvjhcs3AfK6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-transwiser-reserve", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QjbEuQWaWe2nSygNYJXw26YbaFYvUHcpc4EuVtD8BaA7ABHBf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-jerryliu", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 131 - },{ - "name": "bts-transwiser-wallet", - "owner_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-bitcrab", - 2 - ],[ - "bts-transwiser", - 2 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [], - "key_auths": [[ - "TEST88F1f5872Ej4GP2HX74caUXGd6zhjArNs5GbZXJttAJeMRH5ep", - 2 - ],[ - "TEST8fkG5ERmU2vCv65sJvBUyQG7trhbuaBbFDHy2TAo3Yabk9MdaV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 422590 - },{ - "name": "bts-eee420", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iPq6zVcv6ZvseGcy1We5WhcMWnanbgYsFybAjC3fch9xNizxM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST699kJdXq9axjLPTnZqSQJHujEeDRNAEmrnhdmjbTggH6gkb3fC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10537 - },{ - "name": "bts-bitcoinuserx1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Bh6693Sh5bL5yChWJL1yAcTJ6G5NUjnDWLnrnJ4Lqj5fB6F16", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75dSheeGcLqhcegxktXAhYUcbSATGWye1cFoi3zCW7aLAeXkFW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130403 - },{ - "name": "bts-wdmxssm2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sCmTZLvU8FZwU3R99cQMvauPtoVFYgwKLwLJDM1jQoaEAiEdN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PEDoJUFf5crGxAWVHGmroZcCHuKTtJRsVHBREi8vM4BVtFF7c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19431 - },{ - "name": "bts-happy-george", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iYE2T6Kt89iwT6cAL9SqaKfMKdRabozuU7pjF4aCCBtDVmDcV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BTLB4LosKUPvTxZGoC1EyqW1vpzgtFgQDX3Ap9ZfkLa1xKtLn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-super33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KUHFNRQzcgH7ikp63zuKdyFi7iqDFM6JZpYtwyPAFpcm5FnKX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89qzCVtNhUHBrV2hRHGqA1PMUbSDipFUC85DzmUkv1qFNjadtD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-thunderball727", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UEkot3Xvrv6fdqD1wbV3n8dCUATFSz9qJeRadNTE5XbVZbgxW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k1fX4waGFSGF7dsmBau9Tkb9prRoybhZkU6LCyjTTNvRespxh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 915558 - },{ - "name": "bts-moneypenny346", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6baDSAcY2pjbfL6uJnR8hobuUXPH78DU4pcnfcvYZTPmiC9BNK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tkdWciBXGnHTLMYWLgMsBDUEzT5tcyGPKpcAMm9wDTXKsbewZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1059791 - },{ - "name": "bts-bang-king", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88biEyiFqJCZUSQw5yx4kPMZFfaHHB5fdpjoWpaX6TFCybZ9sY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vvGsQGgZXrz9uwHZzv9m9qFWe6ubHTw2nHUYECThkjSufFCQs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11199626 - },{ - "name": "bts-xplic3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XuamSUtyGKeSzb8Vr3jWYcX1aTTrvUYQwytv5KRNnC1y1934m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51arvF5tbRnezkqUWK5U23QCVCauLBinXe81vpfTio2q5VLqHb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-martin-ziet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pN9GpHhcMHLagpAS3jUKFq1Rt59Tqu3rnc6MNGVd1Aq6yS9vC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7J9MYRPW853ZrQDMAjTrse2ewa9UqisvKHp97135fCnuEausA9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2363 - },{ - "name": "bts-blokzinciri.org", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rhBVFFaVyxB3xVTC1UJuxhV3b6NDEN33z8WcXNY9WszzQxkL3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7D1D6cWCg1pAUe2YXmuKPFBLo9t69EKhebEu6FoVGNLyu88zzW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3798 - },{ - "name": "bts-palad1n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BfNtUBzTk7FCYDKKHaoyLkhgAmiaZ3oeS1KrvJV3hDeKPRiet", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XkaejNmdmZvhr6tjsNFVd6UXWVzEc8Kv5NiQxd1vpsgPEJabq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 219 - },{ - "name": "bts-akp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79oePQPmWnVp5M2rWfedypYXiiq2wZGAyw75ZozZudLZTevGtz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mysfroUZfhH361Xg7JBZeKW8KYpdjQzxDQkRepuLZdYLgiMvg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-blocktrades-authority", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c7iE8jt4zubNe1ep6EKw9d5jLuARgNuSMXoSmjM3NPhsrvTGF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ewtv7NyuVRZFptaPcTxhBxharRkvaGdESX6EksAZqoHex4CYu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-billbutler-dev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jAuCZWktkyKet42rpbk2j2qWbhg9SPcUriebW42rCHd8Ea5DM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BGYGorFu2XN2GcvTw82cwUH5ZfQLk2XKzZfUNGaANjWRPa5F1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4343 - },{ - "name": "bts-yun-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tnkmV6cKHGCUmNArJBWNUp3FuqeADVmBL8ux8BaEWyRfuLrPp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z1hzFLwrGJBsgkvd3et4w3hxzmaZdU69Mp1vMX7D4datxLsGc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6720863 - },{ - "name": "bts-sports-owner", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5N1QXGNL6gp6ybDyKtnyyZ1A5BTfebGXYy1f5aboFLf24dc9Mp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YPJTfnQgUExS8PQm22wbkHPSbmtEGufLcjxdkJpeZGAcj4Pcr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113147 - },{ - "name": "bts-blofeld281", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83CgnJd8rZdodsRqLQ4erqwT8ZQ5FfxQ5F13sgpyF1RwK3PFQL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68ZWvZCrZQaQdJe4HgxSta4jkJFMpzQRzHrZCB6tLfyCyr67ST", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1060390 - },{ - "name": "bts-astonmartin962", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d22mDpmEhq9VLNqMpNBEYDSqoMYtUDYSQuMG5JJMBiTV8pMq5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EMBpRUdpLpkcBzvnYcRyAR2CpUwLkZVnZKzLvzwjzKzF2thLq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 431149 - },{ - "name": "bts-hujikolp0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59AxtcWB92tzMshvke9ETxjorbjYNxZGDkbmQeywc7pi5MxNer", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uQLAZiggFDVZnmQR6eetG5bbGfKig1bysURYU1eqPMNiCVxPC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cent2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51YQ3mqhzw8g1eqfBY9kwdtPQerav4MbtspPCXWwYJddPjK2Q2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zADVJhLJi9iniLj3sni4qy2LKJMbcAnryqqkdSLmFn2DqChHh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 310 - },{ - "name": "bts-okae401", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HLU1PCYEPrcGWM4R8KXiamppn6pD6yK1dGGEQ9XMQM9BMFL9H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RN3sRq9XqFTw3tTFX3KXn6G6dwgjyKwZsUreneHSgMp5twA5W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 118790 - },{ - "name": "bts-btsmp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RLfeGuEeuRgzqgfCZND2WevwsQETWhuvrvALSvQRKW6cocb66", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RooYQkeFp8THbjDr14Z8qb1iVS54LqyJbzb7UFmeCyUUVrwkd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 749074 - },{ - "name": "bts-f376", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UfJm9BhjV1s3CVutsT39c4b22r8A9M2dVxa3izCpqHj2ZiDos", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XyBnkwAAbJ3b4nY1D2Zz3Ttwd8cXno1TNtgdDDQtNM1LzpAGz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6026 - },{ - "name": "bts-btsmonica888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PhS5Kuzdsot9q2U9CaXWnvTGxWregAHAYjnnSSitJNxRGDBCP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LzDN5viMiQyJxyT5pBGnNMFDixj2v6N83FjZ2gSiFdiZk5fG8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-slights78", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SiMcoK9iUe3epBmV14ybyjnp6uUXJqbQ5THDQdWfjcU1TRrRZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68v49XrFBCbdhCJyCwC1zAqC2wfMQKKsv68V7SfmujNmjBPNnc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5033 - },{ - "name": "bts-labbe1066", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s16dtrxqWgGv4twd77wAyCC4A5Wuayq9JGXCwMYPM3vATA9uU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Bfo8ocbYbMzPTarvcyg7L9M5qPEXwfro94ucL2M4wDCgWnJJ5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3191355 - },{ - "name": "bts-noobtrader1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NHGuQWh2VJQCxxpLit5qWWkH8GtakowLTRVR11o1nbL5gvAkV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Srf2JBMTEWHMJuTmnKy5aNZdoNfv4JvYZGBMhx6wYcc5VNuUP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61698 - },{ - "name": "bts-rango1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WAKR98VfopDefh3mKj8moDov6rLCSzxyCy9myXEGAfFyaJidy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TgVKAxRek4hPRFrp6sEqFR3dh7pQus2f1HwLdfiwL5Riaidyj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131 - },{ - "name": "bts-lizheng999", - "owner_authority": { - "weight_threshold": 0, - "account_auths": [], - "key_auths": [[ - "TEST5cpynUMUPyuWUkHvT6HsfUkMgGbBZopWVjv4gnV1drjKBAsUEk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-qifenjin1975", - 3 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 3450 - },{ - "name": "bts-hrehrehrehehr1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ASGBj1j6poWbCxkxLS292owUxdHDaYbGYrxHqnXocURPcDQVH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iuavrQZcKf3uwjR9DYuzAw3iXdqYY3ia6miYka3KSRLaovBB6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1210 - },{ - "name": "bts-oddjob275", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YjhA2JvVF12qjD9zdxeev779dPK8teB2wuyh71EXksxntUojm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NaPJWc8An6zxCFXCrcezX1NZZmJKMhbGCiX4GTrhMgU3vovAV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 216226 - },{ - "name": "bts-albercoins40", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ohjpyyfMs9n56AWv1nc7345yXpLpjdeEe54qadnjPzXBXHkDT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WxJpJnkUwpwnQpB2XHj1rgB3vy6Tsn1C1eo61xVnKyYDs5bgo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-moonraker078", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Z29SRoHiWW46v46TxTuaZwBqChALWAVukRReBM8MAQMLe3G8r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xYGm3XN7zsu6XN9cAKuLupfjpXbDgd7cSTn1w3prLHoNpCED5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 87464 - },{ - "name": "bts-pr0t3us", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m9MMAf8oEW2uKm3P33aidor3mwLHGGns1BzYrfFDSG2kKSJ4F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tBBvk2XpWy8SrHnHKDNfqMALP1P2mimjpKeUfZkhFE5er3sU2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4377 - },{ - "name": "bts-ops.cyrano", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vnxmCLie4C4J269po47GdSCXdK5fegp1ZpPpQPtk9x48EB959", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CNZHEi86vLH1nbo6HuzdC2qR42TXzQND6op1jucHmy8UdEAaR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5991056 - },{ - "name": "bts-ledge-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QyyTbXM7SqP2kYk7uiHwQjnaHSUgQE4EUq5nemFN9Ejb7Qsaj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VHyVpXT4LZmLRqWby33PzGFhbj56urvTguLPFwCTkgMf8a6oB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17790 - },{ - "name": "bts-kappa123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68m9wTMwnAMp9CUMBA3bLt3hRSLHtW7QpPwLMUdi93eLxW3xSt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hiuEuxmSkcvWLAbrVxYA8zzrwc8mGaHXJzjjTh92XmtFkgQYo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 462 - },{ - "name": "bts-d0nnamcd0w3ll", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kMibTX17y9LuuR5nDAs5FnUTepYCi8D4J7RR1cmiPnLVjsfKa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HrwgLGiVcjwTreJ7oZ9n9MiFdcfGFVn9Xe4sUvewg1dHgdTND", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3386 - },{ - "name": "bts-cryptip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Lz2YHGHimy6rCioNMP6u5Wd9KUPX8bfefHxnZ4dUUAULrhvns", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CcCzLV8XJSfm9n8n519DfkkEY8SPMA7FaSkfp5dkCXNo4y4B8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4729 - },{ - "name": "bts-sandra-p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pV4QWET9ZodX8tiuazxtA93uU96zZCq2Z1UNQjSDRMRDvSe2n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xLEp5qGqLhbLXR2bc4kndBnm3HDnGJrada2MSJGuAmp8UMzcw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2858 - },{ - "name": "bts-anon99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oxR5td6Dxecgpidpdn4Z71zAM4i3YNVRBQn4mMJJaUvx4qL2C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tnyzypL7R4yjynM4DzBNKS3vykS8AKy2F9QU5zwn3k5PGxDDP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 186048 - },{ - "name": "bts-eye1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qmLk2TAoqwUTv58J1MXTqdQU6Pmu2q2NT49M7adzRsy8h1xKy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59YbGGcNzp2he3T5iGHmCp2YstzCdJA924vHnFELKt3ZVAnaP4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2018801 - },{ - "name": "bts-jimshares-bit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5naFBadwk594KjKsjC57t3mna47wDKBJTNxqShswc4GquX6mbx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fBWfth8DkJuybMTiLQFHYRGcg25GDSL6nSBmqCSvTxJjzPyLx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 547356 - },{ - "name": "bts-shou-main", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51f5czcqBkTZuvsmiPYWRU5u2rfk4Db8hFgneQuLxhi3TqxjGz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KN6UQQYQ8NXRJiRqfThMYeYjz4HAv88WoiTY6r8H41xx499n2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4201994 - },{ - "name": "bts-ww2333", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z2FRvDFTzz3kPUxaV2KQ4Z5goCZnkdnYoxsMUb87yw853ihG4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gcS8Z1VXxzrvR2cYSGmpjHmz6Yfq5nZHyLL7q4zdvT2pmaZjA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-y18516057220", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FqYeopVnqP8EGzNXgWgUgdMrJ1VWBzJRjfyjWgzsSkof3uu1e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LwieqNhSqjF6diThQTNgmijH4uB7fe8AuvU75KDbK5cmPS3zq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-abaodai-1986112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K8aSLsf6GawFRbuZTGFKa4xAuHvbSDV4bvqJiaqjwLufdpeCX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bVVZHrux5xzCA5jXBpbPmZnZ3iiVaiJkzNc3nEVuiD7mCRNZj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-m1016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yiZR124dZ23R9SUm2Edy2rThKA3W4R5bdShv3sWm2airaTr4d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79eQQGAxot6RFyyBGywtVorfNnsyDVbj9a8KMncyfSBJCLLeSc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-asshole1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST616A8A1vcEkQoqenMfzP3ucWjF3hp5T8k78rKrJPgnsXRmYLgT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SjAqMgQNZYQLDWbsFJxW8UeAwGcr76udw1dgt5fHt4DdjTfm1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bit-reason", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Wz1SQfaQnNRu3jSzmZosqNRtmjXVDtD47nLP3FCwFV7m9Jwp1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CpLCGiwK3Jst34R3W6uFEBN61SPsHQMiMhQbEZpdECs4tbSZx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-papago115", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VW2vtBqiwuBFfgkGCx3i6qoqWx4NZyo9Cr92LHnKnTXeJa1BR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Kp5VWwZBUzHtL3RWfGQu36RecAYEQ3n96DSvFSCqfv1tQEdva", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-jerseymason00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RVpuNFeWZ3cAo8NVyYY4wxdohGMbrTgg89iDSVaXWJYStqGQf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JoN9Fcrbi19HCmnSs4CbLz3eHajVXwynpQEp4fGhW8YDJdTw2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 526 - },{ - "name": "bts-joeyd-beyondbitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KJbnMsRduXhowyiX6DbX1u3inK8XunxcMWaLwDKYyLvAabmKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7boNcYvB2Xy2YUG98ZEWYwwJh5fpCqanzyNGuQyTsktXcz1CT8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543155 - },{ - "name": "bts-mk7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JQmEuUmkzn1ijDKyZkZzSKBLRigjBnrzd2aUWMccXGUV8r7zc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67mWKSpAvN3myz1Xq4xGUCXMnxu71VmgQsS76jF9Qx5WLKoRGS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334841 - },{ - "name": "bts-lampros12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hdw8gxuF4shveXF4wcZhxdww71ZSsGNj3d9YntXWHXepVR1Sg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kpyrvBGKPqRqVGraECwjNb1EQS9SnfDtjjH5jvnrVXy9X9pqi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-mbk1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PLe5mfA2K6F7oXivxPmE1BB7qFSgsUqFQUVzNJ271EncKvLKk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aqCZ7E63x1gVJMPyXH81RHb6bjRNrVMhyPwdnSnN1u13tmUJ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-sharebits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DCULueKWHL7M1xXtm2RnPYuENrnbk5TnuUMysspG66Mtm7hbQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UJBnRKcaysHN8iXCDUr5zkjN8U393EVbK5PfjgU8P3sjSYmXv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3659 - },{ - "name": "bts-blockshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NCXyoPHTq8EjJCSW4F8akHsC9XoB6f8RYzzcTABnRpLSbU3QC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CSRkDJ4Se4V2EzdjJrrWgihwCAdg7eNajviDwGEM5HnHx46fX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-obits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST524DrCSW48RRPRdgScMMB2TxBVV8M2YqVcuNq42Nr3SbJGpV9W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kb3rjD7rxDKLjJny3nwXojYVurGMdMpAyAGz7VAizdjojdkoH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 397265 - },{ - "name": "bts-qbits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oNTm7kCZCKZqLqJrgAcMJsLJvhghtWsgo7ubQCuUm889X3Avy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53AKRrLPBdT2TtWxmVK3VHRVWbBQ8JiB8etM1Rf9uq74DexEp2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150276 - },{ - "name": "bts-bluesky87ceeb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mGhuhyyHrN9RURvaZ4jbRcWeQLXaPaJtiSa8zrP1PTVBdVuFw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eZkbZNwhjTmFsH8LJ4LV84ECyjkWD3x5SGobfcAVmANw18eWg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 363495 - },{ - "name": "bts-iou.pls", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84BRPZEb1mjdR5c1tqR9tKP1FS5BkX2P4fVQwTb4ZAkUG3NW6C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZPnyAt2QfTNgbXwcVQNN5nBn8tkXQ9MtEGSesjwyqsMiq81VP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 742 - },{ - "name": "bts-iou.cny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GeRJ3iUWxrTW6Xzi5Tm5d9xsqHYiUtGpbFxAyo6w9VG6y2kG7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WJgm2x85XNt689wV7fDJhpQWZ3MDrdsioj31hezHGQgM3TcWs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1540 - },{ - "name": "bts-iou.muse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U2qhVw3rrsASpwPDomJAADu7SBcx1xk43yQXt3Wvpy3NsRsYo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89VpDY5Y964m8yeAKEws2CspyXh2YUagRJnxzwhDp87TPyW6Ee", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8791 - },{ - "name": "bts-iou.abc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tiYJrjf5tkkhw8MbdoxLEQbTHTrNJb81mecD3BaUJPFPT3uuy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 12, - "account_auths": [[ - "bts-aqiang", - 1 - ],[ - "bts-btsabc", - 10 - ],[ - "bts-btsabc-hqj", - 10 - ] - ], - "key_auths": [[ - "TEST6TZcncp4QsRJwvKsjMuqUe3sDZCBYcAmQXDRtugVt88Avj5QkR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 482325 - },{ - "name": "bts-dfdsf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TrDjYSCTA1epGvwkzwesz63yeTE4eybHY4qQ3EEvFSTjato7G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qTsKAT16ziPyF5NbgRnBphpjaNobjt1RZV5sgJamqzuYckCcA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-bert2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r8ghjfKzyDYG7yJuwwhSpqMAr43Y4WFhbdeM1FCWAPhbWNC4c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88vVHxNmAFP7C26xzRxLuRijjw6bZm3P4NFWUdwQBYT9V4ZR9S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 521 - },{ - "name": "bts-meta-tester", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5swNQ9s8wzyMgBTRc2xfpBt39sdGx6eDFawUkbqfxLCDV2o6j5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aK27yH3GvQJPPsNpSUUhNpTkW1LEaZk3aEV5vkdgFwpPgSkSE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 87221 - },{ - "name": "bts-bitsharesjohn123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dv87NA6fw5GxUGa924hoW3oqUcvTYfAxMAaRQqQT7hZrT3Da9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6opEbSnmEYf3hcPNeBreSNrd13n1La5L8tyL7MumhqNtrLvFL2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56266 - },{ - "name": "bts-xm318", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xdkirJi7w1kouU1kVcqQQubDvVJ1A6oXrqSBEQhfYKem4EpC7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pM33C7QScixBDHMxdinWGA2W8JmJQchxokNBX4XYxheFHRxuT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 109 - },{ - "name": "bts-jadams89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kXnGMZMy2pSQP7QKwTjT2b4S55DvfYMUckH94NJZfsEoa71vP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DkKxRgcjiyJiA9V8dQgA59KKBXF9zNY7DAyxjdnRjq45ECTzz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-bts-maxvall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7w7tV2EdXNgys9PpaHStrByUsV5DvaGwwjDKRGqQsNmoFaJsL7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wC8K8ew8TdsQuTcCXeBfrdUFSW38p1gvQoST4ztEPNBrvDZ4T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-bitcasher2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BG4pPqnDzLv9gqA4FwYwQNn3jWGKgd1radj1Fge8mSeoKF9GG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72RExVyxQaYtskwiojPNZv66cMRuD4ZxByUSqY2RFitb7jH2mf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5490 - },{ - "name": "bts-turk3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZEXXkxE8NQqxvDwjNkjuWznHZtfbfuaBCGcV8X28TahRPv42F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UnKQZ3C2XuVNztnuVHiWP293b9274Xhv2fM11PSTC6UUyJq1C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-dmitry20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U43po7hyGuxJrH9WhnuRF7vBzrtnvUF3Mi42TFxfGmqYxaQSb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aWH8pavFwWErUvKmy3GWtiucz2yQhTMDjmmyzswbTbDUicmM7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 95675 - },{ - "name": "bts-shapeshiftdev-01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PXRNjP1ApvCEVazDJXBoNBYjSeyB8n1Unhbw64WSRmz4CT2mS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YK3VtHPmLNsF1M4SNBmETWJSdoXtrZXLRkFRNCPF25rKoSQ3R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-h473434", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fhuJnvddLyiAWdqvjZYiQ29pGPwyoMLJGYZcWYr2mpNV9eS4g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MS4FpKKmQWYkj7tuepK2XU9awXk44k4RBey93voBVjRMjsaBe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-forasset-k1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86xgNpDGGvtDejRJGNa5j7ZW8CXFUB4f86PgfzwviRiMjm8qLs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UrV2BTcT13Ky8q8BNqtmYQMwWqBTPubgqD45CBmS1bm2Ha4UD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 940 - },{ - "name": "bts-bitshares-lx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89JVrSip3zKzs9c4GqGfzHrmCXX87fTSvzKGUmBKFqKxjmhdR8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ha7CgZtoKc4ZCas5vF2PZyKfFvDHXFgCfHTQwRVvCR6KsV9i7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 95399 - },{ - "name": "bts-miles-per-coinage", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dtyBbKMbC1RTvqsa9GkLZjCNM4sVZhTieVU8aHiUWj9KBVurz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uPed9dznL97cgakiKafHaFkSnGzk2mt5E2V7LY5RAgiDLPStt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41697 - },{ - "name": "bts-llcoin-creator", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55T5kQgZbAwDe1D4jfsUAogBiJ26Q5AfLe6xEELoEu1PmRpqgZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KWwN4hLQYqQhEdk9JDzuj5eLo3aJtCdnJzhLwteFvoVD728F3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1802 - },{ - "name": "bts-first-personal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LR8UQ8v4nnfkvEjVSy3S7eiRbGqvWyKYSHtCpTJL3KjMG3Wfj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yit2eZ9Z7rpWGXvuDeJVmz9NqxUKdi9hsUvHsDrFBxWe3MAjz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32997 - },{ - "name": "bts-electron-io", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65NHnEdRisAuTzn3gvCiPUCsYEF7aiXPuLoFtfoP6D2SiFpAoT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75XgQRbAeMqD4pHgYxpKpiQtT6NYU9cCg4Jbo5dnMD8aKCVj4F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 592 - },{ - "name": "bts-wh1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WfpurCkfwdT9NRBz3fH3LX63HBXGEhNQgV5Yc1FX2ZvPNx8rJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tafsifxwEFrxfsy2YryAVBCA8Cn1bpNc76ijBYTtdiXWgtHrW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 115102 - },{ - "name": "bts-dmt11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53mCf1Rj1edVNrrP16D9t4TwggNvPXd5NXYATfDm5n9v1S6AVZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66QffMwuEjR39JAb3DChWjXFnW7Brnoxx8X5ALkhjW9wfbP242", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1392057 - },{ - "name": "bts-xypher95", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xRmKWBwzYS6NtQ1xdKrCrqerphJU2tCqLE5y6kRpKfheHCw1h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KtKxhs4B6HjWcMGwQar5ib8sx2pjJgratkqtyuXwnE1gL99Gn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58409 - },{ - "name": "bts-c248", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fFf9rj49QPYNQEkELdumdRnmN9g3x4pDsX62TzBBSMKxNQEQC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uaDZHSc196r4BKD6uivPscGxQyP8juXfQ7jivCnAK7qpCoGEf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7008 - },{ - "name": "bts-tekito-chan2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bZmPR1G8jnXNzBJx9i5RALvza3q5m4zj9DkigeeRCT3XiNSHg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75ZDVjZQLLzVEooU9NVJZxsjefK3GM2GGq4LvcxD4SGZhjJrjK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12013 - },{ - "name": "bts-testing-permissions", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wxn1RPCDsV3dWwercbjGRKZswTpwiPPiG58QRMb5RrecVeiqP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 66, - "account_auths": [[ - "bts-testing-permissions-a", - 33 - ],[ - "bts-testing-permissions-b", - 33 - ],[ - "bts-testing-permissions-c", - 33 - ] - ], - "key_auths": [[ - "TEST8c7yAjshWp3Cyz9nNLrZMxYEzPiv9tHLem4x8Xk3WCEUfzkasK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 299 - },{ - "name": "bts-bts-er1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77GN7mswDweUvS4W2BRcDk3i8j1uaNprPbEtckSdsDXDdgymNz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76r3uLYgSHfhMoTBWmjpHHPrDtmSDmfciHZ8npTCuiNFHktiPA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75217 - },{ - "name": "bts-iven1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7siAwvvQqJsuEPQVpz4dwdCzb41f7NvJeGjeCKGu1G5qzSHCp1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mebRPWW9HY48scvQAx4XeadjGM6BkovJwhsFTfe3rda6MmaWx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 939 - },{ - "name": "bts-andy-taras74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aYPMWqxZVKubN4qUarr6H3xfCZmRUArqArg7PQwiHULS6LGwY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YwUZ4id4XQ4pdF3U1WLBQzNDn7781R19b5ZmDfHV791oJyLjw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7977 - },{ - "name": "bts-andrew-haines", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XgX1XHgL7cqjWjbiwoedmupWUeJybECB5kmvUy84E8hvRzgTq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zivXWMrSjBgjCaBqZtR1Piyx5XiH3cD3BF5UzUvT7GN4ucgdC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-ricardori9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V7vg2net7FhwW2bzerejRTVADaaTrYTtPLLKgfHr994p4fUwR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DYPfj4HpCMFMyiZezcwEvqaDg536GtZssQTQhqavo7mMSCpHi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-gn-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74WZXPsMtzkK9qagJRYrsagPwXYnWuXp73rYUVPpEXqk9whKpW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NCycYUDXgS32wHCvNhfEZ66Cke7qborzvoyGabVEnALig7S8H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60240 - },{ - "name": "bts-david5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uJ8QDtGgmDFAu4n2QRf1wp9NeStdsJZHGHyEDJkhUBEN6itjw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ycj4J33Kea9Tk9R4MgzZprLg7wtVbWD4YwJ5vdbFoo2msPQnd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 519 - },{ - "name": "bts-gst-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ue6tY7K4d1DvYffAJdaEuSFZ2p65jydevxfpFLHFbvg5QSLwc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88bsqLfNw9jnE4XAyAXSLSmHNNCEMviDTGgPG9ev9ze77pTVwH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5130 - },{ - "name": "bts-limpbusta2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85dzMwJgkxnPptoLH4nUxdVHdWLsctA2xzXteTGrxg6ZTneLcq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JrUa3FvJdtoVZkoxud3fFDzb3nDjskQjAYAVPe1huHQAXZUuz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8815 - },{ - "name": "bts-bts-hi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s1kS3Zmg7wTDEg6DeujqGNTbikryQaMeu2ZrMsqAm9AyvMbxF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51bPgGTsFPqh9asDFabWtS6WE8BtbVdhuThAPxmZP3nUEtGpsM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1880 - },{ - "name": "bts-bts-k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8774CQEdUdv2jgjVqfTVhT89ggLY34ceGMqiWde7K9FP9tJHFo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q7eFanojr1cwusvUhAcFsoDoMXWYLWLKZgGxn4Ab3m4sEzFBj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2159 - },{ - "name": "bts-bnbp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82DYLbvEWcDzQTeame54mKzocs5R6CNXxTo2fMCFEcnPRT5PSM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HPMvB7Vb8TpK8ZXEDCmqKazGNMyBvmf8F1bA5ERTyqrxAGfMN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1448 - },{ - "name": "bts-rantanplan41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mATBpRVpVcKfHkZC4eDpH2eBtaUeGh39RXDM67wGuGHLYkDfi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JpCw9VHXpLxHEpFox1mndaesxVSBs7SS3YtrLzwMjMomHoWQy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 253 - },{ - "name": "bts-steve007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87RYWHYxtTACbKAQ86cBiMLpF7Q7vgpN4VgoQmPnkdT7Yd4UYc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CADNCqd6YVpJC8wdFpHGGKz8Hxtt2tVJHiHiMtgcGtTWtzDqj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28360 - },{ - "name": "bts-btsthehumanfaucet123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8erkSiCDQHfYrtQhL2Nsd7vaYbQYuwf5pSeYPKyPCZEcicx8FS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53k4NwxCntjRpDa2p7DmPyLa7Uu4H3Ggif9r6q2Tx66mQRuKhN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-dind1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R4pSQwTpDoWNbmTHYtAUxyUrsPTYrE4zszPvA2SqxWkhYqmXs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79tyDyqeqLaqkdFtxAqCZhSvVutPaCCUjZXUQYPV5JK95aeNii", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-abcd1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xY5c4aW8vjhuvw7Dga9EEVEMAk7nXGSnGASFBiVTwg5qGyDED", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aRZrDB97GZ87u2AzfGZ8P2NkLgi6PwnBxMpcG4SjhR66KsgXh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357878 - },{ - "name": "bts-dabro1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78gG1qxZtqVLg2h9LqvqKqTN4EDe5k342kCZzMvnpRYsvFwjJJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZDRJdwf4LycGVCrKaYWEPmvQA6YG47S5dqTzVJt9dKvRNmVzn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dskvr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Hv7Hb1J3ToNc2Ldt1gfxARHSDCGaHGLNTjuKhkiBpdZf18u3k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hmPBJjBLYEUHBCbdqSF2ZZagphn4um3AJhjQ1c3hwhP87RBnG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 291039 - },{ - "name": "bts-t112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65bbyx4pGZg27sQ5uqNHfgHquRcuvHu6pcmahLKD1pNf4okUtv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fo95S1GvdGKE7nQc8LtCASyc3o3zuVr713gRaPMMAi6HEucq1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8886 - },{ - "name": "bts-maximus3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Eu2tjH6SPUAeQ167DyrjQzdSdPz5YActvEYP74V3dX9hNLBn6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62D9mhub8shZ4HCNDiLxVxoEGuNff8JwJG83R66ekkYJ9SpgtN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5250 - },{ - "name": "bts-stamen123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ANaKktp7yn4AkRvtE6bryV2iDAnKcEW11JJzZnPcaiwUiFFJ6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pqH5jbDpkWDn26NHEoA7TQ9uf9UAKuXUVmhwL7YtWbwswc2Xd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3537 - },{ - "name": "bts-r2dt2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dJLczXc2mQyXjyu2Gw68nPYBy8bWPcJqD3GjPAm8xfafPNZQZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RcdpivLyD81mk5ybx3ArD2BctpG3VXdXxxsixCWxGnkiPVTZz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-testing-permissions-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST895fisgyg6JhsbDtCWeKYZTzApygBDCN7trurEMtvnH6HRv6Px", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FPimcxpD74iiKBPpTWANYXco9wBycdr9pbbtFn6Z3UEAFPACz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 191 - },{ - "name": "bts-testing-permissions-b", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78wNEkHGgMhzQjkYVe3p5rtGW7pU1vik8Ew9vg8UaWdtkEpKez", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79fwXU8La1Ug5jdocqqxPcAus8h5RrgiqJgFGnS7GCYtJ2ezPv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-testing-permissions-c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73FfqfFXAdqWwvKnkBJB1v2u7DqPsJK2ifTaQ96UWuUj4HYs1Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z91oKtreiKAzQisGrVKJp8B5oJdvjXiqy8BTXzqXuJWdGNPfK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-ciandafe1978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zCux5yBWxWf2GCgn73nwMCF9oDWPRKuv8MtAyu4ta8xb495Kd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZeztfC3GRGh9yrtCS8ZoxHk3oaSP8GszdN1G3FbDUeR4xWpWX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 105329 - },{ - "name": "bts-testing-permissions.burning", - "owner_authority": { - "weight_threshold": 70, - "account_auths": [[ - "bts-testing-permissions-a", - 33 - ],[ - "bts-testing-permissions-b", - 33 - ],[ - "bts-testing-permissions-c", - 33 - ],[ - "bts-testing-permissions.burning", - 70 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 70, - "account_auths": [[ - "bts-testing-permissions.burning", - 70 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 103 - },{ - "name": "bts-krondi-x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5funpCkUzDHoeQCRXRw8nbFSYaAAR3aCoFcNHgHjngo4bmjRPo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jwJuep6c4crBRMRjAxqjXGn4sEEEYZfDVzwG6eArseHBsEjzh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 308573 - },{ - "name": "bts-bts-jiepanxia2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CPbsGCsBTqJYx48QwEccVLonRwbo6gQ4duVceeRrkZenZfeR5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67aoB61CZo1tGMCPnPSZFBbC9xusurXDFavHHgDcyHFVQzxGFz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 264 - },{ - "name": "bts-aen63595", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5e4p2FeTWn2AKqYB2V6oSVLivXZE3RyhbHmWMdXvphL97KE86v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qai8EtpAsZZes5qwPMuqBqw4KJJesK1uvGUPUhi5g5yd7TF6M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 199589 - },{ - "name": "bts-santa1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ymtX4EzeeMts5MeqVGBMTRYdZfBxgYes2WdBtSXMjYKW6Dost", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fd9yteZJRYS4WYv9KDthT6Zmk2Es6mKsLYYhXsgX7DJvxgmT1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 295 - },{ - "name": "bts-katsu411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6juWit8RpzWKr6QhSMEoBebsE3Yh98yzMxyV1oH4atv6j97pNe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Aqw6fD74jJgYQFfEC74TsDhVgK5myRGqr4G4z1DhmEABYGVs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 190250 - },{ - "name": "bts-sjenja1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vkguPiRbKguvAQ9ucmaWdKK38gNsdeZfkMwg87SZBo1HUo7SF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HEtUvfVns2iTr7RMJD5RynnoNMtXKun59i3kLzXLyeHA1ZpyN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60613 - },{ - "name": "bts-bts-cybermon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Mj3kDRJxPFyj3dXL9HhLPbNLy76AvqQbBdQBbqajAg9n9gGgZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wJRRCPBYKVPHmgXLXaef9Pqf3Ch3TgBZKmfC4fmU1wPa3N3Ym", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-aga-aga", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JfJCWZHo2e5VqvjBw86t4VrfyuQ62WxoHTQwY8mdwHSkduw9N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fgjix6foRjy57AgumgSvuP3CR7vEr8MKKob5yighBMDeUTq6j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21189 - },{ - "name": "bts-smokybear1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vUxR4nJZUsfR7uVekuDiFGTfnssSBB53GapFnzuWjYvtq17yS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65W4G3g2DJ5fkYRjo8Af3umvo7vD5xgM9Z8F6GocrQp5g6QzY1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7957 - },{ - "name": "bts-erik89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xViPNSg3muV9vU6fx6CD8Mh7XjPGP8WWg79L3ezPQm6pabnjo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TqB4ERpEDDkmCEXFTKFa5gFFY7oa61GvPZaD3MuXL5TEAvUuT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3680 - },{ - "name": "bts-ccm2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86aeS5xLWxvAXsbPJVAF9MS7zQpjoxste5rXmmSDdFfFp7qs12", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K7YJmP8P7cwEqRQeDX4zEPVFMusScpvfwfCygimmYii3nY9Z2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1532 - },{ - "name": "bts-sbk0420", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ap99zCAncBcF87p994cwKjhR8kahJ8j2EDbbYZzobBLD2SZbK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST695F4LR11XdmWWT84DQKCRD3uU54K2RrvuCp9nc9PjZw5M7Mf9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293507 - },{ - "name": "bts-tiger-help", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i5V6E4EYvDGLTzUqrriJpPrLwj37WfLuUN8zqGycVAQDU3NGe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PaRm5FHL9ndD9qeWnC1SsRqV1CVS4HZoHEszMXAdvAPyD14BT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cram2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62D45QWf1jwnFEmTbqwxMmGq8uTm73jU2UiYCm6eZWDb9BXHGk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XnTCdFhPj1oDbkq8scxvrzy4sCAKh18BGxHJoGJNkbQdXg6GE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-kaizen305", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89ByCbfiHBVEpxLGAKNfW1pTbji94Chx2VfbKS8hATmpi2FCyU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ctTCGLX4P1CU2iXMrkFgW5vpfqdW58bMHXshz956tiA4HBQ59", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 248623 - },{ - "name": "bts-midas-mulligan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST642qMoHTAHrhZZRrQpgji78BLdrcGRrByGn3ofq8u9CryUFywR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST792WJTm29jMFZrmuQRP9QnZm4kfjkGGCF39aGikgV9qPYugU5N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47894 - },{ - "name": "bts-bit-monkey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NHVSQ5iMJM4ZZyGLLyYyGN1GjATX6A3sumHfwBEQii67TcyzF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LHYf2mXCPgJDSjqvzsHmKuLfrpJVHg58HKbsi8N3hyzsjikPj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 581 - },{ - "name": "bts-open-ninja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N2fugG93M699b13kAimMs6SQbMQcWdx2CGPQLxePiU4cUMKjW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zZNxo5A7Ea2v2sDvempiaEVv8ujuPkHXUK95tpSK6jQq1MV9Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10496 - },{ - "name": "bts-grant112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54mTd52jaUVf2G4MuWG9Ev57DDsCSf7GJh3h6X4pmkPFyZqVxp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74MAj6WrQP9XoFdbhyGeKcoHgyMcWwFaSokgiNxsu51hvhdgPC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75176 - },{ - "name": "bts-bond007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RtRYEQGQwnvpjRb2ZjPJsA4zRfxKX9D1ZHE81T8F2XD3t9qE1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WLX8ESSkPestY4vidiX71hRFaC7JX3Aoh59uNzPdDLExvTAP7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379711 - },{ - "name": "bts-frikson6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75bUxAxbBpu2TJXCAAh2FxedEN6wPtoafjPa1f1YM8tyJAL77X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c398oguwGKbtcd7ejwncLVuqSn7TPbRHAaXfUmXRUrqwpJzCm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3931 - },{ - "name": "bts-bsj911", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FWaiwFW41tWud5FLvxUWu6HaKujFbSGuf4wCx7bpgdkguMvSK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88Psx4zNuLcPu2irKBywywW69Wk4exrCWiqUP5AiGUAuxPM9fS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-sergei1999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jyh1Ze4MY2twVdaV9aG1eXw8ZvC1mW8E5xVN7dL3ueNw21xM7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5n9QA7mfkrPR5TGQ4Apqn1Eb8cYGqERVAJ3ir7BXMGfmQNjLsg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bts-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85agF8RqnTkYi9YfNT3z5Etdi1LMgYRZ7gKo8JMGxcFNb9dq1J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ahzqCbqrz8vNc1yxnivvTGu1kJdKyGuGKsV55HecUSmNH4k9a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-pol5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58onpNn7oQgiNNqDn2skpyjBPqHCFALCNYLi4iCuFBU8TSUuiD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76AqPDPFTNfBfh5BQGk5ioGp8wnpBfMqmHtMHqwwFPpNrQMpAb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9934 - },{ - "name": "bts-shan70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JYzEzHyKSUSyuzpRrQo3G5FkBdN9o9ojNLRfKFUf25XtgjUVz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BMZV28Gdi94j8qm1VQjAswkeJYCu1jBZdpfBUfvRr2Jwrc74w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 634 - },{ - "name": "bts-bts18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QPfUjE1Y4EBgbEE5V1zPcMfcwq731AjTNmUBYMGb2sQ5YN9vQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hEA4cnyCTfs3fDQFzb3mPgYoqviccZZ8mrvpE2nzrGKEPB4fr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-figaro380", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fKnVAAKiH5QueajnRfwKVsd1mzTH5fDE7r5NEHNJZ4SvPxJhH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JFsZ6VMQbKoMaPwvfWRYpmC3F7UNpmYi5BtiQXT3Tvv4mfupk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-bts98", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53kyn9uxpaRrJ1hUtwaoZGhZ4pNHkH2dto5tQqEHxmcCa6Z3Xu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m47z3jqLLptmVCVkSGJnVkMY64DEjk5RBS4bumRHJMCVHz4eZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8099018 - },{ - "name": "bts-cryptocurrency3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yZCGrqgXExbbLw5wAqZnkpQTBVMDypxZ7Q8Y8sc7Wp1RHbnb1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dvEbAu1AmabLHicf1gaXPsgs895yzgDJAwK9hYTtoLC76gZLL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52832 - },{ - "name": "bts-kawachi0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5My9PVK7y6k4yrRMjusuHGk3AjtrBGvhMSa7eC1gKPaGqMBN6h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c3FSRJAxfv7ZDbH8UGdbFgDGWhtHLgkKUKnxD5kE5iDnjbPk4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91956 - },{ - "name": "bts-bunkerdex-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r4jiDKtxVKomiSugPLjb145Z2ZQ7yxtEv81WThCivPDSGYt8L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BLobQDKrzotcE32Rm5jBydbsuXjS9WsJH4EeuYCo8AEiPnpEG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187276 - },{ - "name": "bts-so-hei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GPSJ6oiMyMovBfV9wHv8zzerX5y8XLBXHJ6EUPsLsf8Dz5Uhd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FyhR4JizwBsLyemxZahhNwcuRv3uyewx1x3dwEeLL3sdjnbRf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-frikson8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QJax9av8XdDRY2kVb5wy3oS6cEtWjSs2KqzxWbDigfvEedFwe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TVCHrpeKnkGHPCTeN4LEmoYXbPJDYoQBP2i9peKZuuUP2HKdm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5726 - },{ - "name": "bts-jorzh2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7x5WEa3QrtEDoQEvW8mZmWJegNbmnRbMiTXUC6TEYvkHpUGvwk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x7RP4C3FUDhLAbkesavjk1WcSy2ocdxqGdzjYN87hbGzq4yyb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 212 - },{ - "name": "bts-bunkerchainlabs-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tK9hJNrSMF8vK1dprCTt6h4moUoF7p1Ed46mxzrFgNRkHcxPp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h3FmiMd5zCxEU6zzpc1PSoEVXLMdrkid8qFhGs8hk5wV7neis", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14211141 - },{ - "name": "bts-btsvc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zfzbYeGBNWvPCz5CxZmt8GjtzxCp2gdjt33P4FYKfyujBV1tp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AJ6CqarDskqANxvBZNWimv5KrVp1ACwBka3KRe2RNq7kTJ8MR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-thntz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bu9sckSLHPAnpAvfaKnUczPcm82sULYaYjx9HfJvwwmf2ecNe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wUS5qUF2413iMH9SRKw22oJSLhyGxtUb5hQEx6TVqH3HujSWh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-h99t1-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uKqcnVStK6qGGWZZHHJm4KsMGF6Whzabfd9ostv9qc8H2KWPp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UBRtg9noX2S8j2ackYpjZ8ZfH2yNPxxM3vFM4bRLhEzkDJcFV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 380 - },{ - "name": "bts-wawa89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xTg1sSUcjhN8izsXrXzN1rjSDzfhV3TAEUxr8BazHY1usm5Pc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yizVH77SiZnX7uJuSkGwCDcmqw2rFg5DWkoS1whaQn7fCjUAe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39286 - },{ - "name": "bts-hiro1119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qRw4faizRtDRax2zwQ3SDA3q25iFjmr2iXLSVrQULu8MTgGRB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iKWhB79Z6AuxJ3TdrVL6ymc3oERwMRRx48NmVi6ZtrBqBsLBD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 252230 - },{ - "name": "bts-btc-tadakaluri", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YyNPyF2W15AjAoujAtJo1eYdi9tJzhKaebPdx81TJ8orc8E8M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oneR5a238dLaBVC1XD82Vn3VdaVAv7Zk1LAWF37KQaMLNJjB6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-v3-7-70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CNmjJhrhr23BP9Qqtyg3massQUjN7pyMLphh3eoFx2LkVxysQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FZzULDFSAfY11wQ7rxXQjdiVv217SSR54hi2GMSeNhn8vSdyS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-hikaru218", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yr4bTcHHrUHpCNc8Egio8ZiAYaj8gtkcQcc8DTWxFrcs3Fw5P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aAF1cTENXBXZq69b9yKg4WWXRhePgQMvZd91jEwKXBbVppwb5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2457 - },{ - "name": "bts-openbank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Dbwdsxt5gThTwo2DggAsNeqgsfus6ENAMZnWEKfodnaQQBJBZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vswihWvxAUbZEMPhDkMcA33PSLucvTfyzQc9GK1viZ2X178GT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18955 - },{ - "name": "bts-smccullah90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89p1nEHYbneFmC9JDLyHiviJ6RKS3mNd8UVJz4e7kktpHEKHUt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eMon71gC1SwKL2DBRAKM98fKPCNuw8Eg9yDS1cpEXv8GX6dGW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119 - },{ - "name": "bts-jmperez1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST584ctQnXwMDMrXw2xjRTQDpqKDcKCKfA1YneMTnHA5aKuH1oRx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nBqAKYMZU1HRTCyqUka67nffYZz3oHBKXBKUx4kkVXNRxpm87", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1655248 - },{ - "name": "bts-skylark-inc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QHa6EGVNv8DJukvqyqDXtLYVd7oZpeU8SdxaB7BHNDvVTN9QB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o8QTM3HR4kscttqYFoqsy3H8q5fguWr8ZuJPavy1GSZ7nqcpH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9255 - },{ - "name": "bts-jibble007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oaJc1E9ysNppatBwHbUDbdFFY6sN1zQBCiEs1p1HBgTHmcoBT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dDgs8WUMB56bXa3kiTqNJre7WVsgtMq4VvyqZM3R272LsVUoV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-sutor2088", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ykotyKDexCmQXpc9mvWPvwdtJXNy5z5nqchGixTTvLu6KGmNJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75jQxp9rQZ7eRVEEPHxQsjyytbBoHSJTzCtfvn41f7bfQWuYxC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-guaka-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6H7z67C7R1KXiVzJa5KYGjkMxuyAVZcdH8wSy89vkP4MkVXGRh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XMVfb5Zhv6sKzMCVs1UdXRkFWmK2bhoczVYnivbTRyrFUQkNQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-mazainderan-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AHnKBYVaZne6tobfEEE4rd5EiuJuUsd7zkSMWprE27oD2wgxc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55mR2AA8MS67Lw9pQCkvDAn7NZXZMotYqczy4mYUB77vZsHivS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-tassaneenoi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zMGzsMLS2XbZdayarfwqyUFhwtmS2TseRoe1DzHnYpnRWmUjD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q8zzD3uL418MDqeQweJzPe2JtEy89AKdsvzfxHzpN921Q7ffu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-bts-marie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52oHCtRUgM8H5ywuQK5faxr9pBT1FXkL9hRfDpQtHDCnhneFcT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71HTkuQ64NHjSoeaUiW4G1XkGPPjyoKNHZpuhjnQ1k1EeXuGUy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 68 - },{ - "name": "bts-bit23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TKsMS4spLAqhNRdhV3shWreE4NwTnPGFNDpkHtJS2bsp5C85j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qazjKFQjR6ctekDRRFBqdXRtaDqLWQKf7FRcHMXgujLVmQGPy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128 - },{ - "name": "bts-monacoin2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74DRVHbqvxymcXQAe5E8ffWChEJA2J9ws64xRvDo56Xbb3BNFx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZoNfiTUeFBpRE9ddhyRMHk6Kd5ZNMxe46DcqtnNo39HwqdFvj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3895 - },{ - "name": "bts-mmds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pyNdXJWqEeXugCf8JJWXuQWsMHxLMMQxP9WpxhTZpmjPYnQXp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SFExttBYdcVxkEfup8FBAeUHuCXaSGQXsY6ZXtD3Fr3RC3a4N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3972 - },{ - "name": "bts-metafees-buyback", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67wSdn1ubh9G1iLALXZvZbFEE4QNtuxvyMYAd7dp1JjwSYRkf1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xVoYGvP6ySgjmrKhmCjASw2pHtKdgimH2FQq6pMoVFUg1Aphj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1643 - },{ - "name": "bts-greg1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UbtFaAKTT88iNoC3bjwJEd3cAk3HpwqeYmFm89PqaMLX1s71d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zwqzEbqhkPUAVnUHGCJK4DRY6zBB5xJ3co5oaANMdHLkYgmsB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-sic-semper-tyrannis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A7H8abfEJ53nrNELtFuHMsgYzUKANzfqkfsJKRzQwFC8W5feU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tDN2pcUE9nuTLDERbeTLGzPEZTLroAd69oVhwFnF6CoNEXnxh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18587 - },{ - "name": "bts-kra-diav", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZmLu9Avi3BMRbNZ3mBLeJAXzN5k37A22DZEWLdG3K6Jjancsa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7M6hbKT5ER3DHYRWKFKE8pWd4KVgsyD1R58Ym5YJKUFRSuBRq9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4450 - },{ - "name": "bts-g-gonta", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jQUBmBW8jX9HKxqZV3Nco2gPncp8yTkPsevKLpUr16VBKjvGE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7roRj62w99edw7FFo8wm7NQCEdjDmHUyYh4b9P1UtM4jdNQcQL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 82596 - },{ - "name": "bts-crypto4ever", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NpL2AvmMmW5eqd4GJwwMmLs7gmXbie4yDDcx76jhZLmMXM3AF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bzk9yxCav5SsdVYCWhEXqLGmXdBaqQ8NFxnAyu9BsX3325uLu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-bdpkd495", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kX8NiUJYJpUUBZDXKboN13hYEuyKW5D7QpbuLwh3j2vqQ1GkV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61i3jwY5YjRUks3RQ7omHEo11ehCK6jGhnnHDhQY8heywLUWWS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-oosima-hobby1981", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LjzPiT7JsvqRMz1GReahQaE1CPWtdBRqkorPg1W45N6M5kidU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eVMSgRh5jhdFDEZhsG5qed7hfH6ZNFwuLc2BBtuW6YEhvxHkb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-daocr4pto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6624M9LiqUuh8nKv6e4vyA1i8HnPTP8vsKyaU22x44PSUvSAzQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7H3CPtmZ3oFUQUNC6Sb2n9qNt9EQznibiYGS4gonez3yzV7DD8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-asim0613", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST891eM8S8QLQFiiMzCSwC1KuZUk8L8h12QPn35K1hU3ccR5cHGj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TcAsYXJ9esLJPAwY38H4fwq6UrLk4CST7WPCaWXrzabz4S94f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-nikolaj-blom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TPwtGwM44YmaTHtKLquHPsXi64aK6H3R9XRtA5kaaQCPMmQ9C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tEZPKxRbErnaCw2HpynU3BSgSUngUvkszrkLteBLcD88fZoTn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35756 - },{ - "name": "bts-shinya6088", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jskTHxdG7QV4muc21KYihW9GF3R3EThunC8oNFCLm7TND5uh4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uksc3YSoUknokaCsCs2WojnJwUgM4YoLTPnZDWTEGeLRVd2mV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130633 - },{ - "name": "bts-ymnfrkn9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JKL9EqYHU6hbodybdAbb3nmFbaAgL9zBvJYnDcNDBhCuZU5ZA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aoYpaVCCrS7SMr4UvPdFGzG5pqhLGSi624KdJ8XXVSFVb9TFk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-elomex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mCJGbEfekLCeiqJsK1o8jCB5tbb8nqFc8nvYRTUvBxpsfJiri", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nc3K6zjHDZSzkJrrpwAWY25oeQdN9kKUTwgLS38aniz5No3R2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65237 - },{ - "name": "bts-daisuke1272", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wxNuqh8u6Nuh6CPyxxEMNhpZDR5CZwJ8iywbjj79F1TKDqtjg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DkfqhyudKuRPNzTorzysuihCoMhJ9SkuKTDy459ukShCCdg1R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2963 - },{ - "name": "bts-f-krauss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fy8H4i9xKK9wEA4ahMRCT4HyKj14QeMQg5ynajcH3t97hz5A8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LG1r848D6YEkjc7TvLLSZfTN8rS3ZhGE7FqqtZfMpiUbWYPJt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57 - },{ - "name": "bts-nkmr1105", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y2x1pFvtjwWwZpSjrrbhHPcjGubCSjAvHqRrbpX7foyyh5an5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hK5EFnEAZij8y5eEdzX3QuqbzahxtPMV2hSSPETWGfaJuDKFe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-kazutonn88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57cDEo3NjeJFrA4zTtBqFhsXKaPcne26pfNnPGD83fwwyaMVMm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fqKdJqV6gpJEFv2L9Bnz8Q3YUjEmoadaheSboHcqxAS86N9rj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18140 - },{ - "name": "bts-genx-notes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MbK8S3VuZBvAgC5PWKAPnPbAdpyPwTiLAJy9xpocGi669hzKT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DWS5BXNUcCA4wBfnZ4MEskpb3azUUBnKu3TCh1TkAQDugLnrv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6021 - },{ - "name": "bts-genxnotes.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cNPL8BgSePPX2Tvbg2L7ESpCa4rsMNuFn6Yx4UpydbZ7xtP15", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XSC8tdMjnnbZ3djeX8APbd1T4rRY2bUuzNMNGU6awVUKQJxpE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 311 - },{ - "name": "bts-lambda1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a68mJssLBqYe2d8cYk66okacXCJQEq6cSFadK6HduXqDoYBsb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kHeiEHAcn2CuxVB785bq46j3mnrhBTXrKZqcASGEDKtZGrC6k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15231420 - },{ - "name": "bts-bts-guess", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iWwEuiCnvQVqyrYcCKU3NL9kv28R3SsfpJztpiCkmDVZjmLnK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cDdPDcjvZmzzzJF1XiQ7Hkw77QKyKkAFvbSK3zFpQgCRSXKqC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1118 - },{ - "name": "bts-f11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59g1rSWnykcCAnEx142a9WijHBxGQAEaB5DxTwzebi39ThwkKp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RUqBsXrUEHZgyDUbJ3STcb2P99fpSjLxZzWd5MCgowcHmscrZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cryptox23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZSVu3mjfAx8jx5AsUQxXcw4cUA5GffTRnEvw5ns5ZGn8UGEg1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MB1gswiWf37Cjjd8MSM28dii9KcbVNFRiwnGZSD92csUTQjZP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-yuma3000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NfhXA6KGJRQFmgK4iqDryKDNwmbsQ5MbujUat8iH4aCTHegTA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZSjioiyu93vAU9GwStUsiiFo9GdMmKaNqCU1SqZLjv881vff2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-littlebit5040", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a1Qz7tCrgTQJxXJbBgjQamVJWRUxqsP9oSv6Kpf1y3cp7nTD2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cnosuP7j8uBdef35LexBZR1hiS3oyQS72KppBNTjt55MQwXy9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 727 - },{ - "name": "bts-poppinyunhai1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HPvX81x5kyQH6J1hCoocD41xEdPecuWtGLm82s4CdK9KLVg5f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST837SqZ2dpfQQVLdqZmmhvieMfF8EdrT8W2iZgVAjPwFEUWH3XC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143924 - },{ - "name": "bts-bitshares-news", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oBPzxv8s2iyqaK9LCLXw6bT5ULSFPhvjXJH1T97NnAgj92WPW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F3GNp2AJZABaGVE3bKPii2acY5kcoj7nKFP1RA7wpW9akJzq9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 173 - },{ - "name": "bts-li-hua", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LZo79TWU5RnM8NquCMwmYjDEgUT5eRU3bxtXkaPCXeVbrUtFe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g9ngzCmsgEx6D5qhe61jdgjyRDWp9Jd3vfo7MAK78JKULjg6M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1102 - },{ - "name": "bts-hirakata2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LJr2AhTE6k4oYK7tvv2YfZvmWNecaFDUrrSe3jNwh9tsLSPBS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GwoEDJNYpGtr1XvfWNQTKsudNKUTtAAM2Qx4ZL4jgnRHhvjML", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40342 - },{ - "name": "bts-yakuae86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ns1j2jGbLPRiS8Y6UjWPqjVVJEypkNB6VwgwJSh2ahjV9oBJf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VKWa91nMwuRa7Te7xTCyPnLX23JQ17Vtgb9MXBj1Ki7b7WZSb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-itchy-monkey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MfN8Y3gubXFdxtLiVRW3JNzDpAr1PcWKXz2ixZXs33kgp4W1q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66Pgv4tL7BA2SXqfj4rJxvwHeYKdJR96qiViBCQSnXqBtrYwee", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5644 - },{ - "name": "bts-merkabahnk-tutorial", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pV1vDiisNBuPFvsJQsMZWXvB3uVvpzj2PYN8eGTGkymgpBE2K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rH5VCkmdHKEEcgi7rWLdHSSnQSqQBFB348hnb1Jc8svGJgF8w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2530 - },{ - "name": "bts-yukio8388", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HVqQtzogjVZib9jBGH1jXVkNgbZMpMt3r7qFeKqEGnaxH27KR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nc39LKNF6Gh8FxXLqNDSKxPph5kcn3UUNp7c8C4NWNQttUP1w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-travels-asia-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yamqPnec14fTKGkHB8LMyznB5YErXv5HxG4sKEgQFJR6mbZk6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JgHfZVuVCo8hkCkM2q4gog7aiL7Ssh9BppExnpCeAppszGziD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-xndrl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jvd7rKE3ybmA5J3wigLpVDV2KBnPoYfNursqc1tSmzL1NErzY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HUJrrc4DVPv4kghijqV5cakYpheipde7vQutjy7TB84SD9XJL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 340205 - },{ - "name": "bts-nik-kus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST613uU6i1njTuKDPaZ8a5t2bM2pjaaMTrotDhDSv5eudaJT8XFC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6szsbxSNo1TVaue4KCFX1oktgcS7gFVbYrZXyLrWDYjuFDcP13", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1982 - },{ - "name": "bts-credo0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZxZt8z1wZJ4WhFxTTfjJKw66du9WQKHk8eWHZFtt7wg6U6g51", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sS5z2aSv1ta3n5kMYZoCxr5CfLqbjFV5jAFw9cXY1j4fvd4ih", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38 - },{ - "name": "bts-btscx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SvCLD6dmWSza8VMyHiqdhJr1zhj9DPyU32hQTigvVkSGGv5WY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B5syi92uHXK7NHkRBozahG6qwJUVJxrGVrN357ZfDVqKiwmGe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-sharebear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PoADugHBTe3njnE2jbvFQ27kM6RY6KRsBXkD6oRt7vYaQuajf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qMyyu6Gw3KJHxngUBhJFZEUoygwYqwLaGWFGBegLojwyxuyMx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12003 - },{ - "name": "bts-jens68", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MD4ctNtcUSoowMQUrQ82jPLNa2bYLocdYPznHThiahTuPKRG4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67ahZHTjnVjVKoNXzcE4thr3Wb79SjGhPJ34iU5ojbidszaipc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 267 - },{ - "name": "bts-bhumi-om", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75JZmZFU6o9FrzEP9mAsGfvszWj5tMcmNNYXKomi5Y3fVYah3W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BadQFSbnftqGZj6mPYQpT2G2dNxD2oV5nARFTLq9dxBXvk9tT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1975 - },{ - "name": "bts-amy-bitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FBPWSqr9DsTXpoM4G7qMmCzffrX5G8SpL39CCP8LbwPfP5jGH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uLcyBxEjQvimKjtfTuduM6bKztcdUAyp5P1fBpD9GWPpS9Hfs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2930 - },{ - "name": "bts-stnnsbrthn48", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dv5WbvP1H89WkHBZbyuJbHY8coQAEsyE268K8ns5preQpEdmH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LDB8iETHU4StzZfAGxeMoCPdMumpvLGpveCmFT5NRQRfvuuKb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 640416 - },{ - "name": "bts-kickflip360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MSxeyMyarWG4cmyCo626yWDD3turLycRw63dSVE4UpvQRXpL1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UxVaaSZqWpi56RXoxhMb1E8cfZSj5W23tFZTV2SkCxKXdxUWp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3543 - },{ - "name": "bts-le-chuck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jezezPX8mfNTVYZbbD3cDCyG8U1ML37fSbryb4z6RHayDD2FB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68ubbHf2uLegY6fomSJqo1DB18g4A156rHPSoVxeQssZnXotx9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4698 - },{ - "name": "bts-sigruru8388", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VUUAtzgtqWeDo41P7htaLznfFPFw5uJxrrX75cKfmCkCCaBpp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UK14stFCXq3GFjkuGbznmHTgM9JWzN3RjMakUZEfWBDmd76c7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-espresso-roast", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pYXUdy1sKDmwfedDfHcokqCK9Avub1Ya2k9k4a2p9BpQopYQj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PNtZsfxgnHiVN6M8NDabWJoUD4MR9ouT7Nf8uTs9uPxdszPr9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14826 - },{ - "name": "bts-kevin-zheng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RR3bLZZ2QW3o6eDtCJV8TCt1i1Qx8qwPw8rLjWnbBb5xbatbP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hnbcx6U3huBpsFvLuMr7javCULSrysTaZgwRieAXWMktW8KBu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40729 - },{ - "name": "bts-christos-k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BFSaQTeSDADZuWPvNDbv6N5R1yXdrYsnqtDqZ2ePRcrFvi9fZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NVhVF3UyGqzVbefYpAWPEHbtEMcQvRimaDrgMroQJrKwDSV7T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 632 - },{ - "name": "bts-bit-card", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hr3HXHBX9EcCsHMy7phyHqbjGf7cJyN9PYmLx2iZG9aWbfeM8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xH3R1osSXfZTzno2fWekkoax2yMTJ94adjAJf6UvmapAa5FEn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-go-danny-go", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mWHQ2QtDERUzMKNFS4eQd1CDSaPaBnMvdwCcU2pX5yxDYYbUZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72hTgy7rjqrrqupswEAGpsgSXWercFALSr54uQB7MxFGuJrCbo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149189 - },{ - "name": "bts-f111", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rZC178dRvpxtybCLNM6YasFjqts4tfM8dWRd7EE6mekqY8FN7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yzc4FK3PwWRGjGG9A6aHtMTaa7HfU4tJ8snMKHuS1sqrEjkGp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5116657 - },{ - "name": "bts-xiongmao-1214", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L3Bu4AV5XZmyp6f5iK1derr9jDpYMQ7fw39S7RTQcXz8ebsBo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tqSGFdJ95FiT74kkgvxjkGD95kzPMJjzgKCSZXCc5AjWyAiYz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1893 - },{ - "name": "bts-artur-softgrad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zxh3zpGjVvyPkN3GBLFetRuMseXruWSeQ58ChZEiToVntnqmg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ehLvmsEkZLtUwBmTSoLHMCELMwQYC8EUmpcrMKdogG1fyzuZt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 122 - },{ - "name": "bts-ema20gmma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wQ1sVkqmnz4i2G3SDT9qMWGw1r4CWjn49WLNSZZRkKGzDmJuc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CvpYHNsV4P5fx79zXamVAbUBbuUKTjgBjqHFXL7MFj3nRLiTs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-gekko7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AUcztGUvKMnE6QCWDFyP7iYPZr4aaXUUPxnpFgum4C9tvFezn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58ofECHMPXXwAUs6YGkAMwT4rRTXt5GfFQAE7M7WjVe2ojS1s1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86 - },{ - "name": "bts-jdebunt85", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TrFEGtawxTQWBZkb4r6BoGdWVS8b5E5pNeiAHNiqxSN7TKhpv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FtwgZAYDxLAXuRDDLhXHU8hxEKH4Nt28FJtLXtih3MWYfEBqH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 134 - },{ - "name": "bts-theo-goodman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gKR8do6ZnQNUkNiZHG1fdTdLq7yDkhHiVLUwn1xccS1vWLbzy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51o7GBGgP6GGGe1oQYrbTi5BpnhrrYarnD5SLEs1XrzcaUbH4S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-lin-yi-sen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-dx8", - 1 - ],[ - "bts-sm9", - 1 - ] - ], - "key_auths": [[ - "TEST5D7QRFZ1PagMm7jtgeJCzzN7UFwi1iVnRUzsn1QxtKrizD9uC4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-dx8", - 1 - ],[ - "bts-sm9", - 1 - ] - ], - "key_auths": [[ - "TEST8JoPuHbeYroTnKopv3rU5EX9vL5hsWRceiGadjjbuE865yTdYR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 554525 - },{ - "name": "bts-mike-123cog", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g1oW8vDFCErSJ1brnU6vJbWZM1zEz3Et1555VFQHRh5CUMnA1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zreYHi5VMLiVNY1z3DTsepA5L5EF8x9AkDhGA5eMbdJMJF4qn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-yabirgb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mbDMCF1f7sTwsMvmPKiJ4Ay5z2FwjnzcErPd1tRWnSaeaukXc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51B2DwS5rrAX2hgDgkS9TCXSXG78n9UWNgdyRVypVTnbd7zDNe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-brekyrse1f3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HRDeDcFfMmZ2XjiYCLWVACGioNtUpusJyCJRPe94nzfPafcH4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62aptb26D8mxmtCHqvdUpTpeXpf6vz25sibxCuygpkUV2X4ivb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1391 - },{ - "name": "bts-ubicoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MjcA1xBgMJcYoF56pkuts8MVEBgM1LKRUK5AkmXy9QJ89i3LW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fuoKgMnwD7egd1zx53EoFRjn6fxuCSh6rN4oUqhsmZUhVHCq4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 224 - },{ - "name": "bts-bitcoin888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pAME2qvkUWtsvN1mypSPvwPy4bqzygVZcvwG8WiqVxNL9Sg3N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rJNoyqu4vgM6633eBZ16fzpQRiqYtXwTtDLT7nenFsSZXjrLS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-belije061407", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pmU2TZ18xTcYPxAcKfPkkWeRLsK8EoNGfigiS5EG6eZdAoRsk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79o1z1PFGKxbBVPUMwLumKBCKmQNtwZFPkA61AF7qW75sNojrG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4578 - },{ - "name": "bts-altcoin-xyz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yvxU8UryQpcrGAxaDyKMHqkPuuof6QX8LPYaqZqRbq4j2cFf8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hax8ySjssC41LniLmwbR87zms4nr5bSTLi4L2tZN1i4kcQuRZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 123 - },{ - "name": "bts-yvasilt-public", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZKEJvXKVPwPP7qVKtvHKEemjHjTW8q2dxBsfkL2jExgvbkMjh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62qN3ZJ6vhfPJq7DvzqVXQWgkDeLf8ZCs2UhhEKKBxJFjDTELg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22610 - },{ - "name": "bts-shanghai-dragon-cny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VJ6nL7AWUQTzYRRoDxLnSojC42bLb2jZGPnK9AzHjooTRFVGg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o4tMHUZHidUVqYw6shos9FXAjoGLDikJmddpf73jho1j2SAZ7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2970972 - },{ - "name": "bts-srndd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JpbRnFrjBtwgKqa78vFEjFg58ViYiYTHfhxvVEChNWKroMwcj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tymhXXsGgV5qavBBwzmWfAQvPfGvSMuU7HHkxL8EpoJp1TxQr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 385292 - },{ - "name": "bts-bobby1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dSU1DiKijA42Wqiq1fz5HneeWRijQPRHFCJ3R5qhJMzVf5MmP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-malcolmjmr", - 1 - ],[ - "bts-mjmr", - 1 - ] - ], - "key_auths": [[ - "TEST6pvPpWYYZsjRotezT8qSroL9pRoyDa4bVAKMAYLGbsQM1Jgc6h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 299 - },{ - "name": "bts-uiz2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69bqQ7yKf6bRPTkHqczzGSXBfzy5iDJCCfxbnSbhr4DYScc2WZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pb1uqc3CBmGndH6gHEMUYUjeKZzpArSq2TiCK1TufRdmX1ZGo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 680355 - },{ - "name": "bts-nat24han", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f4Lwr2QZN8e2JMYm4FkN28kwGfmSZGykkbChf3i8gRSZzXqnc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D6pPLGgp69vox84E8h9dAKJ5DvMfK2ftsycnnxAehDgZpsVAD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-tkoba99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tHGgFoHmEhrV5oaRhgGVtYcqqfcgiScFnifFfnNw4AfLSCbsx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vE453dK65gbQfrRsH3hstwvPhhScJUSonSPjoXTPTYHn8f7sN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36877 - },{ - "name": "bts-a2z", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eF5Aq4J797NMq3ZcjdPEZGSY9LVB3Fvj8Pe1AgjxRzCmQyrxv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DjZbyrrZ793Hki8vwDtZY6Qv2wzjuna51xBeep7znRAE12pmx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-lightning1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Ka8NAY3GE4MudUgYkdZ3mzfoxzhJvAoSMSXKLh6Gkn1J1WCd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Pjx23LB9XKBNQToFqQS7rFPsmpNV9LvZHpFbznUXsmgjow1hX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301029 - },{ - "name": "bts-h99t3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zq1tkEo6cRQnAQdewXRSgjGfH4ePFCURNtKHANmh2UQvmRL7x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hdjpEDUVBKPVmJsnKadZsy3riuFgmvvtryeT2MfAYpLGcv5XD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3687 - },{ - "name": "bts-airfrance", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xQrrBhrz8oNGAGxm7mav7RuQmjsCgrakXSXc9NQzxsa6emckT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k2VPqbWL1cPzEvTJGxXzxFBvvir6TLqrxUp74Pv3qoPPerYZ8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-big1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xw2rqeWBrapVc5vkvEab2jQDUqBRzdyvRxpcTv68cASR2F1Ck", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MJxwbkt6fK5joLQZzDXBti7YB3sRzBtbByoCZfoo43JqdRtV1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74634 - },{ - "name": "bts-digital-asset-vault", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rpdXh6j9jNHCaSDYADLCSTYmRY8rQyENHAVoTfSJnR8nBs5dD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56VsvoTzsSCWMGP6tLA6hbz1iuY6Eyor1scq4M7RgsT5C4RTSV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 179 - },{ - "name": "bts-tcby1979", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i7qt5ftahyVzY7ib6DfkPYaV7DrfhGxecd56uSnPdvv3vWSit", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zd6yhogiBbwdECF5cY9ZPRXwZWH12fP12HPHf2G1yQoRiGPnA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-ye3-7800", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tmiGtW3Wb7UAfyQzsJj2QJJjRdvkg6upPF4YRRN6p6iJ3SHHM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54yZHkFd2CEpoMPScG4CaRhFB3AphF8Frgb7fQuq6kKxvH5anG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 230 - },{ - "name": "bts-bitcoinvestor-reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o7qBmDYTbAMmGkHe3vSWaBxVLRRpm5t2f8ZPkx6hUNPyEuQQZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GBKmheg3mu56vQT8gpnQ72kjLZHZxLzESudZBt4CknfRj4piG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-kyngaroo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DurQSsBExw8PB66ovK2NMfiCs1u9yr24h1Jd3kpaHJz9mVyRF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EwrHn9rEXJdqC5YjUQ49FrDU1zKawrefd2vSN6BWcW1AfzckX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-rand1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QSvVM1zRhqLesQ59bMeEZ768bPynAYn514yXSQHEAuYArtBgg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mZaXGEnuhYiKfA5RgThBqCopG1XNYfL6s5v2kxhnPULeiBqVr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9732079 - },{ - "name": "bts-j-m-h", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oxA7Agv63U5WBfFqg6iYAcj4CaDFms8FucoLf6WRtZpyfebn4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Zp5e7QyeBNx1pHKMVhdQCm5JYusNHKeZdB4o6LU6bkvC8To8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12541 - },{ - "name": "bts-securem3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VnMmDhQZgULhrufAov6RgEgKAwFP1dKwuKLkTHBUnQu5BZDCa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6d6KF6dijgTW6JdDUJATdkJcgNpWZ3JSkL7wZWeHsEW787Drx7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3047 - },{ - "name": "bts-lander-cold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U7ogjyMbrswY8s2BoDNvKF5tbvfhFnApamVdR6rEKg3kSezcy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZNU1bVk18Ta4F85ERHdWoXqjo2j1YVDx2v39rUWJLd74m6kWo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-nest.ooo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HrysFtbBBy4xWJKxg5M6b8LUUwRo3DkB1BfPhjAgeGqEeLeUE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LUcAQq5uxz1iQphQKGnoccaL5jsJk88iZNEToDUq8iuyP1cRf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161767 - },{ - "name": "bts-longtime.ago", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7choXqfE6g96pTjrVfwzoWxJJkUiW9KshyBogpj7BpJrJSSaEK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Eeh5DcjYshM2sGBPBH4gATg5aKodqx8uW5qxHTsw6TMNMBNBQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 326591 - },{ - "name": "bts-mshades2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59pYAGk8e5vXKPNto1PFz1gVwGvcmcWw7AZV7HAVkzYppJpJmM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wzb5SY25PArcpSR7ibqtsv1QogHU5Bme2i3ZD8MLgqhyUhwt5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6741 - },{ - "name": "bts-thedex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dvKyuH4Ff3mehwC4aU8DUHnhtMVZfnTxJPUDEoEahYgQpN4TZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zkdp7zeu92zhevCqUp5c2FBoX9w8LsKhEsiwKM4vxLKT179im", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3072 - },{ - "name": "bts-sco77ybeee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88YYoVwgqqWNEwcEmgEHwYm9khvtvBkaBfFk7uosxmf325kKML", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hyvx7ZjhzdQPpmhV42tDEogNUeLBxr6WvQL9SvsKKSTQre3nw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11445 - },{ - "name": "bts-b00000008", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vN26pYMLtXaiGwXsr9rs8d9LWLPAF5UFre9uA7rA3Zir46uW3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sCm9fRtaB1ggJUhJPdwbovcVP1BoMTc4s3VvTHwUhzX8HWzvp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-jdramirez05", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rvJMbLu3KjZ96UJ5DL1yHhWNCkAprQMKRmDzvaakoZvEQyQA3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cANMdkp26UL67obSKpzWowXMhvfJpRbzja2nRPo8mV1mB2CbY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-james-b-85", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gDPsq4F6NFSydDC6VjVJNLtu8c7gMSrwiUnfVMvDgD8GFnwDw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U3JriRDR1JfbHubXJTXCkazaywNsiH2xcuGF6dTtrgDXnWhsg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43352 - },{ - "name": "bts-mona-coin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HdzKfgFUfaVm54QKFPHakeLT5fVZtiJyMtt4jZMikdWBtWS6g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yh3xfR5GBKPE6qwKWePUUgZoXtVfD7M7c3sYFzV1HwytYGEyv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8266 - },{ - "name": "bts-chresten1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AMEv4q3w8fCS6NJbkCwZSyaspXGaZuGfQVTSYh4GiJQ9hX8VA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST694Ph3kebYFCmmpK3CxNh8quNBjhgwfPomKcTq3Uk5jng8BGtt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-zhouyong-360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z1LTQ6PN9SRfoexxNRoFPzxFp5U3s5TEY54GXc67aXxVcMeUU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HhfwCToBUd5NMtiWyLyWPaLNPZb8HwvjfwRuATE9K4sAmGWj6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-yasir-ibrahim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zbsN3jHGXFDmRZVfFowDXvaZGqxRCiHrhnJ7TRSXECFvp6gze", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MVYxbv2rUwv9TjvQfHgwRnJLLp9dF8gCQRPciKbXJ553Yjpqu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 647 - },{ - "name": "bts-magnus-staberg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zLSK822GzjcHS3TBgPoX1vGEwzvB9vcRYRyEgXgKYBvGrSrSt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JVo3xQAhkav8Au3jvevevqeE3uzaWsPS7TUzouKHxk3SSKGfp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1887849 - },{ - "name": "bts-farlopa001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mm7Q4GJHcjX62yGkjJT8whx74CZuUdnZKtappZi2dEjaCJehV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72HZjDBZvLYkxCyPq49hQr8iJhQcPWJ5JhAT3HeksotBQQQMTk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3761 - },{ - "name": "bts-charlyshare2006", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GGZh2ekY7z6Q7Dc54CyfmoAtawF4hpPHp9WnVAnXb6tKdybQk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h3DLx1Qiim11HqagLDfSV6GQHVLyk1DS2M1s6kMCEZab1X9CJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1241774 - },{ - "name": "bts-elephant1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8muwebVZnsn6w9N1VBBNixU94FVZLXnQVUdQxyvFtWEMryQDyK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TEKLpMBQ4NoWy9hxUko6vVivUiS5eitC94hoeRrXnmMM2cMLX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts3-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZV6pprxnge16TrZh124dqADpNVzJK479GnD7b33Tmc88AUxMr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85uAxKA87m23BvKzNhhxctoMn17WAkG8zX2DGmeHVFnxeFnFKM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 921 - },{ - "name": "bts-scotcoin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rtp8mzrWhk8vsB2A8VPBq1WiQmq5afA5fA2SJneymUGiCAUsg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jMocS7VERSK1RSLZc2MUiFa9UktZq3aHg3Hawapos2dxuapQ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15722 - },{ - "name": "bts-thdf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jykct1WrV4MfN4FKaCMe1W7ovdPSbwueJQ9jpMmFkjbGgGq3u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Vnis2kFan9RC8N3tbmwqvPpLrmrmeZ3Q7nGsDAEh8DE3YQMyf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-mmt7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UoxcGWek8AzJdGcEDo7JfrAYgcLiX2yyQm4JBU5JdhX1ukZEj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z1G8uWX1SP1dTaU5acUA42eeXYEXqMBmGdGfLrkB8GczTXcnF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bananadium0302", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hSBmr7Pr9CTpkKrUfdX9imuv3pq2sCfPvw4VvKjxs2aCoFN8n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56nuVs519UvvLQwFsdSAxCcy9wo5MrCRxfFYB2yoMzT4fSLTbo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-dc-xo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fr4NSTJdDrp5qYixnUeWP6mcD7RojCtV5UAsw2YQyyf9FgdSU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t2qxYVRDeKs4pZhgsh5L7FdhBKBEkzYfM6Dh61v73Cc6AGJp6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 183133 - },{ - "name": "bts-business-accounting", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fKzSXZc48XhDZNMzQrfNkKpXKqffeZBLmaKJoeG2iJRArzjtX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fbNjeCj71HoaY1eTVBvv7Vpjr5ce4jLvbG6UQH4ML84Rvp8w1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14938 - },{ - "name": "bts-yippee444", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5knpVxAH2e3Hv6sg6U6akzqZmBKpUAqgE4ozMGgcSqtZt4ooyy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZsXQbUhor3rMPqoFdmmn5QxCLUgyR94pJLj7iib2RThtsXZhE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-mister-qbits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YAJD22nurEWqb33h2gn97JSRKz3tfrUzg2HwEjXRMQ7ozXfaH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QsuPbkLEhdDFc2fbWYFon3s9Ltus2K5zpJqGjxPRxMRfjrTaH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4684 - },{ - "name": "bts-hakuku-fx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fFNGhyAt8eJ44hMqGyqG2xULYdYv6N1Ck2DyUCpLbs9mhH38z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dmViy56C4KNjSkAN5JorZLrmt2uTmjV3f7Jh5JzVN1SEzkJuh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-bts-r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZU6J678kid6tyZNmX5zacTALca7AZ81xAZrG8vAvtkcsv2qpp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yDjqjsf4zQtwW6TX86Royb3WNbHpDMhZV6Jwn1vWB86WKJeyC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-ah2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ECQ8aJyLY7kUQ28UkPUdFnpdGjPTkYiU3yjUgohSauQbx58Pg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z2tJzUoaNa1ZRRrDkbzqjmdaGCZWPxEtVzLuZGhBRhUF5had7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-bit-investor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nAhioFTE6Mwco1SHVP1T2Ppj8yjmDMkS8gtXGjKtZNiHsWkVS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cVv3Ywt9PQnfdejaAmDDSZvieXSzNaUniX4c7nC1CoK37ukQv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2408171 - },{ - "name": "bts-erik1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jgF7wabiefx8pkDcJk6c3wEs3EYjwcRcjijdHJzEVGsngwdCr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nqVp2398XsWRT3wJfEapJz5yqsf8D6ELwistJTyQizfpgUh5j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8638 - },{ - "name": "bts-zy360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jVxuzxdzk8w3Gxy9eCk2rXCjRZjKP8EViUYDyfB813x9TCPnn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xmE6JkMKBpnGtTdpzEHs9aEZMykyWqbaAmo53Q4QQaR3Qb6CA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20678091 - },{ - "name": "bts-caribi2e", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57MHoyyWpDvrL2GgeYp773WhvDgPxFkVCAgB2V3XxaqQuoyK9o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ib5Qe93SknW9bhEJPqVG3pNff5wWhVWhuRjBPYvZrmbwGioUz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161451 - },{ - "name": "bts-yutaka-matsumoto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oz7ypCcTyd1JFQ1HDqPh95TfumCubCWyrFvpZH2B5L3uujVcK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73TGKjUR7o2tmEKt9NmUF9GUBhQ2YMgAkpeUCbmAwDB3Ccz9QN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 114 - },{ - "name": "bts-will7am", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pMvBVKFFA2VMdfQ979Tpyq6QSicVtmW3AcLbTN9T1VujhkS4C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BhENvqyECn7weWYyjGMgPz7ykwBauFTLszYUnAwcHjxL2VH37", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3493 - },{ - "name": "bts-funny-bear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mrnJCnKNwSNT4Ava4Z7qXkihxxEiuvF9RUPxnCcktBM5khCYg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rDiQdJ1GgwHuD9SkVrAPmPvJFUCodsPMsvJKiuhXHtdrJ35cU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3511 - },{ - "name": "bts-zcz-13694105317", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MSyZjbBmj9PeSsnV334ZBsrNHVq6h1Rq82nhLr59GiftMN4K6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6soYK7B9gMoZVccPj2WS4LCbXkr2keXCP1k1YREBymvmeabqSg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 207 - },{ - "name": "bts-zandy-m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Gg1u5apiZARDzUqmrH7k5Kpat4nmkb3xKaxDNa4MRzEUPTGix", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c8KseKttydb9ony7WbBGhNgQD4B86w4hirSds9nAnmSX1b9TX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5796 - },{ - "name": "bts-lukman83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bKvMdPu1UDRMcsDb9Hj8PoAr8vaP1fweiv42Cc9ytH6dYkftw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oVGLUQWw64sGQX7coQB3fMnDX6iGBmxkmeSVigSmyeWMHboWF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-xdbx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tUMdSyQWDKXsZYTAPt251aZbS2Dqh1Eui7qLYcAj323pU9ryy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67JFpam6bdYdtHA3N8TwwgwQ1aiopGMwKfYXhhvwDWp2E4qqmg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1411 - },{ - "name": "bts-zhao8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qj2XD7pBZ98frbMkpKL8hC7Xn5WSSVwaHiDXy6adKfiQNUTxX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BbbjDLXMCFWUsHY8r1Dg7B6Vu5QfvHoJFK8xHH5Qge7G72sg5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203550 - },{ - "name": "bts-bleach101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CRBrstg53CaQ7oD11xDDXTeKA7VtG2EyUKNKyXUeetWnag28w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zNAoJiemQp9ZECFeFpZcu5ZfKP8Vz31gUU3vkKe28RK9vhZnX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 711 - },{ - "name": "bts-oli-bd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FTLVjRpYBLnu1uZX4My3rbYbqNffNK9uCnVpSKc9V5WBw7J23", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fpEvAGS6MnzXYeu2UnMMbPj2zqc3Dip3wxX8sb8C3GafuCDjr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5681 - },{ - "name": "bts-adamkokesh33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GnzHF1ETgf9Kd9SpEF4N79Abja56rgfiCynvBbQTRcgKBQ5Xx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nRaLzqdeas1bgPj4Zf8mKcfhf5LM14KyWgZVfkbzykgKtRcea", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48917 - },{ - "name": "bts-aduy11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JSjUaTXMq31Vz81yAYyUVV241ojhnFaf11JGHUk83WT9N2j9r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CY3RASVjdAdkrXbWgyA43aoWANcGNySN8JWUgPCMZ9zT2p7rK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-random-account", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7H8urY9yUzJ5dKL9Woyp7yt4Hm9pD562HJ4XP3hhepesqL8iqR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TMT3u3dYUV1yNHfBCUbQXgW4rqWkY4LoPekJfR8HC7aNyrUF4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 251326 - },{ - "name": "bts-omitfpz1984", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VFExrXh963QyzMhH2b1UeMMHELtRtThZTBnPdzQ3UXPaGPJdG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u5qwkuz4A4UZYUAMv1eQW4BcBRT3Kx76xh62fpdQmvnNVw4Xv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-mcstudio1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RC2tXJo12N7yAvXqKKYG7agDumiuivDN4HFbuyvuxYJcSUaKH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89LxYESPdU5QDf7UVrGKpAHQMew97M4rgUh4GiGaa554yEnvPJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7893 - },{ - "name": "bts-kool-crypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73bcDrSFZRQFddAuFTmGDCmK7RKB26eDW4gvio3LFpXZ2Ae548", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gXpV8DDUftRZgpjrxGw1PDb7BfL2a7bocp1D72yWukUWbXfxB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7932 - },{ - "name": "bts-doubtful13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WBcZZWCpq7RT6NzVrRuvxoq7aqMf7noUu6uAjNHPyY2ctjHNG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aLie2gq7h8X6q64umFqSZUTpnKoaCsuRFY4u4Dk13ASoiPGwK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 271369 - },{ - "name": "bts-transwiser-mpaadmin", - "owner_authority": { - "weight_threshold": 39, - "account_auths": [[ - "bts-baozi", - 15 - ],[ - "bts-bitcrab", - 30 - ],[ - "bts-harvey-xts", - 10 - ] - ], - "key_auths": [[ - "TEST74yC89Wh5kCHKtsbi6HBiM27eRsD2oqiwRuxTk36nethV7KMk4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bitcrab", - 1 - ] - ], - "key_auths": [[ - "TEST6yXKhHWTi1Xtf3Fcd1SL8jmVysgpfGPACY6Py7qs2RpZAYTonM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3265 - },{ - "name": "bts-piotr86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75K2qeso8AntLHYUGNM9EndnD4rPWc739vN5N3GDFRBeC5wtYo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KW5zegPUMUcUUGASsQuvVsVruxgLu3n3YAT9UbS7gnRp8ngKu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2174 - },{ - "name": "bts-deltron-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6h5vCy4XVHpc2if6br9uT2isE1xP6CAGb9No6VVp5VFYjHRNda", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p8pzV35vH8r6rxk534b56mMX8by69GsNdn1yXQN62MFVZaLyA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-h-badger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51EEmqxZU3A3JwtfA3bQNWTcKFBnxfWSPUSZAyhbgxKWUGoLdJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5o2L3fJYqAPdMFGdqp13eGhE4CPnPBRpoVHqLveHbKMrwRHEev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76609 - },{ - "name": "bts-bigbig-bank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Gi5ZnE5RTX7uHCtv1PjW2RBq83jtBMzh8PUHLpSJ4FfgN9MvS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QtXaNCj4xQWPQ9UCbpDKj8XvtkepvofrEC3H2NbNLXaQMebMu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 352271 - },{ - "name": "bts-bitcoiner-119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61pfP1ykN9UtbxexDuWkiTGsRkGifv2Jw65Rxt8EBFHfGADnmR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hrZp1RgYyRYP4wG1nLwXNHtuhzD8U1NCm9MadjF7TyzXFmSBY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-axlear2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fhq6z3hB1H9XsrHqMvcrDDdJ3W533kmugWVNyhG9dGtSEzq2T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vzkh6TxxgcXCQUQUzh6dL8Ui2rQV2bNSpccpBgTuroWEvNLub", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9010 - },{ - "name": "bts-qq1579523171", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74tvXwk2p9ejiPN1EiAAeoQwdwJCfqytXbkK17fpnc8gcAx5P7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xrpwQDCiRDFtqhxy5UTCxXCF1a5ZKFzGsDxj1tBMmPBhhFXAn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-sturner3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TmfBhNbrsGmgeJcZ411Uc1yrfFgs4kyizMLWyFWA9QLfQG8Jo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YywKw4YBUw9vohmfT9F6roieH9iusK9Ln8xvL1uPoYUkQGvQY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 210333 - },{ - "name": "bts-blockchainfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Md2JRkFGfs9vejveMkU5Hs8LW9SHHBpoJFepGNcuv3DtjADxb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ss1y1HirsJ5cqGKPeuewA4ejnVTMogyDooYbJhJQg42YhSC3g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7585749 - },{ - "name": "bts-lacroix12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zkG2KBNwVJUEc52RodykHZV7em4xPccmuazawZEtnSak2CQ4W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yQC4iDU8kiDKtdHohtQ4jRnNmytzLTmgSxQsvrbmQjVgRuzpJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 121 - },{ - "name": "bts-pampelmousse123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69ZpQZK7dAPbGzJkY8k7rtetwBJVdpZFMAdYob6eWcVuSgq7hM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m2vgemHuv6vmPpbiw2TRWQaNRDdyWTKsUbXtUhsfxzToeMCod", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1051 - },{ - "name": "bts-gjg5112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fMPoqb2W1jBxMZmQxiF9kcG7ettS4Zyi27zppHaFV8zPfaFZ2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HcXdpkwxN2vLnp2WtJtxoAq2x7mMdSH5Tjc2DCnA3Hoe3kE6v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11253 - },{ - "name": "bts-peermit-reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CoURH1AJWy9bCz4eGCxfBf2biANEMJ6N6cBu51gfQdospQGPX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ahwcyF5A9MFa86M6kqJTi7w89LA2UE6bo1Ueh2RrYqzBQ24dk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1893 - },{ - "name": "bts-secured-by-peermit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yVxkvM2TNMwgK4aZ1ZLhiuid28jLFphqKkNytpgtVmrjtWmuS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZuYxrLmBCxrUM26bY122iEfQ2xZ6vumT4LtWJKJ7754K6gGJM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3670 - },{ - "name": "bts-anils4hin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7G6VsGveR65md5w5U7aKAKFFDWTANYBFY1rQzpTpiMw7siRpie", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XjdcM42GUkZ9mJypcxxdc7mfPTHvZRQNTmVEXyZcqaEaZX16J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-btsjl20151212", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zY2BMCRT9u4H8cQL2R9Exo1BUiWboQUXYEbb1fAfjr7DqNTvB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5geAoinu5pdPbXzVdbXmD6ZKTt5Vw5a2SzvLtRHM837wFamkbo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-mindaugo20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ukdid3p9JsbpWDLGdHdbUigG5NsTBDd8LEKqSdgn1fK5pVgSY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7p44XS9RizVvSDDyHjKsaVCHUcYRmqL2bqwp6jRz35cAJBo5bs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-m-brain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CofyQEcFV45bALUs2xafMmT18AxoKQZgu5pN2imkEtGtwPJtE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GmLcX3kGqvDchA3Vjqw5sPeJfAM3DbtLGqzeh6Appv4Zi3jch", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 294 - },{ - "name": "bts-tandav-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D6748uTbnsCn4HLgaRrFLodzKgQ84zfBKFXQeBJ12PVKuXfje", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TpHUnzQDFb1AzQ6aV2TKai6R2RkJ3psNw2VVQJ9ivkP7SGuAB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94383 - },{ - "name": "bts-jrpc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K55vXCiMLn5CeimC9zCQEqXQTZUMmUc7Y1vzgf7Gq2tiWTKbC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h9uvtnhij1tGLTKRD54NrRKpQpvsSRqnnWFzeybCntEDSDNMw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7656 - },{ - "name": "bts-bitrex-deposit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZJTnWQn9vpP7T8d3Eb1DXZ5QRr2gZhoHHf9PUSZBQBKHwgqyG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST531nuka6L9viYca5kBnxisgjHCt9Jv8PqmHehZwmyMkQmTYYG4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79396 - },{ - "name": "bts-peermit-beta-reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ftb6BCWwGekCtvMbmV5aUug3XBNGisFrLED9xjWCyiombaxx8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8afVLZFVHtt4YbvA5remeT9YGLZdP4sD4zRLhYAJi3DcTU4Tgw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-bitsharas2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yp3tzB5Cfwv5AV3PnHAREupoL4ydosAThvt2mHZuuZJvzSfNq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VuWmvTtBC2QT96vJdaeMihiyg4NNc5kkMdU2q35n8vVK6avGh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13333 - },{ - "name": "bts-bit-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BzqWq4s15oqprVsKkoC5tfJZwp2Z1siqc7Wkfi8qXEjXii4DW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y8oZzU3knA1ABrfsU2J6Z28Px58RnsVJ7Ayo5bUKp1cikENeo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2766016 - },{ - "name": "bts-mchlsprll", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fAou6eGTBjznnJg48quHzpzd5ng17tm3sLGp2cXAFxmQ2Msrp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CsborVQYKVo6YyW8c9CTznijXCem9xYAKW63wCwv5fx2Gr76w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1693 - },{ - "name": "bts-captaincoin99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56TtCk7mPzNicRBwmy9LFekYZAcSoB33qbWHiHBiF6zuDs89Lz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81TUbHcHZPQYPzTWgZFuiKuuTXsJwSygd2RZRNMmNt7ooMiwdv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-ingenesist-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pWVHHDGcmHf8sXQdSShbMC5L61NvBPJm8ANyB8KqDDGbgJGDF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63hiksEBmesG7Y8LdVNLKJiJc6KEcgBA8YAHfDA3y8v48Cp2nj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3911 - },{ - "name": "bts-fabian-secured", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cbJFGWWsuF29vKNKRNeZ2uhhztFca6cKynRiKe58VJ8AavHw1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-secured-by-peermit", - 1 - ],[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 37627 - },{ - "name": "bts-hk888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST684Q9cga3Wmx1C2Vx8DjFERZXvNx6e9BM7g71QHR9V4H3pvSgA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7p9sDsrEopBNkKeYoNEvewsPjYMR1qmrsCyhCBVk4dgsd9izd8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-abit-secured", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NLcZJzqq3mvKfcqoN52ainajDckyMp5SYRgzicfbHD6u587ib", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-abit", - 1 - ],[ - "bts-secured-by-peermit", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 3759 - },{ - "name": "bts-riverhead-pre2fa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5axHM4zKAx2hDjhATyHzuRtaCtVMWHXW2KVZeYL2AGAGU9vvwE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hgpiWFrbsSjJxiTBfhNhFQzpbapxkdUtkdMxLC9GkXarhDKfo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 729 - },{ - "name": "bts-riverhead-pre2fa-secured", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5axHM4zKAx2hDjhATyHzuRtaCtVMWHXW2KVZeYL2AGAGU9vvwE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-riverhead-pre2fa", - 1 - ],[ - "bts-secured-by-peermit", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 1730 - },{ - "name": "bts-ne-jt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ipcpNxiY7HtYvS88ZDpBWrtXACQLmmNpTztdSpR6HnHiegR1h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zqpe4FwpAUZjunnAqyDcgU7svHFoxXbkYdnGBCrRcjSXsUKFr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1257 - },{ - "name": "bts-bts-peshan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83ERqYfq4z4ep2Wmd7K4H6fpVV5X1tkKX1Su6RufGnnWkirzj9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8koUhpvDA7DG5sc1HpgHnsVmYwCmbHSQ4m7esWRR2NZdnzcE4H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-jstp1210", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74mVQu3xg9jvf5Zsry9G8uLCd3cQp6yjF8ecM2zSgEQhqzf4BH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yZBEFv1LzfV7kPA35cpjLqNvD66xQxJ5eWuHeG4ZqHqeTAF4M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 953 - },{ - "name": "bts-bango-matic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b6hvcKHyaLKPG6rkxjVA4wEZRPywaygLhr5AokcK4LGAg7Uv2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PMh6zN4Q8dYA2esWFNJrizDT2v5WSm5esWhpqqCSLn8oPfSxy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 254 - },{ - "name": "bts-abit-2fa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZXKpv7tvLfLASiPgarWJrLqjeRKmdAdcepKJXnYacPfa8xfYW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BrhsaNxtUH7axevAqN5acd3T8Hh3ThY8JpLGUsmysZiQWy214", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1929 - },{ - "name": "bts-fbcmch99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fKfD5njzc1L33BqxvRDFhtGJn17Q5GY61TtWWssx2cSRQBgjM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UjtrEhbUreipXnSAYRxC98uQCWH6jdheHdeQdsKJcRASfx1ut", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 202513 - },{ - "name": "bts-a910995202qqcom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wVLk6WnKsrnU7yfPTeiQa94veaiRSQgVfBgt6dADfyTU1BSdk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5n7x3vWXbjhmvG9eJAuwLCeyP6ounBqzYXfv8jupDSANQjipRF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-drdd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ze1qizbHG8mF8hxGnrmTzoo3sP7EocPJpUoLu7QNKi94XzffW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HKJzkkfyCZ7eSkQpsMETHW3N7zJTP6c76e4dFagZhzDFe7jTB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6987315 - },{ - "name": "bts-up360247", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WBhhSrWDVN5sVPaVJCRLbEDNyWU5MJmJQW69dm5ZDMxRayKA9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78mAcvDPRbgsDsDLzRsnJYDRtoknpZJA9iDjCodG8mgz34BYer", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564 - },{ - "name": "bts-edmunds1973", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cKnjGPMh5KigmS9bi5mYX5UFXnBobLrqTvkXjwGd3k6A4yZas", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wh7a2h1d11r2i4b7rH9NuJbVtYY4mtxx8KkKtuLfiSv5Dwumh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 211 - },{ - "name": "bts-tloze", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Tidfx7TgZMVPpADJfUQiXf8nBeBc41npJHQjEH6adGeEtU55i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FkxwowTbNGkeDDntJ2F9x1kaAnzMWhrwokkxw3wYDn4jWGvzL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2257 - },{ - "name": "bts-keysersooze17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NHWFYQLQJnf2UrKf69UmSVWLxtHz98uByeVZG8MZftuyrnzCE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MsYNUoqUmvQcJVnBcmwxKVQqBkCoe6hFfTPLfkKPf6EdPEE51", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-h37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qTDxRC8wZJdxZ8h9aNwL6czATDjNF8LZEWvkz1LLPEkwTDH6f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83SdMwXUy8MY7BE8HFMCjzwySPqHWExhyL3XKfSCdXFpwjcWKE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17988140 - },{ - "name": "bts-sq5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WkTYrvoMTmnDv2R3odAhRSUa9Hr4TCxkQLfDSxsVE9TfezPqk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yLNYipnceEi8MuhhZcVWg8dY2UE3tJrkU1kHVoakF9ni9P22E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2907 - },{ - "name": "bts-gamebet-gg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ygdwv2ptZiFNFaSLoFfdw19Pi5V6g5MbuykBTRk96F2eaJsFg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yq9zXLYG1BZG2wKG1Lp8kXZxHhC6Bp6ECgRSvKyyRVPiS9NwX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1052 - },{ - "name": "bts-hypercube-studios", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83JE88ViRjuQHqwpbL1hqe4b4a7cBL6sTXZRFV6puqAUw46RWF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86kfMujjU4smhJK4WzdCVwsv7L7DZtSExi1aM5VreevgxrosG1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-abit-2fa-secured", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZXKpv7tvLfLASiPgarWJrLqjeRKmdAdcepKJXnYacPfa8xfYW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-abit-2fa", - 1 - ],[ - "bts-secured-by-peermit", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-announce", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST597pL2vdKN2o3FkbQ6PkqDtt3KVK4WXuthZTG8yufERX24DJAN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kX9CBWkNwRss9mgyZvhMDWKcLGJXTx3TSUjdpnTcqnJxcMZVK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6679 - },{ - "name": "bts-puppies-secured", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XkPAWem4L2W1CRTaTo73QxEcK9XvmNmCEyMaxpXtn35QGpB55", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-puppies", - 1 - ],[ - "bts-secured-by-peermit", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 42985 - },{ - "name": "bts-summer-tiger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UQZQgzE5agJTkhu9UESRXkx8r7zpvzBLJbPnFzGWZAUWibudk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5A1b6oqGwCBLsaoBfg7DFBxmaycu4EE86txn3SdS4j3TbRSVNQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108783 - },{ - "name": "bts-borakan1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hSrQNpE6iEEsEmke4QPPvg6dagtmY6QCrSMqJorWkvyTL3zhT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wwdDigheBcMTWXi7sHA6BFTdiVdm4ueBKwyDbgj1sC8UVPr1V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-btxwc201512", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RXUARceo7F4axwBrfamw7azhDqaKG3JQ38Eeb428QJ1bVYtDG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TaZnaSqLjHBeF9wicDASyA9qpFvmgLRkf39H3xaHyeJSWAirm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-yt-thedailydecrypt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MwS5gVQ3hnGHKTtXriryMvgiWjzJ5juVPgsLFaXNMR1YqDjjo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rrahcv2ZJXgSVjCVPSo15rYUFH2f6Mv5hPTKkhJJxTJ3agPVv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-d3adh3ad.master1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SDPo17e5urJFkUZXHixcNCCt3xRU3tKU1xZRdoc9ZvEbB8TDs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hi7QJ1XVYb2oZfXEeaqK1Rk6Hqwb3Trs2oFyh6ZzucGFShs3o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gamebet-76561198269211242", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56udzjTQnsiHie6nFE6We6e3c8vT9k1PFSUTqanERTmGXt21gb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76oKEujQjiHJQ8B41Pv8KjszKzwYM2Hy9Zyafhb2gTLeiBQCgQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 443 - },{ - "name": "bts-youmao12541", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F7oL7JxKpsU9wMFzSpC6uptzByDYq1ws8MYEUppg1Pf8B9eVn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kCGFQnPgEEJocWBU36vAVBhaKtLoHB42Bta8f6wnyVbJTGC1S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 372 - },{ - "name": "bts-xlx123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jMHER6LvjZuq5BejY97irfBoRF54qp8zMtPti7eYQSFGZLFJx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89hopKAKaZs3sf4G699HhEQsJNWV964QevjsZjZZzmAjzEQ7o1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-tom-cat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66cwac95Ctt9UVX96pcypwVQfzrbBaMNQmF1DQVaJfosUabsiP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SomZznnCNzKTqUEh2kHjPgbpUjdpD3sqLULrtCawFVt9ZvbPG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66619 - },{ - "name": "bts-doge-king", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62SquUspXrSYW7NNj1bcY78FjVzS5S6G9kKRMYWJSENmJ9uKHg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HL49HQUN6zSkQ8gXg8QakoWTshFSsdtPPY1GBCgAkEkD48chP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bts.tips", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67qfGJAWtyibeMMkas5uHAwZ2mFydGkW1RzAMxzUPHfrXMhYx5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71wM57AkeA1T3msyyKq3g3VH8Sgpo1griG4DtKuKf946TnKRwV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32120 - },{ - "name": "bts-aurel77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8G4V2HRWywKjdykQm9yriG1G57GjJAxGkjdbRxsDppdYkPzFsU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63tNumeMNNzLanRp2oQaZbvQBQCBNh8SQheJ4MzAdTrYXVcvo8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-bobodateme1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6npcXcouVKP7AuM5mV6Uw2sos45ckB1twMkiYqNHPa3TtL3Rty", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M6sohAWf164LFH5GrMjo5oLSv3aSbnXLHfZjUnVbyMnyxpQrG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bts-muller25", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51hpKoWq4wHzXf1EcMFrCYoJcmpodpqog3mKqcGWuBnZtDBiKi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KTVL73YyXrvonmrcS6cDGpd3DCBKkLXZscMnLSRvQ9cn37fEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104 - },{ - "name": "bts-bitcash1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JD9GFA9Lzc2ZN5bQtRstggKLUJL3G1BgcCNSysk5yY9UMAxNu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73PMDGifwfiRC3754EiFKVUb8YjjYtewNAJuS7p3mxEGRViBmq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 224392 - },{ - "name": "bts-nemo-x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GU2Zz68GgzP5iD6bNd7sCD1imxMnWvo2Zt2uP6F1S79gp6gqZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6potrmMDYrLAua7zMxdviKHdJsuyHnK9NPFkHy1dvNoHX1GMvx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1772602 - },{ - "name": "bts-cjjp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63BE6RvtEHX6dYwwkTw2MLLg2sfVv7mDamvzQcHAVu5KNpF6Vu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tWRcLJxQtFciimwMfRdNmfzwbL8gUzBTVtoUMJayPb9dJ2D3L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 367 - },{ - "name": "bts-robert-chernish", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iGSGD3inTBYb5zXfYtdT6t6bQyrethrHNHjz544FMPYLCk7dS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TFJ5NnqdjcmgVJ4aCkQHd3QF4aWw39y9cWoLEHApMLF2HoCm2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39248 - },{ - "name": "bts-bi151961", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DH28YB5MukMGeYRXJxcpUfdy4FFD5s1fr537qdYHHzD1QBxqg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W3ueYGjAu4vRHziYBmKNUVjFEHXM6eRiaDq6N89nYGnCZhZhT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22871 - },{ - "name": "bts-saqib-munir", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kZfVcMdmCF3FtDcTHUd2fEDupV2WdjQZvE4xsyeWPv4HNTHYy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6shEZhWtToaczBv9CNmqoRUcUK2e18Lqd9omLpcoDzzKjiPGsm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1694 - },{ - "name": "bts-ranc4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XxxPpz2cnzJgAyxxWL5iwB1sgk5RJXXEM8FBQ1Dn7pai11CcY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fdkCDHyTD1eLfYcnNHvPAbqm1U1eSrfGEfZGCvyFDDGodUqJE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26177 - },{ - "name": "bts-oblomov1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oFNLaZStRxwefCjSCoHwYQTPPdw1nGXrCpxtwTXiLRyaa3jmD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xkch1wKfdRS1P1Y67DU4JHcf4Br4PQSexJ6Nr1UTeoKMDbGdj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564 - },{ - "name": "bts-matt3i", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RpQ59oafMaES55K2LPeN4P6GiZHD9KvQRVYoWKgAXT44q1as8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TzkhiazswyntgLd94RdzCXqhN9MViLorv1vY3WN7jgjf3rA56", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bob-the-socks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dS8ExBa5V1u7zRHGj29PaMpBKLod5ZVEMnumEwLcEVv1VjUdE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AUeniVdM8ykkzxpTv1oh4fdL98ScfUiufpWWzZe1MtPtiokTC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15630 - },{ - "name": "bts-azazel7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m64qAin5wuKdDQkJPcaVYbCpH8jLeF6UpaUAGaatRgUQNdYNv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rCJb16DWjgASRwoaMy3nKWKyBNru13jQsJbjzzD63dpExkhoe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 936 - },{ - "name": "bts-arturdavidyan1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73YZ2ZCkAwdrdykN6UHQ9AZmzNeZ3inKGC8hPTvaJ1HLpB7iSf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ezYMWKLhQvbDmaFyX5qrLZHGMiaT9Ze241NCgRFq3J1Ar8y3D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-lsy-yhe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qD1jjZ1uuKVQQ6y8i7ZCHfwbPFcvUz4qDqppKtT2DycDGLYXp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791ja7nQgcWz3ug2kKKyt2DsP3H6isK7gDJTZaMnh7XM1UqW2M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ve-18aa-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7txp6VczNLkoYoNDmxJLZ9E4uWf9qEyutXwTZLEFuKAgMnJAgL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ppfSCYaTMWj6enJ5aH9KZdhLekgjUiNieGLJF1FCkDK6YNAwn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3484 - },{ - "name": "bts-el34l4m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kCbVoRbGJAPF741BsBMQUSWn9fcAdZFPFwDXA5xEiamH3nECC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hjJbP5qqSch8XqYYPuHoxu8RaSNYvLrZUAGbzF3xxCQp5JYeh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 117879 - },{ - "name": "bts-coremedia-info", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56dPXPMYU3dxBQcDkhddmpshPzdecs71P62NymAU9WL3gCA6Gh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JDfJpWt5n9wwjrorRvpFtxT5i2LL4g58K5UTZH3hZehBydBy2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-vorlogur1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58QvQUojYXZjDSPrg6FHDWTxGHcHP4s4PmNAbT6EZHNvByENxp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST749kAJHGrhf29Egt8D7eHgAr5gM7Yz22Don7BZs5jiLGtBzRWo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-anne-james-bits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79YywUqB5yDtJ2q29c2qQuSfzQoYVjEJzLVcj8UirqHSwhTKAt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RNkSWfncAzvUswDp7hjKt93ZX9YxR5qDkqD6QPKqwa3a786sY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6901 - },{ - "name": "bts-luke.f", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71gjkzoi3UpDds5empUheXj7ES7BX1Gj1yP8CbzeDQwGuWJb46", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62jgQoHeCxVd7xaTn7Hk7MiWSgqxbWfW23sKMwiVyWQirXGwfJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-lisa.c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XTKAzZN63gmsLaxC6hZMehyCGeid2cozHyKaiAHYEUoBCs2dx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s4r2HjNkHgK1F9ZchjbA5MNRhcsv3i2tsFKmTeThQFt9VPBJ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628 - },{ - "name": "bts-guillermo1987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51gWu2kYKxXAqQFvv6MVc6Hmzf2QMhxYYVjjaZJF7GwX4Ffrzh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qrv7hamTc46LC35CNcukzKyquq5n1HgSQh1gEufa6U7yfZc9F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-jack-walk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W3SgS8aAEJegYsXokuG8SMrpJXfptFZ144BgGjnTpw9Ejgd7C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N1TdoAaxpz1rfbVdkqmxQNjsYNbJ3ypWPFyspTcT1f1meg2NR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 146 - },{ - "name": "bts-tdsf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kanJgRQRepSwqML52pwHAXDWBvKPU1tAqmHST3cZh5PaG9ePV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST588TAyPQMXqG1aZ9Xg3VLiyokKLjgCqfzFUNvqzw1maN7euqti", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-he-he", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UczLarDQRuNeztGwabLNTnqrr4FAQ4KRTTvcZEqPpRhwfarxD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kX7KLqVpCpMd8VoLdiUSoymdUTEVKLZjTTrpufQArhKBKJVKA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gyro8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aLByP4EL2WmU82xsggL7jh4dHwdZzP2PBzm63Rvquaz977Hes", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EYCTDxveNmaykFc4nhHZKxpJhWdgT29FEccxojqdfnvLCVHHc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-plkj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VpJKmPh1fsRoa5AvHXvv4MkMtTqSJdMg6JE4JwCMjdyEPkKnW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t8GesXj8evQ3U4SXLYtWNwxXg6gR1aMZdD6A1CYdbnaWPR65M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24768 - },{ - "name": "bts-karnal-bitsharestalk.org", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j45vjgYrXfe5KK7z66i4FjK3HLYXeFP4nTfRQkdjWD8jgetp7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nu2PSb4G2UGaso3iGBFpx2cwFrHPuJGh9TepZAWTd2KQhP1Jn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 441870 - },{ - "name": "bts-ptkpmg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cQnBJXcdBgkt9jeHKLHcWvCDBC7XEC55afqQXqBB9Kd9TY2Y3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MabUgqbN3Px2wd6J3GBiQ66s8XmJoRG3WnV94bT5ozoXaKLMu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-superamsterdam12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CGCFWVvbvvxFbjYvaWqbRnqc91GCaBuEJZRZVUwbhEBFCjtm7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eqFV7PRkLpo4fb6cJ9aPKYvwrt2opYFmrn1qpwz5oFFNQCTb9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-andrew-bernbeck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Qb5oBLHqiB3EULWDbePsfbrwv8RQSmNCdu7MwFsMkgbs587XR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZWVXrL27qWKHrSpwsBqDXme8qLAki2rtRF6nnSomhMvmzMcpj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-marhym-555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7D4awmG9sGva5CWevH1XwQ9s2VRbSxT1TQTdC9skpQuELg1zWt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zcfSfngFw14AfMPLy4xd3QU2wzwK2ajYcyaD26xwqsW9XxVKB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44234 - },{ - "name": "bts-max999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mXpJD5yVLzR8orqzBe9cK7yXMvcv6PLnrsk8BoqSd3u6qqWyH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NZB5zyFdfpWeVa54yBjbmstErU2Kc7mbp6itmdhya4RPkEJC9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-aiyaya-99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d8HoNgiWk4kGhmVaTzoWmdXoxqihZiwHAXSCDRx8tG26ZrSom", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TC3QMhVLZBZZ7nM8e7oGrA8zWgwhGcb6uwEJy9i7NkBJdzJgz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-zero2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xtHuddeTW6XkVUMHkhkMvmFm8LuuomPV6k8v1cmnBaGSN34pu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KLYpootoPrM6pHwknJP7a3vwjBr8SwXm8STvY3TcdEudqnhsA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 449 - },{ - "name": "bts-yuta7807", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kzKcusnhmr82e1uvDDDoR3dpW8bYaf7gNbSmie1DQ7JyNrzEK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XLgHXffEkFLkFeHMqkNYJtTNRtJr2pnGsLVqzCF7FEiPWMFF9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37510 - },{ - "name": "bts-susie77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YFhnKqtUE4q37JKREbJgUYAHe9cnSe9KP15yt75UhB2nHeMVQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QCC5VQso8Vu3Qo6TkcX9frbUSh5S4sisx3KB7ginEDN6sDxje", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10397 - },{ - "name": "bts-september23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dm43Rx4439QbRLtY8MV4NGzSvELy8uHbmTJJXy9ESZB736jHC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72PijXbU9XTMjXDET7nAgKgJBrTd9GdwNheB5vq41od4znrTQK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167122 - },{ - "name": "bts-sdfmvbsd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82XNo2wM2KEa1XyCYaXaMmcdTcHq51WHDaBPLfE6vTMUv3YbM8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73mbB9jLn64g3bqkwxyXjwxhP6s4Lx4vR6cZ1B7fBQe6GyHPkY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-john2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B1JRuRDdvL7vfbvbRsXbGiJKwHRCnHHPzkco2tsX8zLbHEQEh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JQc4SAYnWdJ35fs1QsuPLqgoHripdoZpv1wAr1NZY5HDVU3t3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3780714 - },{ - "name": "bts-michael-g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sWDTqhgdougUxJKZKZCRae8i4Mbs5kn3YEVAFMrEGD5omHd3z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KMVts9DTQFBxt873ymv7jaXmkPAEVegS4XL5E4JBTWkQ8tMFu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 449549 - },{ - "name": "bts-codename1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75AWmmJeEDawQsGLwdQbF8bbPP71u21VXLSYLFMrWXk3kK9XWi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qK4gmwxJ4Jiq8WPCfwWJPCXdkLE2sPhSSbaTkUSDhx13Z9LQu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 225510 - },{ - "name": "bts-online-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67edSSLMY46ckyt5wUsUuw97BLFFRrjH6TCFBALxEhXsZVbDYj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71mEvtkbo9kyScwueBVQ2npFYVKkBnBvTQtpCbHghjiRekXyj3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-german-op", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jWWnyuRaPofrDM3zVT8499qkgcZ2zf5sq3eQXsqc6LjUSYAwk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LM3aA354UVETzEPKVurv7ToQJzL7eZ5QbGghwcyjySog6c39a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3260 - },{ - "name": "bts-vidaloka84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RE63zmRoFKt1WigNRDz6d3v517yVeTnGxEx8TD9t2AEBtEc8V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58zeQ3CgENhkxxshQhAfTQweBEjD5gL3yTRR5LMixRXrUqP1qA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4744 - },{ - "name": "bts-mobile-papa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bvEYTMgMky384gTjiyrdvJ4pYGcG2RyEgvzizhEQr78zgxLxC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BgjNRDeawGSc1NPk91p2BYYEhJWKgsjLZGDmFgY6uwhAYLy9G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12168 - },{ - "name": "bts-wuxu-qiang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HyD8JhoEX9q65vFcsPs15hKxYBvDU3EYGENaoY1peKbeMkNut", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qM2u6mGYiBWhfepq1aLj4Frctv46i6HxnsztEEZXt9GP9XEhZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49 - },{ - "name": "bts-ng-dias", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sXza7GpnXtapdp5bTU9KccwkU5Y4yTCaEXGcHdC5AA4PxGAz9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SjieV3iZNXPxEbk1WRGomxWZA1RGHAQMyiWc77jYELXKc34ME", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-hfw828", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eGnAXaNZkY2QXiGbQNGhMoKbC9bCBeAbNqUdbpXrgCGS9A2zy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YgWVLAeVn7B9VmBxpUttgc1nWkY4r9ZjnRms1tF99SrzwvxA7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 239 - },{ - "name": "bts-happy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7itVuGvJPxyFYdLp5ntcnYXkq2NHN7ubcx9uHKmiZ8UGSNswPh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xb5vEdjBdgLaifNj8fxpgeh9tfaLZT9HG6oQ4W2wGSdsJcSv1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67699 - },{ - "name": "bts-gensui705", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vh2PdxfkfxKSeNVUKouRAgQS4vNRoH4sexNj2A1zYumotvvh7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RZ8PTkcE7TLH9sS8ceCdWwEmVuQLSfEUS57EqMDPg1rvnCkLT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 467076 - },{ - "name": "bts-karincoin16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JHLahwhD68CC4nReYjJf7LVpoXzoXnwGX1HUFvRLdqZei9K5W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GVVU5ieCH9cNZ4YtnGZCANYAyVdmPXeygtqmgxZ37LX5wG4du", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1411894 - },{ - "name": "bts-bamboo81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EtLDAdLp1RELNqR7MbNag8KjMrsEk9puLsyDZAazYTuLwYwtp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cSLAVpo4eearhxBAn76TTuebBfFexCUSLsZsg9WtLpnHDenH8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32857 - },{ - "name": "bts-n0rman52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72t6aY2juEW1G93iGX7t6UmcfmfYxtJhAnp3gYgqZ4qZzBki9s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66qUwidsGduJN9KMdYsMh6NCdtX9HgphviUpfJfRu4Z9i7e4kD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131 - },{ - "name": "bts-wlcb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62mhSrhuYNWNCrmycdJR39yLSTMW98kyTHY7PNtARFb4hp6nAp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HvUkpTXqV3wXWgd3EyNeVrCPYVbDcwC5xUVM7FvdrjJDy3AkX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-pay.btsbots", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55xfwwVsbabg5gkLjo3q9Xt8odwUXWBzTvCujb823MJ7xNYWLu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AWxQPGivT6cLLRnE8g3ouUofMFCwLjE2xH8zngAdt6NY8Ga1R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1077 - },{ - "name": "bts-k0t3k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Bz4fwHYN6u1E7ELc3cV2n2dWspAZ4wUnvqPAAPtBaxpYLSdxT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KXSEzMx1jnAUDLMnrV2JSncsxaFjojAzgSaPjs72H1A95NYhv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3940 - },{ - "name": "bts-phideas1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wf8ctTsbe4fFjVaz1G55a7XED7wxZ2wrR294myQou9ox2tkPW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66aAkjeG9kJi47u84XUp7U7Kt9LPgfWZwrAbynTDcFSoEjgLCE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-bgb-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YEpmN73y1NR76irzQt7b21CW5y7No59kc4HwdXUx9b3raoiJ6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66bUUvnt4u2Xd2kA4PEsSE2dTs7DqdpcBtBm8gzUfQ8Chqi3hB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-bank24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SZMuWQDeNpXZX5uSB9eKkhqpP9yiefjXQxNNstAtGRJsDnZFX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m2tfmQqHR3BbjJjWGqDgzsyDY3RANkP1iKByBoKUTSL7YTCYF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-vckr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CMTSp6Tw2Kz142H6988ptE3p9ddbojP51tn9TEckyoNhsSCCJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DuFX8KezmRb5S8h7znd7nfWzVeYZyQCBqU4gWa5PCMaSgBeda", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 688 - },{ - "name": "bts-tanw0117", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MXYEfm71ko73JqiGBoxMFGr1i2jW1cSJ6WRxwhoeyNUCJW1uN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sesJsk8drcDgcugoKCSnVPoCUC4rEYq9b7TVkMGmy2gwSdVWV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-taobao-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kuc5ZKG5skLamEgvfWQkG7C7fHnz4vo7YzA8wJo2cFkvQ175N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lhouoj2eSE2zZnPo9NGbo5xtRRYeQ4653iFTUPCFdvu1miSuj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4291 - },{ - "name": "bts-knowsearch2020", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z96Pyi22zuUtqFE2wTgp827n7v3DrWUJ6sEg3d5darppsRqDB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nq53LJeDde9RJxdVrTpzRiHhESsfqCgK2nKcZfwAz3D9p2zvw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4201 - },{ - "name": "bts-bts-sb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cPjRczGUoePyePWoztiP4GXEtKrRT6XJYKqccMXsJMsUnAhvE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69mZJRTjdVXrcFp7Mor7xorxGC5T5gaCg7yEgeSpj1tgEoqnEZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4330 - },{ - "name": "bts-crypto-rat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JQAtNtmpfkPwuAcQQiYekL6EWZofLqwgPUHPbPKpgfUn9uV5Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uSSePAeYyVwWLuxfbJ7jeY8dyyjWqdKaHgxhHDJTRco2HL64u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3047 - },{ - "name": "bts-sotarules1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pqkotexbXSEmtZkJcGxp3zVF5mGa14ZRqDYiD9ze6crkPM79W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZgGsiJerrGRXZ5yrQoSN4X6jEYzo5HPPrJJdyiVvaJay52wT4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93544 - },{ - "name": "bts-flyingmind1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sY172DvNcsxmzeAFhjokvTueZZ1zqLWBGHajdt7oqJaqnczdy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X5XrtunideZjz9vFyeHmN7ZFtWqUHKpLqtsWp6q88JamDYFkT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-fkod0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zS34thL5hJMW3qxduyweuevznwgfTMWE9g2mxA8iveSSA5KDC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zFqqKoFCzUn1MJ7qJr71CaRi2ix3Qwj3UUFhKDgEwSYTcBBFP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fedro271", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63F5cGgVo7JPgDT3yUyT16aJpi7fYHJwnwgpA1HrTXnkxguHQb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SZgiU56SsCWkKpy5CgSBnRhpfJFebQRaA9ZFcHjQYjyzZoZbG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-test2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WPBZx6TwZKW9kCqJp2CS5R9e8K9MtPa5czTFpzUWz2y8cFVm7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h8FXY2psbUdNfTx3dy8272qL5p1u9d1LpBANmcWhbbN1mnskn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-bts-ratface", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53L9Hci6gMRqVjkrh8qQCMcdK9NLML4NTvkHUL4dUAsY7GZZEn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iXJxBzAHZHUrzPePhkfdKSneFp5xkVkhbDpdcx2AanocuvPpN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-jbkmik29", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mioxRiHU8d74W8CUGC9UL6LSAGSQRzyzfrG1MgN1Th9tAg5Ck", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SpvCSGhhY21Z5DsYmNunC5ggBVh8R7pCToS87GqpPWDaUtSeU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81151 - },{ - "name": "bts-fhhc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mRi2Jy7u9dJHvqTKERo9nJuXEt5UcY3SHvxLZxnDHZ2mo7dxg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7K1L29wvGsFvMkHJFkv3vvBLHmcNUX3bsAnveBgf5G1bTBVvuy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-dfvbjh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J9LDxMXv4hRWEgzp1VKTCJiAt6YGB2C6L2MqwTfAEcvJKTZcj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PQZcNBn8tN292DvzEJKSYVqVgjLKtzyj8m2K4oY8SqaBFBKd9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-rud0lph", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hr7Q7nnFCBTkiAR5trBs3vV24iVYocWMeYB9AA2NmKPupuiyJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Razn7jmS8CTQ8nsvfnjrSPo6YgrZFF1uLMdQ2YezXsSoyDR1M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3649 - },{ - "name": "bts-bit-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68rNPSuCeYhrfpvxvg8Apfc7XQcQMVfexrLmY8bCv9tYz5tYR3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aJC1EhgYtER3o3LhDRVCcqXvEBugAvFTpZij6VH4tVEF61M1r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 444 - },{ - "name": "bts-mobile-mama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tV54UBHEGX884CrB7Ubudc842GZBivdU8Ne78Lw1FgFGZw6as", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VbqZ2xDANS2n2Xq5JpR7HhyoBcH9sZmnKATyC688UJqD1apxL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69470 - },{ - "name": "bts-kostas-dim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dNWjDSa5AHVsmbiA5nqkeYykAbjEa1HhJsE392PPAaFRpyxgm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yVZsY227tMFVxcmJxckHiaAXfVsifw6m3se2xhrgse97KvEtE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 768570 - },{ - "name": "bts-dupa-slona", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bgc7Kqkm4zfUJiiQHVPhJvEfZZ1yZk6jbTqQbhMPwJibH6uyv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xJ9X5gpagA8Rk1ppcv7dWqdhFGcwriZG4uCntgm68Q1wZ1akJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1131 - },{ - "name": "bts-testnike01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KEjQXFqUzqvmF86gLTDdZ8ushXD9MBm6jMMx5Gt2gvWq3MkkN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UwYVZ2N9PpDAyTPMu65EeYMenkeiaYEAnMqu47QkecZ8Qa1pc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1885 - },{ - "name": "bts-lafona-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zMytjo3pvHjcf2m6Zqc6D83pH5A3jrZopHR8xRcxr92457QHq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZoCgedxVnXAH1wia8EhwcLhbQq89zhhATDa7zcDBVd5oFQBMD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 353 - },{ - "name": "bts-alucard4life", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BtAEWJaHnZ9eMJCAPCuYMb4vtrZmUPhQWExKVGfpEsqy4yZp4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P1SmR7c1iMP5JyHKd77X89UuVEG5iapEEYeFvbjWazdbvB4Tp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32160 - },{ - "name": "bts-emailtooaj-mobile-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C2j29rLodhHWKFgLJBk12JTXT2YsYhPa85CJK6K5198jqYPZ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PV1iY4oMWXKmuwkCzgjV2MBffK5wganN9DxiwAXMutBEg6fjx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2575 - },{ - "name": "bts-bts-spig-shares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uxzroTBJrrQmCBBpbN71wbaY873N3srUisVUziSz5vMaNsv7p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6frcEJvQj2mNXzjv3x1vkJjp9PiXuRL4NMJXgeRzVhWCxDgkY5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 223556 - },{ - "name": "bts-my-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fXEsozUPgYcAhnPxYVQ3bZuWVk7egz8Pq8We68JBxc14vkQNu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uQEN4AYesgxTcGZXKzGRAvGF2JNDRPAfQpNUvSCmwSzGDEqJ2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 481244 - },{ - "name": "bts-abitsharaz1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51eJJj7DP5bBpQy4ARijyUsyZRS6g4wiAV5QePyQ3VtQJ128yh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64NtP6QwvNy3Jf36oXW8cZLKjjAEgrFxB4Nz6toP3KDa8Bdfi7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1301 - },{ - "name": "bts-kreedlas2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KEPhhhsgsgT7QrA4t4AEVx2o4k1nQG1rheD9LAefjHqGAxQGg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WRWWqnrr3PKw7ppKRt7X8eLHKfw8TCoxey5J3KSa8q9be8D1S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55599 - },{ - "name": "bts-ex8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ENpqnsM9gfqKjNiFwwxanh43tC3WfGzfC596VSVqT5TRZrUB4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HULFcRY5fWDse8vAVJxSZQ1YkqQffQvyWr6RbvRJzWGkHzzhq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-ajc14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LUd7GQeKM6ZRMLi9jQijA71ttJzDLQxvixVZbhaKo62kuVx5j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84iaSpgqbJmVpNnfz6RRQUg5fm9J6Tp1xjae5NotPZ8w9HE35t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1894349 - },{ - "name": "bts-biac22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rXngFUKQGUpAZcWGXZZnokresiWVs98E1DWG2GAJarvNSq6SU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58HW6zSSc3pMJns8HGFZXapeCkfJ1xSWx1aunYjCrjSQxBHyBP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7152 - },{ - "name": "bts-jasinspace99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uhX4rhQdfHR5PiPQm5vooD4nxeyLnpzSgNqtyCmWCS6niz9p7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ChPPxTXjZ72QY3VXBGVgPNobaTpYQeAYjac3h8aAokkqMvPGr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208130 - },{ - "name": "bts-wa-zantema", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69M95MYeHzVVxbswrft5QW4iSfx1EMhpnHscSb89BtLEdLHtzM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iiuNtj2Z3vfkWJhPYQQpwWAsJGPRGkGFCf1cGdv28fEPh1qXf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59285 - },{ - "name": "bts-pam1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57TPmLXL3ZvjQi22uofWwkQyxx3TtMr7cCRxUueoyPdeiVW7y9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tgwi3zDL5yaeXNuS85eDHj1WP42XefcFGEPqRYmckjk2a8TBm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-zhmclbs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZHxHxbRbqncWBtKQBCcokdawQKoZ2iYWDA6v2Ps4nD1MPE7Dg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G3rFxjQBMCbpekr3AnLJ3kxB7XMMDEAMjYshb4fJ7joko6Q1w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts99999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uy8Mdf5VPZUdJp4Df1Xz7F2R4jF6dRmqtatXgVdpGPepJ1tAW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DCcWw9iuBthgaoDWxmcfidh3MettFFy4knYV9Zz6TsafmbDMf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 730632 - },{ - "name": "bts-seyat73", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iMXkG41H8Vj94Uo6yc79Ft5ZLYiQkRjGqftgZcyUe8XgVNnTy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uU2krKYVt57hQ4dwESj3EKvugnKbpHyhx1Dd5NMvQB8knVo23", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-amate10us", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T6t4pm1UoRiS6Kek5YYJUeUPcADDf2XB4qAni5NVwJrgBbT8s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jw79yo3GrsCm3REFYHNEmReaVnNSzBSD3vhPqX3ojJRuqJgvu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 562810 - },{ - "name": "bts-brasil-surf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BuLPTmCDCDA84gG1Zz2hQYNbjQhyrup5QCM6vd9qmqPjdXrFF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Eb35uEoJsJgvh3wdFJ1QhVhSGgGF4sazvKN8bxyaa324kCVx7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-schll", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JKPj4mZMCC3s7WnDntRJthk8gVfFwTC75zpbbtgiEpHRiDFnw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rk3gqLYYc4U7tSVJwpAygSDVCTivwAKjTBJQtWWakUGDuCUoj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-chenjiagang-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mSAy6NZziyUcEaVtG2Deq9G1Kp328CtvzVLRgtDDVzQEXfQMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y59ppNtsMqVEWmy843vT5uMeHkqEZ5DCydH8oxR8s4NBpwTk8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-leihang1980", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zo2oi1zsS7F7YuQhdPCbuVaPEjpdpXzNu1MfvbVgDHBe3jp7D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JavQCJo1zexkUB1tZiUufLDjH8WDqHWApu44ZjLZGnNv16kAJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-marmuell14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gKF4XBiBWDQu7y8QunEFR8PQmpSXks1G8kMiE5R6XR9hc95wK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zLbb8JJfKKnxpbTePXTea1EFAdYofwrpzCgN7phc9Q541b5a4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-amybitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iRTt4D5XMX8ftGGrsqVzCytjymSt49wcVgALzyYSRubcgS9SQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87gMUVgYZVdWwVgeJ31CdaqLnzjgkdNWmbL9DYQ3o7ufPQuS1q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2257 - },{ - "name": "bts-mystery1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bZ7FoFPFRfA5sAErMN2Da2U1kSCMZhuS6qUCgwK2Q3zSZwNGj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VbCKM6GyHA2NPkmpBYeHvSETLMhyfa3iKjPqpa4pCmu5ZswiF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 412 - },{ - "name": "bts-x33blair", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gqTSPAXFiXcbzKKEKSnhRqSyGUETpQ3a7vUYG2ggS8RXYAhj6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JzzqbuydiHDFHDGUfy3fNsaRzBgJ5T9Bwj7miKcXkNDBcoNxz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-zo8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fUorfXTjrpzWxxjZy5NGrwqLTxqiUFo4UVhNGkTAV6mgp9MW6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66GmoNvhALQY6TqD3K9LT4tHMvYAvpcrdNtCPjkhBqzURgCF4z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-btsx7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uzFg4YmJi1T1T7UmVwhEavKW8YZJRzReGY6kDtvHhxyzY9AY9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eUyMC7BzWxhzQfuqoA2G6RpR4MLRL4Teo6A9qfgDw5xGdc4RL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9748 - },{ - "name": "bts-tommy918", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58haNs8AQEL9kSp2gAzL8ezCYCjMN24WG8BKBPVfTCh212dyCJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YzdF6cNEJZr9fWZJ9nmLV3qs2j3mSaqtJx1EvoqerkbAGHjxj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-hakuku-fox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uspNoHxhH9KyHbQcdH4KcqnZHus227XwH2BR3cGdAV2tU5SNu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7obARwodhSZL41BDJBNf6YdsYFSRNyfQLozA14PMWK7wDmFYSV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4703590 - },{ - "name": "bts-am-group", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d1ikTN6mUWE1aotribdwcqhmwh9W4jvNh9dcJbz5hn4V1dMWi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65jpwihBZEeiwBWXjjAPcjSxcpauVXKo1mNCfViowf8mvomVK7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-m4nc0n3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SHr2xkSKXWv3m73PRRMk3brzbWDahom9rcTaqG19FEu2TNZxU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vyuFkDYm8X6RnUCfr3VCGq53zxi1iRgpBGe9Rp3ZjxQwRphxC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-alex-dikh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xJH4CfgcxtWhH1XenCDPYa4Jwoy2WSNo934tLcogZcYAmRtre", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RLaXaxaooZg3ujnFMwPz5ueUQ8LQ74yaPeMXrg7bnAVAVdscG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1939 - },{ - "name": "bts-garou-34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WFzMjeV5TTCF7onKYhdvDTyt2KzJM4XbYbrqHAEWaMzZWDiDu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67oGZmuap32gTRVf6CHPgaPCcoksLWnikkHSomGuu6EZa8R9jM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86948 - },{ - "name": "bts-cold01.btswolf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DgTURxoqNc5XXa43pvBeHLm9QPrUL5te8aX1cJa6o15GLt5wk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DgTURxoqNc5XXa43pvBeHLm9QPrUL5te8aX1cJa6o15GLt5wk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 361 - },{ - "name": "bts-alshut70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L8jqyb8agMZpk41xhGgwaiNtaMSs7rSTXjRv2a3nwCMEPM834", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u4tNuTHStm8gGVdL54SuTstB5yw2fJFdbHBRdhUUsJ2CJ6i1N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 641 - },{ - "name": "bts-emiliano10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71HBxzswSCpn5Uyvz1Ec4TGczMBNb33VfBoRGMEEVfqPXyhos3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c6A32ES3y2Q5h6tCg42Ae8WkHDfzC1vFpVLh6BGKrJADzXYsn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-chenhua1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TReErVZPcH1zgdmf1ALtre8HcSAT8B4nqnZteCYqji6tvtXdY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aigSCmxq8amzuUZ9bvRBJt5GE77EwnG2LJdx71y32UR4FyyKi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-tin0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ReWiTYnEKZ8KFSbP9S7DF7gs9rLnuMCKXAmx9Fw9EpA7fhixZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dddoBvL283vmpRqr7m51yMMjvYJ3HCeiJhHAwpPQrZrwuUad4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61 - },{ - "name": "bts-movaka2000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5caAThSfoPDMHEb8Rg6ybZy6v8FVCSUhmnjqHyD8crEVzTdw9o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MV1JPcJDA68wshEbxFVFAoThsRanDoAyjYmguLrMErTvUeyQV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-mike35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dw2PipGFddbHbcTADwZU33Ch2MGhTY7EfAVYhnixZapk5CHdV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79GHcphzsGVW3Bgt1tq5zSR8M7dy1GCD34Zo3dTnMHShn2xrFA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4437358 - },{ - "name": "bts-bm19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ucXAMa9JchdrRQcVGwu537eVJPmbj8Eac3F2whfHdbWeoVuWn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qpbaiL3nvYCjumrextDhDnvRWqAsr71PjZMLSTBJzTwUv2Sxr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24486 - },{ - "name": "bts-e-cash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82h52wPwQgZtwMyf1dp2c5Raa475JR4TjbGguPVMgewQKgTzst", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56NXiTCuRnczSUUCvXGzd1oqcHLnX22B77nj6djdeU2aRLdgJC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3778 - },{ - "name": "bts-kc007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7feURwZr5pCh7V89AoY6XjDXMYfZM5c479N1srxQUvgwyQcs7D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86X6EFdgNNoiuVZQEruNRNbvSGfx5XVEtJJdSgjGEzR9sxgwki", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54847 - },{ - "name": "bts-locohammerhead1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66v19N2jdiMtCPLJCyA3A2VgtCWhhGSA3nA2ggpk2XUD6jq5Xj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TjNsNRw99sjDKCm1MR8WoVKxGKoo55bMF55pNVHAcdV6U2qw5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-kchimko1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UBKqCEN7Mr6SibhVUdzukCDoAzZn2kZjETtZBFuWN5xXxbFqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tqiqhgU5e6XpfEXH3uhzp1oDqKk9V176FA6q3uQewJyX4fBk5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9219 - },{ - "name": "bts-iou.luckybuy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST658JkzWxNabk1ir2AWqPJ79p6UUtQAsdMmE99UhA8JrXgArjVM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VN8hqrTBCYeDySwLTqTxVmMkAWRxLDPqbHGJKteWRk2SsWE5s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8720 - },{ - "name": "bts-hcbfs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m86gXvwi9KDaLYLvNXxC7FMup5xD2KB3nghmgu2GAzBktuHMM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cN4Sxnx39Ur66oK77Trb9UPr94d5P8F9AYkbRaFcr9Wz2k9Wp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-babee1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NYMESDRdAWZ9WRJPpo1r2ZXYNrn5CmhVcmewCKnCFprFRFewv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RQ6VbkSYx13MSiVN63chaZTT2MbzJdkVCSFR5Afodo3NcSxKk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-x-y-z", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZreDECj83zCoNxLzVHXDTtJY3HtNh6SxwmBDPn2Ww3AnkTvak", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72EujLszKSomonF9DMH8qeiYLsh7XvRT24ERsSGGfopkY1dkeM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33865 - },{ - "name": "bts-jamalej65", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gb6fzb7VPBW6v72Y8VKbdgASrQC6aByEDRCdvuC2VmF6KLUWy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E6LKpkQtVz82qEeR1i2TQETNv8FLCSXcytZWV2LZimKZRNphG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-maximus-west", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nr5rYAfVwxZausLZ15LobDjKujm2vnL9VdJdcaMnbTRPV7NKG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b2tPG63tzksCdnCVfE7a6LSD53vt7wDSeuiag2BmgckHwsYvu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 489 - },{ - "name": "bts-free-trade-real-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zRBXRdfBmDLGNtKWsWe7ZaPcCF7QhtsGhvmBp7Dm8oapCouJF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QXfjkb2frM29736WARrZELhmVfqyHV2zkczm45B3RwGeioHSJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4821330 - },{ - "name": "bts-a0121", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dwNbuNjpoWdBHQvHgMSjvJc2E2AvEUV5jtpcz4dun2GZqavqs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AbUC6uD89uAjDHsmAtzuHT6yYRBCLLHxzNVXQR7ckdALiCJTH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-yingke-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST653tiEEKbV8n9C3f3XurRT7exDcGQjyszin3EPkmrvaB2qiKYv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QdwCuyobLyXhqZbTRJcVNucgJoZDcXsnQWsYDjGrU3cC4Drjp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-yarn-cubic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XVktY9o6gB9AUpErcPPaTSS7Rr66dusBq4j6oSpwMjtjPVNYQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o6zBYh4D8UKgnx3fvMdSd4jMwFpponbkV3RA3mJ2xYbGYHdsx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3758086 - },{ - "name": "bts-mrsluggo13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65HxEzavVjRf2V2sG1cqMkKCfL76F7hiwbZ4S1KBw3ghYiW4mP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ScvB6XZgDzHEcMtxTwBGyMsNuoMz989aj6X1basVE98Q9LtPG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 397 - },{ - "name": "bts-mbilal-knysys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tjm9FjMLkYpRE73kQw5xBtAofBGSyv3WQ6XwGG6xsGdjUMf5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vWRz7QXJDncJtu5YoVmSwsVjd8qbWzkFE3yD2WyxeuSeyAXev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-twitter.puppies", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56BtTQaHS1fFuzfH15TDgmGNVGzhaBp4V8rkA6VPrWjeTasYCy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56BtTQaHS1fFuzfH15TDgmGNVGzhaBp4V8rkA6VPrWjeTasYCy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3638 - },{ - "name": "bts-x16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aiLWZPh9BdCuTrVimhLAGU1pkB4dJ2gquB6uH8a1Eape2RYKJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y7RoH4FP2Um8F3Sdz6NgtUzdNaAjXdhF7p1scDtTnEjVJmPPX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29619 - },{ - "name": "bts-wosch76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KMJu5wpgRm7F3CG31CzUfne9AVSK4CT43W8HNh15wVGFnUNMF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mEJpjk6ok9YKx2RsD3ZgsMEgEnY3NLg2XswG9WKuSccYewRH6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6326 - },{ - "name": "bts-anderol1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BVj5JZwesbjmKmNfV7LcZ1SFdFDqobGY1MXt8CWtaYoMc6VvZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hiQGkZHumbnDwuPShcAzMWhufCoWVoMMQoLts955DVaV2stwV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 282 - },{ - "name": "bts-hu-yu-mi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vNQoEPs74ty1i5Xpq49pNG1UaSqZpyweKg9weoUcwxPTmTZQz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6igRnedX9QLCKVXivjdxtF3d3msSZtFq3TkPR9tqyuVD1pwjxu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15739 - },{ - "name": "bts-brab1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FZfJpiQg1q6po46NQnVQPqmL3qzRtcUfyz2zSTxh9vvQymKyu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rgH8PmRUMRcK3jqXcT8UpdKXGRnaUh6DMk6SJcmndADCPN4Se", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 678 - },{ - "name": "bts-sx1200", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AoiDrJXRYF3q2MinZ1CYBWZU67tvzDR1NTsffrg93eEiuQHfu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NnbKHZY4aQqa1AGUEqLVinwQEnUWa8tDrR3o78Q6ibQsJGrNv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 451 - },{ - "name": "bts-b1p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NQKhmucVvyQ9YeNj2gqUgWLqiMdU6qmJWkBVMSSbcUzfxVtE5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78McM1dAfEQmDMDtF9iiVPyeGuq25K37wXpjEWA74NasJtemVj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 294506 - },{ - "name": "bts-macrobit2000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NCDEFC7bw9oyajwykNiuq44V7c8g7bEk9K6qzhHQhcPa2reuE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qQWLZRyzGUjF78rB5RNhnddB5sEa4nLX5uo3bTSJ2LvBdcFtA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1144 - },{ - "name": "bts-marky0001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iFZFPo8Amdox2j4NXHdetzMErFE2mxfxEbUA35TDgz71M3etN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mgrfNXEeReuSc5vwz666jt4ue1u1GNfcg78UzqqY9ymKKCBN4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104 - },{ - "name": "bts-bmxakias84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QTamsaDZcPb7pwbnDF7DAafdf7nwua5gjwedVhBxNnKzUbF5i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KVo1NxA7W2kd2f8NLuK7hXXAhv9ZJwmVdYcmzRGwxSTj8DVGx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 489 - },{ - "name": "bts-pam2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83f5Pg4oaXgGABYfGDWxYs5qEumKgxre5S3yi6t6shA7LxzuxP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nPnFznVzPM4UCdjJNtKBE2vearb9N2EVg6Pk2aBYzpE3stnQK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-roman-treutlein", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MRLracifp6Gpw2M2rJSdwSNPAvAGmjUwjVZpmfj3BfyAXEgBF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iwsJQibFfkTAF6Ezi8NMF1QnrpBRWkk6W6Dz25tDM6Kxzwe3A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1130111 - },{ - "name": "bts-nouscom1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NpvrS2u7xFpvAQDBNE8JRo6GmYrSwGmRQUiNQ993eJEmchmyv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69UHbPtG3ruEv8RBnu1cogyLn6DJMfe9mek2nxPuPTNqdL7exH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 477761 - },{ - "name": "bts-crocodil0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hNGAnLEdEPLdKsQToMsNLJP5LnYGw2XQYRWUpWGNNZUQJreZ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89RJKMa9xggWMP78jLmJodtLN2DhVYAfszVY44h1GhrrMZ7BCA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1385 - },{ - "name": "bts-urnie17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FFEKEFZqZMBM4q65mr6TSbNNAqWXMWr96m5aS9rPT8PF8Nj5p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WwpLf9qPfUxfhfdZYzgv9C2N3YdYdr8uuw8JXYtBcujxZpg6T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1096 - },{ - "name": "bts-c4t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vssx8qms7UwTRs4C5NrKzd4FSVYGepc1nRzeKMp2x5f5bjMCG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BYTqxzB7pVzGsYqnLUPbTZWRb9e76uyYNjTJMevv4zbwDpj6r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36320 - },{ - "name": "bts-bcdf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fUCFw43ggcdbVfw2TTmkeRfgpbFa9jMavocuyMHR2qNtJ6Xst", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gQL1aK7mJCu6G5dTmDKD2ddyzBthHFZX4oeJSfgxXxYKcVSXJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-compumatrix1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-trade", - 1 - ] - ], - "key_auths": [[ - "TEST7MCYAvFSdzNb5GNh5xpTcp6QqBW6Bvg6wCoE2GaJXA5rj3Abnu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VRaCZGCVQrPWsFAutV5fDVu8cGePg2cRowvHNdGQywhaQTyM5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5705 - },{ - "name": "bts-da1vrz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NpTMs4dXfLBnqFs7tJb6WxSrDbjdCsZbAmixr9snyNwNYSnuj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P9jLRBXG4SJ2aqF15fJ5ggmxDVZ6UkEKeRre3QqMiPyCYvHCA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-bts872", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72j43uJYBPWHfepNWSDUhatf8nYgbBEWnUNHiUXSMvikZNf26k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jT3XHTJSz7ekgkYFRHxvnCgQppLEYmdNHM8yL6Ui1zs5vj5fz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 330 - },{ - "name": "bts-mad-overlord", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xTNXvGpLcbpEYXN15dj7WE6MeKxRKhW9TbyntSbZZyadSoCHk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZVNFWYdWTN5LBaiHpK5x53QDHojCjfL3W8u9PwTc7Vvrpz1Tt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91473 - },{ - "name": "bts-minus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x6KGcbMZnXGFFskAXGcFFsmBvtNkVMpboaETbbVL7Yj5kdDMi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DEDFEc4Ygv6HwQfjNxb12wbhQN8rPbthsV8PouPxTMoadbyPC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 454253 - },{ - "name": "bts-hikapa46", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MdFqLu9szALigEsHZZ8kbBPkbGJ3vKL2zYnazMEPWRmqqDN8C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7staMu7p2pY9ax8bRegiBX3srsoP4jNemH3G1jif9otGi9Ao2i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-ro-v-er", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69nu5J5XhHGrmKXxW7n8kttLzvN5zGU7XG9TVcCxcWQVZgGBRy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YePKqnRYd9vyed8xf95cHqBYXgTveMWXYDwCHtYUy3FtyCCvv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69261 - },{ - "name": "bts-jestronix-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5N7FKpEbjUFryZZ56P8ZZqQVbqFK9Be1GkpMSZrkNepkTAL3y7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n2KJxe45nEmRawRatDkSUeCpyF9uUuPfnM4FZ3nnvhvFJdtfx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-hbncwv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mS4JjRLArMm6hqMQ8WW2WEexe27Enmm6hztskeyvsaX5zjCEF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ACaj4gEuLHDihUFEe8ZbutEqwssHNYW1xcFdZBaKbtXK9wf62", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 742 - },{ - "name": "bts-sbcphr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ciM1CzCQ1k3VAfdnVByQ1mQHZNZvfsFHVUGhWgkCMvR7AVa2C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ojJcgWdbXSvWcuHN9PA1k77r9uty1RhfL83MgjYVbKQ7aW3k9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-m0n0lithic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L9BHguz9hVn2TDG8J45ZG85pQT27CZy9ifvcJR2FGQ8Rn9ee1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t3kKYEuGW2hYmWAhN456oo5pqCjhg9RxPtADyiWY3vaiVDUg3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66302 - },{ - "name": "bts-bnet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LKZwaEkrmpoQfVsv2cerFdejydfkiaGP1AArCoD3mZQGArG1e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qZqRLUED6Y5hrE4uGRsEDeXKYtKEGKdJWJE7X3U2ggsmiejYa", - 1 - ],[ - "TEST8UvFtkuwEshZYkZZBgJjdXKgoSKQB6QbT5LQYq3NxUaH9oRHmW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-marko0023", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NaX6oU6aYZEvLE5XwHh2j9aYra3uJZGKiuWC86LvSUuP7B2Do", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71vR9tjgKEZ6rA8HAgvk7Fs7uVx54RiGtyHr8j1nwFnyWQTTrD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33983 - },{ - "name": "bts-trade4me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e1VNUKxoDtwUyqLXdiJoKpyC2y7XFevxq6mjHeurADn1ptk5H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cg9QzRYfL4EsmLm7gCVvzUHSNvDDqHuo5ABehC9YCVzKc4s9X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 403 - },{ - "name": "bts-yorvex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sdV1yjgkGUstC4dcTV1hqSLt97VD74Bp1LH6HXW1XLrcLU3Da", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ybduSjaYWHWeT5hY45LK8GVJuVZCy2nnCqw8MJZyZNjGHtxQF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1045 - },{ - "name": "bts-zimnakolins3157709459", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L1FLZKBXXGgreegMCHCXBj6hCC7HKu3zPZ9GKX7fArNsHdCEY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WiG9GSreedAEgtXUp1qhP5HV1c7HHS3nbKEku8DKPjwewuwD3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2615 - },{ - "name": "bts-tomcio2002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61WcM1ouAkdQ4ja6fSjbWACSA8AxTyhW9S5czDm2d9oXYwc94Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6n7gVWkym98cFcC7JtPW8MX9MKopyNzSaekB4zy5iwNctBuT5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-boss21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZpYjfXphH4vSWUhcjSafLtTrMVfgxEkeK6weB4bvTqyDW7jKU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T2dUV8WbvUWd1acBAnvxMz6N3ytyD6T67nw967ZjD9mppVp1h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-zakaryranmi555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DBRsqULy6G6b82xU5AccuYCeFbhNYL7qj3mR7VkDkZkA3TJrg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63VGfg7YQVFWXGu9zSb2KdKEWGpeJ2RRabK2Qr5EjDUKCQhMdn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 244 - },{ - "name": "bts-fd-general", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gZouD8kMgBmYFYX2JMVZXMHhFNdec6RjsTQ5ezF4QYdrdsJev", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72LzQxbQtopmJu3WsDD83NqTmaaw3Bx2JqUSfmKZ7A1812agbN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 289 - },{ - "name": "bts-ahmed-38", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uCzWqtmCMVDZQxJwhSgDP23JfbgfUKv6bnzGcfHt5FL7HPgqk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wkqUPQ1eF8NcPTo5SoCntXxcPG5JEf9FnVosbvzcVpVgpJyXK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-nicosey7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RirWJv4XP2kfoZGytvRN8FmoV8ypbBLQMgL4QUii7eRsJWjyd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g64bQAmRSv72HLwaLSXEkYjW3TZisRubo7ZESo8P1MBvBWCNX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-doranti13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QeBQPCxYJaFx1RRGwhbJutAsrAGZW4EFmh5orXVtVx4pfL9h6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XdJnFuV41njmuqaVzgNwtYMQUFokJy5Umj3ZjzjagMQ4u1DDZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1252 - },{ - "name": "bts-chairman1000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LsbUM4HyxMYbe92eA9yGHsJYV4mWntmDXosYDSqw4ssLsxup6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PDRb2isBMxfyZHWkp2tJXv2PPGxFKWTkqEcdiPidCDMFUmS64", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-bitcash-reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bQC5Ft7Hpig9K6G3d3uo6PpdLTR5oVHekAMXGvxDcYc62v5VV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Fwf5Z5aHnd7wqM53urDRqCv3GTJvbeoZ1aHDxAXgBY9Up7oK1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6295 - },{ - "name": "bts-cni-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b9Xgfwf6DdNyJ2sjUT4Wi7bakAwcy6KTMTs7LrT8zRUKyq9vq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 3 - ] - ], - "key_auths": [[ - "TEST5ARvtTPFZPnJpy8DEgGjLPv2ZqwKj3RZeVtGFA1dKWZVRZtaob", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-freestylas7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST823QfYMiNsH12Y669tCotRgqZg7hfAiW5E4zyCW8GaF4HusCL9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ftgCKVbG6TTfAQvkgKqyV53DN9DsU4mX9bxdLXMyHZQziWBkV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 576 - },{ - "name": "bts-blue-magic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TDdAtZJuDAArZpXDBjbnoPQzvqMNPgSAsfYbscscmLGcwv5Cw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8G3PgCa4kXrmdFwKuEeEh7bBJKLXP4E9zN8SdXJFevXxHPc4rD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 363 - },{ - "name": "bts-cni-sophye", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58vJfXwa6BsVHycpBir3LAprKwMfDKtbg6EpYLNr6zWemBzw2c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5dQfioYfLkJwtyff7j3YVcHB7VdVU3dhFU3z9NaLCAPZ9WTvAW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44159 - },{ - "name": "bts-cni-lovejoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RJLsK12hqGAcYfNKapoNnfnTLyAvPfi8vDKMXv1BAU7nc7ReP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-blue-magic", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Sp3vUSBdgX5xThHtY3HSncfVNzmXae5XK6CZ3EuLYtf1SQf2v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-bts-logic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RKZYKCJVZJiZiHcvy2k26JrXeuafxxNmrVir73cwQ14UvMeZg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nwAMAohtFPXwngkyV23QexqyWeYz4i3zL6PVZ8HbrjyhMQDVf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12353 - },{ - "name": "bts-cf-deposit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AVuAzZn6pqQHPZsgpa72UNkomhYYdumjCzKtePHWM9qX7tENw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qKk49e1xz6GMziUEQxEr5A5m2bK1fN9wkQP6J8wDzpLKQ95c1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 711 - },{ - "name": "bts-cf-relay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63hP2buRYWpmdn8XPwVGSszMaewRUapkt3zpYvtgQxbBbYv9Z5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EcwYVFvj66L3j179Gxn2iQrJD4r9vSictK3ZuSTRRj7rXeFWd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2447 - },{ - "name": "bts-openledger-fiat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E1jm4MePTf8z9tydLHD1xwYQaim9UWoDdiN7yvMDuwRpWKFW3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RGG56s3QoJK2HSXEX3g3RmpVLNMRpcyRt934trgCbHMtaoUcd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-fiat-testing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Zeh8QNyXrMcSB9qd33n3NEgezZce2ukfFNYgWtuKcqqziBh28", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CUMGma2XrkZwVhN6oxA4QsoG23CUDkqkLL3GcsALhRXq8sDAo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 134 - },{ - "name": "bts-crowdsourced-entertainment", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XeJgnTxrd7ziGNfPHxKJcXqavjC91vnukNi3zo3Eu4wnr7uX9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88rEEMmBpBdi6aF7roAYZir6tcLbU8xLRbYN76gPdQ2UsoB1CU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3725 - },{ - "name": "bts-macrobit200c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KGNA5swAh1xZJq2VsRbp4SydaQweYKnfNUeDGchzMd5wsTnMH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tXPELaZRwjnLbMavzjhtfjMEuXYdFhY2Zi2XzL2n96ZH5ksDq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-iou.lucky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XnVL5rKtSUS6fD7fQH92f9DFQexqBYKQptiYRzFp8SM93w9v7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VcYzTrSUtqMz4ZhpQs6fDNrPTrcYaPhPBqAVUMzgh6oSvP531", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3715 - },{ - "name": "bts-xk000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ezHCvGGXYiKT6JhHLitkzVy4LisNazVUe3DNLAVboe2HmuPYH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82euz6izpLgCs6U6XfYe85aPX79YVRn7ujbRCQENJMt59n7sV9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 620 - },{ - "name": "bts-suns0fkayotees", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YaozDdHrixfdkPaxKTzgwVCKxe44JCcQeqi1GREzURa23tnrG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68nzRrecmccKFFmCTsWEKBFXmBJ21uzU7tFpZ8SgmHzeufbEbD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1261 - },{ - "name": "bts-valermos1337", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67zX8q8Kt835es69eziwkrhjcbrJzdUW5bouUHTtHB8ejkFU98", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DG7hbzXHDTgnRuCaTjRUgEUNJwHFvGE9JXkHbExUR1GwhyUnu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 237 - },{ - "name": "bts-a1ex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GfiwuzTunGs796dHYQfpbMr6FfJw2YehavEhhp3nu6Pw1dhyN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST577PT1yG7aSSU8tcBkZVtcC6qWMCwNTT5K2vmN8b5Bw8utcBm2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 634 - },{ - "name": "bts-cni-1setfree", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RxFgymsNti7W9ZqHA6B4oDFe7bRhsDnq2zKiQJf6rjXD5tAtW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8CKNwvCnJpsta8KzRHthpwQEDrLTJf22UkbdwB11iPncFUorgn", - 1 - ],[ - "TEST6RxFgymsNti7W9ZqHA6B4oDFe7bRhsDnq2zKiQJf6rjXD5tAtW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-aeroquai02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FAGnyMyBTgdzbvb32ZJRevjDseUXpUyBykXiKMCiJbczuAp8o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tbDkpyqQkPyNW5nxhrvLS5kuR7mpqM4dpqw5fJurTNuVrqZnu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49052 - },{ - "name": "bts-pay.xeroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [[ - "TEST4vkQj9k4cf4WmYzGwm9EW435A29AzSBoQyZn5hHVvruZeUgU1U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [[ - "TEST5AjtESJLTuBmL5hDSLeuigpkWDTe4ZUSjugwAvHSzMJWEUbDAf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27809034 - },{ - "name": "bts-tr33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNMpEFYjyr8qHQiPYCB7bgBoBj2rfTRUbQJgpqDpqqmzHvk24", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qLprAJprPjAFWByWkQgU3wnWCP5kuQbXaj3U7hhEdFHEvtQ6b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1091 - },{ - "name": "bts-crypto-hustle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MpSRVojeQR3sFBh28PiqzzQ3qKXTVVzKWoL1GgRyBKJsr7f8q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SBNSK91GbYjKQfMJptgroHLRvDniwEyS4qpiLuA9vwYdsNXUb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2209 - },{ - "name": "bts-aleks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G2owNpJB4gUKZxkd11TqfhHMNe39DYUxPyGtg5FWZ3V9Hizrk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Dc6Pz7inXEPbsmXCZ1PGnVk8zqmDTxDdrNVtmDEisG4Moabyg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1160058 - },{ - "name": "bts-the-terran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6974kQvHjRaHVvJxPTC1KcokJttQErEp34zzuNqbDSUvBs63C4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75fg7WMjwPRVvSH8PVuuUziSGGguzvCQcs6NSZAjZZqeh3WabK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-index.php", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tYvvK8VdrD5wr6Z8VrLxJtaryeMQbdC8PTyiSpkkvAKFgmf6H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QGGcCkt6UBxF4q7oattQcTeQVvVysY8rbHDbYC4aQVwcNzVqM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-dnh1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bo91GYiaFu3kPScBgrXTcztKmV1iFN3xDLseeD4NdvWJAY9kh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wXbcP4y2GtmZdFhGxNPBEtMygJ8Se2Ty23kHAaxtRQ8nc88vn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dagobert1988", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6N9VBWi8nwESbggcXMAgPwHYRfjbuZv5G5kA9KjA4ahiSPS2Pc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST838DJRkeDPh7K5wc1yJepFYWa6yPDHh8N6CZWTwTPqPZgbadXX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 395 - },{ - "name": "bts-mary-anne", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wcz466GEs8jgjMbuujUC6NBKDSSJrwFuC3J53qHJdxLuNAfbp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PGtQpfFU59JDb2K8x5W7GJVYtuP7fA5Uxr1zhPti5csorPYQu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13054 - },{ - "name": "bts-mattlor1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yha28ifYc7ibbKWCSFkJyqp4Gpx73SnXDuHBK1xxN9FVNF9is", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vnyFEjtDUZBaG1BWZ3XDdqdJ5xorZJtNCbxrPyhNPbnF79NmJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39017 - },{ - "name": "bts-lgs-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NFAwCv1FRXApdRLhEx8WVE9fW2CiC29RHrX9qjHNao7QAATiY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jWZdeLJFpYqNTGxfBPupNoUb3YcnhUZh89i7RHDHmypSkGt3T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293549 - },{ - "name": "bts-dedale59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gqvTANJAL3foQAkSTg2Lx78QawYiPSzQ2XEM9xrpYs4RBKtBR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hL1PXSxajkjX3P61WgJFwrAoosx4HN3vaZyZsT8E3ed8ng3NJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 151526 - },{ - "name": "bts-kntrvzbzdnl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w4gEffqt6aQhK9DiR8QrEPcm6dWD8m3iF2bdSNWKthwj84imB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QKJ1RGXvwUapi3tyMGMibr1eipCx2oqbWXZQZDuEwK4NLRJeM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 174852 - },{ - "name": "bts-permission-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73XcuUQ9DxcVYLhkfmqkcgbPbzHKgUEoZdMMTxuJq9tdfsrf3E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U3yKDpJu3zJnSmK66uqQ5DpoPWrmifoeF8h3n4VjoGEzEJz9w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-openledger-wallets", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-o0rbitguy", - 1 - ] - ], - "key_auths": [[ - "TEST6eceybcRJ7rkfqsTeicWv6NeHdn7yS8Vu5EMbkLyniabQHXAJu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-o0rbitguy", - 1 - ] - ], - "key_auths": [[ - "TEST6fUAj59FyG37eVnivxRWBKqCse4fZDyH6ZWtdgmSFqNZeWjM7V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-permtest2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YkK8wdvRmGJMpXiGyJyiTvuK24F5dviL1frm9CRYaZ9eoAVeU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LGQZUockgR873jbvCMwuimnvawNzDo8pSMLfgAhYayHqezEMz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-l0000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CGdcSkR4GKiz2yLwGGUxD9eTMVzyNs8iBP29T8YoLi7n4Pxax", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JVCfswDzmFTAPqZ89BcAM3beQy8Np8fGGv8Ef1cDBdbxQ7mGY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 133798 - },{ - "name": "bts-poq-david", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SXU6HgJNecXKp8YdgvEdeLHZ4DENc71XFpM5Cxo68KuTeopAD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86BECJywLp9SjJSnMZQ4qb5SrGaKhrRFRgZK2bSnaChyqVrgGs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 363474 - },{ - "name": "bts-sfatouros-555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yCWFmYoQTmJCcKVM2rKXKXMDFDwiKZmw9J9MHWg1whGKHnpbZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6g33PPyTxwYcxFvG8Q2DMhuuy4dzXtky8iwz9nYtohjWsWTtZV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376986 - },{ - "name": "bts-dr0x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VjCCzBx8TFPpViRN6RHKq4KZxQxJ9j71HPusrExXq6AUBkXiC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UyrwjGZByTK1cvZ9qidoPDxtx7ikaRYNLE7EUNdk99Z71eEYx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bosco1985", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST784YWTR1eN7zq7Tv6gyy8thkTUtXCevisxbSh61Ln76iuBmyCX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TwoELoQ7WS9Gxrgoqa9uu6ZHBjqhM1P7obVwMnUavS16oGe4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-x8jitq8md72t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EjhZLndPesZDhuMxKfSEiiaXnYYD3uvxyAGEsjz3pXJT7pdA2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wGcTPq19Sjuwzd8KDjiHG5ZnAUNfcKPjMqRHH3iARdFa14KoL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108 - },{ - "name": "bts-kazu88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c6CpEata6SX6gL75NPyYMYMNv8qioABJFYVWf2byyhMQj34YR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QWfzsTmJuy2HyfFZ4c8X2GGwPMGAyhYPcaMZMxgVCxDpVAw4q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8069 - },{ - "name": "bts-jpb3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mnf3nGBBMvj835k7Fsetu2k9RZB6nw6eVwaVkz72SHvm87PZz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81wjVFjMWfi5ckZvzGpEuLjhK1147Gi1SF4MSPjQewA3FFvSYx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 755390 - },{ - "name": "bts-fanmh1982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vD6AWNfXUBUKwUeNm6gJEVWWaStezGrEkL5LqqEbTGs9kipaQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6amQpuwWnQ547zRqaiYrmFUwC6SntZ51h9e7vkNGkBdv7Y11mc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 475520 - },{ - "name": "bts-free1blqs2obits3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XWWaQoXEXNVuKHpE8HPJp9JaVY8x6u6BfBf2YBrryeyJayFnK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EebDYEMBdPmkGZ8DSbo6KiovDgPQLPSEYeXDztQ4keY9yerDh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-sharique-kny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66ZcDHH8rwqHBCG9RqpAxaaaVJ3pdFPip6FNCG775rSQyeZ5J1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DqdYVjBC6kx5S9afLj9fnktkiZ28WJcXFbRwKytrfwmreYKqm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-dragon309", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jFzQHbwTV5DzM4nqPGJitcdR6qP24qRBGGTWBnTnPr7USVZAE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uh9bMxmEtYaFHanhaUrgdGiWCEKRXuFaRvHMfWNxV1ciLUE3n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 133025 - },{ - "name": "bts-warmach20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63RvsxJKakJSAk8iGLahmYWe11mfgYaCQfvMdEkRVhcmkQnSSV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72u3nSMumURcsV4wwhKC9b5Ht7eeHTRyTf84a5F1CW82s1SJhC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16280 - },{ - "name": "bts-cni-getmore", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w983eKG6Txudi7GQB9nK37nT1T8BXguui6dYtZon1CYCv3o7H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7qABqYMHQo8eYAVxfPtVpoYPt3yvqF2WvAEorEpVeLnibW7Q6h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 559 - },{ - "name": "bts-illuyankas1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U86AZ8nuNYRnUXiHg9BZdL2jrUTZj15ZTw8heceBiHsejha9D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QNzWjaEUu81EnFMzWzJp8ZnTWqTvnJfjhRTJRiJGxmcuAj9TC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69 - },{ - "name": "bts-darklust0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m8vjGY1BLpuqQVkL9fsqfLxjRqGFBAnwnYQvg38DVxKC2dh9c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZfbpGKvrDDwqcmcyRs793rae7ZkjDQcXGZCN6WAtpLBiq2UWB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-daycrypter2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xa8TVhg7w4YPRGLLVR7hQFt79mtsPG5DPnjhsGyaDfXG1ziAb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xcbMCkixZ1j5zbzehzGFXJTfCw8VutwYjJ1YLG7Ktt3rfuXw9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-cni-coky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rSvncZWKWVPn83Vvev7E6nMzmVaq4M87S8ycLCUvqAXy3Xu1D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8417p3ceTGM8g5f2yzysM8zWdtW81NWMpbHFc6BgrBzLHbzu49", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2212 - },{ - "name": "bts-pinhead6669", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MH4JkreqhbrRkXJiffvYdpF48USNHdF14nTLXZe8V8uDLiZuW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79M4WtT6VnLGjRTvfq2RFnZGVqPoPzHuSkoALFM3xt63agmtgm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1372 - },{ - "name": "bts-sergiocal1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51heFgSFtkbeD96TL4u5kcSqSZvuhRRDiVqekaJa5Gi5qdCEzs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iX9axCYsYLgw52UBWS3TEdrr3uRP7Wxar9g32f38SxnVtQt2B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2293 - },{ - "name": "bts-middle-earth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f6VNUT1xX8p1pYtcyUWjQ6rBGMwLwnxJvrAz9NMEJP52onCCh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YskwXgBWDyXMhhKgSAd49iN3KbMyuztwSRAgJXZrVXWP4QEjf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38812 - },{ - "name": "bts-gp02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LrZNuWsdkafQAWHqhKcnRxUZdDfvUyK6YfZvT8AgNmJQfStXB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T7poU9qdUwhgZaxL12o4JNCSvAP7pPk88Vs4LH4dZ2yo8Qr9h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-h0gepiy0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NjVMmAv3aaea9Nk1E9nLzYrQw7KrpqqxJMDuF74KnHXgyTpTB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88ruEBTzfSZrUWQ7k4iyryuPSxgaNsvfKbVesfXMMfzGNu4Y8V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1761 - },{ - "name": "bts-tonilee007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GqfYA6BxvDTt9RZZUhiMxkacDzsC9Wsh5yQAdsphSQNJ4Gqrj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fkd3e7SDwi6ujNq2Sam2HBARe63WcYeTgC5Lxp6sLfRuaxXDv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 291108 - },{ - "name": "bts-a1234567890o", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69cSYmuPEcYF5KxExwsFJd7BJicPx74nd4zwRKm7Rqdfhf1SRB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ecWcWW3K7wb99Tq5pmhXTXfynCwpn8bdLmTii9vGtUb6ynAuk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143338 - },{ - "name": "bts-i387dx-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ojxA8VQfvwkCtBNMXpNAJRGguUtpzjhcUsG7fws1cishCgBCo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85o5mcacSWjB6Ks3g85GXkqERTVnAkKDLqdEPr1dEiir9m7eaB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-bart-cant", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fHr1o51zK3ZACfeNLFrECV5iCwMis9MDBBCch29cmnGbsgzMK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MePT96pZ7mMrEq1sUtRdcxxrxzLLesLdoRVY3ocrrdNsZpa6T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3519787 - },{ - "name": "bts-committee-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-committee-account", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-abit", - 1 - ],[ - "bts-bhuz", - 1 - ],[ - "bts-bitcube", - 1 - ],[ - "bts-dele-puppy", - 1 - ],[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 5477468 - },{ - "name": "bts-emercoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XvqVxPg66dAJsheLhLioGv4BY6xGhSECGATgX4jQMyzmRiWMC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88KqGbzURPGrpZedehe2TZDhv3FttvATuGxnpWmDhLosscaswn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3612 - },{ - "name": "bts-atxiaccount77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EaHNkrtSXPJJCmRUkTTfDkMffsmtEcEp4B64WwpnJ2QwizbCT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xxbuXBnSQKonuhE3CLcqe13XQNS6CzZbVkP46iAi9fE5eyLFz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8005 - },{ - "name": "bts-bsip10-worker", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-abit", - 1 - ],[ - "bts-committee-account", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-abit", - 1 - ],[ - "bts-committee-account", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 3632 - },{ - "name": "bts-btcbr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CNMzNcvWPzMcEQYJhReMx4n1Wio2Nz5dRmEyh7saT2SuECH7Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RLbRtQZZM3w99ZecwLC5GUupgJv9kdJYoy2kDRbpjFDPogrYY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2415585 - },{ - "name": "bts-ajlookin-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rvn8Cn1AhJLkUhucUH1PxbqKWuL2E1ovnfq4NRrUjehzWfM6o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z8KAzUA2qG9vjc7MexZz9w7drmVwK8NYYRkKduCFZDdNB1CF6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 195 - },{ - "name": "bts-bts-budapest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yW5SmDUMeKieiyydHnQyHReakJUqjSwzo3GiWD3xqYXmvZTnC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71L2BivRL6T9A4hmQAZqaEhcXrbgykeEBem6kLb1bfLWJZFTXU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17158 - },{ - "name": "bts-fronpoket787kolimaku", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UbxQLNhZrzpgTfLpBVL8bj7E9QP1SebZGyKyhpCGNTUUGN4U3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T9byrLdoCXBiRrgcWbHnV1gRQk79PjCg3D3h3rG8Y4VHqWdXS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10302 - },{ - "name": "bts-cni-herbie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EM1LiMR5mFb3BmXVsPzPv4hE3nmicsUeTn6NNawvEmAJ7Pv4d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZkxPBoe5RgeFctRu2SJXZDvhxnMF6dfAtSRchCUY3ZN681Bku", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-ivanobits81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BrmyY8BSuR6epyT7KgujRyMeEWoW3eSUEBDHbc6dXewRuL5vA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AvMEL41wCj1T9DUX1yqtJEu8MLY8yUbdA4p5pQLsvzCSnfeWU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3706 - },{ - "name": "bts-zer0cool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xHttF9Y2bf9Jyz1LBqeUGe46n7KvkVtpEZbBxx8nqCQKWWdyC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vfzVHSAa1wBuRv7kiyKFnWqRBZb9dRNrdy2yv2wkZQwSakWHP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2579 - },{ - "name": "bts-cni-vinnen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gzvq6Zh9uZK1CoiNBjvWiNz8yo3qZ2sxbzsvvu2rcenysjgXY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7nd1b8N7oiGAxkc6c7ys9bJg8Y7tnnUFH4QdM27WMEaNSUxdwH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26578 - },{ - "name": "bts-hypno-crunch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bHkkb5dau9DnmtqYXdMk5BCcCvvspTLdftgdDdzyFGiYgQi14", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mgVCRdMgTw8vAAiCxs7vVqmJUMQfRXyxRk2ud7CSWdkzJuJKP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2601 - },{ - "name": "bts-krasi1969", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Gg7tf1U82uQiCkeiFA7uB9xSTRiaq2un1dhGsUbPv6CiNYwRT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AMxH5ikEN5B57JhNz2pVs2Tn5TPk1p5EWnbK1vhWoaECJ8iSz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44757 - },{ - "name": "bts-asdffw25", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iC4cEv4t8GcBC9gi4FSgofNU26wmWVmkRb5SrTh2KZJHGhqXE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VA8ZtQhCTUHCCh6bkzD1xXAYUux4MJTXDDVgSddEPXZrKmHPS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6785 - },{ - "name": "bts-coindup-hasho", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UwTE6n7GUK7SKzaCT4j2yZ4KvCNqrnzuB3KfcM1rjsA5Ktf4g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6quhsTRCoy5kUmsbUwvyZekXGrmwpQ2ucXqdSQeTuDB6b6277L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7203 - },{ - "name": "bts-chey1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RpAxomAUwsE43GQZyxh5c5XjrBEMVVcXd4Vm8fmRLfN4Ds8Gc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65atyidBkMp3ySkhXMXdFPykihTi1UUtyhyV71rX3XMe4CUCaz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-elena", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qKgKwZcUH8mGHv1YbC4kSsrdVnc8iNZgqUgWLWQbe4hvzYmrc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7eE3Mtnaq7vLMN7vXcovWrCK3eeXTeWTAWFcUExHQqHMf6Y7mz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14970 - },{ - "name": "bts-cni-allsolutions", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76c4ibdUfm4q8ZXag7remy73UXmtrgqkYTFUgFErnrp1TzQ7AH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST517Jvzz1om7Wv7XCK8avw2GWnQipdPjB25hFJRfeDdUf6Vm34N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 404 - },{ - "name": "bts-goosenl1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iHxPsDU6uEsLe2VmBumX5JmFu32qSwkqUARRKjf6bLW9B81Dz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ptAcQSc7Cb6QLUFYsBnioQhvbNTmFtyEF5BH6u3vHJKXsdzvp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108359 - },{ - "name": "bts-jimbojuize1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Jy6tEyGUu12YXbRVWUQtUr5e2SyzTEfeDVXLk6bwzrhAe4pJL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zSBswvNfsPnH2zPFD9WW1ZcPUQoMCgj3Ecds6iKANnq1sxHWE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 940 - },{ - "name": "bts-alex-n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6q5v6qHs5pSpZjnT5ASEuT3J2wW5aKEjJmaPxT9iiuKrwKM1KR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hqHcUm8nBoRZ26hdnegbxcXEwbHcRzgbo2QEEgx4oeZYz2kep", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3860 - },{ - "name": "bts-bit-freeman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AjkUcxCibbVfosoLuMw7LKDoJX7r9zEGVJmj564ARjewVu1MJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AJoEZeTYMUq4WwdfFedUosrXeSTLTcj3sHKexmJz4NmstgeZK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2719 - },{ - "name": "bts-trdr1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EkWtp62hvDq9iKuoVrCA9rK2YQGmD83vswxWb4Vvzbu27A7gg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78W63oGPaccuxQBxA5nrRg19TrhiFTt6sSGv6m2QWFU3xrSb2j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2753137 - },{ - "name": "bts-h-duevel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pdCyisys6KqNjGzqkCkYeuc3NKvGoPbF1pVsGZ6RLMTUD1Bgd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X6UaKLgb5SYmjPGc3s3zwwTXBoruoqBxU8zPQ9kR7AS1PEh7s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2902 - },{ - "name": "bts-cni-goldgirl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rdUoDApTazGcV5fxGnRAfSXvF5NzST2aP1VFUX7Lpmb9ZhcNW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5C8WeaHt2Fqmx3ywDYGgCFHgrT6v9mM423CghqYizjuqJQaBDd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33644 - },{ - "name": "bts-cni-walrusron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZtYAWJp1Y7D1cvjYJ5WjMfMuFravan7aGuWfKPEDUBujFfGSQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST51m2QcqsNjpe3gb5DiphYmffDWmzt6kJnadSjrjDWHGp7NT97r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20110 - },{ - "name": "bts-dnh8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NCtsUR2tkic5akcVQVZLovzaT92RyANvuXXsukTNjukiRd9pF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RUUuYs2p7zsCti1uWWw5t8AntDhJeR3Vv4nnQdkDLftfnKVaU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7889274 - },{ - "name": "bts-c500", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z47ZyYg9eBdJws6hdnkS66wXKntczLMFEqSDBKvMHUB4nyY1s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ojWRzPV79E9QXJJxqKumPV9LFsuhMnBNDDdR9267pra3vsMGS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-maya-nora", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EpHVfSc9NJEcZziaFgJXZsickocSitzx6YgXtuozim1Bhs36c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D2YsdPxTEKXViG2dgMSgb3NsWSRz48e1whRLikkyuugLBKU6z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 568785 - },{ - "name": "bts-bilbo-baggis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ewsi5DKPGY2VZFs4phZbKRsBb6pRth2tz2VrqJEx6Eff2Bvzk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P98LS2VMYCcTT7ozKhUB6xDsC9kHSMppPfASnhLGixmbFvLYC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1535 - },{ - "name": "bts-cni-movinteam", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tRPskdtc7AXzZRLFSGBeHaTjG8CPMkJuAT87hPz9tJ6cSo85q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6eZ4wPAgG2Cq5Rd7dbYdES1G13M3PJKUgFRPhKNJ6AqBHLAm9t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 594 - },{ - "name": "bts-cni-kangaroo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84W331X3HJKokAVD9REjokPoHSiTY6DmRUXqshHWWRr3esUPGn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5LYwxkSfPFfVvGaCefWT7tNYYCC1GynuGCDLnKhV8qZqJiTJ4i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24006 - },{ - "name": "bts-zcgbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UhRW4HBWJMs74vx8fskdGCkGufxHAPFZekdtHVHKUumNXPhPN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KJfVMFVKPfgw1Q71PCPttu8wvPgqSBLWYbWCfToE4haFmxrzj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 380 - },{ - "name": "bts-cni-blessedkim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YPosXD3PsyVNL8QAyWiZbG7jubsRXCFLTzWLfE8WEuhWpGcCU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69dkX4ft395hyp9wDfyJcdxnvVrfHQnGfngCNMdPp6urQmRDKN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 123 - },{ - "name": "bts-t3ch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ppyf3VD5AjekMm5inkqJLJTi7gtaAPwM1BBNZedizxgS1rU51", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hESDL4QoDsTSrSq7LLNWawX83aUQtACiRS3hV3jCKEU127ctx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 234 - },{ - "name": "bts-beyond-money-workshop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77VQMVreXHJmhPjji4N5Y8hjyGg29PTNG3EtFH8ZsKkAnYxsEr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RTYN9A13aG3PaHFhg6w8vjGoXBRgQ6ycj1eGX49qbtSjQxhrr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14749 - },{ - "name": "bts-cni-broomhilda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dBWSsFze7gqu8Ur8uhSmT4EXpADCGXgpmyhmwZHrLdjrhucG2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Ck6Q2m6TtQZURLFWg1ZoshxKTqKftBvAyj84asW5BJedZQqGx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7369 - },{ - "name": "bts-cni-chadsdream1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qxUaun5o2c8x4ot7kHurrKKU84JMZrL7jYQL4BdN9UZGQfjar", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-sophye", - 2 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cHe5osEYdk2toc6niRc2CPMu6i9tos2hkx9dFJqXdko37DQaY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1114 - },{ - "name": "bts-dev-coin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69oX4yLh35EE5DTSDJJmYGVyizpdEnmUsen3rbyZiv4bfFvmCH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AazLD5SK9AYPctzJzXuuWHQdRv8gNsmGvGKPBvWwb1Yxm5CMk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-dori-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dY3voYd9rpP42Y8X4XX8hnjDQ4ndEzHpG2Ue1Qjvk4K1UrhTB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iNLkFbVArGyqfJwv25ANXbKX87JphLuAAUKThphZcbkvEe4pk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 258342 - },{ - "name": "bts-thunder111", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sag9ZSm49eaFqKBdh6YSGBRGExQwB4B7TMTpPLb28B1HBzjhH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BciFeVFbK2mqbWwF83dPg1ndPTMbBPDexTFooQSqinrRp74Nm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94060 - },{ - "name": "bts-jiangzhibin2000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6g8qpy6VVtq3rPj4tmoWgZHD28oH4YWjgYEy72dJdPov1mNocK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rChnjA4HUrbjFShU2tR3YkWJgGK6aemQxNtXRfCQTFXgyNR7p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 617 - },{ - "name": "bts-cni-rkbgold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55vK7Z6uNFrXeSnayaLDAzA3nSRg72jermZ5aYJewwwXwKtCK9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Y8gYxsyAirenU1jycEjrxa65oMAF9fWES4syaHUgA5sL9M3JN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10671 - },{ - "name": "bts-de488", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bo67HsnVxdEBNiwjza6L3NfiYD8oNu7TU1y9QUQ59dB8SaitQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x6VL1h949ZL7PSpqVoAE1FyQzGQUSwhWZmgW7tY3jpcCGCPjP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-i-am-blockchain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XicA3ALCmRmLkMJuxax5VuifHACgVusRXzmPVCE9jfWDMPHRS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Rz2z7fbLNw7FwBMLjyqKdo81imu4wFM9izmPDYNFHTT782Pqi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 88296 - },{ - "name": "bts-arthew-tong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GKUM1H9kaGwRpywoPQ5T9Z8WJxt25PLsBKtxysuPEtJDVTMzz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75V22thcxUfcidCLXRnMdPCRFmdvcMpeuhAq3psDo3oMdb2kZf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 263363 - },{ - "name": "bts-nushares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LCyRWydLpUg2ypnYYbwe4SqNRSh8HQ2yUwxPYjNAye6BxgYXE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WskCHfVemfcSzgPCxbvbSw7ZZ1WsHAAoupQsPjgQmgntFzRNH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-xem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xnAzhr13h1jTHJwBY9uVURQyb2ish5G68UB3Ujvyys3xWvkcd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aajYr52ZUdKDvtFZSZKdTrks3fosQH7ZBJr2naLJgLqMzmF1c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-gs16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FLZnMbYXXo15riDbep4piynXroxXbs8fadgvmHHp6MFsFvAFF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ojb7DrDetUFRRtfY3LyZAk7hownqZw16Bhzr39ZKxgdP3BRkK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-dimid1987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cQgcF4r4e97MdopS7pgcGUH3GpPKvUnb8Lat7Gerc27RYx3te", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76ub2sS6NUDeLQracWjruGtoCZ4rsP3Pj9vSKKdop2YBsFFYuK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-s500", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AtHdNbhmz5sFLukGdo4orF5e3LpE3YcNW4WWebU7ibyxnDjmy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eCSJVGzYpDhx4hub2WyHgarKMwtig3jTGu4UMko85ZydnZXCG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26801249 - },{ - "name": "bts-cni-john-yngson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cpQHFVeftfTdDgb3BYjiLosef5TPLQLuDDf7AQ9BER3owz1XH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST66CFt1EkdWH8sN7wZLsqh1zQRrCG1n2j1bRGArUUca8DeR1VtK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1417 - },{ - "name": "bts-btbrkrs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vM1qAF6Mt9Zy9DF1FZ1891dNBJvnGfmtU82MPyuSzKdwv16Cj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XqzGLSCN52nxbhTLGgLcDgXWY1BKduviqB9eerv2MooFj2YmU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9211 - },{ - "name": "bts-bitcash2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qtVPHroZXCJujFnxXPnjsrFKDS5x5qz5xUshCrKNK7grkvLiz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rVEm1kssLv2LA21FoyMcJ5ATW8h3P1icqRtpuFjnWX4786UHP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43183 - },{ - "name": "bts-creuset5273", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f3WbLnp27FcgBx8ZcEhiB3tRvKkS5MdN3iivQvknH3GiiiPyU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TY8PdR5gkZC3KX1SV6xYi79qmpLfQgqiu9WGXSB6Pu9oecWS6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22765 - },{ - "name": "bts-iou.rmb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WBkD2kPMGxXqjmiidmZnUrQVmCaByUCq16oE2Xd7EYSbWgkQ2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aC5FuB7rWcHpsJRZ7wgUA3CjuRdubLWj85iF9PHpsdPyU8bHz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3190 - },{ - "name": "bts-iou.boo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5peife11JwZKhTyDWhycfbm2DFF4PNNLvJBLUpiJaodMgznnp9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PwQpoGczhJ85KsDssTJBqGTwGF83P5BwHqNG9cByF5QjtQU5n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 626 - },{ - "name": "bts-j-crowther", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k3mx5myvXjvADdNycMCbU6LutxWd9HvwVAijdLv1wcEG32Xgi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51qLteQ3YfjcWkXCrjD272pqn84WYtBwWFp9oSG2tYYnezfRjo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 740159 - },{ - "name": "bts-js1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Vi7qzSRaigZxugDzdB7msRijbrVXwKxhb6XpRmNqfccDdcmxQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79b3kepcC8kAFogja6GBkQykg9MovQyJDW4F971p4RHJjtwgL6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-candlestick", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jE6TND1CMuHwLQBML2kGe7NHXski1BwJoSGA1U9tkFqvX7kxA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5EZWoFebt38EocvQqqUUQfYq4Vu9bTAJCGCogzZHMctWxGR457", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-mytestbtsmobilewallet2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gA6iTGWsoeNjLpUAR5M9rjznpnmhJ6THKH3ttFeReoak24Pt3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zh3jKML3YEXtsu6SJjQrUDuv5fmyTudLYCK4Z5HfaUcGtpBSM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2678 - },{ - "name": "bts-dao-16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VCkV7rKmjhbheeHZMfzrnkVD5Ls6RoCVS2fzGWjtzfKFoxuYX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S9sWDG4SpVvPYTK4nKW9y3SEQmvmbin9BwxXMUYfvD1fJGp8h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1037908 - },{ - "name": "bts-dstnsn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AyMtKN4c7FCV2VwoVEBT2m7Yv4raeDnLzEUPUyEY5LM3JT1Dx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BJ6NthewyaCoNCHJcHfuHhUCMyo9GfmfJ9UioMcrUCyCB1zMA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 462 - },{ - "name": "bts-ccrider-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fQFsA3tCDRmCSJzhkqckTxwXfaatJ28Q2HwM1413SvNJLqNiD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8FcxNd7cu1vnszGsjd4ayoAjfSczH6gtwReTQezBxUSHQ75ozV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27823 - },{ - "name": "bts-radius724", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aF1kjQC7hvqEpRjsaX69YbZX2qficSRxJq9oaEPMf9jkPDHNL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7MLCEz5Wfppgc6oVdthCxH1wAdZgjMbcK7ADZosmtE1mfqL3fm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7168 - },{ - "name": "bts-ronmur2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-jellie", - 1 - ] - ], - "key_auths": [[ - "TEST7bSexcRApWXxe597q8jQzBztrTMght9X75EHvc8zc9r5ZUCAxF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5UifdqMHpDozmBzSoeoWzuD3eziQWFWENtabxrwE7hX8WARp1V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42280 - },{ - "name": "bts-j-behrens", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jKDMEWGyMznRv4tH5xnbJ3odQJVsZ6Nvmuj4TJ4Z1KuLKZE2H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pmiZxTbnYtWWbedtu9pdSfCGVQCoj2vb4hCcn8efsuDxfQ6VY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-qukuai-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bJhFXuEkcC7SxGMdKmRGZZYCM8xCvEHt5wrwKZrwTxonm9jKn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51NvDiLprp6kdmjCsk87HgWZhczZYodSgeVp7LBCm47ZLimjjs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13639788 - },{ - "name": "bts-hjb-ventures", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Nxr2cra9GzQ6cXpLpnQTvKRQf2kEp2xAXFLxUjLxKhVUmvq2W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mKfGV1FWrFFNnuSpbKqxEjADf5DY6LMpaJq54BogJy1GyvYDb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-wxqljc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EkAAY9nKRUr6tWS8f8hW8m8BFFEwrUQed6iE7or6MJEMZqYqa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Z3Cp2utMN5ppbuZ9xLhXTiF4CCamjxXqJjeweN9iUEv1BD1hC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 591001 - },{ - "name": "bts-rushui103", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WkEyfJmfvEjjybSMr4G9MGibt3Cji4jLfGnR7557896ZL5rdn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST699a18on3FbYnt18VnAQmt9EXEywJNhDK8iCMyWdDepq6r5nHc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 334 - },{ - "name": "bts-cni-greatshare", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST732qj1bjR3UnaGozMcc3MeaMEgF2w91CUyzJzZ3o7jmdJs1Kto", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mJjpisHs67BpB3FWwY6yMH9zPo36EriGse5miRs5Z78VxNKkN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3998 - },{ - "name": "bts-endlessgaming1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eAb3xqeZBH3GNGm6pWmey4Vg4dTcrwLSH2MeJ9SKfWnv96GxY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vomTJoFVtqKZAe4RdPth1WdScijCCGc5UjctwCbZaJvQzk5bP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94156 - },{ - "name": "bts-cni-kecksliq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xLEd7qWDoXHNE7HJTpKibsnLtV5YXMgmXmu9fmu2AniGThv51", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6hqPiBEyTWcQCghxzSEcMYMCPojb7hLMEJFrAUGyA1G81oMWaQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1378 - },{ - "name": "bts-b1ab1a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5V2s7PiYxnkJJ4tSPF5UWeyL6hziuD4CkhcJuHRXeUopF7PoRD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51rfzR4VZTawahPLJS43FnmkeUSp1uGTRNvvWjajCfDuQh2kk2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 100 - },{ - "name": "bts-cni-wizard96", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QmLzBmHtkER8dozanPViaJwciniJDxCuKxyP6nrNpGsfw4QAZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST88vmayewsAh8H4LStw4oYpe9ky2EUBq4ktFChu36tarh4VY7ic", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-btsabc.org", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HtYaCEyH2Hd95ZAHAcUHbse48WEykmjmiu1USccWVrjEP1gqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rsUf1czcCwQvPK7JSaZwKo262ukmPkU47fR8HMwtBNMC2fyiA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 923 - },{ - "name": "bts-cni-broker53", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SzrMcRhWA9wwUL6oRqgM6LLjd1yHEfq5dMETbGD1dGcHx6yDz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8UHqGx7wViVGHQUqppWF8iMFRTCc41KihQpDUq32QHTmGwT3b8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 892 - },{ - "name": "bts-cni-rani", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KviktU8G2dRqZoEG9QPKQHoH1vaTJh1NRddDKqHbJQp9wLDji", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7swZfrVMkYeo5YHxxNmLv9sETe74BjdNv5SUniApw4X9q4WMsJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-bevis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a1T2MM6FFoAz3MnPivj2Qs4nZnMRVvPqRZpE2eWfRnrHarERY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6sjR5PB3Jo2pvXYYK7P1s5nXCv51q4dd3yQ14xGKG12MYrMgLB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2253 - },{ - "name": "bts-tumba-rumba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AGj3rAGJbaM4nbVyBU1AFGGLYbqVMc7tXAP8EP1EjkDaMFgdM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jqJWAanggLwXSA8wNjrZpC1GuEHmZCvpGLnN6UKq1mq5zD1Jv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-mavil005", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75jZKiEEaf3z9XedUXKDBYZiwomMo5weqbv98FPChawmLSX9jS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oHhgkW1jVRfQfbgqAQ2JJx9v5bSWJsHdY2HKPwg6fmAvKpD5T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49 - },{ - "name": "bts-cni-sille", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cT4bvzsbgkAJLW896CPt5qLBoRuKGtY6hwbomDQdPD19ooQd3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST85WvrG2LuBVXZQfTBFXiGL44iKTnXrLD8RfQvfuf5qdMpccg72", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25542 - },{ - "name": "bts-dee22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5haaVtr5A8oHZn395bGfaD7dGoJEsVdq7NetdDp4P8ri7DbHKp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cM957hXFkq7os9J5jug6Vure27rHkf8FrxHkcVgQ3gt9vwR5w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1433 - },{ - "name": "bts-gadawg2351", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pEQp2xmEfKPo2DXiMTwQWkFJVrfn7u1UF4dmkUoRcjFZNbuQJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5BM2Ws8D4BKR9A6TT93JUfxHMTkiUjYdhH9tqXBHMqvA5nxyGU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 426 - },{ - "name": "bts-dele-puppy-reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nFdsCHCBwRiSQia9tu3jaSGn6MWajE95uTJfrJjxvKLQHZ4Jh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dmsKt74Jr73HwcwAysWjTfqKQbKGueSLW2fdVQCefxdbY9vbB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15236 - },{ - "name": "bts-clm69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zyYZXMpfFjr9tyVcGBrjfWWqAP9xXEGBUNqnjkZ9NaxCiN3sc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6DzjkoRDUv4M2Us5K5C4k7yJoictRVAht9NWjGXCfYsqV9T3hT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1386 - },{ - "name": "bts-efundz1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jhim8QkkDYUGB9uSMNdXdntgiar2822MCLrh5QKkCfkxyStff", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5xD3FsgKJmcFGBJsmhXEjswciirmaPZx9phGmXN8QkuGUUATrZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 202 - },{ - "name": "bts-der-vil", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Af7tMMqmjPotxY3REM2qCny2XKMBdvy7RcK4xQziUTG4EhoEX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-hjb-ventures", - 4 - ] - ], - "key_auths": [[ - "TEST8KjQ8h5eWRWafvic3ki7woAinLXvuctBtjGyjYsXaP4Vz3Y6JL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130 - },{ - "name": "bts-netcoord99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tmMgzi3RDEZwjv5hKBE4jfUxmk9wz13s3eDFUF7nrCnaT1Kpe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5huu3QLaMzcCjpgc79FANSuJ34BiLS7w3Gm5gibXjghmxPh7GL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7033 - },{ - "name": "bts-little-boo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e9UfDgrwdjSwxmJ73Dq8P7WQYpBdjVGBQH9bSzcRhkPp7CXFA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mu68H9MmWkocEsYT4bMi96TUxNYUiYMuowcfQ13mHQ8JbnKyd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1598 - },{ - "name": "bts-ssayan888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tpkShR99uz7K5KAkRWH76t8f1AesajKkTXvqMjNgMFGoyXNvH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mCunngbuTVjmroJcx8mAyxPtsKo5PaPdEVy4ZJJnGuDhXUgLA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-rolly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66aSYfAD6pTrTmsTQe6ARW5GEv67mTC41PmjBSxyXwRKVsjS1R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aeTmrTUPCupTnPDEtVW9ZMyBaqFXeqxoWCbSdz86vfrtP7FS4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-jay-o-wilder", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aFK1BUks4uPMupGz3Vxq2TwwbSnzq6KHQ5yEXrHXY6PbXPPcH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87CKSJ3TWwRDJZL51hJi6A8xYjXaeJKiRm2yZoXPTE2Xqospnu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3642 - },{ - "name": "bts-zora-arkus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M34dqF7Q689iNDfS18C5QGcdMTXN473dxq1cWgSykyzwU8wuj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NLu7jD3tJMShqBvxdzSzLzaXQsKq4LaA8eE2FLxAZFnVfRYBp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 710895 - },{ - "name": "bts-nihao-520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SBENFCdMajzY6kGeVfV6tpM8H5FQRM9KrsYe7ojhAmpaFyTXA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oSKCXeqRtp17XMeF1tcvMFR5o5Bubr5Soa8sYkdUZeJRMJYWE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 117 - },{ - "name": "bts-little-james", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nYTK9cJPM9Gn1p5idqFD9fYkLsqHGDpRCKcaF1Lg8L9Fwr5H1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64CRGXfdJYkjX1AxnrJz8hbXhf8EuD3BUsMKqjsQ8DfhwX3Eds", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25910 - },{ - "name": "bts-optikalsaint1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iFFBL3HAWiRbtpTyhwy7y8TCM2ctzAXNX2Ejem1qjkYtDw5Ut", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xagxje6ySLrirUszGs8p9pAMwon7v5hVwbYQaf3YSNrytTh2h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20024 - },{ - "name": "bts-andrew1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84J9S7HXJSYB1FZ9sWbA7jT8VRHSL1PQxas1mXtE1X5BuXqu7p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iUsaBpEvXF4SPon1gbYk8DhdZjWfchRkGVox3MPiFynAeMCaG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301 - },{ - "name": "bts-discus777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q6iCiLaNr5BbT4pJPxhNUAEu1zmdFyfacNQo51bJjSm7FzAmo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vBKiC2hQPdm8GjE8xwtAzYz1Sk8SND2tiVkp3r3XqDxuwZ6fk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cwwf4321", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79vx4bBiVz8Ex3SY7tPYeXUo4fCrP66jYP5quKxNSJkSjoveZR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89DjCTjwqCm4w8bLM7UMFigoVoht8VVwYcttJW2G45E3yRofLz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15550 - },{ - "name": "bts-h4ki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TiuQUr9YFtFpmzA1WwTdtupB95W1pCUesieP4KffdukgdWxAH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZJHx2CZRG7BcaFQJENSsGtLhekSetyiqYBtaKZ5jhfGJ2GtYL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83 - },{ - "name": "bts-tj1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61Agp5QEUsKzfkxaBh2VHgGT2vZdzA9DypW8LwYGbQVWhxui8a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Kmp8ezkfn7AMwvjHaLnaM91XtJEgvtBZp8gYgdZedwM6vMcTG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18393 - },{ - "name": "bts-inanide58", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hn26S2JhdWeE9WB1rRKLu6TPLiQSzZiJjpMZ96QNhHpEnNLx5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63UZ9zyPjX6rspsoALuhG7JXraY23tHJDQD4SJCVu1gMaY4Lao", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 85841 - },{ - "name": "bts-ybaidani1235", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5529fwZiTJLpDtpidvYrBkFkg53C1eXt4fK2K1ifN8p1cerUQ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iJZ7RBsoDmMv6G3UaPt6TFcfbos6a6BsDeNQcrSAVGGt3VbBj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 103 - },{ - "name": "bts-drpkb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TLPqxkPiMeGFq4StUXuJkTnXP9bwTRaFnLa4tmcrj1jRFo3pN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7EfViCXWwiBXJeQ82NFeKhowQDy4E95p8k8vku4TrrQ3tqXFMR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-d0sborne", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WFUure6B449VrdaCQ9UJPqGqJi9ywq9d63ex2AwxV1hB5ZA8N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8EoTcxxR6HdANjffEypMMhhbGWJVJPdJSUzy347RL5AeHFFjAs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1437 - },{ - "name": "bts-danlovely569", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76ys6wgiPj41kGtVdsNHKGiDHAEKrp5rBgn8sQsQd9FzFMBxrS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5psYp61CMNtDcKpWsUpHt7cF1RSMskkGpYjDYxHhdvgieoumtt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 242 - },{ - "name": "bts-gr8tf8th", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yh3NJYTEnqc4hMGzGZekKNJ9wA6pcVFNsP4v8KT1NJSeWsy7U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5enkYHGL5AZL8YPUKa9jfWuhQjJwno6gSYqxJDayjjhSXSRooy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6289 - },{ - "name": "bts-jmj-1946", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ua9v7QZWiVPsaTXM9DASaXD8rtidSDEhQaSc8fKR48jT5EtdS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6W1FwKXkxqiyAi2rQa5pApLEDDMYjEgEzVhDnc5hfG81ZiZ9GM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8021 - },{ - "name": "bts-liz8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Rx7XaNH5mgGbTQ47EWUE4DGbEzZ2B5NA81xs8HZpg9u1yxKbG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5pQpQBfUzc2uTQ2FoiGNUdy3CV1gyHWGsJKXrJksERKr2ftK8z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4545 - },{ - "name": "bts-biounit112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5veQKfRBryAm9ebm8x1Rgc1cVP87t1ZYZHvHQGqhoM2KFDCMCN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y6GjdUQyfCy7LmJQdT5Kx131eMSCD1B76CzQqopQYPEgxq8hH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7039 - },{ - "name": "bts-nrs98440", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XyRGNMCZLLB11F5A8vPCiuX8Tv89yTXUtVvgtRuZYrtEa1aYT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6B2PRspjvTjGcSKA8DYo8XZa5B2eh12jBZFQVdfqXw4wbwct6x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-clg98439", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5db73AVvsB81wZyNTiqnrfxWk5oPej3v83NHrjkwJgwQD7Fvub", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7b4G9aMyBnah4Z5ZDbRjwcUZune5539pMY6LeSEaJDyU4sdxMh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 732 - },{ - "name": "bts-menta808", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CRd8R7BuwtZ2TUy45QYwQ5uJY8WznmUc8sdQRfmw3HeDtdQGL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kBA5YZuEBFFBDmn4iQgAtK1RSPP9ZgdFsdL3g9gEDMLYnaTnJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3932 - },{ - "name": "bts-cyberclones2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EYiv6wnFzySUtW2A5JQ41gayvRCgyM9sniZLFx5cixR9qY8XH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79HkirjFrvdSGvDE16tiFEY8zUcqFedy2PgemqusiUN62YAxDu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-k0olkal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST525NHEHCMNJD3rLsY4yEw9Ji74541i2VwhLPue9gkNTpyG5WQ2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZyCCso5aV2iDgfXCiMb3yFJW2UAd82Pm4JeTUN1jnaizHJjmg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3386 - },{ - "name": "bts-egles-koks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4utdr8Qb5LxSREb8H5LwiVHJaGr89886Q9EXPgPxaFkHxBLYNB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zej2BJdgK5rQer167AE6AmFuSWJXCkMNDNmLGt2YqkDw2GCTX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 152 - },{ - "name": "bts-erik22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AHdg74P3wL5UbozeJSFW67JgALYS9PJ1dc5hZjs4zfDuG9Gg3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qmsjbeqMfEW2hYearjcVMtgkShLSYL1mXg2ZjmqPSNCVPpYqp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3687218 - },{ - "name": "bts-di37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ed44ngBY1Y48vwJgeaFpk4zrXKw3EstA2SGrXZfdxu82vGKD8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k6kVcMPKTzKz8bWWSmJb5NzvVqFH9oRXFJnaKzkNRpjm4qq2c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39456 - },{ - "name": "bts-colombina7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ywjxG8eRkRgZ9d6tgDLAWqHTnmCWeJuiZtW7my8hGEe7fgF5a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EeCEzTNELn7oiPyyvK1M4BHcNtCcB8FRuZGmHu7PPa6xDdAWH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 958387 - },{ - "name": "bts-yasir-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52mc9YShJFBj9b1pGa9NZPja8pP1NGu7TjyM7cb1jbcXTP2vUx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mzSdK5dMi52g5D9oSbgYKuMDKmyuTZs6vpMq2HfRUewXRHzEm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 776 - },{ - "name": "bts-jim-abby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87rK2WCD4eDV1ydd23VPDM7EsVRLN2mpBBKpWMac8SGedaektT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PaTc4kcY5ADA42MHMXSdtdN1QyhmWZ89HHV77oKNmQp9Q3cFc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379177 - },{ - "name": "bts-laulaulegeek191114", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75AGnLhzEj1hwo1987BMpvhanfqSBK768rXV8QgQ9Cxsf92gcT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6peaPK11UG8epWuj66wti3NhAXUAKXg3p1cya83fCaQbZvBueS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 393806 - },{ - "name": "bts-mtp220", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qynq747NqWWxYKqnABDNFH7RGEhA2KymRr52N5pEmQZYdeYwp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79uRodRmdccfdDLKTBnKZy75vsduXboSaAESPji22CZew9wbqd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 852326 - },{ - "name": "bts-importguy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82zkcu26ArSR256WcJRiAQ9p9oXJZCLYk3Y3qhnajKKFyT4i2n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LXjiTPBCYsxSPj3p6UEtmshGR4NT5qUivgVYUFmriRRwLFRyq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94020 - },{ - "name": "bts-jack-w", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59RSu7NKg7t7fZtjtSGvQnD9PQ6Fu9i2KKKCKrSEDqSszGSqhq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xn5uGUPNwS2dVBuDEmSELfn8JX9rW1NahLCMhjmopLcj7ctqX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-div.botfund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64JDHYYA5ZA8ddMyEwqyQhDzRf9yJrMMrCx9AqGUAtj9ahC6GU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64JDHYYA5ZA8ddMyEwqyQhDzRf9yJrMMrCx9AqGUAtj9ahC6GU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2877 - },{ - "name": "bts-tommy7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PQvuXzu2Rn5Wa1RzLEzYCdEwyN656Lw5mKjJWrG9sp698yk7Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST571rEsicxkLfAuUY77KXdzuZK5QnjoJd7Y6aXMpqdnjMaqS9X5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 510 - },{ - "name": "bts-krpt0-f0rg3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST723ZYaRwTKCWPdLziEnAjPska677RzS5kYas4fw8g5ADsvCARX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NeKrLQcGZ2sTDpmt7jmMJb5sR17uunMA2CmLu8dxxUCo4HGED", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1073 - },{ - "name": "bts-prkg018", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WVpjtkAaNhtpgwVv4oPXuEy5pe4xekJDcVSwv6XQ1EwyNJEMF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nhG5a5wPj4TQapByMnKPHhvjJKsjpT3eZGdD1oCUsKvGzkvza", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376286 - },{ - "name": "bts-jiny2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AhqG8diwZgjVxzwzWZGput54RrWA7M6o61cpuT8Lvr1Qanmtm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77tbGHJuM9BKFFtyWhrBVXY8uhPRQfi1BqiVCT9mckLx7yFk3i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37018338 - },{ - "name": "bts-jvqygbqcbhr21rezzjmgw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mES73tFqtLwWSwP4WAA2dRnNmAPdaxe98dGASKv4V57XWKHqL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MotLLbd9CKnbaeGzVMkJh9Ed5AziThW6GTiQ546XPmjLp4ZRj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3761 - },{ - "name": "bts-freedom-chat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7upNX9c6F3d4EWi5b8nMtx8vV2rx86BteKv5rk2cRjjSrL4zc6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88zjYgeCe1NygJ83coRqAFUPxb9SD3HUBprZFE3iogXnziomuB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 84440 - },{ - "name": "bts-n-kimura-ip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A8APMqeyUayNeJVtouKodeS82fKBfUzv3zwrY9gSy2c93fKBv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66AFCPqxXjvb2TvpKtseXva1mSLKQHueqB7dUWBRd84QGsGugA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-logal1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L8kp1VWF35wsYQJDzLa31YiXqAkXR1kQ7w1C31u8VoWDuWb5a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EJVTUb9hppysr22MPQLU9JeXDsw4SeBiLdNrmMuPUnKbhkDwb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-nlo0des", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VaigVp61pYwnfycmoueeAxyV4pSKewRiCMBsdvCHaDnvaQMiq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RXMwjP6mC7vQpdJgV1Ko6h9szbPNtuj892mqYq2eJh338EkDL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208 - },{ - "name": "bts-clck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dykkbo52kY9LbutZX2EtJkmUoa3TanjjnKBJFzeDafAD1t3hi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B7AqpdmH8k98pkyKg6B7Jwis4A98DzEyuvuxs2ZkrZKaDPKqV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 119 - },{ - "name": "bts-pm7pm7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M46UcoxQsgQwsHJ2QYuQNoQ14xr8yTSUV2WxhLmgpyjbHEGsk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vwSjT7eSWxpvFNYMJMDbT2nRcUDaUD2hg1BVVYpjSdCb643Y7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3470 - },{ - "name": "bts-mea123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RaKCgyUQ2eHJ78Fy1F8qyJhgUG7uC4nru68Myp82MVyJ3hHXs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NXTLWG4keRQmSyxGDiEuUVCVHXokS32mPeUwM3dXeiwAbM9W3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167888 - },{ - "name": "bts-cni-bzywebs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pooY6MLjfEnTJbBwBFHKJJm77nA2UGPpFvTRSyiehaQmn8Pft", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76iGfCBbrTEPe2JknWSD8eVd5KRNYqZeoN4EFwY5vjHZ59ZWKT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 889 - },{ - "name": "bts-b1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87SBKpFQsTjFXohkWktXnwkApvjKE6ocaBusqTRAd3EAbJfuh8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7foNEJKyQkthSeqTVjAcnpKY2ULUZn3LgPNpToF52ZuoKAjcoh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-ithix06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Sgudy57cAMN1uhat55UXvzYEgzGR8ffgTDh3Yvbpd89J6xXxR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zoSXsmkV7eJLroAqVQhaZ8LShf7hqdBKD7KEp3BkqwXRk8ueF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 265412 - },{ - "name": "bts-fredafrica2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iryLoWpTysTZSFzciLTP4i2ozfmzt45eyftSumwewZKy5Cep7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M5QMYVxktURfETLBbeRd3gaiQ72UM6XfxHfyGoPzBVw6pDi4o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3159393 - },{ - "name": "bts-sunny365", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pW4hFtDHJoaSNiQxvko1VpHGCmyo1Q8dzwx9TodSjH1otSF3R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b9MbaUgBprqypNtAqTExjJyNRuj9cJzMVfsVnX1fGH5YsChvM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-entropid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Dm5r5wWiWXJRc1uJ4e3ZJiJpsgxmvx1m4FaD6GWJWBSXzxZnU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7APG11isieXH1ikv63R5CZyfWnGUBNBb6pEMARhV7XgV4CXGpX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2624 - },{ - "name": "bts-sunny360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LaKXsD5CnJeqaNKoAce8fqzVqBsimXCKL6usL4XQpWULsCKti", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wEvGhreaqRwzXGLUb911mnuGLJaKATqQnfZW14FbXezrTeqxW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49 - },{ - "name": "bts-fostt2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UAq3Ks76CF8q3wEMbKHpAjR76wiBCt8XpdH3Ewg2GreS1pNca", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DvqZMtjy5kmTs2bEiTF9VkTK4hYkkovUjxXT9fdVoLDoYZd4A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22696 - },{ - "name": "bts-panda22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST751kHMVQre4ygGMBg4t1n36iAFgzrXqytJrMRBYzzFWhvrgFpQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qZrT7ZBb4CUTgsJT99b1tjvBYAMsimiXMjv37c34eS9w7hhfF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46706 - },{ - "name": "bts-andriy-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PELX5cr8zy8TnLwNqed9YDgb1GtVFsCSR2JDpHEWQdMNF1XCQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JrSwTsJ6TRxiEhSG78rqK2ej8muuce74LAVvokFhtzBV2ce8J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-moneyclub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dWM4uJdc9KYG1K4qKTHFddnmyFg5A99v7gbiYtCpvGMY1vsMd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LNGSaz8kJDv2fW2N97ZcEzyDZHNfwXCLyRs7VQaY88e4vPep6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4316 - },{ - "name": "bts-cornwall430", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WhZHYdJ73JwEp87uyVLmvCmuqZqo74daGW2wYhsMxJxV84U8Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5BqEsqoyxXP5GFoBca5SGuAQYWctJvJxYGJGUnAvFkYYarWDB7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66 - },{ - "name": "bts-cni-1detgrl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69kyz3ESPrvaxW4B9YznpnEgjPKbnZVQ9zs1zK6aGdVuCcKkE9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6hn2RWTDFGhDjB5pWXeBRXDarkQwx4CraGfr9Z5Nt8c5RP1iWJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-jeffking-01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sYegKfFsGrLgmdQWTNZYCtEytbpsnAWYUHPb7LyG1edtFt9bW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53FRrahnjkaSRwvDWhY7C8ffmoCvve7ynxWm8WdFAL2EGczTkk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149 - },{ - "name": "bts-frederic357", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fp3iGsbt7F4nLKReMqDzoRVFzvgAUTBzGowuqMQ1oiWketoHC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pJSWoPPbfXeyiYUyifyfh1GNkatgjQgdM92iSpy1HmF7VLFaT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-atom.k-k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LjYm6RcDAE22E731jBXXUXvZYGiKrehkJBydayR43fPbmsrjU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xG5kv7LmtKwD3RqZCwgc85NLY77fpnEtxAuPdLF6n7w7sBo1n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1358 - },{ - "name": "bts-lexmorky09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aoCHvj9NwbTxwzkzVcGwiih7CmZN5vp3GWMe6gvkDTHgvBuYK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B2pgsUDoG55DNDdnt8rwxACr8E9x4gPXhuxt3REyzYXoZiWeV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1385 - },{ - "name": "bts-mattias123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w6Rhd72bq7CsUeB7n5p1t4xhywrSC2rMwYxvGRgkoNjhWiUoV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7x5V4VUScaVDz5Her2Eyiom9Y1MiJQF6C4U7gTJxLmWK1nm8UY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-daveryl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61xDyELidnMfxz2Gs2PxjkHaf1ykk5NsjBKfeewREMqd88WYoy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5PErDRX7yTWe5tEcMCVt2vtpPpoxwp6hw2uauyqAHv8JnZh5sC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 370 - },{ - "name": "bts-cni-reuelari", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LBU5DtqtyNbsE4bTGTQRrCLPkaUvsrsNEuY47cWQUcCvXjYYZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST79tGMeGLGjwQEnGU1StFwnFPno3U4hLDw9z8zEtRjtfTQcR96L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5942 - },{ - "name": "bts-cni-mystery5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xyqw4niMeNjD6GKKt4PZe36vcvuBF7aCZtG7VTYAGoatDjvFq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HR3nLZqCZqcXUQaWsRRJoB3uoka7oQ57RxMM5Gx5RAeBfWzeq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-dushi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BGzHeDZ9uQXgbNQxDxVyUMTMtqZ6xLQGgvkNBtLCnRGhvGDnD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8BGzHeDZ9uQXgbNQxDxVyUMTMtqZ6xLQGgvkNBtLCnRGhvGDnD", - 1 - ],[ - "TEST6wJrgKtdWwc3QZTMU6aeiX5iLkgptyn5LnPhkACZF4PNW9Nyqu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 215 - },{ - "name": "bts-oaky-afterbirth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LvjyypWsYVDahgY6JXoXVKzGHqm8ZAriT3sVSVF3fEeSE1tKo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Mo84WwcJJnsjnajMGS13PB5ieXZ4eipNXJN3sD5GWKfqgc2cX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-r734y", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iLyrxF8x5NMEad4KwoAfpiWixuXjjSS5eYfxoVPu7uueeZ2Ez", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5HDnMMaiBxVwJ15WXMoQ4DFzRZ859RevSr6YasQYGkLpZddAZB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17277 - },{ - "name": "bts-tggi-compuceeds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q1bvEWwdQ2Nhs43LtXzJ5khPKyQZtGXVC5kUzfVpPSq3Bm9R4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z7Z9mkr5KKpPP2fYwL9FipE3jJ1rJosKhdHewzPRYb5K8uFAv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-legs41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HSSNVjB3DM7op1bwVGx2CA3Dvw1fZeCyBanF6C2z8pNQHapks", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5GojtWUGKJUCeBjzvBsKZcFEqEnQJgnw3KWMDJxtWjkQPgqpUi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 399 - },{ - "name": "bts-jituo-kaola", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LviGobq6FMVRCCKkKyQ3wLov99JnaQUUd3tanFmMrDKBGy4tP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NUswHNoAinnEDJBiT1mngf2n9yWENK19TABBqAEvFGgxELiYF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 285 - },{ - "name": "bts-bizziebee1953", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hj2FonYXcxDNSLTwEsew8B1E9M6g24JJjFov6m8p7oHCNToGy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ya99P3Ta2Ekbw4JhJ17YMfhpCSQM9NoN1vxMJ9hGRJJy5v934", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20132 - },{ - "name": "bts-cni-brittmari", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jio4d4HrcR8DXs5Pen7xnADrHJrgxsTxWfjWBw8Q6sryDv98V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uPS7Bs7gwm73CX1uuVbEQGyRN9qsXtu4jTaKDyFpfBRkPKUr4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3064 - },{ - "name": "bts-cni-ingasand1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mFj3SqiBLRsyN9czV4DVM5qBdWtrMmAbM3eaE51rNy2M8ZTG6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5GJ6V1SdYZBroe7fwRcfLjKz3tJzEMkBLdr15xfrCk8fpTWskN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7963 - },{ - "name": "bts-cni-veedle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ByCXDyZHpVhFN3MHqPrER5vB2yG3fVci6ToVNvSV5NgsvdSkJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6mtNhwFRVRvSJDrktiq6k783EcJRfkjWAyqwbabcHbU95TR2mb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 519 - },{ - "name": "bts-rverdell33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pEFCiPaCKRYMXUpkMmVJXscrWCmtXxtDoUGR77PGfEtQqomqF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7EaGcp47WmBuuPdoywyvMKmwVrqL7bq7hLF8PscqMmjYHdPbBb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 740 - },{ - "name": "bts-cnii-supercub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SnCvoFcEjMEDFyFw2j38q1LeciiPTTBNzpKLGD3WmgiW8YDeR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qBU36ttjZ4rWamrgjW4AFpGkotpFyYZqhSfm3RNSvyPm6WdjC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4702 - },{ - "name": "bts-mystic420", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mvS2XSh6mogtR4Zq7VkfbpuMvJXASn4rPsiRcv9UHZ32B3zbd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6YH63GxKHczbqyvFAvoW9uCuC7euweq8ZGRsJEvTzzjnxdAXTY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8850 - },{ - "name": "bts-cni-mantas-naglys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F8QSKFCdWRb4pbTwRzwfyXo3HbsZR36Qc5A68qr1CB7qLYksQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7VQUKyEDXzn1oNVBcjGobj3DDp1ceyZr4tf6w5USt5YxPBAuuj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 377 - },{ - "name": "bts-coatesoutlet-sc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84A4f6CFBeWyyJL1zNdWDgmxVjLWHt9HAsKB5MqqjTdTAPHQHs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7CggZreRfjUs8bxnUA6B3TJkYJ9EzX4XmyC8Yy6tD8wQSwSqoq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-zcwfwf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78z28sR8HMS6ST4j9T7LBbvU4ejN7ecH274TPBqJjXFmN1LWZH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zvjSpwA4EgLsWi7SWV6SCAKrGAdyY5i4ULviMRBrykuVcnRCV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17921 - },{ - "name": "bts-tim02yngson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RqCa94PZPYs6KVqvonAu593cfU1u2LnctduCvSjrVSe9HqQtn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST757ofTGazJ2dYoBKBq5TbtM6ujnLdUSi4Hv6C398PwXz63axXQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2043 - },{ - "name": "bts-cni-wingstar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hYGSWwXbHa2NgQvhEzaDJmJ5wDfHaoPTKCCUQThWPYspnG3vN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7QNWWBsKv7CFocf857sq48CQ575x2SwRvtHsrDkbCWkXWFVwsq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 519 - },{ - "name": "bts-momo-23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vS17YqBGG98VvbDFL4Y8XyqSXb33FHzdZ8aByCRvf2Y5VPryZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nyhfkh8b883RT4i7zMZU1oTGSJZp1GBHUp8nz3kvFUYvyDRC2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 132076 - },{ - "name": "bts-mhoudg-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uQnhi66ipXDoX75Ao6tpjvg2CrdwCwEnG3M8aQJinJQ5uS6hs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E4UWa9MmYaA96AmVGBmCGN43SPoh4Wvz3C6p2ypnQkxZN2fGZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14900 - },{ - "name": "bts-opxz47mv28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pwP5XqdqV2zHGWqbRukumEgywYcGv1AYT5HYJ17Zc7K3KS8R1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ATkX8bTm23nVrXd1teizyGreHH2spcNqNzHJHXHCoWqXBTZHa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-banx-group", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JJSjgkAtFDWVb5nuTf4nco25Fd2rrq7p5jADvViNtpdriuvS5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79doKB57Nnf7V4e6Lgwti1vx4Zo8Zssb4gRgkiYUaX863XSjA8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-jer37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XQDzoQi5GoyP4tWtPFip9qBV8Qt5F5nEYfCDPYBKNSw1Pvxsq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72cTjDVsgPPczTLwgCAZ3meiCrnajB1tTYtGV66y28VjNzg4Ub", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 546 - },{ - "name": "bts-kersillian19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cZv9VR4nJKyAh26W72xjWYyemKVnvyps1ZxrZoPFPwuKhTSop", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7se9RgkK8AcKWz8Sgrk6SzWyERgAuG54VrAVzbcvmCTEcuuefs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 873 - },{ - "name": "bts-szczepan-h", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eKdYFz6sfn6ecWPvY54Efeu8as8Huc1wEPRe4uPtRNibiSqMQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JHQhdaV8hGc4hLjqggAGn6zFvP4NcKxNbfaB9wo6rM9PKJCgq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 451 - },{ - "name": "bts-yuli7376", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JTh8nk5eZVAQBU2AUrN1YxQvPbHLcF2pSs5hasFpVDcFRsWfV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gDp7sUtY6ZUjYruvK8oSfn3NwkUeXQ41UG2MPCFGqAv7ezo8d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4684306 - },{ - "name": "bts-marcin-ra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Naxe1JUXVUroAJN7CNe7APPXW8wqMsDLzLEFv3PMynAtL9npK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86ZbZ6nNVnkfX6MRv5bCoXoe4NhLNXs3m1k4CAKyJ4n2hyyzhg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 708 - },{ - "name": "bts-easystep1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Tr54RvirKV8sDM5kat1seWD3fgJqf6c4J4qTdSCfoALBWt3d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NfbfiNsJWoMbafjuemt474dvXCRsSSGZaRkhReorwRt3xhLao", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-koka-nauda.net", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mEdye3Tzk6WyUpSniEUVrXxEy7krgW9iRcqetT1GHv1BtFET2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nMtdrZyV9sXmvbwqBSbi4z6UrAe9BFq29ag83rhBTWBTvsnq5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20080 - },{ - "name": "bts-p20160219", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fqhcLazGN7EL9VpkrP6ZFn9gfF8SyHistG8WnP9ozBiqLgBHX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TqBgEmFdSgoJcutUVyXm4qALGw1ES3Qf7JEmZQsqngXzzpL4S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34000 - },{ - "name": "bts-elashal26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mPKAPuTJAtNqnTuGSyMnDWDtFrrAPXpyoCspoZMKEnrHaRgUA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rsVgj9VWdgx6Ls1FPtaYHgQnd1STAerDKgoUuwMrFoPNRz3oP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 708 - },{ - "name": "bts-samuel-crees", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54UZM4b3P8G6eLwgY15C2rV7pMnYQuE2ok4eZtUWggsNBdpVus", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7qokJpBiN2oWzBqtVxn7Sd3xsciPn2Epus5To5LRK6nzwkhoMn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-hmmdlp3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cQhdmRkQhRTujmygqTPki2FqpoHgCWnBzgBBGYqkqCBHJJ765", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bfmQRb5bMU5HZ1nLCcqPtuN9ii12SwhcnrQWa8jsYDvGbHJ5u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1241745 - },{ - "name": "bts-farmers-soil-food", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5edxdWUchJNoic1SYUqz8SYvKkxgZeKmx34My7zKRdSRG6BfZ4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mLiqs4YKRfadHtybyFpGRijKjerXaBMD4ShwFx7w1aSF51tUe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-cni-cmcorp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U34XtDjcs24xJF8FQAXmSEk8q8nqk8TkrvkDE64ZB7jnJhFAg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6MFbKbGcMnPuAejEyRF5KCKBuwPzUoWGrXQ48qh7Q1rXYriZQb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-superhart-44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xLmKE8Gt1HUrYuzF1qiTuR9LPDYpd3nqCvXh7hCSj5mHTZKeL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X2tPgosTWnyAM1xcotYp2roj9LHRqfDCfsQpC9x6Sm8FN2iMM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25340 - },{ - "name": "bts-fx4all", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jwu8rARbCdAbRguwwDGbtKA9h4jDa3PAvvJPNNFBKsAKfYr8A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8khPqx87fyZxcvqL5VgT9pD7n2fU7v3B3aqto3vW3nBewAg4Hz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5029 - },{ - "name": "bts-bso31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a1boMMknNoxzn8QyN1M8gV3eJ3Q2brZWnK8ajrTcjsq81FBH6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6gSh1yJjvmUGdFWRe5FTVgiF2G6owyWKUJswsvXibMepNKsrvL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3480 - },{ - "name": "bts-junichi-tamino", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wRFN4YMRiiW1r8Rf5YnuGkwCiJSuH6QQEMT77FkeCJbiXf6ac", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bZYt3iRTaitF6GyyQMMKdQdTRqmaWhR8z4qwV3mEQ6y5rJH9y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-cni-jfran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qoE8w3mh4WaVEfRrkPRrzNhaHaB73WmSb699bvJF6PkHahQp5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5cqGauJCGm36BjjuHSo4krdwR4N5t2FWBiJ1A9gAyu7wWXHaEJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 156 - },{ - "name": "bts-star4freedom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uPYWcvZKKnVbqzkhgThDzR8U954C6tTP8g3nQcVg4VaaicP5G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST84FJT266GEqbytyJUXoBH3bDJPJd2Tw9FjyXaKDqxNhjBg1nZy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1416 - },{ - "name": "bts-dex1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LQ6JGzGPtnmxpfbjcZYa9vA4NfNkFjnAi6NmjybUBDnccaWAD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JTjj1GwduiwAU2rTXDL5ezzUDGbqVNHfzTyUkaK3pDsBXb63S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 451 - },{ - "name": "bts-dex2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ur4yAgkeaW5ThUPBsjzzeLvgW4JNQ2GnvwTgvNEMuDXrA8hrk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b95zsXN8w1toPBjtiNsnQzt4HoKxxTQ7aPK7seYXPJfdyWFc3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-onearyf31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BUYATBUzA82ck3Y2rZTYW3sF8qb3RtJcT8ddRppiUn5ZL3oPg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CV7rMTuuUL7sEBw5tGXuGyg3SYwZfvjbG3Rmo8NV4zBr9vD9j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149589 - },{ - "name": "bts-vkra123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yR3EMWciorxy1aEYfnbhKRmQQV5zHZffhoL8y1cVaTaG3EZBk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dzXEro1WyhuvYKiZeBi2DJKe1jZKkU7rEmJJgimed427ASNxN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-leoathome2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8agGtPL8MoTA6yj9ERrv1Bto26g9A137hFuMFuMaFiFwo3tEd9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HUMqFFsn75HACa4dnGGkSoycyCaBYuCctewEVQufwnepiqv3a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-lil-bi.t-of-techs-us", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s2CD8ymte2hrNDshHmjefNXEDr7z7LTch6yPWQwapX7bvYCx2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5XmF1sN8MJAqJfcTqKJJTmZsDnUVXLnYtFVeA9rAsj1XYd3WYP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-misoshirunet08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jA4c1Bojy4HoeSnJx83zwbo8cFJdaNW3RR1ZxNHUFPLQC64cR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W4UrXbggW8THzJDsS1ZzmEQ71M9oc3UuBPfZtdiRbnx67q46T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-lucid-vc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kmefctMP4yg6pJ5jP3D9AzKmHCqUPi4fZgY2dzU6djNhZbJKg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6erHwhDYzFiyNy19iyVgFxSUzJ9PMKtmyJ6mLo6WXetibdP9Ju", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ptrade-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZntW5ni98ENByCSW2TDEMPAhaeaQRJG65M1uW91efcyjpNQVU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HmZpm3kXikmuExQ7dV18MSr9Cft2MARq6iGbnQXuJbaU1e17M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bitcoin-future", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FNdnVZ4JZV6mDb4pdP2ybKNeuhzgssYHfnZccx6SBc61JDRog", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89yS9ZJZyuDA3b6yWfVYmdc1FUjaoH687VdWBbA6LrS6EiFfCM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 271209 - },{ - "name": "bts-jiny3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YctrMyA5wAcxVNU84zTmE2nF6XJzsay14ZRwinCykYSqrFckN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BEtHqRjmJWdykjTgFZEdcgAQBvixNG3TsmNq37xXJGbzLMiFz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3643 - },{ - "name": "bts-cni-dasands1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vz7KvjSWa9WbgCZyhzaBFAh2w7Up52u6ZnX463MejcunBRMSY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YUUvYdXfKxe6jxFTC7BqesFE4LpFKTAoZeRvUUtQSDvLUr9mk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1611 - },{ - "name": "bts-charlz21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mNUXTV2bS3A4pvzomZrqt9zHATZYPxyg4Bs3AWPrf35mesTWx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hWhu2TEdzn3YRPzqCFCDJLukPzmg4xUd6XZ67PPYfrFtoE5uR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143971 - },{ - "name": "bts-impseu1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YMobrGu8S3KaY5vJLYNUwXg3tQBAkyqBDy57gZET4yEGpKgnG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DvRn5yui9Qi7vamoJE4NLYq6YvZKjMTJyEyY6X52ocLvXs1fZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16677198 - },{ - "name": "bts-banxgroup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79bC2gvPpgHWQzwH1HZYXwGYYwEPHyvq1JNkVLgWGjzBxThL9a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cRv813EwwZ4KKTNun5ch6GDcjwwTkrJgYaPrJpXmESckenAda", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 572686 - },{ - "name": "bts-ehochreutener54", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xBthUi9ppDyAX5NsfffqXg94ngwMMaj9LGWkmNVcPhQbqnUaY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BiLTFmHwLAAZjoZSBzs75GXaY82VnPro2n9vY1tQmEZ3PGngA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1477674 - },{ - "name": "bts-cat-ch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GFYiAEnkhvZUKS2uzwQr872bpfyevUnvQ1uid4LZ11YKbnJr8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tXA72oS94KykarABqx6vjrJnno9cGSeJcQZhhA4SpLG7Qg4ji", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2453479 - },{ - "name": "bts-shinichi-kudo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zQEoji3UsuYhKBoporVt5zAmNeeM3TVoZUKPQwNG1LVn1xx9S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86U7wbNzDsA8vRTKPaY9a2ZWS1owvp9tYxxW2y9nP9GoKBYoPa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-coignier-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HNJrcWPvuVAoQaE4QxcMbUboFQRzKZJ7y6v3L1uompEFFiLY7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ADNWq8GBhrc16yR6rE8WHnYtsij18H1p6P3wmmuUbfXgXDKBS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-vanyte-fund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PH5nHmHd7fuNRb4xhHtpLzt3p1RBp4rga5aaSJeQDuLJFuEFw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5A1MmoAdKds7KFA1S9QQP5HY3q7PcFKDfkHdAaRxS8d98U3wmF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-dacs101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LRt5GjR47HdHy9EzdAT98WdVRmr9H2dcWFnwSgD472P5VsWQg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dT52urE3nb3VuEjFJgG4ECHCSheXEUAQUPkc3UMTZk4YtsCgk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 273711 - },{ - "name": "bts-echo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HAc7aiqcXtW4wb3yhjcJPQivPbWXzNDNBNP2JmRMn1hKeGMz6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56kSF9EeYk14yR5RxZyxni7FtpzuxSv6BJLwtxFYf7SeLw5XsX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1758 - },{ - "name": "bts-desu8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q9oGvz66Cp26MAnxbUdAFWkyjEQKD5GtL5zLWBQVPSifWwYv6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88gmCyvB36LcTVQzHtJNJC14G6JgWkUCRJSJ6dvE64aXB43ZwK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a8Vdo7E7Ch2NV9jMrZhe4yodB8pY5ubaLfxn4PQjBcuvimRSL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PEtCch2XLRjU6zJ1h4ss4GBdPBGFzchsuAB2sNtCRFiJqz3ca", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-byd-741", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kaZzv92Tvfd4ihwvmrb7W48rAegpgt4yZ1pknuQoEy9cdYKMs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84SBfJm9L9QqH2JujmcT6cc8ZwYEtWqPpd9fZf1Ekageahp2pU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42 - },{ - "name": "bts-nms-036", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5t3HmnvEdRmWkW6V4ygvRXcBmd5jqAQbGPXbs4UgRgpwfhkXHU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5RK7YdfxiQfEriCqHRo2ACDN8Bqg721QBUyPRAStTRMtugFPqN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1868 - },{ - "name": "bts-sh-021", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gFNz8H48S5qfJEJ3xmxffzvnZnFYCqMPVfCacXDBJQ9S7up7K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TK5Ri3SPyKfE7xhTrJPU3Sg4gSMm4k7dHcRxLPXd7dYKjRxNr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136 - },{ - "name": "bts-zhang-lei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55L2oFhtYSLwnCYSrnSDz7gFmmxE1ifeLRg5Lpsj5AuzJF3Fm3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ge6xr8hjLWUCSb5xVbJ6HJu9EhFkGCgZZTscvYMzUVRzuhrdZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1855 - },{ - "name": "bts-macar00ni", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SqbP12uyuMMasw41duySS3uFFwnDwKmxj3fouoAdjBGhMJfG1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KkL9YaY7vxuKQzDgvfrRKGcncgZfvkEhrQRVYgRUKCdqidKzn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 386886 - },{ - "name": "bts-ywwen666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QGZhqrwdTAaB8dgibDu5XUT7y7nTubQESB6drVmpiP9NQLVYo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5D1EHLaMw1zpjcQnZXBwjNnSHhXMQdALG4uRjdNcnNXoS8Xhiz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75242 - },{ - "name": "bts-btsabc-ywwen666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z9Kep7sL61wcFyEanKZSSwpbCUJFSdWhQ8QL3gtdFFv4FPXP5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56fSnurNuvT65FVwPx6haPpanWvRWvp8MwU5bjWyuUY1GbeULQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75074 - },{ - "name": "bts-abinia-rivard", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UxnTygqDHiFcxTdHhXbdXzh1wqavkRowcxxYA4DrtFxjdDYt6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HnUhCMZPmijTDbEnrWLpK6tkCDfxWCfMh83TL7HN4BN6ZLuUr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23887020 - },{ - "name": "bts-cni-cashier1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HDhJCcWuxFk9dmn6jumVdyNd2y7m89DiRndXcYj2y8wwABWqc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8WNQm3SsKutrFATQtx4z4yY7YwC6noVc4GT2vdKv3g8Yy1nLTX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1582 - },{ - "name": "bts-clck2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BsZ731GqpWxWENjYFcX9pJNgKDYgtzRrkC3Uj7aU2L8KMq5P3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uA257rUjcV8LW1Q3PhuL1xJQgt8iRKPnKmQxqidtBTeKukhXT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7515 - },{ - "name": "bts-nob-k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Cw5qYUMfZnbnScqckyFRxhE8tT8WXeJ8X4H1bH8nzzyH4HbzG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MhMwuwgANUTUDTg87e2jsZTp6Gp6rjHw374kBqBVCjJEYfVpz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16692 - },{ - "name": "bts-zero-zero", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nnt8ervLK4DGL98spPUesCbRkuT5Jrnt22fpKxrrkLWHxpjK6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aiqBfAB9GqdDM246Dav2Xy2tqzdB9Jw71Fkea7eKdf38Qv8Ts", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-necessarius000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78baZR88WNoc43Wck8S8AECjQDDp1DL5zGDKy1Mvm7Nq2YjyE9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82ca8bEDFCwX4ZLJ9sYaDiagm7Q2AuGQxRwGJA75rnNT1CAEYo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 877085 - },{ - "name": "bts-gonchan1230", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jaJb9acKCPWi5g6dsPoKp341sBG6xv9toSQEhYvyaNhGbgPhz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aTwXu4Kqn8sXD8A1KxG6AZcw1wWZntDWqfHRuYzdtUBnSBHoM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 776520 - },{ - "name": "bts-cni-paulab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W1uFUAnAcxV2rbXfPpFUP2WWDdcr6Y7iCHVZFAJVwY6eTxqGm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8W1uFUAnAcxV2rbXfPpFUP2WWDdcr6Y7iCHVZFAJVwY6eTxqGm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10302 - },{ - "name": "bts-i-i", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k8877jLVYmsPd4gPzv3xnnLvbZM6dCzcejR6ajJZWUJeFS6eY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D8bVTQuXXhJ3iR4AxaCDrKqie5XHuEaWR4oUBwuHXgmj7Q5Eq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 716283 - },{ - "name": "bts-freedom-ledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oZadmp6bDVSkJtQuJQe55jKyBEEzhmRWHsPD6QjQshACAjXsy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kqn3J4YdNpFR2Xf8vLiVdLDtzejji9WV6Di5EQCBsKYpQ8SWf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48932 - },{ - "name": "bts-avihudson1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PbHGQag5U1BebeKVDAqZ6LyEz5XXJTuBpWMvQcDyk5v6nLEDA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xLuJPfKaGaf8bbDrcQhpkXnRxCcz9cxMEZFtLD1ybFQgizNxo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 280 - },{ - "name": "bts-dacs-001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cPHZ1bFbYdWHTWugSnpJvwBrBEQZzZBEptzAnHvLwqq6jSZAU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Zc8Gi2jUwbMmM7Lv511JxHecEhqt9Y9eC5Rng5TP9osGYywFN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cj888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84wMNBHep7nfCaxb3QjgztMtZKbqCJTqFeEVRbUHz1qzQSTgFx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MZURJ8rvEN7AY8bYDR5h2Ri3ct4KCm17G1g4Zxx1L2f2ZX3Tz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-digii2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XdmpiyJdfwZjHHaASqkmfS6g4S5Aq6o6Zm8m4716xeTS2yRJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63d3dUQdUSWW8m1wi27rQH4pm3b4wpBdrMDV9sJ4281Ayx7Hfg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 366 - },{ - "name": "bts-dccc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JZbHwLTSL5Ssys1p8ygudmqJqhaa1S8NxR45ekaRCBQdusLUt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NFrw5stFQmFW3JS2cRhdAD7S9fQWHDMohrSbDAFCwGDmzRAji", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158619 - },{ - "name": "bts-jaxas88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zpVhLDTykiFSy1Dd8pcVUPozNPKPjVPT8ZzqEVqPkTisb4AAQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mkEbLtmbgeh3QoqRn2tPCLgWAJ7raVxmLPVXVFRNtRNmssBQG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1272 - },{ - "name": "bts-taishi1003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LwWNRwE2t8rJsosDGnCKhmRBPaY8ESZu4n9B4TbKGohcJuQTA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79di8rK3epqHPDuXGQmVwTBVeJDvgSXpZA4mj8vcsKQKXt2Jq8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 371 - },{ - "name": "bts-american-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DcPny3DCswsium9qVjXrXo9uGhMZznAKw5Uuo7n1iy2RFkdP1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67cAhSmeC4uLZNUoabPthE1yvQGzz13MurfvmEdvyf8pgABgjQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1238 - },{ - "name": "bts-brickhousefuck4321", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KbrxCGABMshNF8zzfw1AcUMYkxko1YYTnDi9tmKAQoXxqswTS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S4KkwNmAL9iHavcXTN1BQykp1aC2KjLNkjxdEUpUKXQ12CR16", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 366407 - },{ - "name": "bts-cloudyview-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HAV5JEqFjXh8ZgYrZs5sTuhseQPxzQ2LoiC9gUxUs5LMzVuQa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7T5hb2J5ArgG3fmT3YbS1UFJm9abxPcRCWVjnGc7VU5Z7QWnjd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18776 - },{ - "name": "bts-bitponz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sdBdzdmeKeVrYeYdB75rwy63DuRhJJYiokWquaHgRHCcFYDPj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zswo8YPWUpksjjaLXBvvRVUrcceFE67T88cwLGdyXtqR6Teq3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171 - },{ - "name": "bts-cni-musninkai2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Jbr4W6x7oH3gaUJ74ZT2QJKUU622o9852qtheWCZh5TtimxTV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7wqPsrT33MA8WJLTn3wMjWVnwGJ5VuM7Luk8rJfyuoPAWUvdmo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5798 - },{ - "name": "bts-stanwolls2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dgXXLfx1J8zv8JsYDx63KqTt6JQLMnNkmr7Qhetxp3ZGaixkU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nn96bKkwR9hsQQQJLdyDaCzvWsGPXFkntj6TUV4XjLbzLRNRE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2543861 - },{ - "name": "bts-cni-pdbiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZDWDczXh4r5jaTyAPxHJdBytodHekevcLJVv4tK53nN2WJqBY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72DQ4NkmeNyFg8cw6bMpC68XBMHHPjzs4Ep4VfFNvzrj4YgBYt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1763 - },{ - "name": "bts-brex23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B3qcipfEMerZvMSFVU63vRWUSWp15VVoSALfWeEk5T3A6rfCN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZzLyorTi4R3hyx1HqZmUbxj3SRoesDU6vtirtxpABLy31X48c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 461074 - },{ - "name": "bts-egzi1984", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72uwyT7DZTC9wbtmzkrgQp8ExKtTW1iLusVpjms8x7FTyMXP3b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F2U5CgjnyjcdSGHhsVndBGZogY6RzZP4KjXJnyLvghBJ3Ex9B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-phuket66888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a1ZiFe7XCGJ4arQAZHQUVQKmSmSkxD518VFnCw2VU1jJNYWtG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WZuJT8KJCYuvCwJHzmWZKTgnYtD2fSWbs7LeJDL3yoiHbba7T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 418265 - },{ - "name": "bts-tobaco4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aMLk5S7Dfv2d7o5aBz28Bbt6fucoBMFMs7ShcVrMgjet5eTmE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DChN89GToPq9MV49t7K18NxkW1kzfmCtpP8LyVmvF4KfURmvU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-bafohald-degeorge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JCRNzVgTAzXFkVQrwiaYN6dvdZbY4iqKUfre13CCJG4XqqT7r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SjmCrfSvGXTKbveGQwwgqstPbL2iAKBScTrB6CoiXUydGhPRg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11720941 - },{ - "name": "bts-cni-erasetas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81DdFKu1XadHceYhkmpmavq8YRMz4Xuzfm8tDoFGeegazpoPKt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST71MKMBoFeFJ7SFTd8xvxmsoST7ySQq2iQfQcv2uP6jZBNk8fxE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-cni-master777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59Jc7wBwMfG7HFWduU8Njq8nivWq1wZEParkcKb6Y6VrWsvxzg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Eep4kfGsAR1oryQnRyhhoRXZJnvnYE46h3EFodQYA5MgUX3Uq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-cni-pinkcartiers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54dDDhHjVaRCrwemZbC7yU2YFKuTuR1CQ7yQJ5XKABUxFWnM8n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST57CmURrEdKSo8xstexrdWhwjmZHvoXv1jaCoQ532YC75RkGATy", - 1 - ],[ - "TEST54dDDhHjVaRCrwemZbC7yU2YFKuTuR1CQ7yQJ5XKABUxFWnM8n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-kool-text", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fm8SjNB495wkfkiVBepJMgrok9DwgZcWUYFkvDu2KoRcEY2Rb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MzwgmrV2ueHTbZdSuExaxF7jqAXVQzQAysmrLbbSwoEWC3TQ7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1525 - },{ - "name": "bts-cni-magnum777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bCxsqthN1u5TePWTbEq9Y9aWPPZDcMZHqCbJVHUKa5UCF2RbR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6iubgVMHhjC8ezZxHLvmSstxRazRaoCGKGdE4DrwvvHwjFofwt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-sunrider6857", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7myvbqZ3j4AjHnfG3dHAEX9ZtVgFg3YV1j7jobxstemaBrnf5D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5pPfoQdCem6F5AbAvWAiYX3xQK49BLXedakVLA2RixUTnJG4Ed", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 809 - },{ - "name": "bts-tens63l5t2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST855z1xGrGKbSZaDzD6AS3wV1bztFzf1ZqRCbicTH8Gm5Wj1Ge9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6PSpZ7esEWJhdGmn37vVErr8m1PpAfgoirzvfLQ4UqUPjyxkEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3833 - },{ - "name": "bts-cni-spurgencija", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6norQ61Eq4GngL9SsP5gWjWoGdiVyKfAqzNDjgtUFWCSuBsrNS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72GKpBTx3z4319P9xwsCPNLm7U5yX72KaXXb7um1Dg4MpKy5UQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 186 - },{ - "name": "bts-joshph66", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ndagzqj33RW9r9nVanMXb8MudAM8qg86t5cmed4TYYuqssrco", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7zEAhMp18p8ZGQYhRNaanB6DUK8s41UQX5Jxp8e9b6GH4U5mQF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 893 - },{ - "name": "bts-test0090", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88jCAxV1V8LqfYSJs6BRM8pw5pNiwog1AXLgeA5KSQcNJ1LWx7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zoKDkwPQgoaqFk2y96jzKWZBFSybU66z64ttnict1UwRUTe5F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-gladys-c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ua8QPQ7JM93kadufTdMbDuYyPTBm9eK8bv6ayK5HJ4476opXa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6X1ocHFcmtTut8TtuR9D4pv6oCmH3fvTYaZrPRFFfzM8knBRbY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-franky2010", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uFuSKz1h2ZpVJt3ixJR9xQWe9Lw6WhYdQ19nJbdLdCLJTKAbo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LBCtQBEUJ7fwSU7L95sjSig8eekKKaVzx95qSWJnn4XS1SFCZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27679 - },{ - "name": "bts-victory-62", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jaUykYFNnu7Tfyyr4YRvscxHPDDSv4bDPbPK2kXndnDBoczsF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AT34rioJsXn784Frya6pzXSpwb8VheBXErUTxiQPd6F3TedG3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19475 - },{ - "name": "bts-scisan-shares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST675Jt9LEzfW6vVpvk2rH9T3ozY57bbgbedtrsbK5yYRmsFayBA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NeQAeYXnSgdD4EQHAGxUCuLWKBdcKXzToLogDfY4fzRMSMuC2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 428 - },{ - "name": "bts-stoneage1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Mu1M1EfPrVFXRdiktxdQYCR3k9j1QgKo9KxDE7E6Nw7hUXpUn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77XaQtrex4nTfrV6HNYeXLAagxLkpXRixUQ2HhjSYAmr6tYCfh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-ventures4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CnGJYVLj4HLphCN3Z7cGPkx6ySPbJtUYeojVETyEffgmDWNSt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6M6vyKGj4ryPa4fgQk5RLnFiadzPP6wSRhaL6Y4et3fQu5Gq3Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-stealth-mgmt", - "owner_authority": { - "weight_threshold": 45776, - "account_auths": [[ - "bts-bitshares-munich", - 57220 - ],[ - "bts-dan", - 19073 - ],[ - "bts-delegate-riverhead", - 1907 - ],[ - "bts-onceuponatime", - 11444 - ],[ - "bts-scarl3tt", - 1907 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 45776, - "account_auths": [[ - "bts-bitshares-munich", - 57220 - ],[ - "bts-dan", - 19073 - ],[ - "bts-delegate-riverhead", - 1907 - ],[ - "bts-onceuponatime", - 11444 - ],[ - "bts-scarl3tt", - 1907 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 2758 - },{ - "name": "bts-ntth2001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P74KW8J5iePdrKSsdkCxXiM7DiHTnvazYHVJNvLUVhUpC4wjG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7oigAtPGZwHBVVe7wiw5KqQ6i1Eao9g6fqkgKZ8q9QSv9K3chg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 326 - },{ - "name": "bts-shiva-07", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mvrZiUpndBCVRA4qYZZL5iQAiawobKXaNw2ZZBVL2QsNBrc6k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R8gnJ6pHM2Z82of6EmQ87qvVrrEK23U2rV2XLR8jhL1xLiY5N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4232 - },{ - "name": "bts-marius666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75ew26PmzYrDs9idM1K5h3ZTMRjWKWge39pQzXqbEaAPBRduCB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rrETf1buD914SzBrUfvqTMGqqThE2snEZTrGA5ShyrPNxTrSg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-karlh2001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89HNupUbyAYfYmvcjJ2pBKxZ4KShkXj74zvywGcBrU8CGzeLza", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85jN9Ra4dRs1W2D9J1J1uFsFY1vTFKPVNvNoWA1xomVjgkyfbk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-cni-jfran1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yjQCiqDTFv5DCdEvgozdnoJnCYmTtA48X2SoaobosSZryAZuS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8LH63pL4k8eLDpWc4x7DhMhd3jpWTnf9t9ANN2pwDXakhF2FAv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344 - },{ - "name": "bts-jjoseph19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eBYGGme4d43Lz9qWJxcDcKNd2RY5vJRWbzrbvtVvp7Qh1XBmk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST52WMxThbiuwDkNnER1KtiefBJZwQ3GgJtgn2wYHvoRoBpv1FDG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2687 - },{ - "name": "bts-cni-headrock", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jek4A7jwKWBtUJs6pw1mCESCFV7KJriWWN4qVbiGSEg3tbrLe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5naoDAkNZdMyD7tSUH6A6MV4Ye2jvnoAw44eqyfs68omJBWRDb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1475 - },{ - "name": "bts-cni-nguyenl59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wr22CYBSPEwNb2gBDcvTAiVAKjLTpsBRwnQDm6P872Dg8CihE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5e9kPYgBHDWCbWssZ92BEdtn4PcZBiJV21urmCwKcSdjXgp2Dw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 676 - },{ - "name": "bts-finmark1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8foBUiEfZ838zVMSnFGr4r2omFXcSsrYFqBDW4Q5KuPztVJRak", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ai8zBjDXhF5aKPYJ5CGFrqfd1L6sRpjvXQhigPqyCd6LwZjgh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18825 - },{ - "name": "bts-jiawei-101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZkiXnEeuvzqqChEjGgKNnRmpGyENXXyS1LHCe2L13vEGRxbrM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62JrrNLBJ93nYk27nvimauvJpqGHWAAPzeWP6aWVUdd7Mzh6g4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 495139 - },{ - "name": "bts-clearfaucets1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77bFv6ewSs5sxmPDJAtFMkLv63dfiWUCoPnDw37qwSW77phagm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UYZhUSp7uLYDD4Vu8xUzKYLLrZPDNpoq7Cxo6Qs1YDkyQnz2Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47 - },{ - "name": "bts-tttbiz2001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FaExfNRTdjCK4RymX4TFvJt93wiWwJdMBzFT6uZh2oQ3nzSi2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST66eJnx2FEZL2bqJuVjjvZnetPkqhFHT8dffJ1TPHFbjRCeedGK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 468 - },{ - "name": "bts-pmc-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87Q5HTciiHo6GFYC6LzqRobHBUBLepMkgQeQ7VperfPbWwpwfK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74CiGCU8Z5M46qxu1DsKRLSoNYm1AMmxKHfZRz9rPCQ6iSjpL1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-cni-nzula", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dmGEGFT5AUjZhDXTUXyCkvBoSoBeNV98VWqt4cJbmsq5sutS8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89vzP5EAKYp4xfP4R1ogR3BY95WaN7nGnF9ZPbDT9EhcWtW1Vn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-cni-vipfuture", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST686X323GJ5hGM2FBA2cXDPk6inAMHNNVAdP3twT5DN9RNx47wb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Anix3Bghb22k7v2i4pQxvFQHeYF66qKqzymhPfXCbawHcMEJS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9872 - },{ - "name": "bts-f71998009", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WoCC93FgDj5MLdYvvVWxeSXQKWEqU6gJX1vPm6ncWJUYEHyGX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DUL9usTsbdewY2yn7sKxnEVvDyteYN9HMisiqjWBQ1xG3CusA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 138320 - },{ - "name": "bts-wk-lynch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hvo5MSZpYn5zaa3kVBv1GNLMKcUH6xfiKrLSYtcLJPfaCCqW7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bzNGunYsVTLQaN2xBgDCMa3Up8EvTkxtMqf1ivkbpnbi2ewJE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 790 - },{ - "name": "bts-cni-pan22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uecP1w6NxUA2ojxMKzAdKWm6UWnydBXaWycmKYuhR8bmJ66em", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8iYv6m4DeEVEdXHZPSPuzobgkiMZ7S1RUzx3EmzE74NAjaNraK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4919 - },{ - "name": "bts-cadord-ozois", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hxhzgh7zg8WUreu1KQX6GDonEPFkA3fCPDfgG2ZTJM9kWi3vT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BZk2qiqFPgrFWtRUBphdSM9YPMT8u33YhkbTUMENFzBAqdXam", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19772197 - },{ - "name": "bts-cnii-spiritplay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kg1vT3JAsRYcUswSoke2ViBHLEVX2htE4wGvygJDTu1Lwxgmd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jXyDCZjU7cvcKWryrcDCHKhDdDEf4iyZYLYbqhFLYtLEr9Nt5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 278 - },{ - "name": "bts-pro31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75SwARrWekaV3J3TSSCcf8FQn3iaexVRJD2jH6gAty7usRsQkV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7voKdauYsUUFXkH8MPymqGYPYoki2AcexcmXqC2GS1xNhUHB4F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3469 - },{ - "name": "bts-cni-onear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wAQvHcsuu3pLxSMNiPmAiHidXgQsQLngeomAZxGaDLT4PdJUM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST54ge9KANgdj1S4AetrETbUt52Jh5ZPpAGosZxmsnQucYB618WR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1426 - },{ - "name": "bts-cni-gpsch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vRM2fRbzWZiYyzSLt9DaE1LUM7noaRTWnUvwewUkN7hGKD7Nw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8XBxbkNSjCbfgxG8189DN34oJPGQbhzCK78y3Q6CtVzFHnkhGd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4909 - },{ - "name": "bts-fullback7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BXcia2awmucokQTiwaJACeJWYejUwNX6Kzyhc1FmGjWkFugQZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SWeN2t4AHv1yDNSDw9kqs3ZUf5batbcaZDyrVsCb591DhTf6N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 122968 - },{ - "name": "bts-jasonmill258", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kHT2aZ3jjwXRTJdKFjtMcmrUmbqVKfcVDbLyH3qvKvngxTBo5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5eVTYXvNxVD2grbYBxDsrdZ8nWcUN3b2Htr2wYhDMQgjreqDBf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 283 - },{ - "name": "bts-cni-knightfall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cqicc4LrRvHGHCzHVwwLSwNdAdshTxqwZ1g4W6ghGWG7x74JA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST758PVR8yQAHbbuc2z2t98AtdFfHemv1xTPgYg2ACketiw28qcW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23833 - },{ - "name": "bts-spencew-6391", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ErCq4nwm6U4XZWRi37htEqTWJveqMi66N2ayCSMKUrm4jES18", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76pn1g9fhbg6CyjbDKadgiKHduAmmTcKQm32JknGj4FiZRQHAp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-grntlnd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WvKLTUteQChCKpLBaiD4EVA6XGWCxtruuJgGKQbCpad9KY5xY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RwxSxp8QsfY6GehgJQrM6akctAncR1TqfSzgoKAhdFAb8ijfB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15711 - },{ - "name": "bts-cni-favour213", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZbV9FFQ6sBFEVwzUQpyH3v8qgAN2ngz9rXc7mgrSrjnmxfNg4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7DG5EjrQWAVEfzZnN2FR4joPqmdir1yyFZakfoV1x9nquNWTAz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-tranbt99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FEUjZN77DcTU3YpMVzE6ysm4S9eUG8rmbcpaf56KLofsbfCC2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7d6mpYxpnjLsMmKCVoZmEXNCCixUQNCz2DKU1DWV6a4ZCDsf2H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-blurb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uumxHyk8nLgTB3t59d9NJgVocyvbrEXXYjEkrH5se9EDyXSRA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5btznSC4gxYCKrEuaqniJty6A1jwtqprxKxNqDo6vcXa3wgzcb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38 - },{ - "name": "bts-cni-digiguy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jWRhhyFHQpQyZrBnixfjgdSPLGLPjKJBQ4p6if4Vw2oBnVXCF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8fsujjjXVdGcDq1knMbawVnqCRPQ7uuSfBB7v8k6N6XXUVBAjd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 115 - },{ - "name": "bts-bdpdk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mLXzpSXrVAos4RRMxv8qsWzRmkHG1nmM7AaY9mjwiePCfebXc", - 1 - ],[ - "TEST8kX8NiUJYJpUUBZDXKboN13hYEuyKW5D7QpbuLwh3j2vqQ1GkV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61i3jwY5YjRUks3RQ7omHEo11ehCK6jGhnnHDhQY8heywLUWWS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-you-ji3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53H1HLqSGe8yCX3TmoqcvYfxt5wkQaEq6vGhZBwpqF7uhSYBCF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r99qthXvNDPcQHqLK5Qy9sR8E5rA8G2iAEBsCoxCjJmFH5Ady", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42836 - },{ - "name": "bts-tsptsls", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ATRGzNgLfxpMTRWyEd5tJ6FQw9Qyn8dVGt59izJsvWkRc3u3f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gok1Z9tWFoVQBeUtyzuUqchH9fx3v3RH1KjRVv4Svt82Zy9kJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 275 - },{ - "name": "bts-cni-katskash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Gkbeuq3sXxEZdG94vUJo4PBYFhYRnVVMgPZXmVWgWKmiDpdzr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST618GknqbQY4e6HBV1JxgGdCmrQoKxrYNk8iYCDC7GLkDE3THX7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 318 - },{ - "name": "bts-andy2005cst", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xvKzauLXPBeP8y4wdiS5ZSyZtgmh76fWdhTntgTUC8yNYhX3v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fP3pJVmx2MAwcPYf1H5YLRKyxjf3QaHWQDxoq4dnunsrceJ8r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3897 - },{ - "name": "bts-qqq1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DD1PCAjjXsKUnXD2xbBXaQ8jbNaqY6Np5SKKWtxXmE7ryC7dy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QJ7swZi32Rgx4jHHZ978a2AL9m7emo3gib6A9emUmAsADA4gg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-exodus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WZ4L92qSu4npj2TwJtBDhSRU4FBdMKp3JQz11snGVe8wrjc1a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CfMwgK9HwXM1oPnHpRMquynVLWsKCEXerthpJXeZ6E2nteGa5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18932 - },{ - "name": "bts-amcmiami13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eWZ1MEvfDnAPmfX1e8CuSSGMZBqiSBU3VG1Z4yuEnJnXmh6Ng", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Ccg8fVBgtpBo8ikHvYQ59KZaXkMnV6uvTXpPKuejb1Vjo5TgM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5144 - },{ - "name": "bts-dadossi-chandra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z2f8wpRhNUk77DC3MBjWnUMsCqvuSCDeAqS4D2YLb9J7Ru1ZC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58XwHwpFG4WKwvTJYpTTjMp3tWiM7PatsxvEYnFb4TAB6z9JPT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21809727 - },{ - "name": "bts-crypto-fan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CxJa6AhHp9UFaHZkWfMf9czWwx5xhD73Y3v6ESRiWKx7fnYCz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yzhcfQtkrBQgff5WsL3YTEzkDgmmuQhwLTHsz5giKKjdkH28G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3962131 - },{ - "name": "bts-hidemyaccountnameplease7402", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EbGPvv5ScAJ97NFLC7D6pCwergwpKMvMxeQrtaawGj5BtyeeZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QLvAcQfA1JUv3MAJC321QGRDQDnQKpQoL6ohBuE5gxkSggLDw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 513745 - },{ - "name": "bts-blueshark2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7KRwseaedASqUwyRC3xm2pi7pq6vnxQVRqX5yPvDyUURF2rirD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Jh211yQthf4QEvBu8a9fWYCbPYNQvhCMQeqkV5cxQRqzDyF85", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9920 - },{ - "name": "bts-timebank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZEYaxyTUkF967F9xdqtLVFxZwpvSV1sevHac3hdEqKQcCQUqk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M4hHAZ1PQDT8jhPJgErvqg2pewnd3J6qr69xrZppjypUXZ9Yk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1127 - },{ - "name": "bts-atsu428jp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c8YsxTT3Ea1TP8mMwDxmC1iEcYfJj9nE8tXTkG6niGBnHExUz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Uh2a67bxeTYYiaz6BGVmVrPK65Y2VzJ7WjEAXfzhduqNk88Wb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-vlad696rich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UDzDmv7vzfBPoe6E4E8UEJQRnrdDe81X58rtDGZ4ztcRWKAVA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82HXj3ZdyJF2Pz2EK5sdZucpXRbu2SrMmed7CrxDTFZ8BoAwVo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bikeji", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jHHSuP2Yer9NKiWRRt65eoJB7kKh9VLaXeTkwALVv3ALVJ6KP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71EecqhMTtXa1yjBF7K4WSeFKvNS7bHKH6bP2vULR74x2vckgW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2988 - },{ - "name": "bts-cni-karkerk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7thXT4u2Bb9gmz3ZrVLPtRFqRPZiCG3eoVj1GXZFcP8GGyj9uS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8BCGVbe2BkJZaG3LFVA4dSAcXVRzaRM1eKA93wPN8LKJ5GzV2t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50 - },{ - "name": "bts-cni-hendrix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fgM4B6bAPt8zqpfiZcLqWo3tkoMhCVK7DRr7BAtM96bMtdRQK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-sophye", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mEVYYuqUco6aTJAuvTNLx2gvM4YhivcWaUzqMspw74swZZ5ue", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-cni-wangui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53nuRxyeQkypLk3XKEp38RdbJe9VN3Ggr2yiF19occwDfGErn2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5EqodxvrYzW72fkK6uge7NUAKNoTg4vYZACDyoQrq1F5N3FuPn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 768 - },{ - "name": "bts-cni-kamwende", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HPVoE5YYQ3GFQrKdmw962GR5aHDfRZBqhbbAyETifBJcSV1TG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Z1vnANv3s9b5RYTeQKFLBkSDXrhMFEPvdgUcm9VfR21CcBFbY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797 - },{ - "name": "bts-cni-kariuki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bfqoNsBRoue3GdK1GZKS1omw3VRQjLfBVwc4sPRVC5rsojTeg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4wvUtWYEXquhTbkicrJgxu5S2AUA3GfQh1gHUEbzNuPDr1A4qm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 816 - },{ - "name": "bts-cni-muchiri", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yc5hvhzteHBQ3EavVHufVQMztN7pZ5EEgBbvPHpfZALmrhAU2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6mwcCXtY6KkJRZM67kEBStPnVSSLBgYYkUkdMK34pjkzgPPo8v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 741 - },{ - "name": "bts-cni-gachoki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cXndW74LGC6wqysjGLVccsyVATtZyGa8qaJJ9Ed9ufHh6NQYc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ZX7Woe91neyygZAY4KxEjYBco4R6AdPH3WxTbR9LNDe6nBZnc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797 - },{ - "name": "bts-cni-wangombe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xb8zHHKVCMXZKne1iA8SPA4oX6VdFNPLkEkk1UgjtKjDxv1sE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7DxdXaJGMdSrYUG1XRRMpEpPeQ13fAcRtj4FPn6DmnLr6HhTF4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797 - },{ - "name": "bts-cni-nyaruiru", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST694LuHzmS99eV2wd2zXBztbtBhsUSCutM71MYPM5KpsTo2Hm7P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST832G8ZF2hJrqcpzBXdDtoQohkGJJkUpj3Qk387rmZx1aBYasL1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1089 - },{ - "name": "bts-cni-gatende", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zrFTa7qfwURzukW9aRbPCzuBysLzvTvJL1TtijcHC47SsZ4ZW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST64CYwDrxcsDWe4yKdqCRbQkYZWqPfxXdf82ajmnZWNHHC5Pk7Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 750 - },{ - "name": "bts-colossal-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gAHLjhSp1bjBzaQjFTCxLS1MBWExtie2CVd2tNuak94XSWP3A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QmAHacvfccy5eBCzKcPzEzt9zJ14iE9VAUTLMhDDCnc9jKL1y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-lijunzhang-1978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jLp1jHaHycoCsUZT7MKQrjx5jLdZXAgEduQw8nbKuKwRyaER6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EpkVi3A3kxbkBoLztaRtSvXE6vzozakQJCp13tHTnHmkkqWy4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3266 - },{ - "name": "bts-cni-fern", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UU7tv8o21V5bazDWcY4gr49FX5YKXAbKWbHWbLCEu1frqGQsT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST57hUsBgaqbycsWn2zECGAhWZ2EeCzUFiK3BGyAwtHUUK6NGCV7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-halfhitch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86K6RXKv3dGjNF7R3eqKTmiFJRg9bTTrnjPbsDcVxk4zMHT1aW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5CypQLwTgMoszfmmBs5aTakEsPG18YiGhYxp6VbBAK12zFikeY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 408 - },{ - "name": "bts-a-bellbit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST659vuU8X8A3AsrXPNEXmESY24inScY7az2JggLZQXcfhk4y1TB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72uqB1VvXawRZZyvPvhUwUbMvUh7cPKNacvAtRUSFFPrKvxfvs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-maker9866895141", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JtCLW8bY8S3YUcSLjJrSD6o5uEnNF12pt2NFyWJtkEyYv4bpo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aK8TFBsFtoaz1suewpk3Lyat4uv2MSHQNwMrMij3QFQznyAs5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2060 - },{ - "name": "bts-mr-whitekey", - "owner_authority": { - "weight_threshold": 100, - "account_auths": [[ - "bts-mr-dedalus", - 50 - ],[ - "bts-mr-whitekey", - 50 - ] - ], - "key_auths": [[ - "TEST8RvYAUYp5oyjBHKHD14ubhso7jqVs3fuX7Gpc7wN3GnLX7Swdz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7py9TTWmQqqYTJGvuv2wmbgxvKiJUnSLKmKbHM4sYNda7wJwoc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4473673 - },{ - "name": "bts-terrorblade3189", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51VCWcSCJzFEC27aaEPcV9pysarQSYgG8g43ZE8jAG9v5kv6az", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TtTeAS6BqNz2ogxrXr6U8Bdjrhq9o7iPXESinVUUYkVmemQm6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21096 - },{ - "name": "bts-a22081978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bdaMYwciT5Q2hhJy7YiTyaVXtgTyEdJQHxMURVFHAbTuM6AwT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wX5B3ubKzFx4T6c8NQd7aMvxqWL5tV1neYHF7pZudLMG3rnJz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 389 - },{ - "name": "bts-psilyrabbit2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y2cUTeGEQ1JfcFvwreFNqUJS6TZu6HnCjAMwQ5dPb6Zsc2Tnt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61ydLa945WNtrGYNWvatXvAjcYqWC2yjztyJQwTyFavoH1X5bZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1770424 - },{ - "name": "bts-rooti13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZVYXL6zp83G7MaNTDr6Vf3m382Rem775PR6dbFfJ85MwAR9yp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57VojymeBWfnN1FmJb9ktmKym6C42RJAsaiNoagufdHX14yMYa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357 - },{ - "name": "bts-bhsl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89W8yH5kQLfAHoTqMYbsqyUEzuGgRQyM6sUaLpgLKM2DgMekTy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bsUP1CrBhk8pX8Sc3TNxJGnemBAMWKavkjJ51ADYCe6A3B32g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 243294 - },{ - "name": "bts-metro-home", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST828m3MvU6Lrz5uQhyCHGtthq5p9QSrSGM7eouAdGpVApADMWEc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fXUsFx42Jm4xbZKFUNrbjk9uWDc3fnWtLcXiYvWP8r27dqbUc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 333 - },{ - "name": "bts-cni-newearth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m7mpcred1SrPqufEBEUnQ4PMRHL66ZRuCuWaeYJNR5fpEZdkP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6N1c1kYQTzfXYVFqHzi49EcVU2XkXWsLUCFuo3rhFskYmmKTJk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16044 - },{ - "name": "bts-integrity7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HDnwTcBvUc5tkukPYcAkh1nk7eEBZwvtNHY2UBxScdfsoHYCk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6pZZm1LLBJadr1zNXUwxJzVubBy9REJThdw57J1g41eDLUqdSQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2739 - },{ - "name": "bts-adsactlyfund1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qxHjeWp5PsTzkG9eChrJT6pT18fjDLapyjjFiRNKUkV6fQtUn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5am6EZjzKbo5jPxRUCbYo8Ug8NYaLC9CK5dqBxEGQniaP8zYxQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 459761 - },{ - "name": "bts-jestro01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NLTCjUpmCMR6766uRFRVctrFYqVQ7pwN5TrJo2wemGmQ13M5r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51A13nPVkdLDMJ9LFBxmN4NjtAfzKV8iyw6Zrooq4mkVPPjk1m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2259 - },{ - "name": "bts-cni-herbie24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST522p9swpspzFkdbN8Yd7Qt1w7SyjWFVk88tHhopprUbrqZ4jdH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZbnLbcvr9JXSDZNyBXGVmGBD21buqMTsT2E823mHN3Y1MwzGk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30422 - },{ - "name": "bts-kohako1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST627kdv2zZQoRtCPebW6AZbQnrvYy9R7YwHBXvPyD95p4kLwJX6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8NYs3yiMnTSq8NJ1j1n51KTKdSY97yRSWrCr5fBq639BAHK2MX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-tateo777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6u6xHhp9xVaTouWKPwmqCuSrg8GxeSEd3cqTCcPNmFCMFEp5bv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ipJ5YScQEKVyaXAvvoZ4412aAr7tvsTHwtUrqYCaEGVPyJMCg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5497 - },{ - "name": "bts-zgw82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AdGotEdFJL6n9K8qjB5JdFyGUdCsxz9NSWNjxzfGvRuoeeQJg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62hQtZ7vuXJpRBxnJdP2rx3fih1JVpV6bynAJyVCZgRTqcVFuL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 331701 - },{ - "name": "bts-apptrade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ghYSAzrsfQNiFbKCvfCx9RT8j2BzMWEFi9oY447qsfMDDbiE4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Yrne7Qd5bhr73xp3uPouzXYpD1cDdm1ydPB5xfbmocL4B9zdQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-fumomo0916", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QENax8KziNbxHEZLztQvo9M7oRHga6eKhnJ1BmxLtnesymEub", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KBAKLgtchHsoVDXtZGoTitBbv4EBDAquFTaMTmAZrheqmdqsd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2102 - },{ - "name": "bts-elendasa-benjamin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xeaDEqHKKk1UmQS9qLY3nLtczZXkvpXieLABW8MkKsAS1bXKW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8caSMfu9KD31wEsXmrkMzqAURoKzHk2jeXt7LfuKWAbD2HKFnL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14244988 - },{ - "name": "bts-cni-pslyons", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w6PFydEpoaAdDk5CSmHCbnnDWRj49wEKgF3AyGtCTUwrsJtVf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6oEWprBbofoFj1MPUFtJ4h5zqGmBrVPjUL3cMyDdU88g3V8tKD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3976 - },{ - "name": "bts-cni-savedman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZSwotaY5wu6dMEP6kjaXDJSnSDFJNnj1VZ5ttwSDMRmz5pLbu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7izRWQjnSjfA1MiKJuBe2hVRD6kwjGrc7m1EUbZxiQvzHJ5feA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 246 - },{ - "name": "bts-boot33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69w4qRhN3zh4WES1SmcKdkEYkuQ9T61Fme1mgvwQax1X7AyUq3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KvJw6y25JcG3zj1ucjR5tEdT2UgeC62zHNMZFnFmv9JmVAVXG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 337 - },{ - "name": "bts-mick.john", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65sqxbTPWyC2BMzRhgrAzPkFWjfjtvXsnFhjJzZrZ48hJFYEqW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65sqxbTPWyC2BMzRhgrAzPkFWjfjtvXsnFhjJzZrZ48hJFYEqW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35836 - },{ - "name": "bts-invisiblelight1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eC191nujCKCKpVZwFvb75ZppcRCtGkJzjyxteTgc5L3Liu9cL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51bX9x2sqSXgKownw6snHMXXwTPyjwk2h4UjiYMCdNEpM5KNAg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-puket66888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KcJJaiG7gQmNmDpkSkp1BRVy4hmZ8jBKtdEu5GKEXbks7YQgh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8531nJmLmnMLB5fihNm1tCJo9WPV2i9KgHNKti8LG3MJDVG8PS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1099 - },{ - "name": "bts-phuket53317", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W47LswbnFqMbvEfGQu6csrrSUFfAFWEq2RziCHJqTTC7euxBQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J5HMH8p56HTqEan8VJw7AKKwWTud3fRARQ36zPe5eX6FMD9qe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1061 - },{ - "name": "bts-phuket17235", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YFqqQsy1EdF5ELCCDZizBtA1HRkW3EfU9SnpmUbfT8Tsqmr6W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S9eFpUpcW9kFU9fh46WG745APHdet5TA5ZVKqvricb3BSpjDB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1061 - },{ - "name": "bts-bitteaser", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YSUaRT5eW5azfnZ9XJbtYMQRHWeCKrxJ8PuoUggYFKuokUxhD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qon3hWb1Q35nKNmMF2MHtRzi7n9fC9g4eVjKHiEowr7iUNbwR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-edev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56aMNLQMSjHe9m9Mxu7kF8SpmJKZh2PGY2qVxc5g2gYpZucvbK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ed8gPSMtCoMbawVgWB6cZgZGpHwao5vjkKV9XQbrKCBeA4hPU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-mch888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zos8ho36tAj2bPBK9bG8fLx2DVWsEwiCKjN4mw3FWitwheSx5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6x9TfAMDx4VJvPmy56zUZ37LAPsCpM3udbLvZy2Bq9d8fsChk9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-dinkova-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j2WBk9gk61Bo9eaXDiq8Ufe4GYj3y3sSKMarm6JZvKQaeBURf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZkpVJ5mZNWfY3UnQ3iuqbGHXJhRDgnqux6pBhxNyud5DRRZ1A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1355008 - },{ - "name": "bts-jzrkj1icze254tdsibdhvyaey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yr1xnGTC6VapqUHBh4rzP68xZrAmwMHD2p7QrvJE54D3hUdTL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DyjNpPhwypGw2gwBrg8kLAbRPDCA33RWmMoXAvR1pKV6K9ZNb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 373 - },{ - "name": "bts-phuket", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ihhePuNoYVWakEGajEp6w2VpfrybmkHUQAZ61EYsDAnWuT3XD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k3Yp33bMpJFsSPFByNHLctZTHj9HFZ6srebiawgpeE62xzy9W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1127 - },{ - "name": "bts-phuketcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71zs29FgPbcfRgrPNkeavK3q3G45CNni3YpH2Z7PFMJ4roDV4w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f9z2HJ8Yq5X43WARXnwsKvRoEA7hf8Jhp7G5HufbyeeQXAjcq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4919 - },{ - "name": "bts-sandee88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58suJmXZvYXmdjoRgCY2KofFMwJCW76veFYTvSK1WdURaDW2sx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Vf1J29EFKYTycfB3QnLJQgFBAvrCPwUEU6Xq9EWBtgT2oGeh9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4715 - },{ - "name": "bts-bts-maker2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mnVHfwDmiA36heh6Jr8xSqiYQh2CfAXradSi1a4UbaNVbZeqF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ffR43CrgA1HQorqGStgtWsMVCEJHtR4vuydYYwjxQvd8SZQNx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 348 - },{ - "name": "bts-h888666123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54dZD8QgfXYwtB5JNWvTBBA6netbuQT5xxQFKrWRJQzU1n8owU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GoBsaZTMmso3gaYoCBLTydSmaFLQ812zssohAXkZFiATMRiM9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-brian6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GGMpJDnuXYLBC3ARhp1KQYeWzwsNFkKLhy6DhBAV1Yc49jQ1a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tEc9fcsL3hTkuupJB4rs1L8jq86xpvDRUyaP4pWgDQAL6ErM9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61339 - },{ - "name": "bts-cool-pk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mcwKwLQd4wzA1337t8iYkjuiNVdw8thWyddYwZqpnAUhAQ6sG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KZN442FoG5eYpBUpDZMvYzuKjvSC3kpAAcX38nsiuXUcCTxsN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55 - },{ - "name": "bts-d-matherly-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m98ePQ8HLkvVQJBbDv73DCEG3oswRn4aBEwn6bNFPoRAtYMpH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y7vr9Wf8BDi68X8pS6UoQ4kLBBEXxBnnacXpP5t7Got1TAxZA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130 - },{ - "name": "bts-rb007vizionari", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CGM7ckkTn9gz1xqerFZn8X9UtvpnX6nd8SoWbFXv26tbFPNUC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PeEtGWmB4F19KVgGWQGKBFVSWo7Vcc4UE8CE6tQW4nXW7W71E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 601 - },{ - "name": "bts-smart-office-currency-authority", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z5teuzUhEkp3nmWHmwXFv99tbVw5NZmTYcNR9SSXxvozN2T7f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YNmNAuC8bVXRCFzv56w3k4F2D6kwtC9LcQWJbq5A3A95WMBiy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 359 - },{ - "name": "bts-kezzik121", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68pNKe33TWM5uQiL6W7vpSyPfZztsAUsqd8x8n6seNR5WbQDLW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AgP7JZA8XVX8daejh4nndFZLsWc3HsyyAVZoYJRBaTaftZdqr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1242751 - },{ - "name": "bts-yotimo2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h4Ndz94bgkNKn5K3HPJXVCYU5EFMsc1XyL32DBVbFZUvyPc38", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tpPiyi2Xqu86nHGLCZVMKf9tBnXJo14ErxdoRnMUnLjP71dFb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-pay-iwbtc-con", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TbTgZT5vAU9WwkmRGLoFgetkdwadG4Xo6MJwSo2HhZzLbR9ef", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C5W4HP2i5JnF6wGYivmbsKThZAg83tTzYiAvq8FKjKhJPLxQr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-pay-iwbtc-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST814N82dky6F4q9zftohNP4y8tRZydKMfqpGVkUcFkc1F1xTW6N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6go5fkLBNfS9X6h4FrmLhvby8Mjw775MP9iR5u7CkR5mwJbk1D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32794 - },{ - "name": "bts-parcelp0st1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NJcsCS8C1gYrxoUhTMrRBAREYoVXHtetD37HrtGefR4SjnZVY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7thv6oSZh5FzSZq9Q8BA12JXGtoJCfqsbJUBPgQhm5JuwzUoK5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-h1tchc0tt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jHpRijrTBEitJCnQbQgCSQqHSxA7nkWVJ8KRKVaUWqDGqPqS4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TPEtYtc79xwuj1Z2xFCwdgWzntzY4m2LHDzF5xFeGVJBCZkRT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-yplant28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Rf8KPU8iYBTB5Gd6U5Dfh6goasR2NcnPmnguuohesm2tZsMz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ikJ4evaRJ3Bgv5qukKhK4eeMK2jeSh3XFkK3y8h6iLX8GDCCs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 393562 - },{ - "name": "bts-floatation7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uzUzPZ14jmov1AwPJxSmgUa8sCt9KnNEq2iytvsWzPzZq4AbV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eHPwrgcysg2M9fopiBJHJ6rFBTwee46SnX6XpiNnn1Fq73ESr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 157318 - },{ - "name": "bts-gregbk101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST619JrdiyYerEVs6aCVpDkJAiSqaLCWSECgVA1Nxa4GpSrkgf7e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eHXdijPmQQN3YTDBJXgTgDhLELKg6rVp2n8XzG4EqV7v1xr4t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-spongspong13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5utAACpWKN4qph4YghRMasfVPVMQDxSQkDgkbc78KV9KRrBhYT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LgRPjLqWREuDCucYDG1v2NE4ST5dE4RDtUAgejwJ7vv74Hd6G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41227 - },{ - "name": "bts-brian7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s7HJcxyKWbeNkyJCZA8rTi4WuKLAAAfCnGPD82A7EAfLErqwd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fXeQFG25c2F19CzXEaFpn4X7X7zruhNo3An9BZP7Pk2QcUFVo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-phuketcoinshow-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Yhvg1gkJyESnjSLtFrNnA2GdSbDow2rJKq4q3zYpLomXajP59", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rVPVou3tXxU1FM4dAMQxeqqnjT8hUGmhxozBqSbYvP7vkSCdM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1007 - },{ - "name": "bts-awcoin-011", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jGYYTxzcsh3Umkjzmh9cvgZAxdZdQ1AkyBfomBUCdPvoCNwQP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ySxeBxgwTi34cZviZ2tsWBi6KvdX94xqrPigicTjGP4BEwpzC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 322 - },{ - "name": "bts-wildman-capital", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jc3NNx8jU6Mrtjcfadf7DtX8eVuwtvLbaa6Qq5nM4mftjdT5i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6csbRQBMXA6dqGSXhJhtzY9R4CxjZAMbRjjXgouDysC6k4UwxQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29126556 - },{ - "name": "bts-cni-justinukas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dQrs7qTMUvFiHFrxYeYSEP2aWL6LtHEvDGmQr9ZDrSGmLotmm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7p6NrC6r73MWNmecesfoHt8DEHVQY8TQfvv3MDVhBSMiMjXDYP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-salvation-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KeagyGmysrcg6yWsAeD7DMMuFAMBYkMq2GM1a47yvspRHsoof", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dtJupnG8KVhPmcdFH4zocvMGtTGZSayWnq9t1Mh4wq83Y2GQF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3554 - },{ - "name": "bts-wang096", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A6guUtL2CydELfmSfCy3Asg7ZghwLewu4M5oeiLf4mf4BVtuB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vJHNo9R9AfMr6Q9Dw1Mb3PX4XBsMKj9e7xSFEcMnRztgnHMG3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-jiada096", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yDFiXcSSmNmDcFPjaKzUuyWqBHZLcBWJy4y9XP3R4zgRypkEy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GqBVATip3rk7jRX4M719EicApqiF2icxUknkEvCBXUx2PFs5L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 823 - },{ - "name": "bts-jxstarr1984", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JfiRjgL6ogKzHnHjTM1CDqtTrpRdXBaY5m3zfHTjQUknMn28Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5szUT842rJzKBsZkXWiAnosL6Sp7EbJbugM4MgpzSuEcuPuEcC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357 - },{ - "name": "bts-btsawcoin01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65zEmAfCKHN35W6aihn8j2Hi98uLdmhvd4Ybbk9DjW4T5V7kEQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ygWBBo5b1nXkSyDkuZ5LPzrBqDThRxNopFVtzBtb6xRmjNuVW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-moyyewhon5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ki45fMU6dwDrk8WCVV81e8tQabgdrK5Sy4cdT4D2MZgs4RqDY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cqA2uzaNmuRX7f3UCyFL1DQ4dzj1ncn7ehNzuw1nqAYYFryRS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18832 - },{ - "name": "bts-jennyp3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VmYRmRz9isbHz1TCxbc1555RoB9cHeqB7KUdcgzN3TsAbeXoU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bwyunc3TqWgAvQASCThGEuE2mjM8Q4tBKEwy3cozhtzykq5bf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-acidicape-x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qsCcwTnvwD61hmuRNUdYdF1D6gwNYRA7Q8bEpCzPPBBrmRoMC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XGx7JJJhX1MsCC3HbAP4DLm8khRdaoEyrdR2Jec5RvwwbYoQQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2474 - },{ - "name": "bts-freggieleggie1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ok97vPzdnNC3SWqbavhM49abhkVQT8N7xQL6g2wqvM2au7vrn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SdQasn1wg5a5UePALmnCok6bZQgdcmj58xAyJGXLq7xjZiwT6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-openler-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hdjwHkdFUt2b6mF6gLBMX5w6aTC88xm1cWpVzjc8cLjcwxCjG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q2MFyQ7vWBbcdqvYR6sw1syAY2AscekdwCQ3XGnFdXADyozMy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 123487 - },{ - "name": "bts-creemej-bts-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pm4qc9eDPiM7aCLGUVpvPWj3EBAVcHgS28JCobRsxsMZxQG4H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r476LUNYDx3C8Fz6VkMsrGEMMWmYzLZcMCETk7igXhLzVxfD6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1477272 - },{ - "name": "bts-inoknow1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xncABCZxAY9UfRU93WPbqLvYtVYyaAng51RupVTYtwvC1Yz3k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZJ2kJPJB4HDAFKkx5qLUA3v3U7rYixnDRCCnyCuDeeEmP2pKJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58057 - },{ - "name": "bts-bts-io", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59YNj3xkpVLqEkbWGQrojSgDhX2rESLkTzEAsvKNi2dmNxuqgd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aMyrV3r6WhsZR8Bx8iWcpfGDy4RXQ9Ck4gfPnZkNstSVcHLWu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24326 - },{ - "name": "bts-bts-maker-tcny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JnrSFu2xhEFfnXDCqPgVFyyGHKPUYod8VtvGgzMZ21fzh6HhA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST836uKXj6Qdq3tQcJeT5e55xi4aRc8Hwi8wBhBvtCRCYwhjP4su", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69 - },{ - "name": "bts-t-tigi419", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sbs4WwQ6gsCRNgtayFYXAqKdHwnv4ibLLM6URnY1RgvxqNEjy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87zWJpTsH6aG2ucLsfWuPHHQMhQTDT7yKR57UED4mJ3iWiKcfs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-fhughes1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63uJAfwHUcCVWt8SSFFYSZobBW7dzppXfPvQpeN6xfn1Mgkxmi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5CmJRCBH53M5AnJcRr85jT2v2eduFz6V1p4wmUwwcuGG7EJpJv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 331 - },{ - "name": "bts-cni-panama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VqsSaVmTxL16AcaT9fkKBgRDWTeJQATbQjA311Z33EQcnNPKo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69JXQKrXmnPSg99VWyuG7b6BgVYkct7iNBhCtdBx8d5RdDEyjh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-whitepom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PQBCwWwcPxAhBxVwMUJYe1mzWUbYLqebQ34VBoPN3xeUgvf9K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8DiLhSQcnPuMRyKcdiusvEbi9H6RSgzadWQrd9RveYd8HHEU6K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-soup-resed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R4MtCMmKXaxCLLoPgx9KreZhzTe2j2bFppGedbXHKaZomzjfu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84swnnHgKqAybrEzzvtGxsL3UsaedMd3KpS4akcsNVBXBRmRn6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-cni-tlf98438", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jqy81mSomrNLUfi577QeEqLjg6xFRMvDgweqjGfW8PuAh34XA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4unQ9fDXaYw3sQbWxZL9oUnjd3EFSVYNkbQ8nX2JzmiH6Nq1td", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 689 - },{ - "name": "bts-cni-saf98436", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Hc8ugieqUwZyVyueHe1UE8Fb6C3Ake3ucNBx4EK8UZpLp1L3Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5s2sQZYkE1bp3Pqitxtw1YPfcGEKCQwKadx9ee6WPFogsqZqP2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6413 - },{ - "name": "bts-cni-kenb55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JeQvztt3aD92XxKFXp1tx9z9SeYBhVDmq4abmJGqip2cVhvo9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST755WXxsYxmEXKkKam4T4EcCucP8NB9bR8cfHWzxELuDosVBzmR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2449 - },{ - "name": "bts-cni-tbt62", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TE8VHjFxqYRZq7PnQckWK6RfyrKu7BQYPgSqsZYR6r56ih8BV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5fu8ptk2rbkQkmTEuuSZQZAty2wgWq5qVRNs5R1HvGMGnbGWLM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 99 - },{ - "name": "bts-cni-mtngoat1976", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hK2b1MwxD7v7C9N6nbFCn4QEce5Y1HAZ9UV4zpkEfc5gXDs5k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST75ZDtcoitS82d3CaedPKxUzLKEPxykcuWiwABVhiFRjqawt125", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 352 - },{ - "name": "bts-cni-viliukasb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YHi4GH4keYRsiTMdA2MkJgdezNxmYNgnvEZU94DYg8ecqjtJ8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KnyzPphPv53Yj6FwNxxrh1eKmeeyrboiY6HEg6ByB9Gdne6H7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-snayper0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HpMCWyqNmCBaypYVdv52P3z4v51H2ZoQmjfjUw3DPCVoNud5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zUPVuG7NRufQAjT87bZUmZ1XxS7fa9KRegcwFcvC6xmxvRP6i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564 - },{ - "name": "bts-duplessisc1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bK36sgPutXfhuBEfHVPea9LmB3qHt5u54v5vghYWifMmqmixf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zm2PuXEX2Zp7esH4SprDpJtLmJc3B6ub32fMtd6n8dmGpMp2j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34926 - },{ - "name": "bts-cni-joywilson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68WSFwJrMFWwhFkxMc3eaVF2cEP9FnwDk9NKPomvJ3ges2DGsR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST82CdrqeN6Y6VuVHSeJMGk9gS61yYUjxhF1fcZ3FDaz2XZuaXfK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-rwilson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QHggrUmt1RtD5o3gMDtpaYRwumVc5hRVcWe2gn2ricpQG8hgF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6BezbwUfyGJ4hgUGDmhr9qy5z6jqCdrCYBnyMcvsFqo9gdmjjy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-cni-starbrite", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6YMdJwzxroBkNbTaRYqWtrryjbF9paprYqmCpzc4aV6k9E4AWE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tJmAaQUL8oPCDaWD8tM4tSWuJbocs3xKTD2ikcuq8P981ns1o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6533 - },{ - "name": "bts-cni-blessed59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56ukYaKwQd5u2yvaJDKTYnnBQcENdq1P1WpWXtJjtHbwZxNokq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST652pstdvpeh2XBTBDQtZ4ppjSQ47J6H1ig4wfEG4XA4Dh6Psbo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2013 - },{ - "name": "bts-aineas8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QPXwrVsppg78E2SSNftpDEbJC4pvYWjQW5C15J2fEAaK2V83T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VkkmBGrT1AqGaJRMgdMgtnPBkeNKTPYjjssTKaz4ueJyHjYnU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10171 - },{ - "name": "bts-mark-lyford-holdings", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mr4ZY4RWwfoC8frN46iHSHBoLYYc1msiYzBWF7jT5UQA4HLQY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jSatsfd9rPxp9oMf72YqcTJkWQUxksg7ppFvfdiTUeBGpPa2A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 178 - },{ - "name": "bts-banx-holdings", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xgELXRLbAvPJZGghPRRRV4XBEnXqa6wfcSEAPJH6U572aoXS7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mHLTBQ4pzL2dEXVzNFSDaVLTMbXmdkgSLFGEi8DvbiQurji7v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-cni-goldeagle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g1n9Y6GnQqMaZJCW2PKoLLDS2ynHyS1JLt1gV3MqWBTNSCkzx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5nS1bLhnXkgQpNkLhArrCDDz41xKjgQR8UEA5ovTWfDxBpNHHM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3928 - },{ - "name": "bts-cni-mattray", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rZTHEvj8AeyHD5JqoEmiDSkeXTVaQoLoqQAazxDy9gMQJ6Rbn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6NvLxu8stpfvGs9gPdVgQxP8CrGVveDzz3d1Fw38yGYK4mGZms", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6455 - },{ - "name": "bts-cni-apple", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vS1NwiFHF8y6KKN1MQcZGiC87tZieoZLdrmgYecSRwC3Gp6Gd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8MFYvJjRLhUqSTLe31DMZxBRtsUALKtpmmg5Ta8QpL9V7R33vJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1311 - },{ - "name": "bts-cni-cheeks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZswKHMQYDPxVSA5m8kTc73vs7PzQ8qUUMsavFgvhRg59ctRJ4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ug6yP6B7Tar8mQXJnWj1S6wPUeT678JiC6hoNkLCxSDnJmeEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 541 - },{ - "name": "bts-cni-solomon777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wwAwDWEKpkp8YoETdSMWDxo8DbjonhoQhMLD9Ah9i6MQj9hix", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YwQs5jehYFTBnSX6mQ8wHhpsjg6JGZhLgBhUeGb2mUVcCBpvh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 88 - },{ - "name": "bts-cni-ckerflag", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RpQ9Nf7QJ9L5KNyicDSSMFew4epuf1KerVKzE2mcLMXrdxkeQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ZvSYkoGpxnYzsWevdV2cb5Av7kvUS5zdfa9z4MxdV8ttp3eWE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6746 - },{ - "name": "bts-cni-andot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6835VJe4P8gB8VwzzXvFsSngKznQaW8qW1G3rPHdLWBNDtVxv1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4wwDavqtZfj3NQKmzpBvkVNzaNVsBwbGaLt29tXvAgTE2cdWxW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 205 - },{ - "name": "bts-riverwood21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uTpPdYdScsLQz2JpvZWV7vBsfTWALeGPRF7X7sy9Hc7CEtwmx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DQbu1ivrUbyC2c4RRSuYSotfzTHHkXdsPgQUmbB92VQuBu39n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6735 - },{ - "name": "bts-cni-makalakeli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UMZYbjYns8Wa2TY1RhEbKW73jLGiRzG2zgAfcxYyXFo4tMQqh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST663GC8cdPFDd4pPWjvC8wH6yaC4QBaDHKBPDgPcXm7VDyz1Lt8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10647 - },{ - "name": "bts-crptsprk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kyubABZztC3Dr82WrYcSz5YDCLPTfg5d3DFn8ScRKXB1qJzHM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TuUGFgRkLwNzdP9RMzvQWzMX2VebycorCp7AQXXW6wy2Ejh41", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 335124 - },{ - "name": "bts-cni-jealuc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VzJeF5y7PX5SqkcpcR3DmKQnuyn5ekBKFjhLobcHreHQN1d2B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7RwZa3tKZvAAkBCeHBzeH8M5AKK134tPqoaVSSj5vLjMee3LLg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 738 - },{ - "name": "bts-cni-dustbuster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K3vyckoFXFbcwde5Vy2SKN55s7ZQhnAu2utMPvuezDSALeQGE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5qhnP4JYywZ7Nw1YuPK6aATJWJVFALQxoGZpnw3aH6DEC6py5W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2761 - },{ - "name": "bts-cni-vilijamas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zfoZkWQyWYBg5UFqr61JW9kKWp1FJeLA6CrzVRFQoPj8m19HB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST741ct96kukXax16FSPQNKcVNq4tLF1FrBrewM1C4G5kAgnYzy3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40 - },{ - "name": "bts-cni-dakotasnow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88skphPnLHVb6sidfVkmhfewMjWjcjKgvsTdTAsWrZcErpcFKC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5dSRUk4p5PzsALxpgduvHVjibJcuihBeaYoPsxoY1Jc9mTJhDp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 526 - },{ - "name": "bts-cni-aag", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WhhtX4JKyExkBeScBAQmSUSVJ7TXHe3xtmML6Kc5tVMZN4txb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6gEGkx3TQazu4FyPnFHiJ6qbmsvLQpbtbrTVtEx6bGbaNjMopw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-cni-ajc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UKCJvMhAXbBAoqp3R6TRKreE6sqBbHn6mprLYLSWTdeEYPP5k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST83pAc3tLrDT723yTUoPprzSosdSyyNiNjhbtHbm9StTDrYaUGJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 532 - },{ - "name": "bts-cni-arg1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jvFFuJ5ACfWDEr17oMG1Z3d2oAu8qL5XoVSmxuEqX4NppQbPP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5UgcxvZT3EU9zTNV1XXrqWRQMea61kn98qZrULimhfcBhsuvGb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 208 - },{ - "name": "bts-cni-rg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TNyTi1Cbbfq52X7dDfMRzVKzHB2qCNGfJj9uQyeyYbLjGpo2E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5o3SYAbZvnxVwETpCmkxyfzreXwZ6kKSuskdsTSjoJw2Kx1RQU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1609 - },{ - "name": "bts-cni-atm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dE2NJoUjp4HSk52n2WvKnFzBtDyhh7jjm3guqv1zYpvveDHnL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST55MP2TMZtd9VMS1BgC7dmKHZ2Q5kQvJGTSTU2k65jkcsx1F8mn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 107 - },{ - "name": "bts-cni-mayblossom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tf82xqKJ6JmWtB4iKZ61GDFPagBxHYdr6iK6SGKRcjKT3bQk5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8g59f1tkZrDEBVXRzxvVzCh9azNbKHF1ehxmMArVuC9auvq1Gk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3253 - },{ - "name": "bts-cni-kitwalker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KGcvJ339ujAihor2Qym57uJDSA3WbKn6rBiMQWYtfJ5APmBxH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mVrG3FmNgASZ7RPzSwaFQBnpQtMgBmkvAHLjnYgxTSijb2YSv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10956 - },{ - "name": "bts-cni-drcees", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Mgn9tvvHAt9D4DYEjm5DaMTRCKAmNY31Jx8A6upS9mQQvUXZ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5mJwjFpbMBEdRBrChUasMndu4nXjRzAwpuL37DjsGEiwwBcDfE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1275 - },{ - "name": "bts-cni-larryg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KZLFyTXVsiAgLQf9g1gJh4HyALtwRrsaeeFBnMbp2wvSYAMXo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jia95FXVXXmLKuoztPrnNRscpUipzkRRz6SnTVD8cCXRjLfAc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13777 - },{ - "name": "bts-cin-moozziilla123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8157R1vioMZc6BL959zHfmcPk4y6oukFJxqHoEuHyPAXGP7kCg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8KMVo1vDBHJj7XacktjNA6ErQPZP9jM34ZVxMQDdD8EvDpe8hU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1197 - },{ - "name": "bts-cni-tobeone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ic2HpeXxWBRZaA8fs7VN48pfkjuFLdL93bWq6Mtvfcx6EwJNv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uM6ZPKNhsrTnrh8HP8dUDdRAqZVWxp329ucpt2hnJ8JrJ6bTE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1345 - },{ - "name": "bts-cni-spcinvest", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kSfUTjz2UMR37FGcETXLS9cCQaHLRRX6kyaU3sQDQmoaPyRcX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8hQc2uEjU2Gkgeg1qNQb6ndMPcbEkMBr9EtkVVMd9kQzJjYLKL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1052 - },{ - "name": "bts-cni-honeysuckle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UH3MqqyNXCE43DVRiCMS7GBoVfVrRrB1YfxtVr1cMNbLfwsBy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tFsxJPFkdxY9yf3JjUsBF2sWMXFb7vxMZKFaXrfkvQt2PTMtX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 483 - },{ - "name": "bts-cni-adream4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qUywn4oU8J56yaFb43SFCRMKFkmbeYaNEbSXWUyD1DJPPFySa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5V69HkNbHe9AK2zaAbJoAgRyEGgF3T6oi1YUkCCs6TJ4V5M9Mk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-blessed77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LkfqHfBqyT1j7Uw8wKHwU6BXQhdeFGFf3ERw8b1CLg4jWHG65", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7SCQo6p8AeesphMDGUUtJqg7StxR652DZU7MGk1wbMS3KSEWCL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2049 - },{ - "name": "bts-cni-litatito", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VcLyYWVwwLBYpnScEhxfebWHd5Y3LPcMEvrESrYuh9afqTN99", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST59frwBdnqjmhijuYJQx7NQQQnuMW5gWGMCsXTTFyTFYVbdXxs7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 374 - },{ - "name": "bts-cni-roxy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Vto3CNm6CWhRgZMgm2KhVt2aDUzHfUx9XtjrhKYnfrFBmWvRF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5mP5kNBMaXn8Yv42UzaMietRUZvWiYwKHDJaeBJUSMjJCCNXFw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-cni-compuspo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dNuNxcRBYKtBnVD1y3RPVmS8DWgA4iVJJnTwrKWKqr11A5cKf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7v4t1d4G1fckp9xb9LQCsEhkqx2dCdL4SwG6MMgMmUsoEGjtUN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-cni-scottyg117", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xop1fwJem6QaGX4ZP5c76tF9pcjU66MQ3Wg1GR1f7mSv7fFZt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6f1CqEqeQ6jxR1xa5JobLNNj5VPRXhmV1UZrcSiWzjxnm9U4zF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 433 - },{ - "name": "bts-kannan7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cgYmTMVPLri8wkzGuQpPfEVYK6P3fXUTPSzeqGys9ogizmoN3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JG2dV8attuWfJ7XkeJLJRKJXj2Fw8m23YYSFQ8QfTcuH3oVnq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-cni-dci", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dZc9ZzBcuP76aP6ggBvmZMQcopuV6TPfRv8fQhFWwDJf93p2u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5A1aFW6FVDvvbVT1PtbwjiCg9jyS9FjV748pWThSGWqBCyBGs2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7297 - },{ - "name": "bts-linknetcom1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dNwqGYX2yhyEuoiXwmXEV5mTabRLry3K7bbZj7Gdd2oipP46S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76DPqKbQ46uwsyxwvztJ7zKGKySKEdY4PfFYoTpu8n1FS6dZDC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 523 - },{ - "name": "bts-cni-mylife2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U1XeTcYHrpNJKyTWoh9WWm4MQfw4Bii9hrGaxNuyuHkRK9zrf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8A37xneArDYmbNKQcRZGtqPKoEWXUX5HZXSGJMQQJHGpVFx5rs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8086 - },{ - "name": "bts-cni-coasting", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dU1GTQ6QTED1fvNMsqqVPKxKbCYeQBEqDP8nKcJKzTEtHp8B5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ZnGJhKxw95UoMm6qVEeaYTuTeMa2CbYxrGBr68jur8mttXDUu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-blackkat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AW4KXi5FK5jvtFdtKSLAUjsT7yvcEoqnp3MGfJ8XRsf3L8XPo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7PPGGuMe541KeiNosKBFhGhcs4bkfs71Efb6vQbAWZCSt8pVHE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-saturnman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63MK4THT228VSiJY4aDyVt1rPbdwX3oykKir4MXBWqAp5XRgDs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Spgt6TgjC4gy5coPrZZcziH1UzeQXVVDyK3Ukh7Cpf7ukBzfV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 623 - },{ - "name": "bts-cni-hardyr2p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64mPp1ZzwBPCfvwX5vAVRqrdNnEqEkHwr3UeFmshJuk1i84SSP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6UQp9RSriL3zRa8Cba3vjfjrHWX6EqFf8CRzP45iwCe3kPUsRT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2271 - },{ - "name": "bts-cni-pg25blue", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kQbGr2RTJqv7aMdES2V3cBP2enBie3NJh4ATUo4ZjfF21KTam", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FkhiMxsG45SdGDG3WAqSgKmsaC7wK7bAp5B6RykgfgEavKv8P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5043 - },{ - "name": "bts-cni-zj2419", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST753avZzTmS68Ln62DT5RmNqNDRjB35mfWrbXP1TiP8raHGYt3V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8G3Lc88gdjBmvo66xgxFSru5cnJXjBi9puPf5hKBbnLyDBJAwZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111 - },{ - "name": "bts-cni-anthony79", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jUa6SV1SBQSSgE9wW3xQiinpsGnjMUM7DUTB53N9bV5FSvSxy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6XvGKwJsZLmfwTVxVxph8oh7DYtrqj5ASGwXtubT6yWNiT1hqr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3024 - },{ - "name": "bts-cni-krish2007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jakpxcz2edex7JEnQfMfUZS9eRBScuoguyvjybP4bFtuEPsKj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5szmjpqpTRcoshkBgXTRk5mmoou7vKDJFc42ynJESTq4Yeqpzz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 607 - },{ - "name": "bts-cni-bitballer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Z7cpub6rEdYceH4YXLaSTp7DuZGQEJCTj8D8QpP1YFCMGYQR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7AT55eKYq5zKAYZffJkkRJYP7b4ZhLnrJnQS86hxd7aD947gu7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1051 - },{ - "name": "bts-cni-goodgirl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GiRPXhgL44aGKMP1Q9MKSjySNy64BSETZrzr366Z5XQoKB8Nt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6nCwkAior7C4w51d2gjqFkr3ho1HZUau81UmAp32mFAE3kG1P7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13944 - },{ - "name": "bts-cni-matia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FEyVDCJXs2GxnZZTEnxcmYYCuWPVRFPJvMZjUhC1zQgigKzGu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wBQ75Ju8fq62jwvanGxnG4tAuT5hoqn4wnjk63qvhQ3AQYNJU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bit-house", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dSz1gEmU3GvCKdhGZsne8kJMZudYZQo8ZbAwBfZ4SDusfmRvP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kixDnSa5m1WDXG8LkdFKiNS2u3WUQcKAVSQ9Q2bsCyWD2AoMz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-oakmaster-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YyGWCDrpA4gpUhvLWBGTQNuAMQLXdortKyE6MovLqmXJXm75S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EpGi2zSpYidK1vMMJ89SCo3d9ZU6qRPCZ4CdqG3dSCBCseC45", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-ebit-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dxDRttmsRDK4B5Ychc9ZTWyxrRc1Ye3L5dXr8Pkwm8hgUT4qZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fZsLq75iA5Th4b19j5nMiMCTMTK4RoR6g2m2TKhDxA4ii4Uj7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-santoshkl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BbhTXU1Jbis2y5bz7Rfp2Hi7oF1Wi1L6JwRTwsUM6LAnY6csh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8eba2ebQnYFBu5eExtCKjVmQQvQ3whzHHcLK3ZnjbrmAYzDuEA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 493 - },{ - "name": "bts-cuoitoe82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8menfn2yMZ2v1nKoiDsVEhYJqQKQ2h9cmWcU3m4bnQLtEFmB4M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VNLjV451GsCM4ARnK1XeQikdZey4pt6nFDF4sfGj8SQbtqyGL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1000888 - },{ - "name": "bts-zhoudiao19910718", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XNEuqB52JbfPf2GhCWrQVPv2FYzUNMFPGUHiZbrXsdr7dN7a3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bJkAwtWeMgCx2iHjRTQb9TsMHueETqkNxu5XJdDmGkQzCf33J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-pangdamao-notcat1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VCCrx6f4Jmr1Z2uWE4wgje2HsVoqCiBEW1tccHjKCK2RLdqP2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EcwZjMWLtgBspz9bz3biN8U7pAiEdm6KyKquaWnLQQmYadC7P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-donp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c9HYpFNEMAGc67DfwwMC24osf5ggv8sstyA4Hq7aoCxuXtREf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7nwvgMg7Jjxk7SMqCsTNCsvPQghX47JiWauKFZ7pWsDSKvuqYM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-cni-shrich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xnLn8WDiZDnjBoDbtAY65Zq3hr5NEGQ2RWke6Y1nh6AecvCmh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6UHwCURdzuSJEYTTFQuq4VE6vHWCGFKB5AW5WqVVCRmF7ZFXiU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-btshao123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72kqVo3aVoBBXwqEpGuzdmRZ2SNapwqTujdfKsNMWuwNBniUif", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KK6pgUf9nhm4Df7YJunT977mpbxHcCHb6rqzXGe7yHceUXWPR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-yoichi0830", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CiGVnwP5aDWCSC95WksXQb23npEMxLrSovGy35YbASqYkgPkv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qyzLdDgiK5VSqsXjn3wjkqBrgrHUhNPWCivobpexNfzK6qkrA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-gfds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JWWGD9bMu1x4Xdnw1d95gqQQknV9o3NjoAtaRhi8nYMLFQnPx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QhXu8BR5ERGp9NHGb4wuok8dH3QkAFwcqRBHVDnc93337pRQe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-fuzhou12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EPnuK6m3grVxjxYb8hGaPrPHVbHxr3L1eo5M2Nr3CmXctcth2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yDnik4N5GygS8tHY4BgqrYJFE41tzRQ1uNQLLMo3yGbrgcVyQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-aka47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JT8bzKHBkTnXiSjPyck4st6aDBWBhSR3Fmf16KrwbCgLLQaQQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DFGuqeFPV7prxE8abqByLmkp5Rnpn4jBa4xiojJ2g1pNveq6G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45338 - },{ - "name": "bts-cni-evajo77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FmjpomHdnic7eAv2ihUPk9ZrLSXchcc2NEaGPGM5sy8QvUr4U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8bSXc4XHvccw6hyNZrf7NFnd1aFQEZ2xLaxHV44TpcVyn4GtWX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1731 - },{ - "name": "bts-cni-sova", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65Yo72dhJqxwrFukthYB2gpbJthFQYPUFXHn6gqtY4iKwQHDcP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5LCKLNmjqPeaxtmGwefnzVQnbynaqtziWijB7DCZWpQQRBEUcD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2140 - },{ - "name": "bts-cni-4ajack", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76caHkojmjSypk18ZCzFHReWjgMfuaipQ15yd8D2pNyAPn1k3w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST82x2vS1SkyCEd6bfoKeGY8gnmgx66KQ13DyogDk39fJCf3Q8rf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 954 - },{ - "name": "bts-cni-blackpom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PLRTAWo6MRQkWKpzkBbuzAAQZPZBzqbdiwWEx21GUnSb5h3iu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tGVtS3jouoyGgXkWeRfWPhrRNmAwZwchrBLKvESnFdajuFWgy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17822 - },{ - "name": "bts-cni-jokehu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pgFmoWsi3sx1WDXr3Mu21UVMtcicof8ChU9UwRXKbJoULvRUx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6H7i5tST2ZgC1LSaELZD9F6NGJ9Pk7addsBU1ZaKVV1W9Ju5sE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1970 - },{ - "name": "bts-cni-tito", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kf6uYFWJtLb9kvwEsaKUj521irpT2U41HUPLruB5xheCUNqbP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST68Y8iDhU7f9MMouokGa9FVa38M37Ac29nm1tKfEYbQyYTgziGP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-jace731", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zCgQkgA6BpMCFr4KWEr9KPnmRjQzd7oNuqxiiKAF6nw1XQsDa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST66QdMgLoVcgcDHyKyYWNGEBcCHnq42vb4MfQ75ck7wKPqSv1mE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11301 - },{ - "name": "bts-cni-pavelpuz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST781fnhfZNrZ8t8t2JGN7u3BqZULZU9MN18s8Mu658p1i77AywP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5S1aSPM9ToFDgkuQAQDRSAdo5N8cR1RTHs8j6NR5VcZH5BJdJZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1038 - },{ - "name": "bts-volvos60rdesign", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U9D6cmmy3By5cPaW7RHfDMNADFWEHZwdBBaMpJC2JgAmNpEVa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tv4EdnxoS2pJyP5fgLUcMX4RoK7R9baHKa2jxaffpUBt7JiqU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-magsistemas1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fGkTEahiT5RQHj4guvBAmSeyUuXBZV9xCeA2TKQ4CRkhwmZM5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ToGQRmtmHEEG6piH4hduWLH9nMfuStx8jEbHVHPa6JcD5pxkg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-cni-gaoxyz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vKHf6oeEHD4A9aufs1yLnLZgejoPeFNiHZqKwXvFLWGwTsbYk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST58URy1kU1pqTr3166WLvXD4c4dqDZobM1D74CKy3Q6GTonDFfT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1829 - },{ - "name": "bts-cni-jimmysgold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pbdnX6e3QKTeL8EduHAtus4LCngSL1UF36N8oa9cP2uqrM9iL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Ktf4ZBKFqvFzhySnDVpCDYxrzLRVidTPhNqcN674qeA8rvUyf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1053 - },{ - "name": "bts-cni-rthermsen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i4Bs4YGshB1nzUA1wxHcSoHfeT79p8pMfCCBgYsR4w2YVx7ox", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6MDGLvHQcRPCCrAJK5xbEwzEhLy7vqbnNvt7LTwoADNax5ZpEg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35626 - },{ - "name": "bts-cni-jamesldn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GSTRQBYYYsF127DhiLzkbDQhHao9sdYBCoQukzKTg2pSRBFDH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Te835hxFV7MqsrF4TcZY7HL1EueggyaG8jS1ZzGmrJbKi3KBT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5270 - },{ - "name": "bts-cni-richgraves7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ehn6RsyxtQ9GY8zqwhnfpHLJxTtciA9zjF3w5UXQ1qWWKGyKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST73vFGwdqgvAEQHEst3AWdbmDSysxfBAgDVGnWXp9TwsRMkzkKW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16424 - },{ - "name": "bts-cni-irisheyes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FEjDW8vxmvY4R6TH6M7SNKc9NuGmh5wtWLiG52Cnv8GUEkGtb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7R8JNaeXGozqhxeCC4EGmCBp4DQLzVnPUBzu7R1jdaQAG3YcbL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7407 - },{ - "name": "bts-cni-limpinglegend", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xD8fkg9vjCdf1SUx4yDuCYfYrfqpxuUye3BuMmWa8PpSyySQG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8SegHNN8ZxQh1ZA9qsBWwWHx8jhwDkSQktZYU9jmByzDbZrzSS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4545 - },{ - "name": "bts-cni-tradition", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tvLmH254Txe7j5rY5qbAbHaL42WCsskVw1t54hb5BVfhTUdPo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6KsrtT8DnuLeJxFNPXnJfmQztcYF77aw4yV6rWHqmz9VNJeGjC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5433 - },{ - "name": "bts-cni-massman1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WXkYLZeMEB1hs46GvwenZV7VuaxBevivX8eCEJd4D8V2UvVqF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Hs6qbgfGQsJmmj6TPsEoM1ikyUKjzBJcegVQ1913YzJdtrYT1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3371 - },{ - "name": "bts-cni-muspsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JuEtsxoWWFzrBatzqEQZUQy5Xkr8hrMxuryDvePg1K1CCRG7Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Tzt9mwWm78E1FPsDam1JebuecdPK4EEyKDcSnXcDXg3V9AsvT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-cni-madspeter1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mFQFJXoWyjnQ6UHLYGAGjeuCyypGQjVcYjmkqfUtzVJRSaB59", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5k8Ja7eDVPCwLYGGdvfGnW8ePYijUy1AS4iHNRzNhgFUHzGZe1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-questzero1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QPw2kV7PaqiZPMPHgqV5TU2tBsTvAnXa7YCZ3Zkw6ir3y6LCD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xYSMdWWs4ErWSPFwD3kXwG8Th3HSc27N5JPgkKKYvTNAWVn4S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-xtrjoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51E2xgY1FajJUCKgvhx4UcW8iXcbkvP3cfoH9kFnR6V66CCadA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5PeX3yb4yfiu4C9xDyirHBDUd6nL33wFgskUoyGLGh2xgGyRnX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-neo-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mAroap7Q11kbcb4K4hjC5kcfEHzuKe9cf3eXxyRTcsHAYcmCE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r42vCAUb4Z3sapWHD1CEUado46wFvkPcLK1WwViXFrQzJ2eHW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149 - },{ - "name": "bts-l869913467", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7poVR617swPtwXz9jAmJCStTvi9rycvcWGHeBjCYE1V3w9bTM4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DBwL7ijKTiFnW3bbH4a9ZFsuGaKFpjCiPt9Y75oEEhpR1Q3Cy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wangruibing123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sJq5HLSEd8uqdUczBcrFBnv4X42x6Z5nT21EvzKnrfT7r4uzQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5c2PXQZuaUvR9Wv8puLmN92xybfjNEdyDtzZcX6airMnu3rDks", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-btc-world", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JT9Y6kcf4v5XtJGwSuSCGxqGzwBPykMMGJ8ntHyifnt97uMGB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yKjLafUFYVGrmUxrLGwM4sW8531gAVXBaaaBQufz7jrfVdfbu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-awb13872026719", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Wk61xLf4KUwV8bFD7fkHTdoN5VXgdWhDXfw9Fx9eaaKcuWUcr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wnviJK24Tc8iKf7Zq5h38NEmUH1JYxotbfFXw9rDYcQZo9Dom", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-maddy5611", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tqsGvhYiddXajdXQFeeqZzfEgTHr29rxYyAHA4hy2kEDexZUv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Mbvk8k71rBUVigWJg1447vm8n73pcT2wgWtFRUgLQy4gpZUCa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5235 - },{ - "name": "bts-cni-mila", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EbbNNgVZooG85sLn2265ZfZRPsfWUi4xVPtpP5i6xcT7ZqsP8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8kB6DXDf7gm8iESHii6EhpvJ7NeBBZQCN68TuqtHNE15kD6mT9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-whatprof-911", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yN7wVerTNY3gytyDdLgXhnDiaZahJKjZC1qfKazCMng5nJubK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z9VBieh4XobxrW9e7JcmeRm1oervkfWqnQqPUAoXDM2rGnEUC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 445722 - },{ - "name": "bts-cni-gordo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W8ontD3DwdKqyMPq5gGyAdTzQ8FtpxzqemGUMEy6b3XtHxpQT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6xGUE6e4UushA5Zh3W4gJSf9br7NSVTXv6VBywMuHkAiH1udRf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1448 - },{ - "name": "bts-leo-steak-hasho", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x5HxHfjqTce5yHLawCiznW9DiUy53Vn4d9GTeM9Efno1y2R5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ko1ZbPjVruXZsLPXdwDX6mztHGL7T9hWnyAGQHqQ48FqtgMy5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 450 - },{ - "name": "bts-tyz1000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QFfPB7HqeVX9iLJWwfMJQqtZZcZ71bFUFWfpMTRPUhqoxUT7J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63v7binyxx7p1TbSgGghKgQ3xwoGhfREaMU3c3xepaptpofyst", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176 - },{ - "name": "bts-kr-121872", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KaqyiEKBZY4kpjdg8Sruokuo5bGYgGnb21TvhsXzepjtq3c3i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a1NVvqASAvSxyfLfojxXV5iVemESCHN5yyGJE239iT75bnPRo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113 - },{ - "name": "bts-cni-hugginsm1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BbG8xuh6qhSpmRNp92ozEQb6kK2GfCQCNhWqkhdRFpDt8Xup9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8DRi8C2yUPKqKbdqNPUPv335cViSuQBMRb4111xx3dpu3qkK31", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11715 - },{ - "name": "bts-sdocom-888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4z81Zw2hN3aWEP94tBmPsqwmfcDkM6H3KzAMLZD5xbCsDqeoRr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VZmKLdoM5ZvSae14mVcefagetftD7ZToC8JpbMNpkvBvWpTiN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-mka1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P5Ro6Jo9yczEYrWATCxZVYsqWzVFLTSPczjnu1oLvNP6MfAJ4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vob8WyDg11TYzHRFmz1qemH4tAxkCMKCsPteKShuSdDtt7w7D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16699 - },{ - "name": "bts-cni-freedom1021", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DW4CSx5Pgt19gd5McL5JaTdj3FLNHZbmJ18zJ2SXj7B2nuHnj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST79g7KWYj8pmcw7c7RvTHsRsxMp9CbVKmS8Xsu6w3bFACSLFYP7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 858 - },{ - "name": "bts-jonathan-pitchfork", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u1kxvmkm82kxyB4CMWJQoCu12F4ZGukrAkk2LVzd4ZeoJK82G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EP2tg1QDHxzfHTqSxRUQfigChAPVF3aTwUj729myoDh8y864C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 366981 - },{ - "name": "bts-dlyop11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8McBfX58WcuoJ4qxG18LTjg8oj2VWGbDXrXYAfLVZsouzbKd5u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bVPzjY8KrDyZSC9rxqySns3sQQuPGCf3kock8bBrTcrBAZfUV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 153 - },{ - "name": "bts-dking7334", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SPWsTcRJEXNUfXvJeh8CsdmdCWBBAkPuTkBt1NLhKwFxYYoPJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79vLjAaEbsiaj8ccfqj2kUwyRdtw5osjRN9E4Zm4gupW1cUWrB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-mr-hankeh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4waXngecFatNcfXE1ySXeGw8EPyHqzcsQrpPPoEzZYu6adus5N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yur7iaQSidL3EhUrh5YKh91ScoGAbGSu8S8LBuS1f45zbfrGD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177866 - },{ - "name": "bts-cdw-hamer-coindup", - "owner_authority": { - "weight_threshold": 60, - "account_auths": [[ - "bts-coindup-hasho", - 30 - ],[ - "bts-duplessisc1", - 40 - ],[ - "bts-hamer-hasho", - 30 - ] - ], - "key_auths": [[ - "TEST5cJMjSna4fY7hhdaCRWnWHStjNkzpmj1GmGEb4agoHvxaAGUdc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 70, - "account_auths": [[ - "bts-coindup-hasho", - 30 - ],[ - "bts-duplessisc1", - 40 - ],[ - "bts-hamer-hasho", - 30 - ] - ], - "key_auths": [[ - "TEST5sSm59trP3msiKqpmxf5kRgZLU3VX6cQHtsxcPgJ7HnycyNk5D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 557 - },{ - "name": "bts-bts-maximus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mkcUPssL5zeipBq3eeZtytgZ6hcnRTXof1i9Tvz8smtqqBCNN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aLUiKbpzVSYtLNL5Y9QxYkXpmkGTxb4gZPhP2Ryf81JcxkESM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 862552 - },{ - "name": "bts-cni-linkwebb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a7UznuFoDmybZBxiT4KEqC27cb3MhprkgVgFzMeNf1pCmMsAe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8BSRbsyLhrDRuJ2rx6ohaNW8aND8TTVrzUUqWb6iGepxrDQcYC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-robert-trebor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52DscCubK5oBX8nP6KS2ApsVDJFckQGcRfie2sMtoVjmeYokUP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H6nZ225VBT4jhow2mfv2cbHRx9ozdpKTH6XBYJBRyPXNiNbB8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 893 - },{ - "name": "bts-cni-kamativi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68MVXp46sAQzeHS9XWHLod57TC7J2z5TZWeiwKfL92GPHJMA4b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST68MVXp46sAQzeHS9XWHLod57TC7J2z5TZWeiwKfL92GPHJMA4b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 252 - },{ - "name": "bts-kortlontje11091980", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dhxTYijvbnK58QZruKgrqbpXowAztD9NadV1ZrKASyvoWJ8dX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fDFtsBYAqfFHFRkVXDeaK6h6p2cZjqBaKTuguBQU3s5UvbG9g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-joelkatz1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bBjyZBDwm4eQvywhgwiKjxqMjWQ1PQqALUVo4bXX4hgrcrmNR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QfDozgSTmqm9LSLct2hnZnBDVU7SHVre6YoNdnYabWmSB9nFz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19736 - },{ - "name": "bts-b-delf85", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5A6DCnJT15Pzp62z3vgZWKgpwrpUi6aWmcK5ZhoQa9gPPABxZd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uu5gLNWWcM7BgVpZDLe87pSmLXMCcMrWiLND4sc97d95jF3EH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4430 - },{ - "name": "bts-cni-blodgy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SKzQ8HuedWSgjuV2ycnrT2eVrkFxRorjuUewnxkvEWpFBAYVG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cfsSdbGnJ5QdjdSEoWuHV1d5UHYDedyMTMC7cymgD6FtbqyVt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2914 - },{ - "name": "bts-cni-circuitrider", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oEja7n1UMXakpRyhmtPMN62qmzEK6RRcbwHJs9JLv6wMLqqHp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YrPNkxPcBmrtwsAVqZ4MhAhUHzfXiYJf6gm6YRxxMaaidEUTF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15644 - },{ - "name": "bts-cni-greenbenches", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gcL4S9dc8M4QsZp2RRsVECpNYb6shETFpnhyKjGCkNwhbpmRR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST59tEto139RArihyML7GJZPUpAmU49aBkBoSN3QCNfhtuAtR6KC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8667 - },{ - "name": "bts-cni-judyjane", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8e7bXoks1s79EnJV6Jcqgkv3n3RFHJeY4QArjaLFmUvrgkkVxo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5DuhRDzyATYK8JzwwECgRadkoeuwTKQyt2z7DZUFYdWBGiRaXv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5393 - },{ - "name": "bts-ni-23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wciwAhM44dwsjSCYjsvEtPNV4pYVnf5UPFsgPBwDKU2udy9E4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F3fXhFDx3piNGBZ3T4z5fhn1KJ4SxtA16K5BqFwyUChrZYuQt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12411 - },{ - "name": "bts-jwldk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FNfQKQebKas8hivas9LWymDcNYbTUb2aXC8ijfYdZpgJCwkBM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qPpCkmhYu98mZKQPqhcsnizapYgj1n97s5goW1Uvdw4kkNTSp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 296586 - },{ - "name": "bts-varianceminefield1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST766Pipr5kTjZdvT9zboUkmKeytyW6GhmcDEycdQBC1Pws8Vf3r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7djcqmeT3f5Bhz73ghQxuneSA9aGsKUdodAD5Mo2DMiKgB1vDx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2399 - },{ - "name": "bts-ha75vn39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77bh1x8V7Cb5wwwXeLqGqdGQcCwuDH6Fz7ggGaLb3TjGDtu6k7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4unJbJ2S2XrbC1P5ZQ2gDwGBakS461A2ENmVr7rRitoNCGZFgX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16429 - },{ - "name": "bts-cni-leiker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71WcHA3GvS7QhYBJwKqJsMBLg3JKCynZG72Fs13U7ggkRccRfk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8XiGFK1R6QEAvxG4nN9EXuNv6RTPn9oAaXyqrd4bR7vMiuWzoQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-tail-w-euler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bLGT9iSr8BsQC2Hh9oVeTrtFdAVR2pbkXkosPEw3PqPYaBMmp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hzRb2dLVswJyhdhPhVjYgAJZR3xt95YqMBqcAemW7A696y7qa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6189 - },{ - "name": "bts-cni-pat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P7zvVE9Z5x586wtdqjL2eocGeY1JzVqpjfvb7prbG5A7kRHqW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5yQVjtKs8E2MsM8u5Jie6DMhLyzppGpGJRgFut7qrEyYTsgtVZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 107 - },{ - "name": "bts-cni-mangold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ifaDuWcNHvqmjWepF65fL3xGbTqeikQ3uF2HBKjNDcWm6xv4r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5g3xNxWzNySdZX1CHk79hRtu4XTXnrt7urZ4JbrASphDqZsNHK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76 - },{ - "name": "bts-oscar9rivera", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JptMXqjrqkvqjpRe1FAT1dGiyCmjhzjer2sVVWecfMAAP3cc9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FkmsaZQVecSoPRPJkHUXR3cu2dzr9Ye2EamXTbvt1b96V1YaT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-julee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ffbA1PrSMhhteW3yZjuN3wVeM3uwXmVmmKJxX6QcogHkPvnGn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cefuvEVpwbYCVZxpGRVwDywvM6aMUMFNDWCfLQG2BkRUxCgFH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-cni-zilvinasb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ypT3NaJ6dUmiNoy9f6dqhKun4VozQyE6VrdU7eXpK8GKjYAMr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8129qvM2QREehhfCqANUCiAdpNML62u5e2F9p8FKdmQzZ8fbky", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 715 - },{ - "name": "bts-cni-nataliapuz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNhQ26ddxdsVH5F3XcmtgiaStYWsz85SFsCTdrNi7qenEts4a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST87NAFBWgZHMQWs9LrQuEYuYVhGWqrkAwierb9eUe7n9bd45B21", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 325 - },{ - "name": "bts-e029914907", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6V5HG6M6aee5TkWUaaWfY7kBYbqj65r8YfSd1sVKiVTg7NVbbY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F3N6vghfP2GJLYM8RWtAJByqmBiuTE2akNYbs6G9sKiB7XfFD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 341 - },{ - "name": "bts-cni-malou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UrYdLrDKhqfzr9gdE6XP5rWaPGpz3hU2fN2acpBKF3LNqjhkd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7zsBAkC1tR4QmbMs2RRXhY9zMgwDEztqkE31Bs4ihzdifFrNh4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-cni-jurgab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aDBpmnBoLbAmwdCxaqCNjNb85ptbDfgXqvMh8GZJw3dpyRcGy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5KKi4V5Azb8X4ea8vmqBgPxKHSGe3mxQtTXwFV2xmWMBBsTA4Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 716 - },{ - "name": "bts-cni-larschristian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S2u5RPftXC7KSnaUejUQicbrKWouYu3mys3kt41YGSdvwmoq6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tPQNDy1Kj4xbVxMZVTsi4HFsYfTiv87UjhFAAsu1iWcg6JPrh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-tian1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HsSY7CoTww2eXadxBSKtiorh97GYSZDXRBaN4QL6p3JEAENZM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dzBijPZNU2EshLrMfaPLLPSsBmzVXDqf81eXA9pfN8QremfBX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-john-one", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62oZAipoHSVUZnkEL4xzHb9QfRfQH1tjatA13Dy9iNYbweUUzq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gEWMNBaYtvAb5oNqaDTjGkfY4AcFf8PHbyzY1p9H3xQBjBQUS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79001 - },{ - "name": "bts-connaxis1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vFGd2VZbBcTFZGUycSany2cr8oSftg4bSZBp6ZbcgHoEL24Ng", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Epqhb3ZVNYkeAbvPEMUHXjqmzaFWYUoHNTxJEmkdkn2QPP2nD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-dadeaxra-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yrpZNy8S4wiHZf94HLCaVzZQ2WZ8Co2xFzLFNUvTnh5d39Aeq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LEA2x5zvFxRdtQCzjQxTAgqHGpdrcVnKaizD8T7dXydLi1ER3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-vivek-bharti", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B7KDXqBHZJiVPbfZzRydmeCBxQXSBkocf9GjeAhv6UoX3v4Ri", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m3an64eF5cHscNV2NnRRRCR6NH5L65fWbqy4Q2G1gtGfqyQLd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dadeaxra-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nWhmsgFGUaVKVjPMoaoQ9XLjiSm7k4PWWBUzzT3b9AdUDUKP1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81fAS84BhStNBXhmw3tvRKcYkMVQQd89KCqTmAhuu6dLpp7JKC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3140 - },{ - "name": "bts-bayo31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JC7jMxV7LXcYzCBWFmcwefrxy4nPPrKMsidQQTsTEq3g6XiwY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77GKSKLaqr5rRC2eoMACtt1JsGu4D4nHoW27QUwJLNS2B3zgUz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1230 - },{ - "name": "bts-xenor31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aHio3bQK63QN9GhPKvZjqRGQwoeypPNAvEGcJFQJoDWQLLtUd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Euvo5YGRJQhXxrLYVYjptVc3LN9WAGvwT945bYifgGjLN9f8T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128 - },{ - "name": "bts-cni-wef", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oY5h59kcB4JCyhr9QkEvGgyMkdvdD3a4PDra2D25GwfM17UBU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8XJET7HEij8KXkRsQbQwRyxEerX6nxFWSEJ2SbGnd41EAudVUf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1954 - },{ - "name": "bts-biukboard01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST678kpXCuyP2H4jx48PRqoPBghkSSdBmtBogtDK2gdH6t2tUGRG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68kPgHCrxSnDDiwm88H7SpeGnXJzoVASAgnVqNg334yQRvVPru", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 741 - },{ - "name": "bts-jihaa57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Bh7Z1D415ZmbNk2eVHoAgEDs7NrvQTcor2ojvXMfv3GaQib9k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DNruvnGAPwyHmYLbiEYZWPsBnC7ftXFiDjdPYvQ8mB2VrQuso", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 99 - },{ - "name": "bts-mauritso-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84ySD21AFs4gvqqPhX19qQbGYdwRtweX9MV2rLwxcgF6DkJ4sa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xYcHWsCwTU7L79TtwtTsXn2i66fDVGNGNFuhwvEPBSqXUxYE8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-the-notorious-dex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86meAgyziznwATnhLLUnJkYFmQY5jJgUBEB2Hw3PsxK6DifwTM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75RaWoQPeWiT7Qs2L5T2S4sfeqwCHUYUwJx9uNN9HYfu7Y1sek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-koko2530", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Kk6RbdoHbdGrdJaHeLyJxLKJSHWqD5eMfck9wYaub47gV1DBe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aPPckXidbo6zLDvWndxNzzqm41qFARYREwY74udYTmf1DDpEK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 310 - },{ - "name": "bts-sharpmark69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78YVAKKa3AisPPACBuRBTZcP5Re8aW89mB2jjoZMbVmkSUcuL8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-jasonmill258", - 1 - ] - ], - "key_auths": [[ - "TEST5jDUNToPMgZ6bPf2pgBbKWP2F5pTjwp2EKyC1egYQ65fEKXEZH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-cni-lakegirl58", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dqaka8EH6P9tosQMZpNYQjuG2NmofB6bDXvxNhVfewbj8ETbs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7zgVPuA2Jo119thJpDzKmhQD89noty3kBZZiJVRUnLCsYaigJy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5486 - },{ - "name": "bts-hamer-hasho", - "owner_authority": { - "weight_threshold": 80, - "account_auths": [[ - "bts-coindup-hasho", - 30 - ],[ - "bts-duplessisc1", - 50 - ] - ], - "key_auths": [[ - "TEST5XpVShWQiZ2a1xdzsRa49qg4GZsYisyGhbPAW4LFgRBDBeNjJG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79FDRiyttodcHAh7WwujMyQtYW9NSfwHBQo4LrRjo66gdRNx1x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1277 - },{ - "name": "bts-cni-laurann", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HV2ctqwqqGFEM9zqqgeqcr4jV7xxWCRPm6bdKFMbhpW6g1UWF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5VYcd8Fsj2D2NnY9fk5zSrXc2HrMdgosK7HCtufkicDQcAHbLx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-cni-evi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UPPXTe6wwUmWwHPzomUHqme4QZWKbo9oUVdEb15Qt4AzbHgWz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST875u3yRvWjK6nfERdj4wLzYwSBuNhnxn1UMcSc4rq3jg1w2ogh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 696 - },{ - "name": "bts-bts4ever", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87dJreF4wC95exxrM8dbzghq5oDQrFG5uBWAd3xkNMuMTv8oNM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JWqis4nE5R2LjYY1vEXAAU2n7BfZo2aNVWirEGZA1Qpj9GPLP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-teresalan23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iid9tgC527MDCWDhuEDwpXiCc24RCfWXmik3bZ6JeFtDfYyET", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5m3atKft4LiVzmt4DkSkhxuo5ttQsLGvn8H17YmPKjjfCSuJfk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2733 - },{ - "name": "bts-cni-sparklebabe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MvrcUQ8Wmmw6dYEGuLM1UKfvjEHcoBMTcqEaW8By2UtJwKh2V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qwV6rEP3Sed8JRP9XjuXbuy22Dh7QBjmMWvHyQAnPTaNyi9ZM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76 - },{ - "name": "bts-tri0358", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mK2f5q7T5JJSCTJhGwojithd7MnrJC4dEjT6Pa23mjpxfcB8F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WAs1Mx14APdzr26XasDqMJqGctgJ3YWB25BXYGNm99fHK381Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22448 - },{ - "name": "bts-yusei141", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RyX5VVWHTZwTqdQHohud8Cx7XUaE3RQuza74NDjtA9VdGyb3C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vBddrXjP2wTFEFpimoofSEmmAapMWgZTLtyh37XYXNguWz62d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8940 - },{ - "name": "bts-y555007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNUU5WsVyXNe1crx6jNf7Bz2vojdjcQ2gDEjtSL8WBQZwayCt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y9tVEEuZvURxCn6GDh9NtoX2RAbBLpBp4iWcaJKC6B94t1KXK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66751 - },{ - "name": "bts-cni-chippygold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KYnxSs3XwTcB6LdhCVJecnva1fEv7fVsgFDUMFUNYvFQ9jM5o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kgNgSdpftaL58QYLTRkM2dYFU9zKP5pvLQ8xq2Qugov5YbjUb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-cni-surferboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nBsRUDCHBPk8oowsjNjvPciVuX5Ut9oqf4s4ubxcJCf1mbZsS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7bx8z4GQGKygHwRYLWde4hELu3XJ2PXfzYzYwtA4rp7T2aFeLg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67 - },{ - "name": "bts-cni-bunyanut", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j7CmksRcNskGTUSnVe9GQ2KKsBxzNr7sf5ycn7EDYdFpW8pKX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5RNBTkmDRnPzhNLSiJFbTqHbaE4R4Kk4BZXJMBtrAjGSfpHRnJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-mchong888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aqyTTk8v5CvnWCQUai3dE1dJCpbesx9YegkgKE24wKQyxvtdy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FHJRjF6cxA5BMatQ3yXmxPVbBEyNTeCCoH8PgYSJu1Y1gYD1q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-beervangeer1987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5poeRHu4KEjP9yHrGh1JinRJCkTQrVfiMWwfbctyw6zGnEXcqF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ec6X6Uc186fDpF57S3WcZmBdGQby79cyiom856KUNck6WKgxF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-laosiji1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cGtEnAUqRDWiquAcHZSa4M9Mh7xyrga4tB5Fsneque5YdMQgk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66C9S4ZDAuqh7mUJRq2ekoqWWhEuseSvdiDTkMAsQP4s5PyeQi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 481 - },{ - "name": "bts-gs200040", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dztKaiuons7tk6zzphXCNMvBQcDrHfbhgqciv1aHrmptULSSd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72JxFSJYaPNQsfbpaAXK2kytKt5aGdeaS872BrYFxocdE7m26C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111 - },{ - "name": "bts-a171256089", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52Lx7ebZyNQTbkVrcNvR9QrN4rog2RxtmS7kFRbvbzK7LswrgU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NbsqsAXXU7kJcjXDKRG88BFm4d3NuPEBboLYy1ANhj7fgVB9D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 118 - },{ - "name": "bts-lemundus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51j1xYpgNgA8NG7d8t7kZyPXrWgXySaSdzqFr8Cmf1wxcYG4dd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SZVZqEgrgMtijw7GBnsFNWUPR6xSYrLqHGVSA51FTfT2Jw7pC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76359 - },{ - "name": "bts-cni-raisingcain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82brv7tYvD2V8QJMJs3HY8sYZBBgDnLhB2ZK4B7ebxgMXb1DDg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76gnoXKLXvQeAY377isVs3cGM2cLkmJR16kEi8qokueLaZLR3G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2059 - },{ - "name": "bts-cni-ewok", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST856YhMw3PWmbeTPNZKFaQeC117c3iQJ9k1ayHEEtaJAY5LKtps", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6WCcS4BuAFpWaF56AotTopJVjRfYAF9ci4miQKRS46YHUEfGpD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12212 - },{ - "name": "bts-tyiscryptoking5344", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58rzL1PmcbNC3cbmrMT3yqrXyVW2h1fzg9Tyd3V3iS6FgpctzT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NZEuY9spLVsY8qKvqyyRpkNSe34gDdhRjeAezDAGLnNECANty", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11759 - },{ - "name": "bts-bts888888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Wpb96MB5DunnHWMrbREHNyxhMdiujiaxdBsfNPbbuPkRM7KBU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PRzRV4y5RPMXSEV5kss915wsnu2NBPpUk7JV3Uja73bWcYfko", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-lenka21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jvz9TcFs429CjhBKNCbPwGMBcWN7RoHthEkbwmAFZEfujrJNr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PvseZQhGcqNXx84iKLfA9Bg4B2BUwZrT9RyqhZemQRfuXTd4d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-daf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yuqPy159zXdd5ZHR2msKCrvTjev3prhUhPpywrVid2pojCnBo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-daf", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8eRN1GDzC3GdHUYQWn9fuqvuqm5TgBfsyM9qauVdkW8t8FLqRn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2575 - },{ - "name": "bts-receiver1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5V9U7AMYLnbTASemgKbFEXYuNQ3z9KQqwBcq82VZE5yUqqXcBM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ov9RHbGqSbFqFzSrXah95JwhCWRAsD6a8xP68CtVkPp5NNjZw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-smart-dac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77Acoa8WpwtSzMHa7c7Xh1ep2HLQqP3jXB9xtnPReB8KmwrXpD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54z1BcJoKeDqvRzUiw5tfNd1yD3JtrTRuhyUpHyd4YzLp9X5Da", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8687 - },{ - "name": "bts-cni-doctorron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JsATTea11FLHC6nsV4yZT2jxnaoBs5ZvtVLKMukxpuN83qc5h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jpV8Q84gAVfr13uLSnVBpV6M7dEpZBbWQnE7ZviCmDmViBPWB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-kmiche1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C4CRBpXnYSfMH1wT8pNQQA9JUbBY8QCtVxqFqdTfs3BaqijW8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6fkGsouz6jKzacXu6uWDjuTu1Gdm2tGYpUmza1ts1ZH1LyVRk4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-tomat0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AEU54WNEmtLMtZLS2AE4esdYn8sNxbDK7yXwUPAPULHQPanU9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bMXCk38Wo1KcdCRaEAzqBPushxD9L1oVpYR5LGopknARDFkmR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2801 - },{ - "name": "bts-tryp-fim-c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y2qRU4SeikHZ2oMxigvUXoNXjE4bkVSLkMp3SR1CMNLDWTER1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XEPHDw1AA8bkX8gqJSbdZq1e2pvECfxX7SqT7FKzV8nwN2yvx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90369 - },{ - "name": "bts-cni-shross003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ejwtGAdRbkaJTJvLCxC1JNpNc5HvsJWEy8zeHA3PA2C1YEi7A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6JTrU7gCV8eUtFDcsKToMJgSDTimeVepBCg57nPKidjcWVViHm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 146 - },{ - "name": "bts-cni-teki2k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dxefSTN5ja2BrR5SsbFP4kfVup3i7iuAV89Qpi1g52vvBRCLJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7DvaB9Ltv69xAgixwbb8CM6gBHdLw6TuvVLBgcG4uXZ77iuo4V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-cni-hylander", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5477d1vDtygeNrLTTcB4Ms4YkMxTATTE8h2BazjEVF4Eubj5wU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7wP6vEpFPmVPtueYmCA6NzBBgMfwcjarezV5NCSKBi7oYiczV4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-ross-ashby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JvVcHadpufDWn4mBva3SYEwSwrrrE38GjJKtQ3CtWA3w3VAns", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61pwYZdwSk9wqYAnJ4oFQFLraUV5ynQL5e6RPUhrdUPXeX8sMW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124065 - },{ - "name": "bts-jmsnz2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yuekWFhi4g9a2FEKx1wjKjH5QmtrF5SuCn6PgqJYf2gx1Nw2e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68nCTJ4Fji9BGA1MsTmJ1PTXZACAW1dQGP1Dztwq6U53uZXJGb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-ryepdx-bts2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Q8rkSy8o4bLnFxQaPYDvtPzPBc5uzNQtuFFYcgpDTxGsALiSE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GW94gHyP29wdjiQL8d1dV9VfsVaSY72YWCpUqUk8ijTsHczm6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-score", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wxE5a5rDr8XPKnN88gjsbauNwnMSsxubzicFDbwL8vZA2QeyZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5adStuHfmdgz4pdcPQ2fKBydSxKf6Y8EaH764JmHNCGx4xPyM6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6303 - },{ - "name": "bts-tom-hashiba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c9m32JCWxA7mthqLGaNpK9numkU9A6Y4eJzyDzUgYCoqzUGBh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PheP4bMwB8rT6tMRSEW377QLgkhR1eAyHCifnu9UnJxjE16LZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7280243 - },{ - "name": "bts-laosiji6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83cg1wy2anVAnGnAi46kUrRLeRe7p1jJpUxcsGZzrzZ1fMobSv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89ey52ot8r34KihFAR1Fvt8xEYdQEwPpXFCCCuC8nWSQqYdjpL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-jfrank1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WgEtx9my1hoRnaLnmwUkSqtMhveASRpQhaq1N66iDvC9ePpjf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uYhSzvVk9eLXiG1oPVLdLSVmkkNaayGq8ZgMKeqGCahkxHcE4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-cjharty-91", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ogfuMJscfai81hm2J5m7a9Aeg5ZmQegVJiYWRMEKtv5CrFGdM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST665GqSrHnzyjxpwWwWx874a96vcg2Ry7WuyqX7M92S3DgzVQGD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-tradingisfun88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iE3hjATPZpkkU1XGCY5zeAkBYE9Ytr7RjsEitQ59THcRupeoM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NXxXonMv292FL4ihyUWpi8PfvNVw7D66dUZV2R9YXrkYhsQuc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 70347 - },{ - "name": "bts-wealth2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rQvkw76UWZpmZxFRci6EBRrpMdNhMW781GLdj1DDkNFtGNRaW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SqvaKyhwqXiGDwQCFmDfBXYZpPYq4boTmfdevxsV1Z1jRq7q6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-mywallet2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66XLMYQssZ6nPWKj4e6ekASZPWyZHUoSW3JwGiAinhG9iAJi5p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71UGEgH8jyU3awzotGmDNGabfMhJEvGWw5CEdvyJKeHMcrBwRq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-mrtn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W9sCyCsLNg9QS8WdXrRgtU4Q7MRMMxSyxBLz6MhQTbHhbZe8V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BsqL1UNXVsanUgBsSCLr3zUvizTEYWL5pvPTEC9CxLnEesXZa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3368813 - },{ - "name": "bts-garthkiser1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EtGYYHshw6u1YR94Y3LA2B4X5Pokij58EUf7soa8CVZH3ncbg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5syRm6eG8pnXsjEczMnpe78Y6WWLXmj7XyPDq7ixZFscn7BpPb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 653328 - },{ - "name": "bts-creemej-x-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uv5ftdLyFtWwhfDd4QsbNQ43PiwNVTwW6F6RdaSqXUmhmUT3E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tWmbTRBcmFDwjFDyxkLgZQgCzsrHcFdHoMZJfaF1qzJ7SsxHM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11288 - },{ - "name": "bts-hqwu83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v5QnAbZpKxG2mkNdQY9cnkk6iypXxAXiEwHD1jD2pKcf7Hycj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mBBMthnPdHvgLwD69yggTda5tt8cyxEnNayLFrLFxGMoD5PGH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3756290 - },{ - "name": "bts-npps", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sWRqt2eFxtDtyP7ScAxtn6kLRMZChycEi4n1WewkdZbcLVqff", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ha3Fk8nT8FMSGfioL4yGYcu4QnCtx6D6psU3Jb8Yg1HuR8EMo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44021 - },{ - "name": "bts-cni-handup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r4MXVQDVEGHvbw1nAPEMKw31iiiHTPBTLfJ55Sgscxq8mnDQk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST87MUi3zFsZwhUuehyLCeXmZzsaT1w7Lsa5uLm1z4JNs2Vcdzfm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86 - },{ - "name": "bts-bts-1234567", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uhS5YQEPpTTWEPZ9a6cFRhgUnD3TxMtjY3jvjXEHGfsbkDxoX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fUPxiDGdyVVBYbRReKaDAqvRgP3LBcib6xXuF3XtwwiH9zttc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65170 - },{ - "name": "bts-greg252", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77BDUQEjpUt3RTp9jn74hzmZWMNfYYEo8yoa1Q8J5kcZAGNSJo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83zcvK4XBQkoFGLtutSibT6pAWso9W12a4GxGohxQ3bMTesyey", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-gcartwr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HVpcFRMoJARZtmq9pUfaGhySCqxnWZLX2ThTjXpVjTpJL5jg4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AtRDWcxV99yYtQ7fFhMemhsSjK6JbEL1UtoEz4SuLZCveqBMH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-sigmadrone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SHRr2n9LA3RBm8HqriDRmXT1SmiPJ7MTJTzrLiVpHRhMCEtC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pxkHS18m7HExi3AMC2nQqd6uVWCMLyACvriky5RJ3YAHHPBc4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 244551 - },{ - "name": "bts-yan-1102", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nfEx6m6smczsBM32Zubi2qy9dvBts6zGQK8JCmNbycLVze7AJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83bEyc4kf8zrGyDNihDMcmwkyQd2j1GdntwbofNBC7TohSbuXQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-bascan1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ah2ASEqJHCjZ4SWTiFqkas8Dw6RNT8fMm5TSMGnc1vgWmJdYq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pmY2akkGq7ha7oK444Ecpp4H4u5w2hk4LNFUJxZ2y2MQN5xpP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2411 - },{ - "name": "bts-trfk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KkdQQNqt4AWqrckcHjSPy3J6hmkicW4S86KFJ2cfhdy9cQvoN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hs3EbVBmduR6uaK8Jp41gwkh6yvu21zDA1PHCjMkxoSRnqcTp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 526 - },{ - "name": "bts-cni-jamesyucker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MfdMmcnLcENd9eUFkQLNNHTg8mgMKE1r6w5LF1C1cZ1XwxNst", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZnhpY8LGHMp2xTRqPWV3X1ejSnx7c1AmcmXkdD3dd89XSCAvn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-cookie88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h5MMiMGxatTeLPoX3Z8ik4EGFor9mp15Ari2FNEAnBiVCJuDi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eq6o5fB3DdLWYeBxLaEqimEPEYVNKpf96HjM8dgQeo5u8DzoR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19025 - },{ - "name": "bts-cni-pacer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vemYhW2bcmZBCCydULJQThjRfyDezqsVerUYEkYRVLDYoSAP6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6fRmoL8k68LircXVtxgCFfWQhwD2bm4dLRiRGMS7G2DPtfhZMM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60 - },{ - "name": "bts-kev75021", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55sYZFt51yowM611UpCdm4Dn3wVn82QVx4DYkNo5akL4C99ZxN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zWyPCL2KWZ4yahjuVuvQAxzo3UotLYA1KzDm5ZF25i7fuBhz6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176 - },{ - "name": "bts-freehawk2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F2wyy5XLQkRzECtGR8DdBKrDfEG78sAkD9ZsLdSUNSaKKJS4d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QAwaPXgGRLwBApCtqvvSp8EYSsL1UfahyuLvXu1mMuD8frisv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55534 - },{ - "name": "bts-revo-issuer", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-fabian", - 1 - ],[ - "bts-revo-lution", - 1 - ],[ - "bts-revo-recovery", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-fabian", - 1 - ],[ - "bts-revo-lution", - 1 - ],[ - "bts-revo-recovery", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 28605 - },{ - "name": "bts-cni-dodge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EDzMwLuG4QQBxozis91FUxG9sA9jKYs1c2Q8GEd38ed8vzydj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ijHXnDBiGRphN6znpfZbontrayshJEWR2raEegsgFbkKQo41g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 688 - },{ - "name": "bts-jxb2557jxb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cuWSe2ipUzGkw5vJi5SKFtX1Sbyw8QLtwfQ1N5tLnR6NT7Ecv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T4wAwk1rL8JHBP7WyjVcP2kEkGqyhpRYgxaEpJ5QymePb1eZz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bts-mytrade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KgPaYeo32xhENorL3YTc36K2SgpLhNzUDAwAa4JBAqRtQCjh1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a5STFgM1YTFPGUo6SMD2fCCXmCgdn6yAfh8d3zDU5m3Rq1EnT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 198028 - },{ - "name": "bts-kroulik1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57ZkpKJZZz6rvb7E65ew5DxCLZFwHTeq3FeJa7NcC6SKoGoXC2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i1S6yeh8T8zSEWKMkQNs9QHsVtifwi7CgfPUK4w1XnEVo2q1u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 211 - },{ - "name": "bts-btsats-8803", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MQ8ivaVHzLsLeYkFhPEyBbArMtdJDCKn8id8oaYPLrQdcXMZ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QPp6YTppCKBXg6kMcapcJcK9YYiHJmxaMsGHmUP1i2UQ2HjJJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-sandaniel39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vVJpTvKppbi6eTXveuJVe9A77DDH98NuVaLy2y1qkNYreiZYz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DUqd3wmaQtN6QWQsbh8mxLP6RCf9qWc28oCtpFJVwdGaJENCn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37613 - },{ - "name": "bts-holly-1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Kiu2WrLKUgoMqFaJMRsEHhXYSy5MkG9u2yYJMxA381XZQ4pvQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WT6uF48ZttXsBEN736HNnpA7dmYS2r6Bv7xwtmM5U5cbvgmmK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 105 - },{ - "name": "bts-a861004", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5twHsTDWXx6cfhpY2Weq1ATZwPzwCwrts9FX6Eaa1wBzYS5Lfy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZzarHABRR1AJ5QbEaB3VaJWVyrZVZSEghrKGcWnw7jEGueVGW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-cni-nubelle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5n8WVXnfEUDrCBmi8LXjbmLCmrEJ16mh1Z8zd8iXL8h2DYZ7uk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6E4EPcDLDFYnyWjTuty8KC5BqVtYSNqmRokykr1NXsT78SKv5D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177 - },{ - "name": "bts-bitcoin-nigeria", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-methodise", - 1 - ] - ], - "key_auths": [[ - "TEST5b5Z8Qj3uUuZhVGJknCGgr7Cir4CRKnEPTifFaUfRQqwAGs3eH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-methodise", - 1 - ] - ], - "key_auths": [[ - "TEST5b5Z8Qj3uUuZhVGJknCGgr7Cir4CRKnEPTifFaUfRQqwAGs3eH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-cni-jananja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jL1okLNpVhGkpXkiUXDQ1ZTcwkGTbrjiBMFZERErkR1RuAaLB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5taySVHG7hn83kE2dUqfHPXM5p4FKYP5qH7SrxQG7gQnVMqmqp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1106 - },{ - "name": "bts-cni-whitecartiers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jJ5LgWoQAxZbnKAsXv5goXGxwWzxhqqvDsycSm5mdGcd4Fesc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5BfrdHVcgps1oSrjFEnzdtdX1ewQkdMVuH6REuceskk9YdXMfg", - 1 - ],[ - "TEST8jJ5LgWoQAxZbnKAsXv5goXGxwWzxhqqvDsycSm5mdGcd4Fesc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-cni-networn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T65qe9G7SMYhZ2tedvmMfwBoggNPyU73zr7PjkKYRVmHnnW18", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5EXBUUzkVwEAn97FM6PCZVAdwV4ndSGijLnaAj1zUtm3ANG29v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 910 - },{ - "name": "bts-cni-globalincomepsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST843t5FnkErnNoo1FLebGSeNeziUcYTFxLgrUp5GeCCWYDQEcoG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5phbLi7EJaZcYu9X7HyknP6yzrBs4hACgjLuPdgT7h3k5gxXdY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 174 - },{ - "name": "bts-i4c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jGNJjyXZgGHBLHxn4oLErhpD3AZKr3jfp744vw55CkksrcXT3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76QzncgoktHhpBniwqBzbMVbt9saiYgFzeaWsEjkhxw4zhNXg6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-cni-bshiles57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LnT5TnhyDGDZfQNeuPPH3dKBsn2fmpKHZAVBvWmpEGkitxvjp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5beKXPzb6YppLAi8fdnPS6VtjM5y8qf5t1XGjhw4RbcByu9C9i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2237 - },{ - "name": "bts-cni-mystic2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hn5JR5E4p3ufuogw9srwr5KwVzNjTd3VeCmrxYeobN9CXryGn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6PdrUpSxRiBkWe7tkDhzsnWY332JSaXW2yHBn9tQ51gWsHfzaq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-cni-billie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wpgcqRL6rynWyAyco1vpuG2gtMqTJzKiV5fveeR5Q3VHUKCLd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FELkBx2Z4jBQLSruhez5jmFephZYS8NSmJgbNZYsGk8u2kRVF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1199 - },{ - "name": "bts-cni-goldenoaks1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AYc7S9MXJZSrcvidcdsQiCEVVdPvC5uMS5woXngPD9QnzwPFj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST74rDc26kWjpLhKimakL5NBf6NbSqK352kocZFeFThAbmPkunV6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3389 - },{ - "name": "bts-cni-vivianwilson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77Z73ewjgRozxyt6TeZjiJGvFFGVVDqNN5Ca8YgqMXHk4Q4uVF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST59PmQvBzG8NoNRAVHq1q4jfDyUyeok4H9NAFarHUw5U4ECgRWw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-tara-hutto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KbreJ91bn1q7TdnJjr7aEjBitpUUnJT1FfKV6mQiri5EZN6qP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7caWzTTqtsxj2LjNwm4U6tW6SfWRieuX9QEvFFAZKUn5h3L6Fg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-bts2-pts-dns-1500w", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6W42SzjbFkoKKx8dQG72wziDGE3nbkRv3m38KPD6AKAzvjE9pk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wD7h2PaRFNt3GKKgSjiuS5Y6Kgw49GUVmYSUxeu6orJScXhFA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2118394 - },{ - "name": "bts-prairie-dog", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xnCc82Uxv5LGrcfvSVWKvL9DJrZaizK5Cn8dHXTTYmSNreB9a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CTC4hKERQ7KHNDZBppZScnjiMGBQ7XntMd1ZJuLFnpWZPcwP8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176356 - },{ - "name": "bts-jaxxx555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Byon3TfNdBt1wm6789FCpzsaNoHBUc35Bqm8DnXVkM4oBb27L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yWJnGDPHeN9xpyxLRcAaBRuiuV1TBtUurRPDQaYFPFHDymLy7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4847 - },{ - "name": "bts-cni-gilmoreg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ah2dFPh2K2AFoVAayVXGaTHGQZVdHcxuDKicoZBhNAnnZZ7HQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST86ofbcWnuDEykBXSMqLPYA1Rkz73jCpw2r8p8de7qo6Tx4S9GG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6559 - },{ - "name": "bts-cni-bonbon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8axSiKcsM7p3Y5x1FWffQB3JchfGHxYU1xpvJW4AkFWwGgK7kx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AcKnq9rTmnsrdo17BiQd5K7M2JjWwULvx9X4z1GqiBSTY2yZT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7556 - },{ - "name": "bts-gypsy3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QfgCAsUaK7YToYa6qhZThYCaTQrS3b5dpDo14wsmT6ocenda1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZUCctHM7FqAtheDUUCoHjUqoJUjWiLbz378dvRTCRPqtGFtpJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1479 - },{ - "name": "bts-crikee-9twbg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FhDrBzJ44EAdC2iq1y5cYqNz5Mn5y2okrMQYLjjytd7zhQuuY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iZ4XqH7yrRSUKKZFTYRB1FbvTV6e9dJ9Gp4o7meHZwG7SVfyp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-toshi-bit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ztsjJ3UPVpfofE5XhBywStgMPz2RM91YR1Zf828yiaDMqpBRs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hDnYdXnqt4pjedPdVeC6i4nBtCvEV3qvA7EmK8DtpZBRx4iXf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-dakota1022", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6psVG1uUn9vESfaBPb766Jamq7Dq2DY5CVKsB3oVMq6azxGbhH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-trade-ceeds", - 4 - ] - ], - "key_auths": [[ - "TEST79GL45QSMH7ZHiTzsVukdXWn9BDHieXaGPGfX37tXA6nvSZCzk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111 - },{ - "name": "bts-cni-beaub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74qVCtyeQwUHn1G2AzNJfE2PYneDzUPyZkAaHQtbbAkxvorVc9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8aTxb38SMedCpWDypdtsxwXMPEc9KjWyk4h5ieaWsJQBq1AaUt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 954 - },{ - "name": "bts-john-barrett", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RyHBWs3Uct29qxnXTQC27b19wDtciQn3XLmwaXR982trBXrTv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E8jjBQiNAeA7VJYqjunkEcp9hdGDBheWEggsmfoYbRYZKgvVc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 348 - },{ - "name": "bts-cni-piscesdeb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vrW2dCk8HgCLUqaNMYNxoaP3J9WxbJ1UuxvyGHT7VoSABVT3L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7vN8LgoUnHNr9n4kRfvihDXPyhGFAbckisp3CRxw1yun9HoSk6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9867 - },{ - "name": "bts-sunny88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y1H4eRvwKqoh5fXucU6qrqsubZCBFhNANM24CvEpZMySs1aYP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HUzDiJFnW5Nk2KmRjXYEkqQQJcVMVu8tiaviuLyVafAsGnCPh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1884 - },{ - "name": "bts-ltczzh01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rbjRXGVdPPQ3xxKWHLScMCWfVJnYD73UoqkbA2sjwJXxjcuqg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z6Qqjovh1XpC2yNhQJnNc33abNCvLxHiZ7Y42eoH6z551ELNv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 218 - },{ - "name": "bts-dup-hanlo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HPxufByBQ4m9CskhDGmiVWVAvqc81LZ5rZJvg7b8tvixz5Rh4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wNBySgGyVK6TtNHtNv674cEUya3qyBZ5hoXBCMsfaukE7yBcm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1339 - },{ - "name": "bts-cni-dave68", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52KgdwTVaiMM2K8f8iP1m6fGo3JHYqYVdpMqWch441UzmA2Jty", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KapuLVHAPbgWkoFbmmF6oyLao7zs7YVUVbiuMXBkJrkEVFAFb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 793 - },{ - "name": "bts-btswalletcamille16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vZp4LqGiaxoHQKKHLgcyCpV2mo4WGajpeum3hHXbwf7hdNDA6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BrDMVYs8Qr8S76FKGeKFjxiPL2EosWuv9tFtTuuQeBnj4MRFv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56651 - },{ - "name": "bts-axl-saddek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m3qzuajHgFg2xX18ePri8ebgtSiVNva64WQVgWu8N4Q5Zhk9s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59n4zJVfzfQTqAriMXhQTx5YEBj8wFkN9GyASKtKNfpeK9XtFN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1864 - },{ - "name": "bts-polunin2009", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GybS4E67t4YHhNweFDcdVgYZR1hfTJCXwC2ySmrSvxHJRz3Sj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UnEw7tpzavHiT3nhxXWPcaWLQqEbrTiGV1rzwbFinwPGxau8z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42 - },{ - "name": "bts-cni-freeideas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ugsphXzzBMNMUEvN8mA2syrrfFzqXScqKBbrYA3tjHSptmmbe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST764rWxpVNM1557Gp11hEHUuC7fpekb5uKgs7gCxvyxKwtqWfdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6014 - },{ - "name": "bts-tomo5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PNUs3cv3Ppg7Jgp25bJ3n68ojDEpPR26yYYuwWpgBM1ricqEn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fJ8oyEB61S3d2qjmrZASUL13Wuz5dsardgTw7PdTC6JoXWsTP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1262 - },{ - "name": "bts-cryptobuddy2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J2VHQ3mxN9fXXPrzdLbWhSn5PhKCnBkPGfRvK1kQTXCfaSVLP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xfu71GcZT2YoP37pt5q7He6V9sz5L8iisUYa2BTDgSwB6Hq3f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7148 - },{ - "name": "bts-polunin2008", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gaZZrpUi7gTkqrTQrNdFUXRbqBwNxGZi5VrW68WxWZVZYyagx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7K7eRwPFCAmTp9RCpsR1qzc4BRoJ2JzTh7gA6VJTBC5gQmdAA7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182 - },{ - "name": "bts-cni-vida10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YccyVv5i4AP5kkCCE8hYBT3YPmk7VAyfhxpLk1K8cjYoo4JVw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tZoT7u7Q2JQazXwV3oQKWr74ZD7cCMTo6o7DF3moZArmoxayR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 644 - },{ - "name": "bts-barrett2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PbPTNqvuUdUQ4xtiq3qq6xHMpGcSWjswCMhVuBCPGKuJd9gZL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54sAAw3XuEjpEtfrJLCUPS9SmHsNqYPjRD7ayVgCnQfC2Sv3HS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1841097 - },{ - "name": "bts-cni-wdavid99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77gSj8Z86NR3dC7BkkKNzWS4vWa1d7RoBihs3p4hU5SrW7iLzm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YE1rqDgXGbyThNz1wz91c7TJMebACpjCbZUraH2GdjPhAs8pu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104 - },{ - "name": "bts-cni-fba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YakU39h2hkiFtc7Gjjw4tTPbTxQw8sFCFRbbbAVmWCRrQmwBm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZRCQ3pv541HzvaAj4BZfZRfDt3nSfWABQUbhJ7VzHjZABBGZ2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-bts-ats8088", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WNsYuaURzL67aTKbCSW91xTc3euAXn2SVPdoBFL3qrHpZLbVK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sHNQPTK48nXmsMRjH3JYxoaqPqjUCGukqXddFczitkgsEvByo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7380129 - },{ - "name": "bts-scrill-murray", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rg1fv6234ojYUxmsFXa522ne6yFyoToCey48FhxMj3tyc8L2Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C3BNesQGHi4sjdowUzEHbtBNeYNNKi1fE6rGj6dc5QWpEmoSd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 285 - },{ - "name": "bts-king-flurkel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8J4Jdzos6afrdkUDfbum4qsXjtAgPfXXpMagBbZeuHHYnScb9E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YUsAvP4iBRogGJVEKSKnQmDHc4LswqPbrrxfYxXywB8ffYbAc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22481 - },{ - "name": "bts-cni-janetke", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56ThGHyRCctztS7AVKhA9DX6AYmT6omgmVpFL74iCqLNqbdGnF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6YvmBtxswM5rrJtT64sz6pNEgZvYEQob1EqjhpREiTvc6zBqWS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3964 - },{ - "name": "bts-cni-animalnerd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TAGGoTo93UFKkesLx2fe4XsG7tGr3Dv82BY2fjd2DVKGtWd4D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CLx1jSF84MYdDLg9WMN27L3D2BqRkujZR83Z1azKmM7nNQFH8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-blakel12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uUB8EzH6N7goqrRMtSkfru12hM9mokF4LtwzoARzofTv4jSNq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uF2P7Gb31xgidpxjhvfHVWim5koyJ1JCZjxUmpLY2JveVht2M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7880 - },{ - "name": "bts-elchokliq5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wg3i2JPgzUPd1PpFbeRcthc2rLDynYdD5swakX64sETXduDia", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QRuiAQ1f9uReWEoLFgg82ewiuah42o8mnyeZVnGmsFa4Z6Aok", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wdns", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JcinoU7fTN2LHKFmeNnx8fTrCcDCbAjAA9WWxhLEnC7XhrSBH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NFTqDvpT5irAJk86NcgdViZvPa327iQbChWmNfS5fXawuRMzp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-thx4urmoney", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54DyheZaJ56kRDD9Z5C5NKqrEtYbz8geQfdMgf4XdXFYsF9z9M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kv2h6yoY6Vp96eCJMJq6q7JnMhFww5BA4ZzVc91YQRMWXUp5R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bigs21024", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dTVDE79HjkDSAauHWtp8QWQmhiVhrhfqK19fS3QpWSfZswwXz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tZS2WJKTwfdterbXpVnaU38UJaMHYygSJys66LzvbT7F5iYAR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-tobi4255", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6niPhJHf2jpYcuVxvfhWH82qsqgL6mjWdnEGoa9oHV9vLGgEUu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RRfTzqBfxbL9Az6boMYR1cdymkwHiQiw1DNFdi3PsxBG83fUo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-jake1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KndS9zsa9XLHMqCAnZmgZy8KWYdCBnXoBdky5oNT6Z1v7yyBN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Q19Z52qPY7Mpz1t6So8MrgqfSPdj9oEcYbND1zmVs5cASjj5q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-chorome37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XMUdq7zdUGkXsr6bH17apueVhwUKDiyMevVpBKHuEez5BP9Ko", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xHkBptQkZzfdAQVBAqL4DwwzLUcRZMJYUyMQDqjXzjYwG5rJS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-takeover1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h9okaNsjuNSxRv2bNCUznSHC7uxfnakhKFQPYzYf3JqTLu6VP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5X29C7kbYdbUWfmz4hvaaxr4Q51TH7uC25aDTEVGgKHZEjgKLv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34580 - },{ - "name": "bts-cni-phyllisbemery", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fT8ev5XVBLxLiobayJRzza9U3ssYYjartENmAG15uucbcLFXT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7VUyoTA87JwgmA1YJWYj6Zc1ApiMvi8VSR6jDJRL6jRkzHcwGV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543 - },{ - "name": "bts-cni-jocee777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XtxA8WNzCYd2ELd4B2KfE2jAKVg6EQ4eq1Ue2YY1Ef6tNdxRY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7gMc7UFwHWPJY5igzmFriemuBnicqU8gwLg9x6akWVEkgtZeeL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543 - },{ - "name": "bts-cni-jeffemery", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P7j6oneZzMGviZSitcgsfWmdCyDaH25m6c5nz14zfcu22kpdL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST79U9eAjhzCZiPiZQSLWCnE4z3zQzc6nRiZg5d7RygsdquFqSTd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543 - },{ - "name": "bts-cni-sheldontucker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y2MXwHFESK4GyfPuLpY4xB3bNxQKiJrAcbTx6yLvnXxh7mD15", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YZPmHB5Q3gU9AdiQb4xqgcugi7LZtfyuf4grkPg8JpmmRexdu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543 - },{ - "name": "bts-jambo110", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tz6JsmkVyd6NzAYEn1KBvo4uDF3rME39QvCKV6j64xc9AvUZt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KtYZxAvrvrCihN4N6YTGq6J4aJB2cZTSETGQiDKGzjeRHAHYD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-cni-dsd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WW8qg4xukTDYs8U9HwmVwdvk6QiYepWzHSdd1KztGh5MVMk2Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8QvQsmTe6eDU3ivjUDF3CpJJw24NuxezC8DVs5H9aYW7Q1fVKG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4452 - },{ - "name": "bts-dr0th", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78PkmTLf7PH5hDUtFdGZZAdE4UqSJhyo9YXxjEqp1DuVBFayNL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52br7wth1hYsETRwH2Nye3BNQJcpg3Czj4hePZsSBjAEa3AdrZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-tetra-hedron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xWnSyEWRKkFKr3CuLVuXBcK1TE4eHf2SENTkT9nv3aQ78H6Df", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85qVN5TNTyxM5uaVdZx3joKU35PQKvKL9ZqPnSQDR8d258bxs4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91399 - },{ - "name": "bts-cni-positivelylife7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eDsAVtJ4WmozHHUx73WyVbRUa1FyqGu434ZtxcWr4CWpx81z6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST83skL4DGGng87qP95SUNXUN4VaTze5VaDyqW2Y6ECExx7yo7Dx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-cni-bzylzy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ptx6iFZP9uyntVyZFYPWbwKLnbdxmzeFtwZcseaWUEGZtjws2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5JsN2JDaWUF4GMksqjx3qMc3e6Sgo9DBRqTHmUPaF898qg3s2v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-trillville-network", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Co8Hda8TVL5KaaWBcg5LTuJojjDgyhixjUTFaYsoT58F2ZhZR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZHaDPQ62KAwJ8eZZvbyWHytzZzTUFX5wuhv9RxRpnSEARRiqg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 651838 - },{ - "name": "bts-kjell1971", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G1C5YZkQzr1uizwwGVo4d4YTNWrVW4EpAKzDJzyJRfKVf67Z3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nzmfzUd7bCQxFG3ffymufitv5jVhhRHsmi3cVnEvKvvXPwWzq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-nata-rep", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vArPcnT8Z99eAq3c8S1worSoYsrHBBTTZ8YyNT3X9kU3KYd6X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8esg2yhGvhZgfZTXWHN69BjJuxpTyGzjv9ToXVmc9EBrkZQeS6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 243056 - },{ - "name": "bts-mybitsharesaccount2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7urkbeo7Hd3A4xDuCtCMe8dvD8AYevqo7VcQtwetRyo7VsR1EB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76JBy77R6pSeDwgMohsnww1HJjXnGyWzBhycaDCXLETJoS3ptC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 492 - },{ - "name": "bts-cryptomic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A6Uuoe9cQtfzA4KR4yXe1KRcApMN7SdMRhQsvyrkTnBEeossc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tYiZueH8PbZMDXGkcEvD4o4n2abVFBx2cHH2pa6p5ScAKRdh7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 175830 - },{ - "name": "bts-cni-roses467", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wzGP48ih5G7vT8sAwccUrULtuwZX329UDRu8KgxMoK4niPopt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8iuD1vs4tJDE8tFQqBTdJ8K8uzJvM7yhehyiUUatyiVdorBtAd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-blhz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82yoq6TU8hryrBtEuhf7TjziLYD5Uz25P7bYYe3uWDdjELwwpE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t6qcjaJdfvys5basSo36mkBmnDhYGnbQUwZeukt3xTiZakoCJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24613 - },{ - "name": "bts-cni-goldprofits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87FhUXkbpM5JchSbcq6BcfLCFVPA3XCRxquSL9MxPS1Yi1FRgg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5oE4KmKmNVvnSmZKW2Wnu4WRd8ewXB9eYtSFNs95nixmz3PHvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-anthony-cros", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nBkkkwLZu6ef3QhPWUCBsvr8So5SQPjMAzZEH7F6ztGUcJ36t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sLyeb6CzkW1MGXgDQRa1xNVcaFeN9aSD1K4V9CyebNS8bBxMs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 459 - },{ - "name": "bts-john-sbrt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f3dpVBUny2vpFMYyQkx166scFLgS7KRnsf6cr7acx2DN7pPeh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XPMdhBndJbubbtmEo77ZvopGyyavinf4Vo4NvqXwmEAh2HQav", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-cni-alaber66", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zmTmjQRVbLnbf4eSJTpQEsPyoiDXR6cVvpMYXjbkrjaTEZfsD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cDrZBP9uN4GdtvMF4hcH63n2VaAqzXEkrskmJPPVDFmus2a5Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5387 - },{ - "name": "bts-cni-mrshomerun32100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5x4kSiUbn4QqYJNsXP7FJ9nGSpXEoimdLDUwRWd3MkRtpfGeQd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6AXCr36jNdbQwep59mx77PTC9T2j9yhqL5RrQvx9id6n9rjAmL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1391 - },{ - "name": "bts-cni-hhial82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65DCdYvNjeSNfjLrb2nZLZ8T4bWkSdHrCP2bRwcAEgnnpEdr8N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5GcSPVkf78bWRXATgvgrKR2ZCbDy4snsbTVfgnBj7zQubKNf4Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-mjm83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xc4R1Nvq9b4HY2DGgtUiyqrgjwGTbPWJPWpGMu3MBTurR3Hy4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yqq8YtXL5euFrijNQv7WKo9H4tSFmaTxxkTPdAgDNYsjsFeWs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57059 - },{ - "name": "bts-cni-anthonymorrison", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jNKd2nVm6qwatTvrs5NdthAt2fZMXHhZsVjVqyr1PLiLaDa5g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6m6F3pyRVaKmYmeM712MZvfxMvZ1XHLHviiZEhLQyorMnSH3hv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-cni-cameronemery", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rSAxAuNJXjxnkkBnZZjhhCdKsqdQKnqubaa9MTDDNJxAFeEca", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Jx8nZCusKzwbCVGm7dSLTyGk8WFEtqsnpgiqPSWJgpZV2ppFw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-frosty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76JL62Ro91S8vEsLD8xh4LySJfvnE3i9dhdyaeFNQTvzCXvnzc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST62Z8PaJurWdtAme7xCpThhLaGnzURa6C2BCN33zp3AbeRYtzQN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 983 - },{ - "name": "bts-cni-mariongeorge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mBv2voRUjDRZ2ewFrTWWeCYDzUnwnxnTfjmBAMBtBSgZ3XpoL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7PERvvnL9vvLHqgLoBSKEkRrNGfdeegQcw161y3wedYxR3gpJo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-lineman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yAyzL8vqYrEQK8KphGykG3mawLLotRfVhmhzCV38r5cdbeNvX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST78nx649aiK2Q9dSqjicMGhhp94wnRB9xdcVsRZCg48ezc2z9Jj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-anitawalker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FT4711h7eYg3jT1cFaZ4q4dJbSGokbRHzn96T4j52x8BkdmeZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6VsRqS437GeaP58FTKV75oJXp1UzE932f8SEQqyCgB6eTZSxd5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-cni-hammer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST655jPNVwcN8kiQvWnJzeLGQJ51rEXNiTuA3ZUDuoJ4V2uwYcnZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oTTheTeEaPsC3DTpqcFMMdzd6DopErUCCt9vGFonzW1f8LYv7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-delwyn-5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zWsQYpbLURuqa2uFVRzvhKubirs8pug5g2prBkgMZGnacmwZG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5pERZfxvkUi4PmbZLE7AWHAEFTFzME78vMLZb1krHmsZPxZKeX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-bob", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CpqG7U5BUnpPTmkNtotj4ivkj17S5cuDTg2EsSomqBDQUqtcM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8XfpxvTw9QRNgRQwxULUnGx2WE91EaSertQL86wqqXSoCoDrWD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-shuto799", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tL9q7buKfNavWuDCEmPR6GA3ipJnQBFw2T6EwKk5BNuJmnWVu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SehwffiqRfJEuav4bUa8L4dQeax1435ycZLCEppYownaLdJrc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-cni-stanzbiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yLu4XJ2JpsZJmCdsXzXDPozQoEB2ZVkjv8w5w9Di3wVKb8VwG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST84P24WwpA37oYvA13dpQb9fDhXAYbdtjKaykLAvyqWjjeT9cr3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8482 - },{ - "name": "bts-universe0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k5aEPJNLPKb9HWopAaz3udb5uFCehxHGaaEdEu3C2x6s7i2qm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Hp9dTGL7LADdKB34N4wU6uTNtshazkaqptAVzrkFEM6uLQdLe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 173577 - },{ - "name": "bts-somaniwallet2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bboxbnS4HdcojkZL8sfonfzG4BBLFmzckGCNdvvUtGnFKg3Bw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST531Baim8bYdU9eTBr3MoH2S4U1U5sC4QFU1Z6Q49a58jRSZ4PR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-camelbe123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86zjsMcnubmPeY2c7vmin3CbLCoNaUvy3mrM6gy7e61f1UZaSy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GdZCsvAM9xg2iLLtJtgFYxYRCvwNPSbafYecLxB7StJYZnob3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-byronp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NSC5ttWWxw1adTSYsCjff5c2NLnkSM4Bd96ygv9qa4MxduJQy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77YzER1pc4yD5DhvZwXUCFCkE9WjoAELr5194tnn6vKpDHpgZN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 374664 - },{ - "name": "bts-cni-geisterberg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u3gL3fx6bjQZJqBMpxEvVqH9neCQeXz7bnomCqiK2XqthMpYr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST52FveEf8KhstiuuHmj8qhLmxyEekEfQnYmegdMeRxEgJXU9aVi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 322 - },{ - "name": "bts-cni-joehoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jUGQNMye5h3WHVSPMPa5aKCoyz9XBFwqrNcMAW4QYo5Pjss9W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4yhmxppTrFQs2rUgA4WjR2CQba9tH2fp9V1qUDWhKDVNZHMkfP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1400 - },{ - "name": "bts-h01gc7hp3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SHiaeZTBi5JKMWeDCSoS2SkH1PKwmNdA9w8xLHyaLwz8V1fcQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FtGPopwBTu1HUrLUAKWBVJKpWvMgfLhd7yymCxbG8KxBzN1VQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91679 - },{ - "name": "bts-jrn-mkr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a3VqgQktUBMw6r7Luxx8kj8Y3iUPEh9QnxA1NNHqUazBdCHpm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aWye9Uha3h7fNjJE3zrsPL4qZLt8F9KVVH2wBG8njKKxZ4kMx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 155 - },{ - "name": "bts-dw1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WkcxE3qhqJQtdSafkELzyB5ZhqEv2xApWaJ6jB2VNufQgFcho", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gHyhrfGZzpNeXy8jKE4HYEYLiP8YqtjSbpRzQwVjW1mH5ib9Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-emc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bE4KFHD6L6XQH6bSebR4xd72tTa1rny6KSjoPZ9D6WiFgLcCg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST55vyGH8qVBaJB8iUZBd84jf8w6TZQGJU876xoys8tg4s37u9Vf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 490 - },{ - "name": "bts-cni-lydgroo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xbp4UyDAy2LWAUgf4gRAeYNDMxPA5vxym6GMp4fQ9D7bLX1N9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JvGAJ9hqeWuwvFWdf5V9oxgTUwuMijzRdy8tBEVrJr4QLH2i8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 470 - },{ - "name": "bts-ian-s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54zJYhCp8bn1wjjsXRzph9Nf6PU2tNL3nmEfUMqDKDiH5U5Ae9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mpxfZDRQ8k6HW6B6SFbMmQtxKUzJ5N5YRsoZ2yt2NEgwbTx7C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63739 - },{ - "name": "bts-c1ivemy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5X1s6L2urMbX13pNiGqq87QgiB4qKoWoG44svcsVEgz388E7sn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o2LMzNcKK5k94ApxQRSwTcZSjvYtYeqofJSu9arxSgasdFRez", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5214 - },{ - "name": "bts-scottgibbs1bts1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tkf26hKhpv8ovqVwRP4VCFYamGKsVwVwD4SL7FxD3PhhTsHbf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ScqpP25CRs4YATbBaxAmkUgTkXdMfFj31DmAhyGnbuQa6dgnJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-abstractienz52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85pYmDTSuYV85jMr7hc5YRpsnZgk7G6aHryqEGJzZGceiSznJx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bG3qDLSW3aWLs8tfUN4hfgzLaKm7iftyghC4bdbNDw3bYXxbv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356569 - },{ - "name": "bts-cni-twindorn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DDJxWw1kN65GBDe3wivZvDhAqd3NALjzv3QJVEHxPH3uxEX16", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-trade-ceeds", - 4 - ] - ], - "key_auths": [[ - "TEST6r79CMfGW5Dv6Wqk9wcezPenGn7Ar8FBmWXzQiPtbqmd9xvPHm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-lholmes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58ihCB3QMgUmDWCsd5gi3J7rnkAmDGwe22nQvN93JYLfxz9656", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5qCvPJwi4VwU4yy8DMQWMZT46JCsgKviUkhiyD9oPHnchbNKdv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-cni-margehoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QUrK7oecUv486TA1fncGFaVjNC2yWDwdzqT5zzrFkg39K3sPi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tykoPC8BSjdHF7xSPKueQ9Jv7UxhQbCekn2no49PZ5ufGL3iE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1466 - },{ - "name": "bts-guardian3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KMujpT1EYomsqZKhZidqD1nmv3EmfT1ZsZ6g5Sc7UiAAVs6fJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7NhrgcjpFBsaYXq1c8SdtdEaheZQxf6umikkfWLcCoVRUM7UXu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-freespirit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77SHuPUQgysa4v3SKQfQS5VLfRZ347qgqZFoqPq1iWbWMjGfAs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8JNs62eYiPVpkz9prGh5zqz54rMJ2zYRMf2nn28sJda1fGrwPY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-ecl1ps", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TLV5n1UBqgmDtoiLKeCuhufoffJqXXg7wUahWnH6tBMmadHoj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j9tfftXZJsVbXRTwhFVf5msEdUDX4LNzorNiLvSVPLRTVGvTN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 298927 - },{ - "name": "bts-gr3y", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pCYqJDhY9CrucYk7Hi7YTqhxhqai3aFL4RW97iua8TAtbmpHg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kbfeHGnwbh1XQzh2GugTdo4d1xmsXsprBKZSGQFtdUfQ3f8s1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-crypto-currency", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cy3aoYcPYZtA8S3oGxqNdouRPj5m3kWrCxWwon7UVa3u9FuzU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ewuT3WdhHdMsojeY9zA3jZjKszScChdU9kvv9ybBj6V5TzTkn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61 - },{ - "name": "bts-gr3ydr01d", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JB8fibAd6u3ujrz6taAKMRL5qQdyCiL6n6mzE1VpPdhhkypnQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Ei1LgxFEepU5Hn5F9T7KiuHjcfVQ1Hw29tWuDnTRnXkuxW6q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-groovy0ne", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vjcRLHQqehuJYTMoSdnWnw83aPjhBbYhGv4MsmHjqzZ2zFFtL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63njvsdJThY3KPwecWcZ8qJWy4FsNaToByKmJ9zE6tJt3GiFTD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 264106 - },{ - "name": "bts-valerian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST641rs9iyCd7wPVmvwpijGY9hcsgjKfU13AGLMBCtqMjw7U3psH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cp8eSofTLf3WKYbKYWTPUa5rNus6QLDhNCqUbPCPUhAf4KgbX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-antoniokemar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KaL4A1xq4TNNBxiHZkKHDJDBVzvfrdPU864arDYiCdApup8Nd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7wKnHnRFg6k5syiKRCBgfzda8pXFgh3bpcmnhia7ENam7VxQxN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1880 - },{ - "name": "bts-cni-free1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yYM6QdiXLpRWWWkejMZhe8UrsBV8RYdtrcNhPRyTFRASbw1NU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ie6cb35AypGr216fXjMW2b6t6CtQAbWGgeFUZwoiRy39c9CrV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1382 - },{ - "name": "bts-cni-services4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FnFf6BM7RpZUNNyJWoxWeqzqzWoLKrsJ8GxWavC4wHoCfwa1R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hPDfVGUbkSBc7BhC8CDneYkHSmLtitq1E4Lhfz3ZMBcTusH7A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 549 - },{ - "name": "bts-itscrazybro1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YbZsqAC4UtmqDt1dLsHJ489f7Vxn58GS7YTGKkzi98YZExujA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CgRE8sYuB5nWcPu5HJSYwwMmBhKh8N3MkM26P8gSn7VBQfn7z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-planb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YNMfJBjFZ7h9ZtbknprG61aXBFBCcDqRz1mNADyDsaTQcAyof", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6XDAFhRy1WV2fFNwGrRpRAXKsfZWGow6ekLV2jvTUQmgmY2avF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1106 - },{ - "name": "bts-cni-jimi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UU5uTPpVVu2zn2EVBuqPi6dnpb81jW67gyrbBmeve7wL9SbvD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8UkTxFFLzyqP2bDcnLyVThD8JCVNY1Xc4SCvXw3De94gt8cS6h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-yi2iy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DB5iw8xQbWtkGSFSNf2n1oetfGfSpDURMMBpaWXycFd32Edzy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HaxVbeTVpR3zeMQGHoUjuat6ULCCqbyLfmWD9A6uTKcBswkPg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 252 - },{ - "name": "bts-moyyewhon-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81YQMHhfVJ1zRhwJ4nkQkFNk8rPdWyYmieQFw5VT6PcTbeUkKR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VxdVgPDxQVHncoXvdfzuUpNQM2JrkXvMKcKYBmu8BWLahQSE3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104612 - },{ - "name": "bts-cni-wambugu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zmBaQn3itUSagpe6f4awoX3VJj565ingZTUWjgtQHUj3k2EtK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST65QfjqhooyXpcoJJ91fkvvUQUtPLfkNP6F7LLiWcrKzCwSCcBc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5347 - },{ - "name": "bts-jpb4", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-jpb3", - 2 - ] - ], - "key_auths": [[ - "TEST7jzSbQC9cnVWWSBE51XNRWEmfCJHP2sYTY3HpHrMGKioa2XMq4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JyXve52hM477wajpe7fyt6eRvi3MuVgUEw4nv37WmhordAje7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2956 - },{ - "name": "bts-nr29nod", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86kgj5ybxZHzdFC1eufUfZoVS427fuir8kt5xPGr8MZiJ4wtJr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QGD2WxGgZeUFiFamRBBqEwd34DmiBX7AsSpyoW5sinf2umCe5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-cni-mholmes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69wexUPxftPSsUFomQL2VTwEhiRchCxb2EYajeSdjvYMRU5q8u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5gz62THCKMAjxy82eoYewL42KRTRS4vQ8mvpQBx6u65xbasMzt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-btcb4l14lg0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8A9qy8LLu2vJJCo8QPf8dQoRhaa1698nKrh41JLnU8kRD582vD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S4KNL4PnH9NBh8JjUC6QuwHAyEfHjhCwQZpirmToS7oFunk7i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-cni-shaddai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iDiYzqcJkG5ToedayoDjmYWcbsTunzPGCfT19sRCGhgGK2nWh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cmFzEFu1zdsrM3PnS9EUfekXmH2dhYHx2Jj4zPGF7CiSNV5Yd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-nice999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Z1nJA8jZrMF2qzqkVhgJr5Te4wXypSycMLwvi6hawNt4pxFz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eXU5iUquDs88gvCQwy9MLdpL1CJawCpEeQ1ASEdpyGjYTTDWE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-vhappy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xKK79FkR2heUm53m2tUbPBjpgRmNRCJdVKtDztiCzL3VNnCFu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zm1zm2rYdJw6yHLm2TvQZrLqgzmrzuwBgbYNpjv8GJSG9TSSV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4103 - },{ - "name": "bts-htc-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LVbcYfqC5U9XvTsVP55HbtQybEs74Fgy2JQU9S6fzmtwvNdt6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aq7mqPBTTnkT4PRF3AF6cYoadmiJqHcXbqcUQneaNuWHqsRrz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-gallinap1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZJvnzzXGQhKm3QrrJF7QaTwQPxazrstGXYwBtSCEzVAwrCD9N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cyywcjM3Q3kZqeJeR9G2t1jHpGHXZNVQSm2qyYFEuM1dgPSoi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 732 - },{ - "name": "bts-nr29md", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d7smRV6TiNXVpJRYBMBwRVTvXmBRt3FXzYX6qKy76NY5yfCrS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Wcy95vrKz4LH3vZMa92T2VRcyLNmoSTeNrk2nx4LY8moRTdM9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 146 - },{ - "name": "bts-cni-sarathi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gvbkEXvSpR2VsqcP2aiCapjN9fyabKRoUfP1XxPkbfAJ5Fwe3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7H8Zu5BjacHLm9uJY1jEwA5zHN7cB3vR86bCNxCRbX5Aiyqutc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-rnlprt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cn6YP2Ldb9PPt8v2QEtohNgADxfyWwEF8obPjgc6JYPwmGMJ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6VekTTCbjYXTDqvkxbYcKznDxW9cLhWxfFzuSKiAgKXFp8qK2f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 195843 - },{ - "name": "bts-cni-irsakala", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C34s7vRTDf9URkAKMNwmHC1hnXhrfDsD7dndBGC6oQV65VBgA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST65VNA9BZN6Pbq8KWWkjVYMtffBbHjiNpg97PEVnWb9fScfHtVi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1210 - },{ - "name": "bts-cni-vynuoge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R6nQGjEsaPTdGcZT9AoQqwRbGHdnkE3vVeUkM88nZZrq1AL9k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6vk56GW2eRjHjJ1S3KbGVc6ahKMdvK6MmNSQV8GGr2hpjm8D3y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1174 - },{ - "name": "bts-cni-yane", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cKS7cn5dF2pLWoKQt8paHfFjWByfzu7XecDxHqL2tkdwwTxUE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7uktJJCQuHVeM1TZFXAvsCUm2w18WJbpfKnX6v7vRGetFbZzBo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1614 - },{ - "name": "bts-rick7001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LD6CvLZsmdx2KGFpqoNoKs1uVvk7dCXdyeRQQeTSFzn2b7TDZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W4rfiGHMnZ9MybUo5i2dh857VGuE9qrNuEcEud6otMcFWZb68", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 273 - },{ - "name": "bts-angel-gain", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KezeXkpweJAMPu1Z5tdc343wtYdDph9Xg495om4vRTchLC21u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-vanyte-fund", - 4 - ] - ], - "key_auths": [[ - "TEST5JyTQs8e8mVb6rgwYiegcyfBYicneGfh2moRJPsPansJgiGzJQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-rchrdlprt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77FuwXDQYUUisa9WAwCLHabmNB9XMSt2yo9Yq5Z35bZZ4gCSSK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6A9Em3mFvaR9si6GjNuoYL4Bo8mjjXGGeUgLXnWtLydohzGk4i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2978 - },{ - "name": "bts-cni-jellie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-ronmur2016", - 1 - ] - ], - "key_auths": [[ - "TEST5QgoKvCuqvJ6L1a2R6sGgaTihQn5uyGUrfD3VYBYaTcR6hVwU6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6B27o18LhGfZV1JgiYK6kspNXn3dPanud3v6Aw8do2a4HS5PF1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-dot-mark", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iKBWQURCMB4HATeHkGfeCoeLVPLdsn7UEDPfhk4gypWNhaE1d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hRmv5E7jAGPJrcM3ncc7aBZiuQ6x7ircRRAnvHpi9i5bk5fae", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-vadonik6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tdfqjuQ2bptr6dLQdNG1X1q1dfst3j2KXhohPDqTvh8XEDv9r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mFkZKtxYcCvz8ZTQtsAchmbPJHiXLwG7dsSCQ6W2MzpTckLWz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-bosse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Z4iqtQNT5JE355z3HicPzY3pfvapuJyZBNiFWT2cRcmvLLoht", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7WrpHL9jX61N2PpkZztkq99uQnfC6ASwvYbcj1PHspMjZwqZVL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 874 - },{ - "name": "bts-tetiti29", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tbZVTo1W48hiYWtjKGmWRvdbp3a6hyQemzG7sEfry7GWyonFt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zRckMWtWoEvmEfyCJdvDiVmC3SGwF8PpswUcbZA7RhWyLaKif", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34963 - },{ - "name": "bts-max1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TM3zXkK9XnEJBpnyHWu2K9J32yA5mwTquVz3DpWHbMvdbFetd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PyiJD5JDywbpEs1kKw98rpn1fpE4L3dPe5rp4BSFQWTYn6Qbn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2437987 - },{ - "name": "bts-thelawlawisreal123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jHhqiffGHEtgdV1xWSrdGZsMfLjtbBkFi6Hz5YyHT2uTQXi5K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h7vKY85UqiiCsHdsMM9xLixMKM3jAvsdiQ7JQMmdaDh1Mf6vb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-btsmkr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68sUm8Jw2PrBYAmwgSt84XAVMmwUCqBaUGySkrb8rUSCKZfZTw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TihH3xAy5DVbsm6j338A7jJEtJMKn3BekNjz4XoRqNd7jPc5i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 940957 - },{ - "name": "bts-encen53", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zEBXUi9tg6KS8yFMfY1xwCCA1Mj6uzaBfoMuFJ8Qz1J58VauE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HjVrb738DooEBBgiKxomb6KVjnLuBrvXVtwp56P9RSFeTB2on", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-fintech1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EAPQuA4ux6BabNtB4LKd5YpSJZfrCQdySPaAp2cAFMjPhbxVe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BbJzTQ41aj7bNhwc441xQF3r7yrZ1RJTuHS9XuqMUozABQaDF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1070 - },{ - "name": "bts-norbitz1510", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NDxGBHoYasbfJcFYcqsks4M31V5PhHEwVJdW7wGN5n67SYHrb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83ZE9zpoXzpAMuRm73MtoJU7CHRtmerxdYPLk7buQkt5iiAGqm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2091 - },{ - "name": "bts-ccedk.escrow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xnTwLmDvdVtLCWyWvecs6gnQLBVECUwws55faJve6D7xyzXkT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pgQbnAUpA2tcX6K9tua5nLimiwvn2MvTYTytoDUj6hVM3dtG9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-ccedk.marketing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U3KbwPWhN55rz5QG7aPCNoNGZKPzCeA62w3rhuEQFge9WgNdY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gKvPfzxUxFkiguyi1bzo7dH3A5bDquSwupmdzPZrUpaXxbi2U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8987 - },{ - "name": "bts-ccedk.crowdsale", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yqvidVfw3TWfkrXtpAY7KNoBBxaQh276LZDhkyt9geQWGiLKn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qr9bSHQqBF141YEpFBgsfQAbQCSsDXGjWqnebW3XjGPgJW59F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ccedk.aps", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pGmo9qT4LvkrjL7FQcxkMtW49Pknw8chnrhSBLnbQod1nZtv5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FCbjxjcWvi14sJ9Ene7fqxtuZ3b5eUTw6r3q3eZwUwcKBqA1p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8976 - },{ - "name": "bts-tesla123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XkvamqwYSxSKK5G1K47JpdrbYnco65FW8LJgx4BdpeJH2wECf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7imeA6gh75PFHvTpdMUryypW6ZmeFZqCNyP7fxcWWAvRaDFgD6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-christian27584", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mUF9VZSYc78qyBvwzo4zxGYX63f19hkNYL5MpPofczBFBPq5o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53oMTQJu9Nw4RuDwZQqtrCc6nFmq4e8VEDgotnk25fy4mXfMDv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38 - },{ - "name": "bts-bjbj545", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wntAjmXMo5MhHoJnGtC1suvqbMmf26FLmwTLi6f8zhLpBXjSJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST724cVhWHxV8wsmSesFRco4ukVKFRBLcMVATnzbnoiRM4L9ywhT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 445 - },{ - "name": "bts-nonelbc5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JKCmkRpV69ZLa9NBLYeMuK5ox48jSTXkGSJzjfS2p9r4ZreKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6bFS2SpJdppKqbVcALXzsb4cvV7v9jfaJGGAwUmE2nQS3rXGKN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-azenll105", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57tjLd1rkLNacfZbLjtYa3qPYhc5h1Ttt6KFy5Y2Q9cUbz5mBo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8We87MneYzwr4eRNFDB5FCp645hQoNQoW9uxGYKkBvWe7dNegZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3256 - },{ - "name": "bts-nrd1nbtcb4l1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Wxf1X2dc7JvWsgu6aUXM7bUdroXZP6UepKWcexrUnXgvMbe5U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j6oTz6heoX5KeUJ6tneJw8TVy4HhUcr2pk8S832VYnsW9YzW3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-br34kevenpoint", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qQTPyDxPptgSb7ExRFkiR4qHuGYsEV3XGWjDc1vfehw6MyTTz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ndUHEg9fp4ooL9MY3LbYE1SsUuo3uAUz9hgpNDHSG9aV69tox", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jst4n0ther", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ppTTyCFqmF5DxGgCZbbrJim8tHWcANWQnujPGu989GyVeDQYb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AP6r921Lik9X3o62MhZyYBB8hafycf8JPLGq8UFb6iafPXRqz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-lol8675309", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f2frHcnx4p5ccAGBrvnDTyGzBuUVTFVTd4DXDqzq4R4TygxSR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DWZKnsPZLm5nWTdf9MDXnLaccXVQbWtmqwgjdG8oPj54ysasD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17884 - },{ - "name": "bts-miamarcus77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BRLrZFsYUcGnQniovi1xnKXALCgaqkbXqR6nTgkeCwhjpvtY8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eoqRwF8pyiaatx7bVvp6bbT6bcuqBYb1CUVYVv8jjH4y3gNZy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-barugurufuchief1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KVvdVc8xmge92BKBGu2efmXAFTDHJ1DQ7ztZDyDuoZ6wjuAhU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51RtLWCAMLCh6XrEEq17QJG8aTBA7ejmgwTf487mHUL9jkASNA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-ixtanomi-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gZ7DMWGMrh4uWwfr2D7fXT6Dbq2CGq2R7qTyHaWVP1SrXackn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aJKJejRNzmDUbhrZrpSf7kpakghwTnxh8dMkuSomQtGxP2HUa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 753 - },{ - "name": "bts-cni-edward", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6M1HauNiRG4LkoJ2auCFhNXw8QazWRivXmYLSJZrFG5xHSENL8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST64XQn2R8Tv5VPneR78iDMXYMmLh4GCbiZ6hjEBDPJr2WKYXy1o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 690 - },{ - "name": "bts-anji0000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PatEHYa9NPWSa4cyi3Kg5admHwKav3NhCTTUP8GuwKmCdoLUH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xCVWGWpc8MxwZpYB9ebs4P5o7RqgCVyv2S87nnciXTzGQjuck", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42352 - },{ - "name": "bts-gr8fl2gd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ShWKhCJ6Z2ashCWakhwV5tJg2pMi6vsjvB9q3dQssEtyx3jh2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8dkGB6SYvgGZgd8UBRqaqbx9fGeiyhsmQbXwyrLqh6VTM4bKbc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-fork.in-bitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R1hruBxLEjKPLFbdZerCPnuwu3xa3Wf8oBBG8GZPhG4JDd2rz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7PUAiCdFiWgN1FX2YPPkiaipnw6bVtVFemFskM3nMWr7xKcgFW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 501 - },{ - "name": "bts-cni-nikvas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yzJDp4KV31ff5KmBhpm36tNs1tKCpLQy6TxdxnyHuTCwwa2FB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77wfwcDBd9ZvTp1FYB2NijvozDBFsmyCoaYYFFA2TsAmVApntW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2342 - },{ - "name": "bts-cni-tara", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Yd7pyTYnVi4bFouXNiKCALJSR7Np17BxwoUCUfeSBYCwd6hwb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89gXfNLjzimPy1VJDCVQFcnZCuvYv4LZgz4qdFKW4juXvWWDH2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3761 - },{ - "name": "bts-cni-niknek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bv2sjBTFUvNkomSVVcpoZ6DFZTaqTQjHWvzGNH3n6BqJ8364i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5vH9xcfQVv3WcEuJYQ4dfoJZTLP6BSLWgReSfK2DQQMuLsEtan", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 959 - },{ - "name": "bts-kattyaman33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52Tty8ZmwH4XYJC8ncWVrZYzGygdUybVDgBTyxzzpaA4PuzLbc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52ovZek1gnqzHbyUk8zUpMwpNBydwBegaSBB6oE1CBhYsNde73", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7174 - },{ - "name": "bts-cni-ladyeagle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6e4bQimK2gPi4ZVGqYcKqZ9UrguyhdjAGdHNz9ZwEtbefySNxj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AidbVYdsm2Tm1et6FXWqUViJUk6f6bovEDS7kAsfDk8QGWS5U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1069 - },{ - "name": "bts-thom-van-dijk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NVFpwhMRFnm9qym5hNM7AJpaVyGYLEqjV1CDc5frA3PdXdeYb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uNBsS7CfeAj3W3YC3iyhykx4zWmAZUTSXQF3QUXcMLUZmf7Wy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-skikristin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t7VG1MB1key1nUeqeozYA5UkawRbmrgXC7C2mnQGQcq6hCC1x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7NDYmV9QxvZY77qTcqco111MB546vKc7vUsriAE5dNWzsMFSf7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5767 - },{ - "name": "bts-cni-jank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71mSWtwg9G9J9715Q5BeF3Dah6Hg7FLhCEZ82KHHJ7CgDhFFF8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RYETXaBaA37jZvCbsFqsNVdu8uoBR7hnQYMY7kPe5FvCycecM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ashtanga-warrior", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c9xLjWyB7bYyXEq9Pxd87beNgdcLpDUykSpUZeDPDgSzbWrPZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ihiVLu3EgzgnvTYS3JidXgCamjB8k3oQNh8dBWGkCwXBdraHj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28043 - },{ - "name": "bts-dadan-ramdan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wC5puHgsQdpmfUJ7CNWrSZJACLyc2TmcLwXSibbwbeRYfm4ri", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64VSxyzqcQgueCc665bihB9hnGaHEGb4gJHRbF3W1G6BH5FYoz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ccedk.escrow2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dEmXcA4QZSfkEpnYbpeFM6UHg9jkXj28wsEzTnTM79nkjAxvd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YixTmSd9J7dwsxUd33X3bhzSAvoS69GXsfLWkuhWfgjoscngL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32437092 - },{ - "name": "bts-earthdragger80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GikBGE7YpySXPNhMvHL8UjobeGregE2djzPRcgHWDW8xXsttt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Sp5SEzF4eJEt5EXL88aCubawyDjDisdTyFgCvZ54Ws32VqAbu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-18271187", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jx1c3PxgVSzhsscGTJ8DCK6S1ZZqjz1hYhYGZNXJsTxRs2fU9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qYsozeTiLN49korcZpyszBtqYedsHjvp13JTLHPd7zqB2Si9Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-mtp2007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76CaTGHPG5aU6xzeaGWfjeswf5yQcaz9VMSV4yK6vFqcB57Pgy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eVRbqZy52Y9EzjEK5HgutaKccsBA3w5edTbK5vToRn66QWam8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 617154 - },{ - "name": "bts-dra1th", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NCyaDk1dJxkzJkLaXSqvYHqYupUcX1vCxTf6UQ9ThuiuisVwC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7veW95goJ9hcct1mC2rj11SiNjWwpA2GRZ8WGABUKWFpDRPdPk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 271 - },{ - "name": "bts-gjh9527", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WQ4CFsV3gE6D7nfELDfZ4nroDZ1A3BPLRXdehbMLJjDmyf7sk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MuSGWgzfgcHbcHR6n2R9xFhZjYK185rUK8FC5zTf7ioVCkV3M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-cni-chad12131", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q7buANQNauWrH9vi48A2V1M8nU2p6gWUd56BxwiaM1G3kYu3e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5fVj6oibHiFhHte9C7JwBCxsYtAi5WwqYxxw2ftfB2sraE8B34", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1849 - },{ - "name": "bts-black54", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QtPbACLCpx7fhCQ5ETiPVYAZ83z3Uam57dvNznFksZJL2hLFN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fzfQxt6XfBXbh8N93XZ9WeXT8bY4UUGYhDNamxaJQzRqBQoMR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-tesla1980", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r7yQRA7KUi2ADexMBa5eg6JZ6iKpMCAXPwyfyPS9KcBFtyuXu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73mwccoBhCqyJ7GbsnPMRLVS7LgKqHeMuvP6tGzXxX7jtZQYWq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-masknoble1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kMqAa5vYFo1p2wSnFp5oFhj4e9eLnqjLL5rZyeKr8Nu2ZbuWf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CWir2An4HbJiDbGYvyzmuYDSj8HKsFZwVwuujoMzFSrXUfyfg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-scorpio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54bJhrJCLcmMBMMUYpKbjDQuX87UFtrtn57SZnoRPgomDegrKm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7L7BoeXyXVMFZpKC7H5rLA1ZQkUcrZ5XfwxUXpcvjvdnjC3MVh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-tauruscds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83BTgKFWuWRu4VDfvPigDoXCbb6y1ZUZg4ER42ydiaEhiSe36X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5WiLhd6TV3nX3UjUjVnK2j8yPJXpGZpjDagB21MRwLMu5WWTSB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-vtxvbzz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sZP316PSxEVtpYNTsbnohPpe6K8RRMiFAyunRBsLTKyzBqfb6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PBzjpRtxrzhPeSKHRe1Wa56NDmLJ9jimxHXzCEgBPzXSR6bEd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 440 - },{ - "name": "bts-gjh-9527", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cv8ehc57Z349qesBvN9YMhC1js4RBALrmzRc8RDvKTgHnpjiX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kA8yify1SyyNhCLTEGeyGhK2xNiq9FBxD69oHckjqbpM8bgWo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gjh-3014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eVwDozYbRLVWRA4wJmJ9nmXWyTT5i1sTr1AhMYfgVESYnF56u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gTCwJgwxMD3Sbq1onoRFqjQVjnWxbRZuVF334qjjGaY6oEtkX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-arrish1993", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QTmnKQ5GRqs48k2ejZCzM4eua3dsoWQMtKQLwiD5nvn912iNN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Uuj1taxoq1wAHD11gNJjAXvVTsuTdwAQCa4WDAoULzqzUHkhM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-darepan1975", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iz7wseZHmW6EYsRgrsfXTXQ1qQ8eVjwtzbYdWFsermNrGMSvy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xFt6qaWfeL4VEB8idGUP6bnPrnceyC9SWpdrW1UCtFYJv5ZXm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-prebuffo1970", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dJ4umtU6BCbJvWrqiCVUWLvd7oBKkFQykX9vcMrMDnvVL4kLL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XhEmbcaEFRuaeBrwG5CaG127JJc9SaHTHTth7vPeFghYhqMs8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10023 - },{ - "name": "bts-techbytes1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74sXCykyMF6MJJAzB5UUptiAUCQd3XMptStC1oX6UmxMBDXdt7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pRw7bvbj9R1xdv7UvobuqnzaeYSfgoqHU8LP7e8B95hrCsmXe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-m4tt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CmDfG6QrTSFAdK269up37GeC2qCqbikVYhJ5XxRFwmjDVu7Ka", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5N6ekZRjyr87wcc9TNSAWRQ7kfgugSfuAXUo7B35JWCPBeorWb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63345 - },{ - "name": "bts-g124", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DqnK1iFksSmFVdshrBJUGwQjHxyS252jcVn9AzoQZ9Gs1piw3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FenoFntZJPwLa73MXxUKXsuCMpzvnWrYEXjLjDTTEFQVHRmih", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-jabba-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fxpTQevkYjRSmaYGKogrCo7MMT2gRVSa84b7qavwXRUoLMXvo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MSa8dMi1s2JXLqmnhd56HYmhpUdtPf7f9sQJn5c92cCqJtin2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-eagleeye24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QqU6Fnm5DmeevYDQ6icFpJougGub34oMPfXDxdBW9fiZWc4yU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AN9g7YrFPoZhWYNEXjko1Pw7DyhFJ1NN42x33jqERjGDX6kg2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1137013 - },{ - "name": "bts-bts911", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gE7wZv1bs5syBJjmye1LTkAGvmwJ4eVLuY1MYhcdqQFJBVUiq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sxBf8FSLdbcHMmBakxFdmVaR9TdLpDSxpHc3CdWP9a1Udepvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-naoko999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xao5VufGU5JoMDJWdQM8WQjZ2PayTmWd7tY96cU5SQhecY9nH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S2nTSDDLErshZENnyBhpHnT91PYy8mPyPiFyZLdDaAVMhCzLR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-as35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yMdf8sNgh7KWnJq7PvFEibHEtRd3SaXSc5bCBT5grLHPKTLMF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fDprQDrMUnN1BvtcPvhAGGZN1ZNHDhTxTmSzNY4Fw2jkcUMG5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-psd3v", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57TEKHrUNcqNKEYjpacAsgKpnZZZNPXnV66DjT9pXwst3T2vmf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74k5gZkr8Ks5Zh7oUSt5LXegWg28eJLxbNoPooR3FSgGxxJoDp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-risin-higher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82eBSX8VW8PMCU3LYmRhz6LUTX9qUS73LvyfDeo7oPhdRByQJY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gyU5uof2QgLeGkm7F2eYEJtqqXi4dczgHzhhVQiCoMLm1gTyx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 226467 - },{ - "name": "bts-lopenbox7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77bwNq8qv85s5VdXoxAnFNN4uqRx2EW8YNKQe7H95Li8LAebAW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kupF8dhTDdRQz3iHxneWRjVKtMVu3ymqrbFY6zULfmTuL2DCp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 504 - },{ - "name": "bts-game-iwbtc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sy4o1nz87mdTXgDxshRkvJZFU9CGb2RUopDerviSkCsooRN1k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YLRmgThZhoxFwHhqJ4HUoQLurKTHZVRHRdM1gbYeZVgHg5Dah", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-balfons", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WGaVmkwM16Jt5jXwztzfgqM9mAdR141qzdH6KoEL1YxYSJR7e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8hAxFrYkTJp7z4g4XKnKow99w9dcfyP2cetHq9rXdSn1n1SUZS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-cni-dawn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kCvhRP9g3q5YwvsGCDYXeKyofXLtQCsriHVcDLBcnKEFFSdtm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST71A9Y4tpmonSq5owsFfVJGsdDJBNDpEyD5bddEKmXkKhz8AtuR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-mauritso-test2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b8K3mnCmWzixNwtMFFhLXZqapW4xzciBjYs7WszAd1EdTrtjs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cGV2uA5jVEi3nyA2dwfoQ7MW8U4MuMA3xVMbiuywRxzyjMHhU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-desertwalk38", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eUpSGYhsfiRmEAVpUWhonWQ9evv8SPFXsphQSvHdxdHFxWSjb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7LmH5KcqPLznuKkgCbLDFKexfxr8JWERNHVKpUX2tMR8bkDoP3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2796 - },{ - "name": "bts-j2328-cli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jYJABp5b6BTQAR9eMwFZpC2zmnoMG9i4wid4EG6iumn7rW7Ag", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 50, - "account_auths": [], - "key_auths": [[ - "TEST5vw9uh8CyXzNwttETjNB9B4PyxCaDCidWkzdRqJapZJ9Wn4vyn", - 75 - ],[ - "TEST5MaZFgPU41GKz6ekXHaX3GekHevbWvGL7Ue3aXpvrMT7Xg8v5U", - 20 - ] - ], - "address_auths": [] - }, - "core_balance": 405 - },{ - "name": "bts-o8d3j4w74caw3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UUzm4j9xGFLFdDFvc1sBpRzmtjCRYz4aZhKkxxfJ6qybBZmQv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UspPL5CjgLSGWbmewVtatps6Gv64qWa4gBMzwe1H3oAByeqos", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 257993 - },{ - "name": "bts-cni-ccriders2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nJL6yxbgeLNyLBfKtmKg42GdCnTw4Yg3B6rfBjaEDpGPV8V9e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5LhwXTgy8hxBsTqsSUK5RcqZi7PfGJ4d11Kd6o4fncW9A3QX4A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5994 - },{ - "name": "bts-xx123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83kaHBhHiKKFHy6XdDfvF1Fi9HJWNob3UgBdWSJurNho5d5sBV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sXvSq9CUbfeEh31p8smrBU9mhbQ9fUeAF7Uyw3QsscqWGwaT3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-infinityplusone", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NQmNynau7DkBKHBpnQmxJBemH8AomBa1vK5B1NZ2KJTLXeJB4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HaPGpqYuJj2SvgT5yurB7LgDEpp1VMVvaQKXyaa1K2z8ERPki", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-xxx209", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GrBNYXWtbcEsU2LvRp75CR3Wa6RpZgTj3sdcgrieYjTnV1FL5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TpJJhFbig4BurNj1EoriQbP3TuBmcGVCHJsquEfXfnfqcLU13", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-sujon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ARvigxHvbfhQm4ZTTFLsPRXWd1qujRAGVBGSMu8DyiQZt8x2a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5KJ9bVeqr3khhcrpsc1CUwqBX6cnaLPzCs4pVp9fjYGLofRA6Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1798 - },{ - "name": "bts-cni-damlong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7im8RHXxHEaeXgvoTK8Kok6AX9T8dXwH21TKnVHLTjYe54jWpP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5DpBEBgLUWAsMkX7XdvQhVsmtrVeQBe6E9qJ4XEJK9xfeDhKdQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-x12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vn36JuzvZDCb4SHXzPEBqq63EgmGxsBGCWQPfowCnWG1AvRtp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kFXiDoxBTbY6j6wD3X55MgJKzzD2xYNftFFd27peKNTWsq1dA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-show1089", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SeDPxiNQQdxVZbpxxzNFkonMAnpZWJqKuDSGZPkZTgXFyUR3c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B8WCD6K78Yr4p9sQxfshrLCFrAvxfBdb2CDSbZ4AUvm7DkStm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-atxi23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YSGJ2hmibehr2Va5C8hYyDKYep2qR8zxC3cpouqyCPAjhAGDz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vXxeYstsULakPpCpER4HkSrVV2SE72HBLpuamLzVbbgn5FHEK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11505 - },{ - "name": "bts-abbs1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JpZSycddSGWKL2cBDsWjjRiRgyr5n3BZeYAeCjTJrdu7zHHk7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B1TixM32KAcfpJUoSJ3tJHj3vybZf1HAjrKD62LAZgp47PULn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hfznrUa7guAz9UsS1wmoawxcsWX9MiDZkX4yt61bDqatkgyYr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mJdPnwn1S3BrWzmNgKWZjJtiS5oaPJVjD5RNiL9o3drrdu4Si", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-makerx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yQ38ex4b4kqzxWhw1B9mvhPupqe9yAeUov6YzwAt3qjLFJCqd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87MkodM4XbrSTpVGSxeFWWGeSoxMueRDKNGeQX4jHSoXXoouji", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23516 - },{ - "name": "bts-nikolaij8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zf3deyznZtUj1Hoh3WjKLPHMAA9aitJCggPsQ9LKqbkndsNK6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5BeJfmRN8DXcrXMi2HnPJmvBtboDRULszg6ytotBWueVBKcyU1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-goldshare6666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5quYKxrki2dN2w2HcWg2XKDNN8dCMMPEpktLBBSCocb9LuLxWK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7EQoEfFJyMWwETWkVycFhEuvRn2Vid62Gn4jKtE6AuNkXa3Mow", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-monster8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZNcoQpTeSw4MmxPq3CLsWreTQYPYceXSWNPJmowjq5YtRb3ux", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5znYj9BEV6pX2CsT8wbcmXd8JDmJs2Xree2aZD4duT8gVvSymA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-live-coding", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BdieNH9QkpN9sE4Bp59SXC7GpuWPpvCdmZQReJS8ffH4W9ui1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gv6Ztu7hRrsYBwBuUo9H9XYgiL6pHGanYJLX3Libw4MtpUQnw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37605 - },{ - "name": "bts-olik76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HYgb9h9ztveuht8zCmr8FFRndKxG7W5TPSG2jpZrKLixgrW6F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54NqS1fAsWtbRf5eMeEkNstsi3F8BgHoxaVirPAco8TsSoenwz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37605 - },{ - "name": "bts-pytest4cc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fpnmJFzEjQYWqbV6XiAFHZu1sYbzYNBUMv1bTnXD7rNmqCdhC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64E8yYqyzP6ShiEK4Vi8QgfEqqrya99GpLytPJD4t48ALNTpUa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-hvtmc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xr5sYgXkD4YNEYLe4KtdvZEKNArLRHdfFwLN1iHUXpHZSBvg1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qy9575NeCmxrRLykt1LdTYAV72A8JcoLkXNSVjGYEBawMJqm6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1286 - },{ - "name": "bts-pico-stocks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EUjMWqvFxwEz1tswMEW3Wt5EHSYSTgPyqF8CkoD4zigYE2aBU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZVHZaGb6NvGQd3R8grwsnoQwSDkUfTbAWum8wjy8ZnThQEaGg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37515 - },{ - "name": "bts-bts1998", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q5KumnM1x9mtC4vz8Q8VBchicNd99zYfwn9FCQmX4PAZeMPU4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rY4cf6umLbWu5GnEa45BA3j5mwPWHUta3Qt7SS5Z8foyz6tir", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89302176 - },{ - "name": "bts-cni-privi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AWPdnBG2TNNEXMR3YsRapibh5DQayGGymtmYg4SapLBgaS37Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-privi", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Jpnrcfy5i5RzrM97539czBs35UGX9CpCgmo4Hfhh8m6XmVN9t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21006 - },{ - "name": "bts-cni-trstexas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST657RWoJwVxeKuZfhPnnZ1pQ5KezB1pTfjxRJkMc7BNhQEM8t76", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZCJnSaZpjyE8bXrDRbTSJm5cN2MiVJjSoLwZrpVZQo6Lw8GkX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4401 - },{ - "name": "bts-gypsy5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65NjX9ggbuqJo8VUuLokRTTLP98A2UVV3UfgfJzKspaKkW6BdP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jeV7uyaknPmudwkYtwUGo1iLNCcx6SZNAx4NJV1HRnbcMuLeM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-tokenand1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G3dexkYvHKEcU7iEBNaYMRUzSSfzfQedS8tfoTVkLL8P2mb1c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J1fVU7bSSKKX7Mtduz4ZkArKSfY1FRrpEXKbPFPHewqmYbH9X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80490 - },{ - "name": "bts-j1102", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AycWTFYzSXoymrU25bapF8ykuCG2JVwPr2qN77FQgJwVgGSc4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xtWq2T2M1JTVTytM7ZDc8gZi9uf6HPo7NncjhwK9YGqaztZ5h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gold21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FMQH7pVc9J3PEFtMjywtEs6tHPFuHP2vQzAAbhquDa1RBMrn7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nEAzzfmScyjaArQGMGi6gdcPUXUk9S6ULayTpiEbk2M7UzMdH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jp-castleden", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zqNCZgzRdTmVAMHHPXQaGYfG24LfQif1iwS62Q9h7NdhpNxu4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ce4fg8nG9TX47uhuJn5bQ4E1Wztg6nwa8etPmUcgHCFr5SZjg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-focus9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST757D7wUVGdKuMa9NJRYTm4QnpGZCD8hzib4PmyuguFerVsreRA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SjmGvfeGMrSr1qZG3A7WncfmDpXyz9wagWvdYBiRTELSQXxnu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 864459 - },{ - "name": "bts-otnasus5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FWjQ7Mz62c2WoKGozDkq1bQJwWzUMPMzvYkhnSkizy7tH89DX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iRatoVHJn1iLvvMWkbgvJvKuhsCVsEZ3eQGwcTbtzumFYFrvZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1354 - },{ - "name": "bts-cni-bjj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XY47ThYx9hWH3rimAWDzuJBp38fXepjURkZeQhEkn3L4C2BFt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NwsSEeLNHPgjSJpGwyJQvuypmXB9u5pZWpPbvUSmfxhxdx4Gy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-bboston1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WWnXCdqC4HBr5h9GkqwRkSLkvQ6xTuSqezcUijawCDNbw21EW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79rt4EHxDMFEt9XHRMbMzMHFpNQwWpkJyLKgqNhEEZPuGx4wZW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3737 - },{ - "name": "bts-cni-phughmo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eu7KnTqKa2RJFvFX1a2yhwPWdBSDXYWmh4ZLkNbNgexSkhR9Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4u75zocZpi5DRekJ62y8Nq12TaGaz9JSvhbYD9F2tRsQd9fKHS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1455 - },{ - "name": "bts-gx-1983", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8czvuphbzCJFKUWN385YcEiNw7nzdnn28iTbZNrSwSqVbZiv1F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TiDhyXB8rbT5skEyUwXC4fL7dRZHqWEeHk5JpQBdz43w6CznQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113 - },{ - "name": "bts-gypsy6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bJsv5JQm2MK75zcS2qcuJncC3KhjzF779y2Ybe2PfcpaXbayt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fzjhkUqEWBEwYannEPgXsbwSNTynW12Dzk8FeaKbDk92h3P1F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 178 - },{ - "name": "bts-greatgoater1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yCibXfsLi5Gd523J52aGuFr5yhndweaPAHCwwiSSMYecwHcZk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KDE8EhD49PuE5sViwgVXMVAR3d9J7zEF89cVqWZHL8iN1S9RE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376286 - },{ - "name": "bts-cni-fjbcabral", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Cxx6Esh2Q9oXViF1oguMd9UWwzUDg1EeWHd2iQkK4kE3ZfwXT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6mupdwoRbYWwNVftdKxzuzH7VmBJU1ev4QmG22A377J2wnoHt1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 122 - },{ - "name": "bts-mobgod7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vpxKKcN55BiGNBv344EjtvbTFWem8vS8GD5R9k4N2yWktjvRJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CXPMcnJyRE8ixASNWFq6p2DogmVqBLX6YnP5z2R1Dujf3RJik", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-mikaraine", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7da5Fm5fPBUofdCQZJJGdA62N5XgS6vg5XqCr8dmey5CsK6CH3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8JhmTLADHkxYwVey9q9gVuCNhzosyHc79aCpxBj3vfisfXkzEw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 990 - },{ - "name": "bts-tm-smsf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LxCarZ5waPBS1gzzt7jYTunph9CKPPYBmor24yUmQjv2ttPTZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Y4mu8dDuisQDRQioyhDUBejonw1yWJ93RriM4agFuqwQnwXpH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1796111 - },{ - "name": "bts-vote-fund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dm4sbLJu9bjb2iqH3D3mY291QrXuDG9iQQRzrukEgVqhvYVHm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71hGTVRDoxgfxf25kKESqAY41pGDJDt7YqtTn7yGhBDvEV8LN6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30101 - },{ - "name": "bts-gfgc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ycn9k56cQdAmoGrdsMvbGYWorGxTbB3p3Ht3GzU1USxZ29UHc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MKVjo1JG3MWWaiNU1K2btP9UDMknDNgd72SS7qo1Fjy2kCqpG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1313 - },{ - "name": "bts-walhalla-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rwmRyxcBcfE8KYmLvr9si8djAoyinF5YwFpRZMiS4RwbtXdcJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z9hYy43xdqcxLL45ddznMjtmZALvYbc3srzgGHTW8bKgAUAGP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 151564 - },{ - "name": "bts-abbs3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qWdUWcNRTU3LZiq5rLMBQbhvRu7x4p7ghtTX4rWZdrc8tTSFF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cSfQ2Z9SB9De49Tei3Gf7SFW1ase13NaSsevySKveSXm1ZSum", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-abbs4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fL2fRa9dAT2sZgGGxpAAzbTZYK8enTXz9kVrUn11PgUhU18Vn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LVyEPtCa9WJ7DiQxpBXn7wEyTT6aoLkonFm7U6r93EK2gYs3B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72zVPhhEpTLSiScRcKaft6XJihuJGoP8VYk9hMD8xqAvYdtZkG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xdxrJiPtczKQeUcr2MfW79pfFDvVRovBPEBrtUxVokaHwfqqN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-qwe38hwfwfndjhqw8yl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53AbRAoPNHy3gYBXJc6bk7VDZPyD7wwSh9FiUaHxxiNKLLN5sg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QxE6u48i4fi1gWgkRxbmDu1Fya525fPjnuHc3c7Z7FzSaHKhM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RtLxqDXJaA7Wbxkcd6HD5jXn9g8dJefKTtdYTwUsywKxyQM5K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gtbZAriUajFwRJWMYCF6CrCF9JzxgCauefDSFZStcXPEwP6h9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-q12asju1jknwjknf3w3pk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RGmuNstjhQxEWbsAyMqpxwsnfQRLUVmx5scNFJ5DKuZCefU3Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qKWJKnDxMP3aTMbjcuwxuhSTABLbKdQEdfywGTAm11EfSGfRf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NMUdC2fSsa22KjNK8pyZxWhYDH2vR8fLyasTJXXAxXqVrQsXc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pqW13j2qGHU2DSnM59y9KpwUBfkFkSEXzsTaQmHDNjXieTCof", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gr3ywanttoberich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QJQFTjqBw4XJMSDsH1FZSFpRz3Vy2xHM2SZ2Bkt643AoQij5U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gx5eGSLXvHRBwGA2DntbKVgLwPr5Cyam6QErqr4o8AUKDvc5U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xe8wP3Qk3YynZWfq1AVD3NpUvyU6PmpxonV8398e58eQBH6hf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56u4QtWvu4ivpNMWh2KESE8NwpaJn9YXxW6oXy3hubgbMC4mSD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ir59fLfs9tzqSNYvv4gaHAsf8EE8sSLNkXRSLHVf46JYyqTKc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CzFbu7dqpkT2Sicbgu9wAcwsSwrnJj6qpkuPu7AkjCu2JFd3u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AjXdcfektUwF7wxc3oWiPJYvHgSmj1GKKLQdUMrM9Wiqv3k21", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gwHUQDZVM4E8pZKumDiCPdBCXHAKk2xCxXvDHME1tboaamFDV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-abbs10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69oXUx4mDzE4U65g9E2MPfooREBfN7jgg7DvNEfYJY2q2RJgGV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GhUWVu3wu1Wvg9bdR8NTEHbbjMZbef9yj9zw8JhLhYFdAkgoX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-itiswell", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oaWiKjwjiZmqkSqaGxWr4ZUi18eBtVuSpsvjNx8nZLYW6bcVC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7GhaSbZZikn8pJrhndfZV8RsybTFGpETVFRGocki6PUBpkKoZ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-abbs11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SCdTh5bdgierZEDUDg3p2zKwD1trYNyjXMqyDEMgVBrdwWepQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v8bZoSTXMC95fFQ6vJ8drdwXWov4HmWGCe1BYpFQMXRxsJFbd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rTJUqSgHa5XUrMdjAtFcQih5hyHFCFJcF7ttTycjFHefKPyiC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61FuaPGtp1eK5Tw6gc679j9nPNDwfqEQyJ8TqVStNNviwBCrRD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-rnglab-openledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ujQsFE5eWfQbaz39nFD2uUHCpj18jzPreLVYWKpE7Cu3YGNJY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QpAgk4UPXcwGnrki27fhupVbbmgCrnHRbfMFAnutCxzJpwuDT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 362 - },{ - "name": "bts-sams0n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uyNqgDuaWpDixhLiU8Qvgiou2ezVRx8CY7yhLsPa2bL5SzYi9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QTWRVVvB6DxNjcpC4EdduKvUyPoshGjA2qNwjw7TjK7mS2tnA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-d-harber", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P2zZkDBwfEcqiAvMXevgyHjAr9J8ke4BM9BorhaadrqURQbTU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EXNNPCbRPVRAci7eJPsRGh1b5dnLqAwzcvX1vBudwwYhZXKci", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4712 - },{ - "name": "bts-abbs13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UFkCTnZRxA464g24DZKaAjSD2YGv5L2vcURVrx6gyVRjE19mp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CHNRhc6zWRWZCDhZhXZrpMdPGEJb1vqn5cqRTCyRkn7HXvWAV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iwfanvwgyui18S4dSyZ1pi7BCUoUosvztXqm14staQN4z7RDd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s5yk1YRgnXEQmYBCQbMmj9QjtcAZX1HV61Pu4p5dtb4cUUdFF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-aman5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8meqqEoqUgk58ttLZfUqGp1HbdCtEMcXD9SuKxuvqonafvhREx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UE2evBEpWfiuYynRMfqrzTPrv17jinEZJX2ZcgdWjzZnEXgof", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cat-ch0017", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82SACiVyKVErFFJvdYE6ZtjQ3ApgM5pJxZ2P5vkvAgUaufZaBm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XugzgcrCSoh6xbjDCf9byjSqHXcyyySCnK7er6BxzRUcLEjRX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1406 - },{ - "name": "bts-cat-ch0021", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bt3Wbpb3qsKypL18eEQNRkqaEx8XGtFpKB3zYbNMn1Uajc6B3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NjJ8mcjXJmrqgR4sAK8HTEy9cshFARBPz2VUchm7ZYWcbTtt8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1402 - },{ - "name": "bts-cat-ch0022", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5p1PJsTvQsHPohLwh8wTgetyz64gkbHi8Zi8mCTMpNLM4AWFAo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54yY7hefxNJfshzfq1p9xanxVaBezYf66wzMFz5XitEUvS7qLL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1402 - },{ - "name": "bts-forklog1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZVc2t7mmkRcET6GRPDvXfzxHzVVWXhGkXfkf7JNHr6G9o7oVD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RnYggXm3JbXZCW3ZEbx3wgPjXVKn5bKDkuFuD2aDWQscTBrn8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12580 - },{ - "name": "bts-db09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DNpEP41GbJtFsgZFWtnjeymU2UgeF5ZSaG1KeWDLP9BxtCr9g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qJsRJpafjgbdh272Uq5uUkXVAdRmGMHZC42fGq4u5ErYNQfaH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-gr53wtrfgf75i", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d7RMxQDmibexc1HkrqL9xLZ4doyDs7oDBUQZ5CKPM5reYmB1v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S684HvTrjb5GtsahELp5czifEp4bsoMfRD5dMdqJmRa4vL3zX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E1z7TmqtaULs5JeVBMTDrF7qsppHc2U8deHLn2j72Nfpi91r5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U6V7wnNv7FRz8VcyLdvARCqYgVzQeKiHG9aDBAkKUQZsM4zxV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Vxu5ynvXmeyUrN3DiU7mx8N7mNA3F28c7WrcC8PjwUijd4WaA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C7XpzUyS9ADtFqhTWzEqXqTrr58QFaX2vjK1RPZuFrNeMYXwp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mYrZdHNDXqRQSNsJrQoCs8sAvsSPk8Ki5pKuxMyvPfERK8XFr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jAbDiUdvY5VPLvdVnnranaD7v4yACQ17nuneaeYEXmTHResMw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bitshares-user", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DuL9WsSTqVJExscF21zQ4mdaxrFwcTHC8tLvGhuxhQw6JRt8h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yTDUp5MWTBLMo4jN2QohXYS8NqjAQL9thA8bZ7H6yKp7hfVEF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43783 - },{ - "name": "bts-rahasojp1973", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vSKVuKYfKpmB15NyBR7DhGDoAGCafenJFMMeF5gmnAnxhWjfm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jBLByJNJvVRxq3motd7koWkajSGttwHjmNMzTs6i1uokKyCAw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-abbs18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BodEk1fxQ1xvzvopeYEjbMXEqtBjnfa4j5bUA3gcjEZCWWQE5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rYNB3aQSCoMmBMW111WUTozt5o7QManD2eQaYX63DQtUYDPh3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-h2g32j3h2kj3h4k23h4j2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C9QRUZKc1YCXspDVNyuyp16ZmYSxnzebajApMPeTLqsVAB52C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sbKWWSSDC3DYNr2RMufmfuxxMMKK3UbFXBVpynnJUiV9ya9PF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yMeYe9ozWs6vsMHEqgt7JtkyVJJz9YX3pgzYE3hnoAbnmHihD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vvk1rkGxSFXP74f4kbjxTHSzhK5JmnuMRZCpR6pQkGqqV22a1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ss5yx9cPUsUYDH3WBdKf5wuREYEmfhK2mJ1fdTkgKo5YawkEN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iMYZgX6B12LFfSeGf5vQ48ukLjAXYztu1d4TXEaMLQkNRLJCL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87iiqS5U1wdTRCNK8PrzLKAYFAsRzmDM4PvZUHbByud8wcTBce", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vyXt3zGbqVJnY2iEvd4q59RgfoAEcrrtNuR1aH8VWfSGb77Ya", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-abbs22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yShho6DUY3KFBbWAWrsQH4E2ubRnuSRLYMDbnNSwkpPk4vUHZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FdEXJF5QT9izmwQsL8aU4UxsyXRm65dJWP4oQudQrwxDYZJhr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gh23esa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NE4wQCt8hmv3X1jt27aT62WYQLDGHZk6o1ubcTo7tXDzALXgG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LZJFh847Ev4aGd2FRr7JVTWxuBFBYghKuCCyS128DH3GVLoK3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-abbs23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fuvyDad9ZfFT9LvGerv76fnf8zYvoQsyvTpbeoqEcwwFpvmvL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u4W6WcDR1znxoLrxNHGhKnExToMM5RM9duDUW7EhvmDWomUEN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-iloveuj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YMzfX8APKeDNr3UGaV18eWaFJ5XFSy1EZb7HsyjuNVWS8v7qA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7T2aAPJpkdinjX3Gs1P68JRd9Tn2R15kJS4rrKXw9QpvhAPVYz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-fhowff0uwjf9kfjsdfvv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U4QRtVNf55grgUx7Zp2NNenTESVYrn2sSmVz3jQQTqgEGnzxp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SdVRPoEbA4MqWRzQj1yZ7SU4m9xjc15cVsiBuwCrJFQBubKHG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-my32good", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75aJkGSCs4QHctxQJk2QXdMsJjCjR1APrfESckZbzdmJFBdA3P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89KdNDYo9fUB5PT44JB7ibuCnpKvwYgLUrsnd9XAxjp2v7kmYs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-omar2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ecifnuHh8bi5Tu9Cc41RmQ6eEEVGUfxjPtvffBxCpkBA6v2ct", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zUXUJq845Xs8c8gspYghDguCgymtMwii3QfXgyQotypkc57Bb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 302 - },{ - "name": "bts-habana34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZBmLTtYVGVMwP4zzw8xDEzEkU9m9LWREzqGH2SwcKsAEkYJvB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Z4Muv4wHkkJmdWdy41EuTb1J6DvP6G5wr8eUTjz6e5ZfdTUx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cat-ch0023", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RzLxTKL9PZFLiupXLNdpa89uix3py7sZHS4k61zFbVMtvb186", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wTg5L3UTyHYd76AS4TqWcEtA1LFP59ivMV8jKQwipXw9WZKJx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1263 - },{ - "name": "bts-stels160801", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fPxS41aM3DckYRAdU3ubTrsqhu37huFeywgBUPdnUW6P2qXfs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N9cV22Ei2Y6s1KcrrMTpuJADiWfS5wqAYaN3wbkcEsnfWbJLw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-cat-ch0024", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EGgS2T4QLJdUgncVxdn8VSLCkSqqvEGhnfpt7kws4cM9KVuiW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WL3DTcmNwMkyVfCtiBQJT2LMmfNwQefs5tCPotdQ1QaA7pPR5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1263 - },{ - "name": "bts-cni-divemaster", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A6b1LXMEjRq7WGRSgWnjoZt3y4eu27yMS4PJUB8w3hDYuyxhe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8SHXoQn9ctaZbLhYyGtbAP3BAHdBnvdKx5MGZNkq6q9mD37TQT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-ro83rt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gM4g8bR5WnPJAdRcZz9aAe85LgCFE4UNkAzGfWGioxjiuTrxu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5khDYfmMN5BjieBdFW4zyLVcMWLyqRncw7gkSQEG2ZAWWsbwYA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1234148 - },{ - "name": "bts-the-freeterritories", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GkiJUPPGoJw6UgqSMcWLAHtJtbbGfDu5EVdH5aQVYHAYbHh8H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qY9FcsQ7cof9kcrTq1kezkHc9uszo5nR4udu7uiMnbp8VCqhL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6134 - },{ - "name": "bts-cni-cagney", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST743C2oiSatAXc49Jf9z9WEkyp87iZ8Tv1rvwHo8P9pB2qTCnch", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8k7623tW44Bfcy9yMNu5RFRaa5PeMqgAoutb9HrxTmLpoGseuP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-b52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kvNLgqRN6ck4xGCwHPwKzCMDZesjNcBArBN8UHHgYzDvBqivX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7x3qbguza5YY5gfWuxe9KaES2Q9zHHD4QZFXp9ptR2C9Pr1zhH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-bamos011", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xJcyZBojue7G3bABhZ1W4KzYm4rjyRwbRzP1xFyZ48HznJ4GP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56or9eGwEpp72wRkWtdPtQLJRX9gMtDkscV7vjAC46jmGZKhKD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6282 - },{ - "name": "bts-cryptonator007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xkWLNennUMT6hfAFHXHVBTD5WpANv9At9LbxoY5YFkzBqkLwH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jfvG6qNNuJ4r7fJUmyQq4ncbyqNH8PMHQf86T7iW43ac6Bg2W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28386 - },{ - "name": "bts-f3525", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5btK6xFZ4A18V2JYSM8AGkpRphjxwnC2Q3mzYJBy7c5SFp7tea", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JNMV99W7FwpZah75MD6poWhUX9XnjA7N39R3ujxg6jNVodLy4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131 - },{ - "name": "bts-otnasus12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xMvB9Nr3cBX1qvD3zadC9Auf5uh8XDGTwYGvDNmq1rQqV7Yr7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lhdy5d7qXHdf8WKo4MGpkMdoJBCi6FvaRtcyPWCY5rqQV6eEx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-db15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89AxEnTYoc4mpCJMi9kPNqs4bDFLcGfRhimSbdL27jRek6MB5a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST611wBTAkiqTmQoFf3Dsh958jzk4JzHAjzsDhiVRr45JX8f4Ain", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-otnasus13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oB5z5sUSXw9RVvoAQpckLD2rYUf2oK5GBNmvX8UfwQeERD2RY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L18zUEhwg5finhSUg7wdyzZfjCTvrtyjEBapE5q9fHV7Ggbip", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-wallets1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vKEZ6AWbjiwE2T6qF9hzPsc4VEedbszCnvwGZ26RDGZsQojBX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yb22ftwWmQCkS31T3fdmMncSYUjyA7rLT4yGFksziJShT8UuC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69dkBJGXBef3DpRaSt4AMTxpfDN1oMbPy3mZg2EymK7raibgiS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST761xgg4DRz6uS5SnnmbZGENDd7TQ9q8Y1j177dJT9kTvgDocFa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-pingwang1066", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6daKQ1AKJzRR2YP45o7TMSsU9w84h9gSV3dB1eTNETqDp6baLb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qDGw3KVooa7axNwgfzfYcHzxKsw2AzGgwUKYCULevqQYSadAE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-wallets3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6B5hjkH9bL6eu5fz5yomumV1sZAspPKgR7Ws6F1orCnhXkePuj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U5CYE2mQzL2Mrs8ZtBBXYCzXCdiFK8CxxzTYEmpeKdhNDsqm7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-otnasus14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bJWqNQGnNmZ7wszybaxKwwNs5me9ERGeyscXXMe8WnpBQQ2Sr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PouQGjXnFGFhD6DeHF8jYWfEDvDcKoR3by2ZosJKnQ5UTpxst", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-zeroerror7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wpnCrfnY8RzW8ZtgzyouPotLzsKxAUNyH1JSk4dEzLhdv3PQh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zXWnVhCjR3aDKRMdferz59mtP7VdUBHgvpMGZnCrDjYn9F7NN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-wallets4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uJjBnc2FDs7kyss8s3NuiN3qTh1Z3JxVzwBvcAVXQwcMgsY2x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WQmL8X4RW4tygcHtCfaLLBcgXk2mjdY5pa1PeRitrqJwzcV6W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LdsjG4FrS11uFaHdxyTmVXyBZRU9RA2KuoVgT4TANbH8y8cCP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XeC6ToBt9FNYqxwZVvGsXoNiNz2QwzigRd377adyK6mCUsset", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ADnZtYckjkg566pzwXTkmAZ1X9Tgr6qSY63DytEFE5BBbB6aV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gR5bFgg9MgAnGjW8AmJpUc4mYrFVmuHo6tdiqaoXdwJrg2NSb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y2HeiQWvpzJVuw1XkjaU7ZjXvof6HG9TpoQmTqjxyqQWHq9jg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76veR5cwofrjzBhCMkX8oU3Dpi8zh4qMtz5j2gdULKRsp3iH5x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-a-ndyatcrux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53BAasZyguHDkdxqXq5jkv79HBxVZLHLEEakFaYpkbfTh15AMz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DDwsqXvVQjZBBBMcrKnqT99z72GbMY3iBb74rrwwDBPuZTNic", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 93880 - },{ - "name": "bts-wallets6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VyEwL48w2J7us8EznikfAcGvqyFQDivTYwmHUZSULNBwstqg9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81Mmxq55iiFnSXqhm1q11uqNMbefLeY46zdc6FcCS2yAbdM1eF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-otnasus15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fbiQwQf1mkGtJPar1qkFmh7kpfxWbT5vgBcJTPx2n1B1A2425", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nGySkNos5tcJUyu6TbC4SitZJJAituu7B2XWwqk3NoGVvnbj5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-wallets7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y1pSJVQdrDt1QTTdkaT62TPypY5wvrC2MAtjE4db4MChciVgF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nHXWyyGiZEPrKE8UbPsS88iYDdPAHvYy2hTcZs7f8SmxC4FWe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dmHtRftAKa5y5eP6GtYFXju8darFNAM7JFTayHBAET23T7CAx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FZxgiiFVrWVabGUKyFYRGSd2Vczd3xm8uAvKjhgb5BrAzDBiY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pu9S2VAjb8WdRtxv2dGm19KsdmRJZdaMg9qbA9GAxatbsekQH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78dJP3j3HEVCDFxtAv9LHRiJwbFsyytavShazE7fhT8Xc1HmKf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-wallets9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HiuzzZ78djU9hMKXNTYNNJtD1pHG5o3xXdv12xgqRVcCcQq6g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qo4a433jbu7ZP4ytbv7vEkwLSn47176Ts3wvH1xFLdmUEAeGm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST571bx4LDBfEg1r8ZLLkZEszU6xmeSU6rvtRr4rpXKGpmq9epXj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p6pjMBM5pSVEnQCxESh8QAeBWnvP2QYYUuNW65yLNxagqWCNv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8G99vRd26j4u4U6WcCoaYGpJFmUihZVvHCUF9hoPppyEQCxoxu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78zAG896EDPfNVX5pJY6o4UuScFErKvHWHx8VMBhfBnQWv5xeo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CTV3c8KSNwNs1SQjPJ28c1HqzFcpc97sSMKimR2tM9hSVRGUq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7be8M9BKDjbf9LKnH3jX1ZJSD9qDnmTBd2Y4fXnGbNWm5g5zSQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-wallets12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62c6UJKxWPWPh1XtGbjiorRCfG5UEZtQupi1srrXLtjwZbeheB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZndXyBx6iazYRdd2M9tPBqtV7FJmL1tPH5sRmtPaLMoShmisZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dAX6DTZD8sUaaEgdDipvs7dDdoszjeMYK2urjMkW8FAbWv5jB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kVxjfZSC97ncCNV94H3MhyJEoPZcTENFBsZTChA91qJTNW3rD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8frQeyk1oV3VtmbsSvtgh7v7RzksXH5HonZDmh522Q4FtHKCyf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KPbv3CUXxpedxwHyymyyGL8gdHbECEboBm7oxwhp4u4QwkB59", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hG5wUagH1MzEyKJWK6C8VVUfMrGG5RrZiqhVPEgfg8rNgb9Vk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89uLFjYbzyFDoQGbrt7ehCA4wPgHK3LMcXJZoYFhsQCaU6Ra4A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hM2kJNPsrdHCyttRuuqVSAkCpWhwMYwiFTWrQ4Q6tCaAqn3ZQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7urfHeECvJ2vAbSzqhLkTHLQVGENCHt5r9HpLnBGLLnXunwMB9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sHBUm5xqd4da6pE36UzSqstAzxdSUcc3vumifPH6Ub2n8yZ4d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t4tgsBDdtMQKJH3fSukZQHsbT4hUzMj5fK37WKVuwKwsfT9KX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AVYi8uuHUK8bbpDdjzU3fF2SNd6HNRMnVMEMgKwD1Th7ZbctQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dz4WK5nTSUapf7ZFdm5FX8uZwVwwABQi9jLiWaU1A6yJjpEU6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8akUyKgaD9v3vUQr61d3F4K5RCdcoQaTmNWcUB85SXsUePV7Jm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vcB3DWPcHxDPCk3zXKRLWny68nTMwii2W8MtgH2ZQmeg1m6nF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 181 - },{ - "name": "bts-db23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dMVrwuTc3upLjEL78L9yuH61TBPPnAo8NTzEDpKAecw2fMZyy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zAaGLky8x3FNedFb7sB9qZ9rB4YDurJsQC189F9336MS8pmuv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bPXxEnJtxTWqv9nJkvVn1QRFbXk1aVMgorW5shHxSYCPDVYUg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X3FYxhwVKkgZekxxR46temw9FLJGME37eK4gFnm4PSzWKNvFm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QWPCq1uujiByEch1ivRTxPd63RM5a1z3DqYK53o6NQ3ZG3PUP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nhGCs8xaUVJhqwzwt4xKjyQZLSwsPxz3Dmvk12LbedFWr8poM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MMKRVcrhtgPQDrNA7HY3RYX9DVUEVT6xgZF23BAaAHfrgWa4U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gBEju7dYPbk8uCRnd1DZ3j9aktgdvaUfF2uyu6nnFedK19raP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5n2J4EHuLV7zyinQsCDAg5FQysRE9kur8cLYDJssQVCKfBBDH1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LBiXugVpV4uisQya1c5zesd1rtXNXTd3vSq2137Bg5dVEiMdP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vDzVXKkfXTu9fHLLVPMBriHh77v3z5faSR64zeZN28fVb39Rw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jtDPLH6UXCuopkds82D5oeWWbgvwScnFfzvwgvfqx6dykSKkB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pa52mqno5ywDU6iXWDqrVCW5yEcuEZzXDiamvUciqkenrNNYu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iF1AsrDtutiK57DmbGi65oCCMSREfNEc2dBGS6vKzz6eT5rwg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84a8tuqyJv1CsB3JDyH8NX1y6HzcMgGddCWz3qG5nWMh7zK1r8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F5Ffx645vijifDBwBS6YFZcnLKEsR5BLgLNWjFHv3miRXTerQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57stravCAPW1fHFrBxW4UMJLFCb3eGkjD1PNNGQXEtFw3yyJUX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST689DZeewNMajEV5Pvqe4Gmx1PZeYdxvAkKH88JjqaALFsT2m3C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-wallets22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CUNLm7jo5jgn3xDVyBMTDeEUWjm6xeqUzNTeCLABqBe22j7nZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aYRZnARwKf68M7MAua7tyyawVcSBDP8TuaFsgEPgTJkyx2dBj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db29", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66hLmsAcmDxx4YxZ8wF1WLVDq9QUN3ka1NmtEdshP6SF9EGVmR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NQQLhDYt4yMpKGUHQX8JAuGDfkx9zyxJBvjaVp6h7bJxznCHb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db30", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6stgXSqHfFBq9WbCwX6ijgYow7ySftKQstpxiF1XzhYxv7j693", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BzWkjd3ZkoQEG3BHm8vnXYkVw5DRkccqavAoX7HustRw92h6Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GXoiKys3A1mCACTaGHqd6oESSuQtTtVSZspyEG1xmGaWtDsMR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hdpcYkBLZNYYJumvBBqH1g1tqgLdN8y7XhZSadHpzju7KhcaY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db32", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AyNGqTTTr3ydiPp9Zxdk3ri1SmRLM9j642VfQA3uDNQwQWNEy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53eayPy7AXdhwm6XHre2FP4qFJbyxZ7pxnP1aQ8Z963A9FJ7vk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53FyNFeYC8Uvq5oi9Lmiqc4KVicdYkifnYUb53PgYGhoxac4wj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GpTRJ5PtC49GW2qLytmYqES4QG24QWdHYM51Q8Y6DhfBJVYyd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets25", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST564ha4D8C59QdWQevsJ72aXWGkBXemfsBkUZYSErchAFC6tHCQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5URUHdSzJmo16oQ6M3Anca9CzN4HvX6Rf9QXNSDouf1LNESZ7P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57W5oijVGDZfa8SD1vvrEXFqup9JCdrWHWfNQiiXWcoQJtcJwE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U5X6NcHPSe3mgu5m67XJyxNZy5gPEu6hy53FizJu2JK2gyyfS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Rhijjo8MMoD6gViEFjNVTUt1RGfvXZaKbL6vjr11QZND16TKs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T4ezSEQ2e5GLAVLW3r71YLMWsKjCbrkcQdwMkXkfLAfyXxycx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db36", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hkb8XkLYEq2qrfgK7N7sq6bTsf96ZvnEXhexDUohnSdFVMSPF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jNeNq25kpztd8xtXuCxJeFuH1RjaftrRi6wsbTSH17HoeovJ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-db35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZTJPoqZrPYghtjRraN8jaeWFWbjJZKX4ngvW5BQcGvzpySVaj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5znfm6J5io33nyL4EeUQjhKzwxgj3eF74aWv91onjHhkFri4HF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o2PPgr5tVDqR7wae88FKAB3A3LBpKDQK7iEcBeE7GjwxEJtdD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ojAKQZ1HY2o4uynxGcbKTvBVPy4VoMkNLUxpnRR2hhs2UkBzS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ASkhREs2mFfqF5LmZBeNmWbRbtwaxf5kNiaLW2ijyiXxRpSBx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bTzapkCrXvAGcpLzfF7t9KjZiomPWJEZGB4Mz1TDryo4aqRrM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db38", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59zPyJSPRKh5RyWkMi2iJsPm9unymzyUj9V2Dq37PtKPmuqX1H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5X6Pb9oV6CkTXJDAVY8ihU9RTcmuevXAn72LpNvxiGthiodw3p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-db37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JKVBpM2vqYAX8miiSq1fzBnM1pDGGKmswiKZQPUxpzaZXpCa3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6W21BC6hQTu1QbKgcdnQAsMqKiPJ9MQ3GtGjXKsVL5dYeEfquE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Lj8CNYRhy1r9FsnbmU1vjVsonMy8LergjcJukVNiK5Msw6UHa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f8eBQoitw17To74Cfdwqju2iebCZzviiMtwGe9tGYxPLoHF5h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RM8zVMZ2CLyPwYw53gNNnYvmFRQLCbFc1XiE8XGK8cv9g526i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ioeVAaP5FFyTRei3BHVcLnr331tFvtHwh7GNatK11z2GuBBQ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db40", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89wQwkpGvrNvR99WQdzjwk7mEpBrEvjkkSHvKh6imHJvF76ffe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dbCtNBMQ8AFHgcMPrRMxJxEFd9sH13nETcYevgafS1ibjvFGu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets29", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HFwPNFv19TtohViosxBZjXdsqGFEFAshiz7Rp7tNZPLX18dNo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52vgXxsTdZT6kziXkzi8edhFQuc5CjNDvxENCPNUjcdVH8yLdh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets30", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d5Q2VMsjePvChamNw7pqArQyMuinNaH7xUYg3daEJq6snh8Ag", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kJCwXHiSXFz1MRVCQdDNbPKtSYUHo5ukidZJux3X3j12idUQ4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-qq574243987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LnupJ3ab8RiJwRwNv5PBwpLTgUJN1t91w78ykEp1cftdvb2dP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VgqVqT8ePVQGPm4vHCbhb3jtdVmRabY7sgxgxpwyi21qhc3Eg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67RAJ4xcp6EtpGkKCuHPhfrybjRhVwctRz1hcEoH6FpJxcw9GX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MHGFVB7W4n1F6DuzZNnsd1NFZDGQC7DgdSD8ksDzWVqCitts7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6moBmdairZZ6TU4kXj688v93Hx6tBUAVpezkpBFLeYvm7PyRzv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PKjEnus5NshrZmswmv47piERmDJQBgTigMeokLKNwSuuShnNc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets31", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8khd62VjuLJnH9q8ELtbNjQZE12gmuH4oZH3gdiiVZC8s7dwgp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g4vPxmFapHA9zzz5U54fqmz2YsbEtaFvK7isenx47BjzSdLNh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets32", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CKLo3fRWbU2CZgyRxbjrjKXXdyePPQCZS6FgnFvkpLyKjkqxc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST523EscaEegVY1DM6saCvZR9n7CKrCcyYjpvErfqLL1TPWeFWYH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74c9gXpPeq7itPEtk65Fhv13pwhxC4rBWARh1TW6rLUguaTuwZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53bDspRZ4ndQC3npjPePUT3sf2tZ7TVFKwuq2sCBEV8J4GiZte", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QzCdUhptYJn1ktKk9uR5hRN76QQGFRAVxhPKftasbNKMjgQZQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qsMKwGb64mcRwusxejNAM2sRx5GEepe1d9TwZPDZotjJB7Xib", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST715Mx3qCw9gdji8oLKhdJWbQSTaLH9XBPfYdaJDkQVXmphG13z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rw5S39iwhyWec72PH9KRdFZZctVD3Ph7T45hVPNPWPfsDghFp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61ssrvJzWkzqMve9xaNZx893oK2G4w6eXvzyCMKVjyQVrNrQ8A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64We7B4vFf4KQiGWUMEbDAw3ZB2zGu6XeNYsGDuayunDETg6u6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db46", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vXrukDXzmLGiCnU7DSo1iUnwRqcvHps7tvhYmcJFwkK1ofFzH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xGTR2xjTMXNkc6wTooAiQpZiJfHQy1SA93AG5eyW74ua21KvU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-db45", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vimF3tC7EGmY6nrPrijETTK6BmqAnZNEmJWzfVCpnxhChtWjP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HPp725niQphjQohyBcQUZMihDAGhC5nSAAxEz3u5Lp4uYmFxS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wBWSXpsnqNEU1Y2D9UN8ZD6uQi89aMAFFcqnA6hQkcmjgDN9d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yqorfiQeJBqWorCJhPtnfCx7MrCgtzauMHBN2bZom4jJfHYCh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db48", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Dmjw5RPj8y5s1fmPToYwSqmU2L36reFyzv8LhgQJKCpZyXXGK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ef5C1RDMLBjicxDcupS2cqx97pD5Yjkk15E8MG57yKgsrAfTS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-db47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jt4g7kBL5DB7Q6J6K7EMJmBBVNYAXcJQGBVud4ZHFfXkMooBk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zkjmym48YSMXcgzML8hkrfRfWD2anHqyJ8KNjNCGcgMSVhtke", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets36", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iJzswmQstSdYa814iKsk4qkC7GzDFS1CKPswFv7yevyaiRgHC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jTgq6pMAgJ3G53pf6D4yN377i5Nuy7QasRrGgAQ39iddzSbBr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MxVPBiGVnwpaJyg7RDLH3QnHKhfVqFsjAM8pj66HNWKDSgLSP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YD7BgoEbhs2HABX8uNG6yuCsNUQeLPHm3DZ29YmbfZ39wqGgx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets38", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85nK8zBqJwHHJgpwTkt9QEwKd43adHHi5BXXFKh8XKxFX4vdAQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DT2V8DJKdAgUKQks6ifNo22dr85BTW6wwPnU2jPCZtwuXwusD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db49", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56ZJPLukTns25pXUWU3tCqthXsWziN1t27G2ikxfj2zvWkFTR2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mg9UZ47nCJgoQyjqRGzscMFaqdeX8Z9dNoDuwrFSzfmYWHA5D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-db50", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iRHHUVQVS2swQmHKsdhss9gBSw5rTi4Pw8gyvzvfGaHhZhXVf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SdRgLn2a4uwqPMe1U5PneXRz1Yeqvj42Xj2a7W2uwg4mpLPdV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j7kH2Wwe9xz1Dfz4HUhXr81QCiMcBadGCRtsSSaHqtKqeiTkJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8A68ppUrSzNtQP2zk65UXcjrMTTV9C76WbSv6YW1VuNMBQB4eL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets40", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zjKAwJsCXmaY1NQncuK1ePXEp5Gb8GHXQC4QzEAgJUQJNzehY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aNJAUes9DPCqpVqREBYywfUR8ReectxQTsECoyMxYyiremTY8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cot7m6UBRiczdwzjT4PLfMz3WydkCrTmAGV7XyuysfBji6gGy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eihEFSmkZFhUUWs53q84ycUpcdUT4poaTwAKZGcLmUdp7kRYx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78myQewjcUxxbB1EP3GWvWFhoXnCXMxyFYCB97ihuhLSryv72Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7awuYPH8djsiXw8PeK7jEzVU9NWyPY8kpGHXxvR2ApucNaHnoh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db51", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82vo3kobdEhWFFJRBiMHhE8HyUNNmeaaxJwFgj5UwnT2mrFieM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69TMD82eQvAUXyD1CNgtHJZNhuKS7AeNMTMGr2tMaB6ukuc1xJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kkQ4TtM3nP3CWR5p83bnv4N99suzBtAVAChMxwoVuGG7auttX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kn3VVUsRTT244Qin9LLs6Ftf6xouJVNAJ7fzdfQZkjEkkzgYj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bwSYD8wkjbbRVdppBPgUFpq2CjibGE6MiZW1ifTeqqeUC63nz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST769yjzEVGtinUZM9oXKP9xCnEmErE5yRiGH6jhUfX7ZpxRyZjW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iPu7kzDNpZ1dn1DqCUNTazzVdD2wzWZSkhvRTLD3wU9A6FMpg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U4RVkvSpeuyBPn3efVrhsbYXkdyuMbjC694VaVQ9eNr1wyFw3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-db54", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Co2zg7eoMqNCFPtS91zxYivqxtCqT7PuXPhWLCywL8ccY41UG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7G3KiF9bM5nAFM1AUKDgjtvedKQVKxqueV7UZrgbby3ovRsZtJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db53", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72HoGHvnu21YmCmLrxso11dDvVwXmC2ePFtab7JXufr7Jj5Cvp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kVMZXCqJKRSjRiQ1CmXVNAUi6gWMnAVkwgHoPHpak7QyRULCz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jFRfdngFVei8JpRdURo5YByAigbjCZ3uN2N2VrkJh5dURWAhv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JogYXDbd737sYkHXZzF5gVwHeF2ukkPrjBgN3HDBSvMfC6V4u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FF2bAzAAEux3Q8WANGJiCMeEDLjkYrh9Bng8GqNFghAfvqEH5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vkoRNYwQdM2oHhYS4cZbgXWPTqdzDNMJYFh8ojcLMGZDXSbJH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wallets45", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wnDEgFtcniwW3wyrwtVqVtxjdwaALj2fnMM4akhwmFRpbicjA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79vJiinNe3b9dAtF1sbjfibAnPdtMHfgJ6UiWzJxmjHYN89WDA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets46", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dfQugVjmKjEJSdqHfUaUBXqpKtUTKinrewtYNAJJid2QSswdV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c3Dn84uGkV29NLdGE9WgLWAECMhJuSnQtdxkoJzZbVMWzDXfJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gr3y12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BHfVvvunFLNysGMfkJV2JPvtjHV72NibPbi4zybdpbd9djomk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eM3BXahr1J2RitJUd8gQVNxjoDHZPHDv5HvM5G2Fkhsimbh8n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5z3WmPg318wzsAn7UYHu19He5Gi9rqzNfjX8VDh83qNMoGom5w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i4XFqEoRFwS5kXHzPHeQ1A7kRhuH4hSCdhxVHemXFuaNsHPCk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets48", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BuFZxEaA6UvUHbRBtQTrjd1e3QeHDzTyMbsCKhDVxTe32etrp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a5CFDuFnHWVEroENiUcG975yYsNBCK2F7EdbACzAnvQZbjsPK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wallets49", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ENd1UTMfTRYhKGCbGugzTjs1XsxgQHZMZJNNrBudwnz9BUrrV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SS4p82tt2UeHApKVerd2K3rVex1MUHYYfDhJyrM84uJzKd6iD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 181 - },{ - "name": "bts-otnasus16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ATgcEXMRmH3qnFY45hTvPjiUYFw7sniymUHuoMyeirpyA8M3v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Vx6hGMEpRaGoiC68WYbn41gWae2J79zQwbLdX24EWbm4E24jt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-plouise", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KjyGSRwHcKqMvoH8oeVTZQEadcuFQMY2FC4iLN2mvmKppdBJp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6e8PNKwgyqYnXFVGLKeRizZ99eZ2K1dhJ3s6ZujyiP7HCU9fF1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135 - },{ - "name": "bts-ioannis1958", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W3jziH8JW3CZxVnmF7dH8WG1zeqwws2x3EU6ni8QRvk5WDSAN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PnVqtRYmQRjfwuAxvzPAX5oAC7GJN8yNSAYXuMgqbdFWvpHbU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-otnasus17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fAVGdjLgFwag1KEMdUhAA62WwbVyWzMnRXXTh95ESmNGUfFnW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bWGsJ45QNhiJm53XzN99ZZH5xQ2jNt7B6S3TB1Emtr34DVqgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-otnasus18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qv1APzzLAHwBSktf9qM9m21tHzTSdDGtkUL2U8hf5nA8J2Y3Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PS5XRcghKyXyaidBExmrcD2VnCnmZjp8AsKixgtZrJP6UJhK4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-duecastori2014", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MHHiocHv4Q5k5ibVuKh2g9ydbtDSZkWtNkVvNEkN6efm9mKNu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KHBCL8vDwd2xgpphRcL5QtNwDC5RJEiLW8SDCm2buNr9xD7bG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42844735 - },{ - "name": "bts-a1aquaticstore", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-jambo110", - 1 - ] - ], - "key_auths": [[ - "TEST8BuXDDeTkYQ92jukmT8y7ak8bJqpTwWKLyZW3wJRQxkAmS1Q9Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ku9nXeNskFeNjH6JtC31y1oows3nFKKN6vVGBUgKhXR8qPddL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-scrawl-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yGn527zuXm5n3964op8v9SdiH93WemXVrcgdA4p7wPvr3mhpz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uMVWvNPnkWyx1YufnKMrLMUyfpexCAWp6UaLbW9WTo3Bjnnbw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-vine1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52Tu4p3TGF8hNb2ZoWpbkSGEyN2aWqM8SzAcF6J8n4m2f8uSjG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Af2sSvKfaivRkeEmkcKRvbG4fP3A2jRMsHLvtVTeq3wsvQEZZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 845980 - },{ - "name": "bts-iou.aaa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MGHXkq2WRsdSHCjGdzDiSA29JGLp9UL1fXgKv7Q9UZjFMh17M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZoQh4KPkH6C1TXdM8DuVjgmy2rnrD52iZwy44DqsJSj5BvH28", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1842 - },{ - "name": "bts-shepherd-1000000awcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8M3CRHuwoaCkyTrtFPXCM2H7CQZZegDa2su68HSep6fqMFhES1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MZBy2wSrT1nLvWERAuVESsdvLttzufe6jznULfyfpWbhEXR4b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-nagarjuna250", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aNxMNBVPcTFvFhm6vGfyvYQwQE4BkTHj4rY91iUeocSPbgJEN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6trpohDGbvdr2faWTjdkfDsT4vEJUZ6Gu29KNtBZdkqjRDQ1j9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 283 - },{ - "name": "bts-t8c8d8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j9e6KvgrGjTioHi9S47Mau8Pw5iSA1qupV72sq6YB8JTgSVrt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72Sp1TfceT1Cyaa7RcpU8sBGurbrtqJRgmYLWQKJ28P8WCeaA7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-w5power-sence", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uxnEXxPuvT4jiDsdn2VUxADge7UxS6s9nbWq4WQC3wVkz7VbB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dmUWguVgNkcbPMAGvjGQRE5BsCskzXcuxCjejfPSFUjYu8Edg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-hypergol1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63nxmMfaFiwQigoyds7E7YjWKrhp3jauoxPP8mj5xbzMfaynyA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iDJ1TS7gfKog9PRmzBg9vcJGQ6kckKhUTWvzVFZjmdxYmmUie", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1476 - },{ - "name": "bts-cni-babygirl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZjinxTUB5fxZzjrp9XXAsx4J62gSJCKtECauK5Qao5mTaq6D3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4zwUnXGGAz9xuBZKgfGQve1LNELPffebnNTHVgwsdmw2Byt6Lf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-ms66", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PZZECs8PRae3E3dHhmWQfgPX2evYgucerHwjAhztmThhH8JX5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6axG3fVPo6PoDxGu25CJhmQsrjtiXeY5eEwRA5Fs5m7psf9aeM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-cni-baggy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hnsuvdjMVYJFe1YiCX71LZoKpEUZu6rqr36XFzYkVkgCRQv8K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gtrYy4j2x3sZdxzfpBhjhk2G4HGnQpdTxSAS8w3PMNLUbPd52", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 451 - },{ - "name": "bts-cni-freedude", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST759cJkJePtLnj6Ph5k5N8cVXBEi3zdDgyd8smyXTUXjoan6AkZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Ef1UBdSicXmmNWcMeirmP6cdJ6Sa8Z9aBb2gK29v9cAk3VmEw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-sk8tebird", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FGexf86uvGoRKLbNuJTjhorMN7rRLzKsHjEjBm8W4MVMWAprp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FR9AbH9AP1WDGn53A8jgudb5FrtHnpPfvTAaJ8ZB8J1Kzpw1M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-nathan-sonic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST836SuioeYPhVMubDeB6tvNNCjoaDgBhLHzkSQw9V8smYAEAFHC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RbGevq31Gd3L9Mqxhha4LfkC1g9gieEctLUkZCGHZjjgn62fk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23030 - },{ - "name": "bts-bill-it", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SSozr4VAmCkfDfBW4M39QyBL7W6d5eDXM4wj7zLvYta29Zswk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EmgHo3DncxGbQrDXoiiRkE5CWKXYtdDhuKreDqp4FmCXqD6Bm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-db57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51oPKdXCNa391ZXcwE5hyY6zRBhsFoWg6PGqqSyznTWXw2vgWH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hDnBHVdNVFf4JeEyeo6HUeArWN25rApgATYpYMc4MRchxdJS3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-iou.bbb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BoTgHXp26VsVrUbezzfDvebGP7zyeWLStvCqxpvD4D4FMYBEW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7v4XxpekMmqmEHpKRj2JBQmC2KuJMJEFg23JaeQqVKEQmdVaNJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2053 - },{ - "name": "bts-iou.ccc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53utmGNPJJvQapWNMMqj4Egzk4fNU61pUoHnFBUvQj4ZmX87ST", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fpxyLv5c6P6GYsecZ7FFiddeNp6cPbi8YmJguuQTFbKKsxNTV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1866 - },{ - "name": "bts-iou.ddd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S2fT7iQhUtdaVi4h62kiaBHEoYTxi74YdLi4YSuAPkAhfa2LF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yiCcVkiaHzWkf3db3YmhKgfMpkbLikRc4BC5pouqE7o4X9dS9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1866 - },{ - "name": "bts-iou.eee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wMsMrn2EurYtLHj7ouyHu86kaqnt5vkL1W93S4Gy48yexPYqz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Fcc33Vovs5JFpqDXXM4LqESdV9FBPdTAtr9YUsXCcGCSp9nnV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1865 - },{ - "name": "bts-iou.fff", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dk4UvQY5EUfob4KRftXZjyrPW2yDD3gB6SWDvQHE2Spm1Fano", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7smS8kJZAzZn3esnAk1DmTwFyDaqPm24oFPE3hVqKg7zF9bGfF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1867 - },{ - "name": "bts-cointroll88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E1NBaGKFQhXrAUbuXEjqGcyP86HYcAMg4LLhFSJ8AkVdZqyUm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PsGpoDTK6czLVxv9bQ2mRiMDTn5HzmR4ZpVun6LRutiKrXVfU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75361 - },{ - "name": "bts-buliaoqing-111", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WHJVUHqV762AiJu9E2Lpi5sMeMNfdfmH8HC8mb6U4otPH3jpQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x7dLok99cip9CHDx1Brmk4qFX4Ee9evsQ2MJ9mnVcryxg1kUm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-sh0u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6e1Z7HJaXwgZuN2gYpFy8D8eTisYNf2wkg3o33GiSsECo78WbU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PCk8kpJEwAWZLYSdW6haG89DgjdtkAdzbW4zHXEWN65tnZN7E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2252 - },{ - "name": "bts-zger1324", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79a2W4ZrmJxRxAh8eDx7ooiqwfNh5TJQZbD42cLVW1vsQHZCQt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RCXqCjdfre118agqGxgBiEg4Bpg8RjadYBUSVtAAQKBRUzx5a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 297211 - },{ - "name": "bts-leeevans1984", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LYR5xjqaZeWd8fMyi1zYPJTz6hqNq2A1MxhvoKQuRA4rdozGi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TVQCNZxC3fdEEKFtWDKxgQe7tsfT2rCtPWsiVqXnpXTjq1QZJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 806 - },{ - "name": "bts-flex1201", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aM3yjqskg9PfNUsoyWJNtbwFoBFez4MrfqoQPr7Du3yUX5tCR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZtVj1CrXVRrTuzufJXFJ6zZH2iN7w4RSj3RBcHT7AXp96ySoT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 350 - },{ - "name": "bts-joostidao2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gzBfKWumpcfwaG4KzQ3j5PLnuNXcJCMKuiq377JsKymutRKM4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gbN3jpN2FrsWzGiVhvSYkevMyXPYUf819UbskfmrY8q9bT1pe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347 - },{ - "name": "bts-cni-nonelbc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fNGozyQZcdrB3rQqnA6sEJ94ZhEVD1yBBdZS77vLMv8t5p2Vs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PexLAWrimg8479fpvdzNLvQMQMwJekvFtbedsZvrAug244Avk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-ieperen-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FR5PiDhzPSL3vB5gcFDsZjH3rLXx1arKNSA71tpiRxyMVs1wq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64erDKNARzTJE4HddafCRgpBQv3bwjqbCT2AQ2jg3r9GdEFgJk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28741 - },{ - "name": "bts-w1winners", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fcadfz1tJBRwyxWELq7nAJYif2g6Bor4ARfJhtLcdGHNqTmdg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66gKXb66aTWMDcJGQyvPvzWEFKUqmbtPEcdFD1fh4QK4Hn5DQX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-soulcheat3r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SJVbUptUABc2Z1SwZMivDZzrpPvzNNrvzy9wxkTRqSTiY9jom", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DUKEDFnWU63Ynu8wELeETur5cddgR9nV3JhZApM3gunZqsCsL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-vera16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84TfMdxFtUkAvmB973rrWyGcbNcdeqUvsWvk5egr71XbmcCbsN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TTCAyTWLPJUosRRuVX8QZc996P9d2b4eByXP9npLevCKFMseU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 82 - },{ - "name": "bts-cointray", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MbVf2HiHdWyGLKdyMG9acYpzkFDnGx5FwtdKJ1uGjPo4wM3oa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-destenson", - 1 - ] - ], - "key_auths": [[ - "TEST7eQnJvEBbNoxau84K9oP5eEB8eNVHN19F85wSFbTYK1j2hVyuT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4161 - },{ - "name": "bts-destenson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82aPXKjLQcRN6RvytALuCdV7uJV3j6ejpeFoeS22cowLd7PQ3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NggczUMcWn4BkCqAmdCxbbKceejFMeTMUDGKtKBboTB8NPWwV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-cni-erichoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YhHydWUceVMBnC6B7QBtD344U5tPC5dxSwmwxu8NRRR8FUWvV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72tC78LoBu7yCY9cSfEaRCjo8WogKqjNJRzqG9iLFzprYkGouZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1442 - },{ - "name": "bts-cni-andyhoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AChMXXwnJLT4asue7tEHmGodc5NQcTLPJAAFyShJJAW3N4qTc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7RkSzoMC2rqUFU57LQCxbRaBusB6P2pLVfx2x6FR92xYGPLF7V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1431 - },{ - "name": "bts-tele-webb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ojMzubwDCPWEaYLearNPsmqxxi9eGLEvMGmG7EjpFmSuWbZqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zdw5TsfLtst9uhTUpqDUfKWkzcFUnkL3fUr3RrjpK3ZkQXPVc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25397 - },{ - "name": "bts-chipowpow1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rJBqNG3nPocnZRn8mc5LMswxP7RFFJqX2KnQzRQhrPLnBjXru", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56yCmd9BwsM4yjYZmrWtJFGH39xL3ByLaYVvSyovfRMhPAYvJe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2991 - },{ - "name": "bts-ct1bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jN2z8q9dhiX85GLJkZU3NAvsfsjPPHmnjkFzLFRbBfYoabQvh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TVQHWcDok6N8tqcoYn7ipyd8hCY2muXnfdNoa249q149h2cg6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ptsdd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Cj7nwD26t4ALao9YUGPbDkEPu1KHmmr6gzz2QipxqGDLzf9x3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55hsfXDWa7Njadycm49XrdSXZM6E4XaQCeuS3NKfKiPepxbiHF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2516 - },{ - "name": "bts-blue-tip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST7URSjWmgEYbY639LUfsw3eGjZnXaMHZrqqyhzmCbK7zdw2RJi7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST7CwWg7WpP5R28mcP5BzrSsg4AmTLWR429PwKu41hBWubwq4FX9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-jeno.kim23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5soMa4L4Y88UkxHL7r7WzFvp1pyjYeT6ivtzb1V4TqWmXLEDqE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tMrgY9LjJKfnDw1bUCfzyjzJAQTKbdHpX4ZEeMJM5eE5S6uxF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10848 - },{ - "name": "bts-roulette-game", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VCSYZT4PEaKZ5FBG6NNEfPsLMXmJrB4t7zuJJWqXNtXCXmuTt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nerLGV3g7t2qTiqnCzjvqf15pER5pv8YRQz2duf7F6vWdRftU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-jpb-donation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zVqEwqct8FPSmaiVCseFfRccha2qGvMz1RMHGyjivw2EjVZt8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iHqApgxZcrWS5TQdcxgbUUKJTPhDLGSWpwQa18eujWcfvwKmZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6773 - },{ - "name": "bts-jesus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Dqc5Nu6ws9CHUXapjcMrjUxwu6adCJYjkJrVNmweAKWgZwdok", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z1BzJGLDESzLZdfAT6jDGQkhjgYpnuc3jnv38HzezeQqvbqZy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 103246 - },{ - "name": "bts-ylbts-app", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jHHSuP2Yer9NKiWRRt65eoJB7kKh9VLaXeTkwALVv3ALVJ6KP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71EecqhMTtXa1yjBF7K4WSeFKvNS7bHKH6bP2vULR74x2vckgW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 233 - },{ - "name": "bts-weast2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8J9mEF65TJkt4zVw232BnmLrU9ag11BrzqiMcixiSs4Thuespz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WvHNSoESpvjTfMRobLhHGAiigWeL3QL7kiXGRZc35QTzDTCRS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ssrs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6497MqYoBPFsgg6ukEAZ8Y97ECxH2R5TR1SE6nhaiBH3TTfKnQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86xedRx2WuxFU1JU7ANhRnwDWgH8SL3kGJBcBMtYg4XtiNk1Pq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-pc12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HA2EyvUsv5x3HQizMzSceJ3bx9spYV2spAHoCBhy3WTTGifK3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eSsxYAKXMMn2G9JEmwWG4AwtUm9dZWF43H7Ja2148f4nTAwK3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-cointray-donations", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TSWTXCWTVGeS8GxX1kppYvPhLMth8hCozpEtpzUGM9s8CCg8f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kh1s57pHSST7cFp6o2AzRQNZTsYzqeEeEEnfcBywP54k5Vwq6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 285 - },{ - "name": "bts-hy12580", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m4XqNkBKRF6FSXMW1A3qMwzW14vrWsxiDKk6htDUKvsKB66nU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88UcKiGwchnDZ6Sm7XhtDTwPCQGgdN1GQfcGcCBNF96xfnqMsv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 110017 - },{ - "name": "bts-pangdamao-notcat4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PLTrLJgjYyT5XjvKdeJdeNj9hhtVq6T4RTRv31EFgzAcPNjvQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HHYsoXGsjRdU21rbYME2J4qUC1fYeUZmZajmj7u6eqvqvLgjz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-idi0cracy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iZuwKWMLL5kbt5jGXLkoYffNfMyhMP6bjQ1fa49f3536eMWoP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TwBnyZ8BiFHmLRBKzwPGz9yiV4d7tLFRgnurXTWEfvpXuephe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13555 - },{ - "name": "bts-admiralape22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YQjm74QgAx7eVg1n3Ssgi2RJ1Fha3jaSwuTGXNiZikXDAh5dg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TVQ4xQE3HvUPMhpjGDNkpHo3J3vtfyksqVg37PE9gt7Q3eHzz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 435 - },{ - "name": "bts-doweig-z", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EtoL46mE55idEFjaF2nrpZLkLey8PmFU8m8pjrqPpJp3csUAn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7avxp5K7HneD5QPFT42mooAYRLwN39qEkDJhEbeAzxWmcXeb5v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-christofres1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xBTU73nTHeAvTCsNn6Zv74DW3AMq9F2P3SLDaW1EnzoWoWn92", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wcJf6vqQrWYvHybu7FQZVqG9PK9yxFost9in2YQXfDNCkVNev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7167 - },{ - "name": "bts-maker-fund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65wRDPxjk5v9sd7MX7gSNVppNMepgePSBfYfPM4QZVEdHGq9t6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tREzgRrfofAomW8ktodsWQVBk95nz7mZTgFewvzh3KF62VZ2h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 127 - },{ - "name": "bts-caijune0207", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FDb7Kyda3iAA7eWeRS4P4NxUwnpXbdabHGDiMkBdyYG6pqu1G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QWp8SSHU3ZSBLqwei3yZwM1A8p9EkNb1pWeyjoXnfdRv3FWvs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59 - },{ - "name": "bts-north-side", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST7SmnrtS6s9yqqibK5o8CipVm2gSYT2qsCR8QV5xeey5UF9j6Sy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST77rZP4cD6GXe4c28SLZLTmyQ5EBiRqW1D4695tRMvUXRkScRhh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-iam123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TqLmTaLTFTyYSqWqDGs7VL6h8CitVGTksPuuhowPEg6qmPDow", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gt53ZsvRk33gJKDq17FXt5mamzAXytxrjibzaLXPgDDAgXdmq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60 - },{ - "name": "bts-pd12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b9JrZQPZPuWrarQijpxzDVpqzaSBfHcENpmB3VvXuoAQmf3Ew", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FHZBq6d2m1wDtccLxtpLccLdec1zy6RpwWnTD4PQ7aT7Wga2E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 259 - },{ - "name": "bts-rum-point", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST6PnazkSW48yUbs7HchDnHAyuczS54A7A2ZRz2G7sSgnqapXQxm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST6mdNoA6pMwD8w8mk46RfmnmavN1RhEiVqkh3ww7P7XTF5GJieX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-old-man-bay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST6A5dN5Rqkt5TjvwJSLG4TZpTAjvovoGuNFsdbJwiNtEvWqCi6j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST6exbz7usMtmUMFS2UErjHeRZFLiYbreqtNSf9cXmD66Bh1VcJ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-nusk1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Cz6fzwHBRw4J4HGG1VDJuXHTrs4Z1HYmy2BqnS1Xtqy4P4wXM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dnFTdSwszwgb2NfDZ7Nrk8mZTJn9poA8PgrxciXBmHZqTA1Lh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1992 - },{ - "name": "bts-biografija7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PGnDhxw3PD8H3boLgXGMR8VdGN3Gk2zAs1fRqgnNUjfVCygfH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ERaKcRSv9yMvTH1JsrkvrfRi1GsZgdzkwNawmwAAwsZhLNJuW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-grand-cayman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Jbhv8oa6KzzCPSVkuKVZwLB4MdBjW59qULywgc1CZQ3rFHr5q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VYBf4Pupn5M7eUrovZMYLHyLvDMx4vD5C9Rk4HfS3R677cnZM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-cni-princessale", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sC3vBqqNC2c56Qh8rKcuhAESWKc5FVW4GuF61CGYgAMUAudrs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xA9sEPZJcEX8phom4XQVh71onz2cVA7XC86k1TSLEwV5dEYZv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-mar-es", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-lil-bi.t-of-techs-us", - 4 - ] - ], - "key_auths": [[ - "TEST7QkmMAWJnBDt41Z8Qk31feFDhZYwDxEMWjZYCHsSESgAamWjYT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8N1RgTg7F8cyCWFrSAyx6H24tGzydJJgH3mne84vcVRp9RpCgH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 226 - },{ - "name": "bts-cni-timely", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vyDivGMgDqv7jHroNF4BDe9paSwJqCdhLTwuv3RUYxgM5vnNk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8MWqorLPxEbi6jjGMsjEdey2AErEiicegoCiKta1RxcpNdz4AH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-bodden-town", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST6NNXSLTpwU8urncJtPA5dCGfDuug1DmiiTG4bvtNM1AqBeTYcw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST8E6pLeYASRPBx5A1c2uwsUcuaSUcu9mEJ1xYshSkkrjD84fK52", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-onetimepad8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UD9qDXeCwxbUJwCxbqfPQbRoKbfYsSj8oNQnEv35zYK8sEJsi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HyBTU67qZkgLsych5EPPNkcWfSiEiwmUsesNRzwaDWNWrrp8G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1322499 - },{ - "name": "bts-cypress-pointe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST6Ypg2ebMLV4awkBHifdudg14CGogoJKyxzeZXsKkGHCvFuEryL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-grand-cayman", - 1 - ] - ], - "key_auths": [[ - "TEST7x5qwMA9oParMzjprXgSgeSUsiTS1HYzpqcB1M92RbvBec5oYJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-chik1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wyHsUfbNP8S88m7fTvo4X4Kh8VcYLymaFAAgBNYXW15L82o3s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JiPy351TePnQHtQesBFRXCFAf4dRr1QM59R7iDwsQ9emUfJkW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-cni-coleenbaruel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vyfB3FyjHBRbJqpCSchXrdtK2N8m1jp3zrAB8SANc6VaiajPb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5DTMFyejtuag3kagFf7ozn59zA2fdHP2fkrrDuAB63DqcF1U7J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 665 - },{ - "name": "bts-annie-b", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k69P51vUGTWBub12U9BmqxozCVrn4awCn4R7cW3Qc5M44iVtM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 2 - ] - ], - "key_auths": [[ - "TEST51reesSNLr93AQjQP3PaquuARocRBGVATgX8fRYygobcPgXGU2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 174 - },{ - "name": "bts-appdrakon90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kSjyEqSzmzj9e8k5ruF5pn7xF5vxCZFtor3Th1q3vTPZNNmYg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UHBXE4x5LC2mHxXcX8FWXsr5NfNBBe32uq2UtSXoGN95yzh89", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2523276 - },{ - "name": "bts-trdr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52RDWZWQFhNebtTPuZUjhjTgNCu7wQF7vHm9CasoGpSAuk97Sq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SW91WHJKPZogSCbM1Y9BeJmicPruM1GAiWBzWbuWwPzZKs5cB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49854 - },{ - "name": "bts-hqx1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FEeieaBqVRACTLSk96B9U4pMHwXb4vMTsLrzSxYLc1WzbZ1jf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7i8saYSjThCdHKiKCVPNDbvrb13o2h6P7NuoaBdAHFbwNYtmst", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2225 - },{ - "name": "bts-cni-denjo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iRAB3Ui1iManeTfmT1N8YAQZigZS9wJQNf4aCNyZpmCmEYRey", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8LTVn3zZD73PJd7HAxnKMiJtGBvWj2hQgqFyPbn7yFR23cv8pS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-dthquan83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P7SvKHUKcv5Bu4oERGyGc8mFTrwxcqLU5pqsuKokXGHNy4Qdn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gCWupSj2EEGsFdJpD11519tWf13k6PTKzoXpF5o63BVojZFeM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 851 - },{ - "name": "bts-pe12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jPvrbxsC2eXGRqHgWSe9tHea72s133nE7CoJQQWfNVbnzzAwT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mXG4exDh79z8k1PESGqowAdyr665fKsh4aYqjhBgP4N5grwnD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60 - },{ - "name": "bts-b-share", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fccRwwRZ2pjf6PKKkirRaSkVHFcnt6EWuhTmXCfHsV8mwXtVh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nYTmswKtC82HH4kpNKtgUgjLcFg634pwTY1t9XFtDFL6zqt3a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6735 - },{ - "name": "bts-i-boardwalk777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xD8YCVSRnqHpRrqURkS8QaZKLTBQm6bc7pJDHMhvBVbaqpg4F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VZbohXtnZCqtBtHm3Fg25y3xR6DDbvFptpfXuhTwH9F7Uh9hK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 751 - },{ - "name": "bts-ab101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PfVCVC6i4TP3j2mRkwM1RKXwrUfFhcuMDSbjc4khc5r6VomJN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ScFkD8tf32xz7aTj2qpK9rgvRQwShKnJw31MFzZAG3c1G6Tqf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-missmix1948", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XMJVy5o69oDuuJbEa5CXxsoEioq72TTXuJiHvkES9uuePobjt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7A62xZPtuqGvNRvbmTvin5BwdMX8qCfEGhjAYkhEZp6PKWnzEE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11495 - },{ - "name": "bts-wall-eye-man", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iJDjJETtAKrkF3S5TJnz8UnLRcUCuLrLgcRa3cbWS5btB1bVm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N6s4NfFunDyBhZbd7JRbPmPVMi4Fd24NguJLmJszEM8g2CAyM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301 - },{ - "name": "bts-tggi-compuceed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VgxPYWcowXGwNFwcBupPkTvKUQi61PaNrQfsGGFxw8KmfzC7J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ceMgswn4cmwvRC2cA6DmkHeYTz3YTcnUmrUStpJmPsVvVsD8D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7521 - },{ - "name": "bts-dsxq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Kfwvm9XfwibNaM5RtR4WTKnx9KEW7vUYf1EH56BdwvCT9dmH9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76xv1ppZkWqNtb2E8izyGptdP57MhuuUALcxNzXvt3NdF585B6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2539 - },{ - "name": "bts-musicnotes71", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zX68ydQJbkDsFdB7DroReGMNJoUgRcMR5xWHQDHuupeMAib44", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NPuZwG6XeoQsNtBZasDQVSurGKqhVaT16L1Vwja5Xr9NsgKHC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 576062 - },{ - "name": "bts-cmd1tch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GoeQUPqWe1R27r125pTX7T5DqCA64yyboLyBX3HQaZnn9o3dv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hB9b5p8AWniXjzXnq9AHxtHqQWP4s5bUZVf8bnLd8WapUszf4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3303 - },{ - "name": "bts-hiraku501", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QL4j4tL9Ctiz9Nt4QxLzskzQyk3CYMhKesJ4omEzoo8ytdwm5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fKgHRDCuv4iVVabzgMQMCXqmLp8yFuAVzRQptx3m9Pw7H9nG7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36998 - },{ - "name": "bts-oomir11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DqsiCxQFSjWPDwUDqanHD9UpJHNTftrA5Xr4sEDAEHN3o9fvV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ihRr7XQnHdD747UDxwWKBCXo5gqQDYpyqDa131L7meEuRtnNv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-inspirit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ipgr3yRVmd8uDv9kPYi2gZgX3XMzFsrtTtJjvqbvdbm5DqzPZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5NYPAUU8aaxotvnCygVkhbgTHpd2zRw3a3bEVXp2PYjShNKpLb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-jack-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TC52eX35KsPu6H498HjLwtNPaU11uVhsS1Jep6wUEGik6TBJh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z7CYjaB2XWxnpxZoq8D6vt2o99cQXxe47djtsuKaKCvenAyQm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-fbstodamoon-0329", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jpr5YoDQuotd6vpGSA6rfT2JK2nA4u591KQkTuUKfNenn7jiV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QWqhst67kQ1TAWTtzJrwqXvJrDGZB1Kka67mCWKYsb9vQff1U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dave-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KCkdmESm74WqpYRYfnw6fps9SCbYFPkZjmSEphiGvo3Fwhii1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iiaMizBHMRrWnAVwGTMzcYm43Aif76DxndrCgTSP5opAVoNNG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-bts-plus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n4VosjHvA27Jqo6AQihBk6Z16HFpfTGsgzqtoQ19ZWhHQ7kxT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n8XJNgrQrvjXdV7e2Hgc315YozBtnhNpce4uFqyk7rKAD1xHE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8953 - },{ - "name": "bts-mihailo6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58hKa6xFPByhGhyc8JSe4Cdf1cQEKSNgrz1P8XwKwfAUcFYcqg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vaWNTSgGzfiArPDsfxBqWhCB8aYXf6V6RrV1dCYB5Fk2UAKrV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 180 - },{ - "name": "bts-bit20", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CtoFNqxGVMSA1hMRtUbBHBGshNZC9UqT8E424zGJA1XAC5LRL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nvwcCco3ufDN4w9u3ABT2BUkE2eEyxSgK71DCkxc9Fqov47PN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1908 - },{ - "name": "bts-jeep-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XYw3zs3gLMHoA5JECsqQhQWs5i5cfkV3LnZD3CJ137Hw79orT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ED9HHyKSSTPQDJKvbDYZyh2qekjYJgY87gEF8TC8J5wFbKa9y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-blctodamoon-0329", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ceQtuPbTLia3sRiebbkDeFRVkx5s7UWAnx58Jm5fQXC5D5FCq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GfUPfubX5KB3vmLXWqD9QAkEU4uDyBtfEipDrA93WCQntXLbH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-abnormal747", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7goHYDDiyJJCRYWfxnkeQs6DVvDgAJMUbm7CKqxnYM66WRHEpU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6penFSX2mD3JUrzJxW4CpDQNBSjcDFAqE7qw5pvmB2azsE1oFK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 890693 - },{ - "name": "bts-g-stamp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a265kvHRupB58kaGorQtMAPrmV9GyZmiRCbp6nYHVAw6NBdyg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v2jFb2nojVL6G26MqW4Kpe5Ru5xoWevvyBNCV8zu93zbbfaYc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51409 - },{ - "name": "bts-blctdm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LGg4wN3B3jYFPuYoMS4TU1qe4M1fRGLGc5Ytjat9gCf8cujBh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J8PYkAvao2fzXHdAB1oDEXUGCsUk9y6L1RExgET7RBQHnKFP5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3721 - },{ - "name": "bts-fujl4mave", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XYAV9gLT2q2DyTRZtLuG7goffbCu1XQZ6CMtTYRApP8P21nbB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST86khSs7terebMWw5nMdkknpDDN46S9FtZGnZaHR73F8V5u2M9y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bellinas90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XfVjdXLuFySsyc2SfhFq6RXzg2weXbXiDxhmDJx6CE1W8s6Js", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5udL9JoZsgFhQjZMVbPJjnJMehjxQDh6oBUMhwgViYsZUw6Cfi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-just4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61tpDsWCdr65TFei4etFobQGgw2X8MdqLKy1nYYTxDpGs1q1hd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SZWFKEoRPVmNPQa6JYYFquXFSif1iU7vk3q19Amm4QPzx4Rxr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fraine34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Awn6YwCZZAQmjrUxwdzeTk4osQ1JBET3zUsgGXYTznS5EsEDp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FhZSmrxnKYRGK1RW6JhBWkDzbVkgvRaQpaLanaVNM9s1r2qjg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 878301 - },{ - "name": "bts-pero23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fDWSeuw7Gi4zYE8TgW9C4V3NVAceMNxhyVAMvQ6LLGQjW746r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62tdsGKD95xZYf2aca4ut38oV1snWXMZJuYHRJvHeXRopupub2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-hayla44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P3X6bfNxZQNK6dAjRfRFpExxZ3c2U3MRkgWgLhzD5TqYoz1Rn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78P2zW5sxBpYpy4gdfpJT3TvFq7tHPeqdbbNhCaBiKiPCCmCgF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 740 - },{ - "name": "bts-jnguyen72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST534ouZGAWQymhk8Geam3hYgbmKhyivne93nW31miwmCNDdp7Lu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST825ZPyomXN1KU8i8wJ8sDBsgjfWNCrxzEU6FbuEBDcsgcfV83Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59 - },{ - "name": "bts-no007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NiqcHyUTjzwz4Utv7qpmi8QvjhvAAcb6y2yytNL46EbfdVHUh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hBVQpmM98qVtwzso8qLXr5zCjdz31WSPL5BpT19f6gRC7dL5R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 436816 - },{ - "name": "bts-cni-drrayo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82cSB2osw6eMtXN6Y9tvhdrhb5sxULvfBGBbL7LxuQ29zK7mAP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ecLb3yhRU6BBm2xQ4HeZo7bcM7oy9BBnrpvCn7VVtNS8JktiD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3480 - },{ - "name": "bts-cni-neveryl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61H7Yz5f72zYH4Mze4WoSjNaF57BUMYXLNRFzzggFYGcR3RsNA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7B6nYRYTqjgTfyAkfVNvJy1t2GVUcF5Cto4AwhxWHtQJH1bpW1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-dakota25", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5btK67SAbWZcAFR6bJYuW6CFAXP9QCGpFS1yCbScf9X71Hpw7a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7R2unPTzhgXVYQfBoaGG6oLiVk1hD8VMtCTP21KaRgi5JZhQ7q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-obake6535", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fqHWZNRa55cjM2KTtE4FP64SthdMHnK85Q54zurQkJBcu2Via", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gCJxMNTzGn9HY7Rma66jRhYSD83GpN2fMhd49VFY6i9ufT13V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20196 - },{ - "name": "bts-wrath-of-god", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vqTJbogr9GrxPfkFzvRN1Wrh3axvmvFQ7uf6B6b4Q19qpdci4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SMsJXA3cVcM9PpUfFDjFyMsazUFa14xMaqvqau9HfDJkSCJkd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171190 - },{ - "name": "bts-fomo-chen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L3bhiKuSL93e3FrdEy7BjZjZGLeZzGgS9fEDLrQ7krc9hBM2c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8A7yMUGAZcvLPsLRz5wivh3j9h3YJMWCQsHKzWENwanmGeg6pk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-l-61831004", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PceKwwUNB3mQB2wDERQgYK2wMKkA4UquD1aXcCLvkxsFfYq3U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bHAhV2vWt1ofcG4hunxSbc9JusYXLhDoERy5YAz7FKEtvUhbx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-my9499", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rswDT2ewq7oi1B98Ww9pe2P9epNgKDWPyLJGAYtGEYADrGUeN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v2PT6DsNHL43awGVSDjKZhGsufMhY8yRV9TQ9Ty9x2Etx7n19", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 398188 - },{ - "name": "bts-dasands2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TT2PWgZANL5X8EGfEQfywDX2nn3jd8gx6QTB2y97raHwscU58", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pGdnakNQ9uSpN2Hutpib5e4uBrRRgWUzGUTCcArne4mHktZLP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-otto-bene", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dYUecyhcacpuFwWCEmjbThboD5S8b1X36x1AYse9Zxo7CoH66", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51wrBYwgnp31mWssMMPokKcRiRUi69ixqYXM8UzkAvKGQxD8ed", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-pettud", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MrJtCR5pNyEhPmeDad1qpLE4HAd2urEJqJ1GXjNQsEs6vRYBe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7pPMMEWgycH1qkRRUo2pgZmGm9ToPXJ1RcoU9Mdx8SSp76CsYG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-fer123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kb61H4g51eXEHozMqXtAe9n2JgH9cPBWEeHf2reyru8PUEXBi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gPEP1csQAYmraSJrViG8igd8gVzAyoXVYDtgtBrf3gKwwVqrY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-j00000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E1qCvrGjPx5am8RYgtZS8kVN3X3vCc8fPH4cVDqcXKDza39rA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z19oVKA7HN1C5LPdZkFu1Ek8azEx4NYVFb3PyRkdG9v1mTVNN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6407 - },{ - "name": "bts-cni-anneskin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qgFLiBnRrwTDiXHygGR4QG9iW1bP2AsjV4xwP5FE7ZUHS25Zm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5TgDRTeWKLvv61xwA8rsN4mQsgJTximTLeKoiMKhvxTbtzwQi8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-jupitertheproducer.bandcamp.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WERokGcQERbfFVcpjx7fAdjK7k1LDpq1TwYxDnV6XZQ1PQqAv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mGT1Vf2UURNiRh8iaN1Ysq5eUeJq5YixVfCDfM4oc7uQFnStY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182 - },{ - "name": "bts-cni-icemanntx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59o99vZ1d7oqkP6f5GhQLR3Ci6XR6M7GWoVX6y8mKTLAJczKra", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tfhmuCHCvnc6h3HAQXs6sfUTBpPjhyukHtmAtFG7G31WkQdEa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 938 - },{ - "name": "bts-cni-infinityx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DsVM4dCJ2weYPVozHW1VjWid34Kbm8tsuBfnKxLHfawQHSNCc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-trade-ceeds", - 4 - ] - ], - "key_auths": [[ - "TEST7mmoccMTX8U7Y4ehrRQvCemZc6dyaqY5kyQFwmMF7j4o3cbDi8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1806 - },{ - "name": "bts-inertia186", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tevxHWSv3bEgE3DrZQ5b7GS3pPnu2hPv3aC1NNnJVt3gP2hC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST811egXWMLEBdwYqq6KY5hWoPupAhi2vVhUdVhtLYr1GBd647ew", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 432779 - },{ - "name": "bts-cni-pennau43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pXg2vA8ynC6o1Hf6Xf1coqMb1zxnjfzUL7TdU9Pu24RMCKEL2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5LDncM3NeQuyTQAZ5aBV4Rvw5bCumNgKBBJxPaoe79PePnEiYY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4730 - },{ - "name": "bts-mfnapfynocevsi19bh5w4wfppx22spnkg2gxc4w", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84uvBtb8uNBLT6vzu4DKKP7snTHwgoAhr3JBFjjodQiw2m7rtx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XgK5dqoo18k23GQJg9LqB3MeL8uCgY3bMc46iPKAXZwWkjFSU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182 - },{ - "name": "bts-metamorphosis12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DjB2zM5kPWTR4fEdYBEyrvmkkffV3ppesVfrjT5BhhkeaT1xg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dk8GqShgVXMee4BrH1BjD7nuPeC4iNDLJWXLiy9pidooSK4Vm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-cni-lpm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JjatBKFZbgWzv1SB4PCccK4aLWNSnZgsaMmsQhtiFghVnvY2Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-lpm", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4x8mPbJf72NL8oPRN5ZtfE6H14zPfL43PGPiQGuou1JgypRR2V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2654 - },{ - "name": "bts-cni-cashier", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75vcss5CoBTNkWVhCefjmH44sZPWvyLToHbAuC9ZCfR71U4fUk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8di8twit7gUemGVzwXd1gcejkskBn7ErzF2rurNG8B7Es9Pph6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 542 - },{ - "name": "bts-cni-kjc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GqrX67p3GyvHEd7eRqMaTQTa3yWA7ysywDYC1CpfAYxynBMS3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6PDrESNMP2WkyCKiKmTAV7JiV38o8QFWHYeiBvGoCodVt3juJg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1957 - },{ - "name": "bts-cni-cmf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M4D3WB6o6dCeNskCRfRC8GDRC4W6fHRMpbgjnYMMxTry6e9Bm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6f9MvUn5F8k8eU4LhpHXLrwpDKQoaHycWMNjtYoU2e573SeYWP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1957 - },{ - "name": "bts-pa12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LJ5zmVozLf5JEAjY55i5ZTctvY2PErbfNGTDYNVw4hCu1Rc3y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZonfcoF6pTKkJbAunshq7oRNT2SmBNEe7cLquj5PfZ7ixffzg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-blck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QHC7pgYCGW8n7ytj8jJdqAmEkL4TX6NdaGqiKTn1Hd8P78Qft", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MpjY9NWGXJnEJLJQ6MdiZdCZbcBLZDXb9RrVKQSsasc4hxucw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-trade-ceeds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DMVYTsK2qzLfgwMYEgx3PFRd3yBF6bxQ7jG8VFvRdkp8gJyhj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6usGFrDvuVqesaepWaG7qh75BbJdRSByFQfhjJ1TMjEeq32ERL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36296 - },{ - "name": "bts-x79", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wVi649caYa1mL2hVsr72FFU3XchhfGfFEZxFXxCBCXV2ybkv7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BoerT7EQA8Zn8qacwhJrjDuXn4i4z3AzoTLYDrNSeAEqQsCeH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-procrypto777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61PMnxtzSa9JrT1UZ3Y1j9Wa83fNhebhAMD7fuG56jLyG84CMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ch8NAV4g8YYtgTAHbtAU5NPSMhSznc6CFx9jGGXrST4P371YS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1245 - },{ - "name": "bts-saverguy0001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YQ3ZPXchFQZKqkzykCYqoL5SkVHRRnv1V93Gquvi5gDrtvaxf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EgTFgmCxgMqm1urjBxDaJQE85BxLTzQsf2uTDH1s89fCPzc5o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1244 - },{ - "name": "bts-test-ab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5982VwM1LHQyPNYfR8cerhuf1WHjtH8uh2qyQk9uQx8w1Dc5DP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GXUUwNGMusc9zMtjHdbcAzEh6PbeNjofLHWqmzKUojCLuHrr7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-test-abdd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61Cbkscvfgeyy7rvCtvsXroBJF4CNre4sFtppppK5LSYUdc1bM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76oGoMY1biPcY8MTJBdsZcZTuPS5taQ5km64cadr8xh7WSykyS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-test-addd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FiJcEgpbgUdwDR32TivzHCveSrB6eudp6Sn535XjjvfA7HqvH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m8gbTkAzo9RF7iaJXa7fasZTZw58oD8nq5N7qJHzD7gigPuqx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-blindleaf22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VTqhYU9bmcjkJjpPXJi4X5czDcVaYnyxKA6vEiukzZ5zR6RUJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58EfkB9VHHBAqYUbJRwLFi1CCYawUPqqNS1wV6i9vWUgm7mX7S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48889 - },{ - "name": "bts-killer-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nABx9kCpafHSL1AerHP3Yn8P1cyXah75Z52UxNxSqvoKfKfvJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69w3WQiJewMiypCmWDVUuiJA5QVkffb1SbTrQ5eXBWDZxMkppQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dtws", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kNMoFc6fWeapQrCQePC9toCJAibe7dFfZDn1X66Dyy5T6137c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ezw41HQ9gTzYDPLZsvL5m9kX5RLNuLhVbrxkUXZptmgauHm9e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-dd-dd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HbT2kzAanFbsdUXNecAuZ3zRqz65pvmmUqEfQuRPm9z1ZCbo9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C3jwWjzH5a29KztJS74pyn6NDgtF8ypJtZbNtK8cdJKwySGqX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-dc12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Uv1rD4K271PHyHhUjPwuzP2ge13jSarh9VYXZiHXc2cR3wSJN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST837gphEbvpLQwyNUQSSrWj9xCTUXiDZ7zc927xE3AkotkAdQz6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-prounion.info", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uV5SwsTtxVo95meN5sY7VcJcSW1TPsumKPVYRuxcEkdi73jTW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y1zNKs5QYJNyUSTg4SMT7CejHAdonANdmx51HNCZRpg4CsvDE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3758 - },{ - "name": "bts-cni-newdreams", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qUdf1AYHeJbpetUvqXUk8whvMuD2sstkuCWfzGF2zz8pkaMAD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qJJskJHoadxfew3eJy31kkhrSrSo4BCgysjhmfHXVZjF7Hx2L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-smdt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N6S7SB5HuZ9kn1p942i4w7QB64oUxtGSnpZ7uYWGrtEknpS6n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u3PZfa54EesCa7NgcEq4LFYPU92oWyqN3WN3LXMQQP6zPY3ZN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-cni-wishes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55djAnd5kQDEMgRgGci7E7uNQeFnioRY2bH9uC3tXkXN1PjGgL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6KE5d9Ge2nFc4kJads5McxntPRP1SccHWSR6XVym1hfrn1D4UW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 583 - },{ - "name": "bts-cni-dreams", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YUvLPbhYrai2sQArBYp482922JK9ousbtE3W4h2XH3ZWDubmM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5wGKyBNYjEAkpFuNQHKayoSRHZdHm55ad2UJYakzpKcqYERg5u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2388 - },{ - "name": "bts-henry-james", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6V8QE3dBxqwCT56uHJTm5bQAhKnN2fa2ji4Gh3i7tobhzMysxh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68gQN71Nsceq6BS7ehzGPcH43nrpfjejByQhNSBvB7BMufCtnK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 296 - },{ - "name": "bts-fk907152", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SdKcCpNg34KbhZHN5ss2z69WnRjL7u3oMmxe4wxv5QoRe6Mgx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RYNvuRF6yH6MQuSK5RahVTrMWpV1bjMFoCmKub3uuU9W5aay6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-des-kenny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F9hQnt2ZKYeLyaMSMXf4zz1j33UZYUo3QpAv9jS6V7D7FE9ma", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pR8zSErm1RBqBtAUMpNfcnMPhzRdrGtBngFNq1yz8Ras9T4Un", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2295 - },{ - "name": "bts-digix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CFJ2jqBpvvRkQZyC1fv8VgR5dpNct8irLniFgqbspdRMDg2Mt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R5syafXc4gnPtjSax3PQiSyXQDxDRmK2TyswMfJ7KNfQBJ7tY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-lisk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gH8py4N3ub4jhpVUAyZLK2H3kUGYGFZ74ebN46L3f4G2gbyAB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74LzSArbkSPori5GSqYwL1dU3JxEBTJU2YHvaZj6G1qz5ehqbr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 52041 - },{ - "name": "bts-eynv3nt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BYrNEn6CaSQy82bgEvMjVUEAfTGiux3gJrj3nDeYqquUdjx8C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gxmPejCiYTmAiR58GDx5TPc3AV2ZDkTQN3sXPs9chxrbV6upt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2603903 - },{ - "name": "bts-bigbill90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST643Kxb8GxMrpcJF3JpEuVYSojrQ6eBwiG1jkGfKQGe81ceNsdD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SZc6y8N7wTFSRACrbq3zVsXyfWPZgMZYdrxF8m5H5fzDDRvbh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-acer45", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j7nMeSCCDAZopVSXQFrf1vgtWVXZFqxfCZEW5axccJxZS2Xhp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UVhgpnMmrTqvW3T32DzLK86yAeQPpfV9KBuj61EJZQjjo5fL4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-truth-seeker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6obwRyvu3H7JQuF4FHgJFMqRwbaDHa5PoK9KVm7SUP7VseuaGX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tsMKsCvjoLLn7jyZrFzFze4aC6fwu1vtcwzeZBVzzpGcZS8D5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-drdrdr0001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p6RCy6ZNbucnGnSpHbndThtgBTghsiTK7V8w2XSTbZjQisfiq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V5jt1kWWbtU2m4r8wXYmL72YSSUgJGXNZW1ZYNJ6FVHF8vfVn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-daisylp34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61JoWFgpCwbonbrDEtQio7gzVsuYnJGn5GoD6MHnnZ4hidoQpm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST513zuQn5AhuFHWJgdPs9zzwrg2mm1Pna2k1RKqfDt8pVxEmqHB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-gcsinside1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Y94cZSsRuQ1Kvc5UfXRXqzCBAFPtitkpGHzWiLUkfyUHvyc7o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ePNmGV3vQS4BXHuuoTMugCrSvsBxfHbRxbiDMXvp8CsD3YwWS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-grande007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mermYbCbmt2zfKRzudPBt7CpDXK7soSLrM267Cx7fdBmbQPNs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RMgiDwKJrUgeCtthgJ5KnjXaCA7cNFbxnbhaNsT1U3us2sPgY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4355 - },{ - "name": "bts-a35drops", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k39rtvgrTuAJkg3b5DSE1itJ9Ntzbfs7KNVkpdMB6JLHUxb7h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o43rE53kLaGxV337kVq1kEcopUwhJ6AjGJiP8mcZWtXjX8yZc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21809 - },{ - "name": "bts-active1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Pyuy1JHJh7H7CtHMYvtzStNM1gp8HDvWFP1GTKtXZtaoqwXuh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BAd9mNhLpyX2GbvApDEKeCFMR5L1ru4k2ECz9YxB2cpVT43WN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bl44msy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fmKJTv2G1yfXK3Wb1kyYymLhiCAXUaqQ2BR7XMwrAHd67YpRE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83y6RieVW5T2UeaiVZirJHWbL6VoNqJq8yS3c1fdnwTAaf7Ddt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-k0r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DBp7GadQbNqJxFepqFymXdQnZHkgNM1Xd1xaQY1Hf2xnaQf3w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BkzKSrex8gw1Hk9ziK1bZNy382rNt9RvNZm6agH8ZR3NFP6zE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 155 - },{ - "name": "bts-sir-richard", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WjHiSC8dbN6G8ZHswkjqW9fBwD8Zw2C9Hbc2KLLagR1bea9B7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QB9vS7LNd4N3aALYMtbjBMWqrvRqBc8JTsmRNRKkcURnErBt2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-j3spirit2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fXtKn1gKUtXozqKb8JQY1UUazS1TNtPS3UEC2qq6EvFxhCNu2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UGLxf72CsomzeHTVSF88oo8g8aSNU7ok2LcQJCNwuRQBKWqx3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 222 - },{ - "name": "bts-tokyo003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J6GTn4YeXXAtCDDDHo9VtsFX9JCWpWQPpSiYJJr3UaCyXx4Lz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6scuDxCiJfan6a3KaVi7JBGrUj6cX3Ei2XDhtyjYYtDStCvz4u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3509 - },{ - "name": "bts-pb12345", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nTyGsRNgdfJJbR7Gd7cd1RricuJ7yQejefFQHyRZeoU9jTw2L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jg5bo4HwpL2MWvRM1JVtqhVdcVnqJiwmec5nH4UAci2o1HDo9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-romanyk1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HMMLLCh5hX5iP5UH1FNuUzJ3gviDFknkkTJjt4vTBE5VG11YX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ea4XPHD9f6qPfBRwPTqwFRKzBqmJw7R2AX6po6fL6b4LovB4y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53908 - },{ - "name": "bts-sumuluku56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89k68zJ5oPukcRw5EScPHogdqxS2TcMWwk7BeBEzFAfnYKAHkB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8azo5vsiyMPQpPePM6f9pJ6SANZRHbehPZjFZjkywo4kmuWX8V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12764 - },{ - "name": "bts-samu-paha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QW6ZzM5Xg8VLwTicCfZoZFCXVtC8y1aHoVK1cWRQjXGWkmh4Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54grRgtXJJjbJrBGqxgwQg7mAJtE3em5GEMXBMfckroxxTAnsJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-samznyc922", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F323UL8DezdaERLaiXQAcNNMn16Mpbvg6gyWAppB69rocfGw5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YnHiXWtgzDHdphDF4CFFqGbWH9HrLKPPsdNeY7ESKi474KmLQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-yeeboon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST841aNosv7dhu5CKV4kHhaGtVW2uq7Kjxsw8f1JqkM8X2ryvBVe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST88MhttmAR8fJ8oChs7tz4mDtTDDppd27fYeAWhs15V1CiF6PHD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3835 - },{ - "name": "bts-mbalance1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NqXxubNUeLhGP8gtwfqgzbTqJ4VeUrB43a4RD6YS14terMQj1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WrzsmPtpn8eBcvgpZzkEDQiPYcVctPE3NgeW3FxDDN5hSSvh1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2387 - },{ - "name": "bts-getclamscom1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zSEd5WZ7jSAyo4qkLvKQ4hy6RVKqYwfgNxNThyPAmTGV2xq4H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bbYcJLetjLetczqc3PLDabFiFB5YWXXpTN4ryYs81v5wME1Ai", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-dj-dex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t48whm1h3uKmr6coZeLSCy2FPhUR3CWiNJDKwXJ6X6vR5iyY6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qvb96yBkLeAaQv1mYTTfmEMw9tsQnKvJTPpyiNtxNfmo5L3Mx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67801 - },{ - "name": "bts-jake-the-panda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mb1qe2B4bzRq26vRsfpo9pxvgWvicmS4Cc7pNaRBY4yRoJWdj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vF3PurTNZqP3HGaqaEKQLJFakfh3jvuM1hBBzj3RShUER5Mdo", - 1 - ],[ - "TEST5WrA9r7xpjhKyA9uoVhT1BxEr2X5sUHcPN3rWG4UWAHUh5jqCV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-horus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DSsQecb5PtGg7iKssRa3rW7YejUBUBg1GWjTV2NST4oxgJ5pL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST86cjxWHFKhzaiJhPa8TC7MYA9oFLjDrXa5E6Q5wXaxtzV8gf8n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 429 - },{ - "name": "bts-cni-kmac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ueSjWyG5Z727MyBpTd8JV1iRJsjEa6u3mmtjwyzRap4YTm3Z3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6j87evavsEUCkT4SvTjuVJQRqLF8BkFFAwScdWfdUhJ8v5gt23", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1144 - },{ - "name": "bts-gypsy7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AuPvSrsVQi2L7TWryGFJxvjfdu1qPqUfiwNDvnnaTJSgDG3yK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EVeksJgJcNStGVJUtUg27JsvHwFn2GHUD5aiZBPzm9MWDe83w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-mattias", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pGAadzMBG7EqgcrnefzMaDU2ev2cVaHU2z5j8mQYcH76KVL4P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56jiAcdDHigGiuPLw9579YKxcC1YVrvUosF4WyQWPdnFRg3SCu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4479 - },{ - "name": "bts-f6fe5915", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WfSQnWqBmWLSqfSjF4w3MRtVvh6oWAPB1nDzEVFGZzXXzBjMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iVHSaHzyArUV4v7zqu4ChXbsRoNWNZ1tdJgtojT6rUuDc7Knr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ask4tu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uFGvJAKQxrsFB3mw3a1HKHVmy1LDrYTjv1nA7odTBcT96m451", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TMZgFWook5VXNfTeia4UMjPUjGjYnu9CU58zEckDBVvrHPWBn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3104 - },{ - "name": "bts-cryptam002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88atrs1bujQSSsN8zqULovZUrjUTE9AsfbLBQiz4TqWMA5m2pG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nz8EUiiTDy6eqo8Z4YbFfGseGYGYTxph4tMxMbCrcVebRaMYb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13090 - },{ - "name": "bts-cni-amandalch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fNJWoBrHyBjNpK1XPS6PcMEyjZmXzEq6knb85NM4MM1hfxYmp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8kAxT6VB9iwpUJ2SnPfmK7VfMGYnC7Fo9wEkEYrKTMLCCyGy4s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 998 - },{ - "name": "bts-cni-goldeneye", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qw1NqitLSmJTo9isvujj51AQbBUMTwvf14CMqUqXWq68dZJVJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST71SzBtvhFWm9gxbXgmuh5haHHnuvuMmZ2AP7EgG96boqWAiRsC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-propeller-head", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55fx9QLHhChqdf7ajqy3neANmUNptSpeVHBkTXWhiDQb1MPb4E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RxjXB4QiNPHtPtcZrcS3onEV24cBnLy272rAj3TxGwXa9GiaL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1739435 - },{ - "name": "bts-strfkr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u81YWdVGGvpoRsFE1iiNMV8C7A6s8CizSkzmqCD3sBZNVVM3Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zECU3aYPtZQKTo8S4GBkdJCqTxhnkorPBqJvxgbJWJS18e1TR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cysh889", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WRGxUu1pMpSjAfo4JAHZV8TWJjLrYi4HKsBPhYE8kDVHQZpaY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Pjpg3mQizoWe5thaYqffrCS2RwHVrGcGYz8fLi1fVq5nbtDRt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-liusong-200", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hoKdNywbRsNYLX1V78QTiYtWMJXCNj2iFoys7PzgrCBuxn6fQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UKrCQgC6XEyioGabNv5ReoGzZ8ijZTdA3iRcK3Z6c26RNTfQo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-killer-storm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jryDo9BeWXDDWK3tRBvet1Q8qiC35eVi4ZSDFSA3JmFb2PLWN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k99QpDf72aizqsUQiNwMwqM7XYg2yKw3UduLi6PFr26We7Xy6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17611 - },{ - "name": "bts-dxwx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ayHKvNxSSty97Duj5HePZV2Tagntk8svMrx8qDT9YzJe8wfdF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ewKkH4Te1nW6VpsJiqXodiKuHsh22nbrSXdB22y3pg7uMzMDt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-bts-home200", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51evvxpuS9PNCQ95FqffCWydxXz3Y4uqcYHhm9sfSJXfCL4VVf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76o5rKhr9AvjrKdMUqXv8PZEcy1byS4xKUavGjTTz5G9hTkwkZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-huang1987814", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vvNXKCutNXCrbXTYb6aRxPKtPMC9fjMe4EVpuPowVk49CwC8g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kewcgizYqXqM82kbamP6RBJbYL9FRTgnqsraWmdk4btFegLQZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-nounours138", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ywUqn1Ybne4qtjaqxZK66jVXuJqv3MUghwnNouERkZtXxHEw5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zHsTeuUkEc63zJrRxKzBoPHtuacMbcdCagFXkP3X7EAoWa5QL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-bitguy88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tX6cZuPkZwcGbxd4esk64Lv5A7WuxLegMbkbxc3R7mvTrJTQu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RmFtgrpuHqDY44SUeAF5YrC7BP5RKL3Rg3jG1JBmyTibY71qE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-q2-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J4GghjYf58Voudokox5hnscWoCnxQQn2r4KxDirHYs1bZkLwq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qNaj8p2nGrZYajvwAwfz1Nd47GfTVGCjPTwL6hDmu12yCACsp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3763100 - },{ - "name": "bts-cni-calvinjoseph", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q7DhkagArdtBPi8QAYWaHgFLZ2GdcDeqkHnofG2iT7YHUeY2A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8aeEi4GrvH5KFja8TXgYAt7L5DHkuFPerArazhudWKKyfMeweE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6453 - },{ - "name": "bts-cni-kathyh72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aHNZcQkmo4NjrPuuc2zq5vv5unGoPPE2mHZAqm9HTabnaNpiR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST51UbABskN7fHXETauZsAnvb728nDHDqb7EwzvCshYjC7FxjFeU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1116 - },{ - "name": "bts-cni-johnhoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iWJdhc5mcfzRspNonHEyKtrArP5wR2ryfWcwJyqcWZgtmnLPw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5fZg4iRbEjHEc1QQteQZLPQJSnqVeWZp9F3r8QKEzDcCxdJu89", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-rosehoma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86zGzsa6DT7tf3Apj953WNrkpfT1pU9gNsUs4p3Yk7tVTgDSkb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7VhQh2rDfFVHhJCnDrGduxMLfyNA67DRq6nt38VhjmDVMVf9sk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-revo-lution", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QpwHkWNnMaFYHAxZfTrY8G6KQB5sz3jiGbvmVa8Mo6b1P361v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51GipeueDj74wCoZgLGdG6DYRMJPfV2FuauCMhhsXkD5ZYGwSA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-keebler-kahn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71Jd6P1138tNzQ7on67Ub3iZuZYtQtpJomvxMLPQZazJmNQnkC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VeB8An8SdR3Wcbc7oNP2RkaBpViCtvJSCxyqyLyTSdXsXhkYu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6015245 - },{ - "name": "bts-nextgencrypto1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KizL9b5Vwfxra1vLTNJah4nj1b3UFg9gU2XCDA2nqV9wcjWzS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jZ13weZihhuhp1hGGBLEbVZXfRcbd8A9L1o3T8sHzmdJXd37G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-y18108750056", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f9JSMHxkeiuRGw5a9B8snYXNMQfvS8LM1xJAhvusD5Ey7HZsb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MYR6WuUn9VnEksPr6QF5cnn2nrdGMYLSz4QUYMWMVTE36xFCZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3598 - },{ - "name": "bts-jsntrrw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5assJ33C9rUNrMmiwNZJBPvbFCDu4jtvBmDpMGBH6nFjJrjsS2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5YGzGtcAkFobzFYoP75bowwE1YATwKpA6fGKo3GGRJC3CMc89M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-kotteshiro0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iEEhX64S3BxDYm5ovqEj3XEqHvSP6vn1H77QBbMxUxUh2LoA6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ducwciEy5b9Utcyq6wEhv13WikaZvJLfzRs3szZjBYEPsxRp5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1591 - },{ - "name": "bts-mm1028", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MxSGaYgRt2YZ64VRQmiBFsDWt1d2RRneGo1bY1ZEo3jBgQbgf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EUHguc5Dk3neeWXPxhV7jW4jPCWVJc3N4gkPWeN74T8cnrbSv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-kotteshiro1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mi3yxxNgVBduLFoznQzmn18UwpvDN8HWpwgZeuEYXSd2bR2A2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zioXG6BRj47QuShyKNFiECbEyo9DLwPxWba3vF1h85TNoAUSb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-hodl-it", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nL5JzL5UXYsHvgJhoX9Qj6Q2xvCzs2YXnTr6KRa9CVqyKK8Jh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kA1BJicyRF5oBtJjtu2oMDpGr2sk7KsHQ4XsbcWnU9tvHNy7v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81 - },{ - "name": "bts-shminer11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79LNZAYHjXjYctVkmmGhyZbhcnhT1N19dtuwrujqy1P46jTovw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wj2dp9kC6wSzNC3jVaWQBtq3CYbsjTVeYSKaCRLK1z2GLLgQA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6299 - },{ - "name": "bts-clyde1995", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j73SQCP2uNUzQsVGXak88oqvKHd2mboruFzK8f2xpTHhihVfp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e3NAuNtHyZ6Rs7HRescrMZU9k6j5Hpb4tXmEnqCStywnsydid", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 380170 - },{ - "name": "bts-hur-mur-kur", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JTHjuun3RMpMkiWrbvcvQuG5ysaHuYesckn6GeCtMSPSEaKqa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57YYr1vuf69vgfkzuP9PdQNdHnCrFb81nNYCjzNWcqUU2TdFen", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5305 - },{ - "name": "bts-liquidity-bot-xdfx3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EivJRqRosihpZTKCThyNu9143UAp4zeiFk1RHUDztooRGw7jn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EivJRqRosihpZTKCThyNu9143UAp4zeiFk1RHUDztooRGw7jn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-liquidity-bot-xdfx4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62uASzmA4GqYJGUFMiVuoeF5AcbKz1XaXRTsM6up9CTo5uRsiR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62uASzmA4GqYJGUFMiVuoeF5AcbKz1XaXRTsM6up9CTo5uRsiR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128 - },{ - "name": "bts-stealth-buyback", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-null-account", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-null-account", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 333 - },{ - "name": "bts-magnet76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z78vPvQkenwP65amTHY7BkhGvtpzANLYHzCKnRV8BLUUjSQFu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51924mgZwFjeWHNyTAyhnrWYwWEQSq3H4f1E5B2TiwWKCtvbyh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-hunterman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BXogpUZ7ZWKGERttJM1ND5BjN8EBpTfkNjxEu4rR9SozgtnSf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6G3NXewQqr1GCgM68P3njWohdWbW9mWyfSzuBmkvroLEAVQHsG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-liquidity-bot-xdfx6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6muTPMFL1QaFF3BR4CtD36yuBFYNfvxr5oJWHXVkpKcix4SSRH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6muTPMFL1QaFF3BR4CtD36yuBFYNfvxr5oJWHXVkpKcix4SSRH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 651 - },{ - "name": "bts-bis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Afoj7tgtJs5iKMKceDGXrspFVNW38YfMhVPRGeJ2cwvFXpD1e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QNrzJKWEkVegEnsZFGqRGb9B1Cv8PEWbbaq1Ckpw9rV7wYuSP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 399 - },{ - "name": "bts-cievia-waugaman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yHDr7CUxqCF1AxCafqFDSy5Td9hQ4pL9AnAJqjxzjAYBVT8iD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kjbJJs4rGeVJC8n6pdEeebswZ6MocpdfE4aSBVmqSDCE8arpd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30066108 - },{ - "name": "bts-slfwpk2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KqaXdSC44DwB9M6Hm9NYHzurBjuAtDjF14MExhhZAiFekh2C7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yU9PYYXBcndKdE3pqgpR7tZa2vpM9SyAemzwspQU2qoYZGu9E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ieperen-b", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Exuow3EBoFGSDa9U7EDCRSTx5c67bJoEdCkoDPvEKt3fRPR9L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CN2qEShyVp2d56k4dAeCGnzraKt5juFNM1Uq5rtnhYeQv7CQi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 759 - },{ - "name": "bts-ba-dvl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dtAe2CgKbWsZvJgpLBcLHPK5xiAhAqEB6VagsZ3je4B9pioRN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qMq2wbQeftA8U1rifMNG4izuLeKWPpXrpvtPhWRgnmGF98DvN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 385 - },{ - "name": "bts-qjfeng-01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AfU1mrSgkzkeSEq6fm7SUR6DLq114hSzkgdr639LQv84FbSNV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Fy8NtGmNdbiGtbS1qLEWwhTdtNtK37y8XeSrExqeyek7TF9Pm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 753 - },{ - "name": "bts-cni-karinc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WJ6s7xRa4zdF3ZaHc7y8HxepJKyLBdbJSEhNtXfwCb9U1K1Jx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST81PxFYGUWK346tqz93onVEasomoy46LTUaeFwnZiyxjHnwUea8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2078 - },{ - "name": "bts-liquidity-bot-mauritso", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hCvh7jkdE7AAUnNyeuYsgwftmDhT2EcubB5SyQ88b1mkUZUyZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hCvh7jkdE7AAUnNyeuYsgwftmDhT2EcubB5SyQ88b1mkUZUyZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136706 - },{ - "name": "bts-funding-liquidity-bot", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-lin9uxis", - 1 - ],[ - "bts-maurits", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-lin9uxis", - 1 - ],[ - "bts-maurits", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 367405 - },{ - "name": "bts-stefan1975mucbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qdaA7h9sAwLYd65VBWcceVDt9n2fJiME2JarYUgYKFe4kMPs1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89hC7h8eLVeRzfcC6qQ1H4GkjjedL2hWFxnQTrURXS9vskUqq6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 867096 - },{ - "name": "bts-axo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vGHz9vZRRVWsHCADoPVu4YBGrYSDeWijXHqrQibHQmHYt6vLX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Q9V3Wbh4QBGvZ6kMHgTtoPSRWLL3mfgeL5ZyQPMpCuyDdAw4z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1327214 - },{ - "name": "bts-zavvnao123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ozec1RCKFzAX8sTF3fKbpda5FppCYG3qejocE9nkQRSTjbGRa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ML8oZeU1N3JN7BLiwbqTi6Q5L9HDHFutbFiwiUUhYNT1ArSSQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-xiejin77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D3PhJkAwf3aceQCcpvHTQtsTqqqesy8iPEZgYJzSEGK2ZwbyU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ANiRZDU8Ki9kMBfGH2zGCLwWsVDBgzENpAXDobqQ5LDdX2bbf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55141 - },{ - "name": "bts-sierragrass13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JiAJ8U7Drgm7KRkdepjm1gs4gXnAEUskSTzMYEzTGjbC84jtz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST895UCk5RCeNPgQjYsqUmejUbLHDRA8pZDx8rL1WPpGtaC4WXSm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4803 - },{ - "name": "bts-revo-register", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RPXWzPkWn5nFKgSUPEhxPG4Wg6DiEasAaJZ5En1ub2hy98RbX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LYTEbpTD6e692PFfgmkwkUGG22zZHAYsqzaoHxx8ZLgBgS4sK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8596 - },{ - "name": "bts-revo-recovery", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HkJesrGyvbZ1LCvmHRM5nyAzDSrUkM2FegWFbASViUZkCghif", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LU3yuyBRbFjQvHcWxCSePCB5NcSaLV2EtSU8dsp1HBdAp2XzV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7433 - },{ - "name": "bts-recovery-5f54991a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Yn93WZryvrvXR69t1LBTH7BU5vieGrn7wVxvxs8PcPbxZSwKj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q3YhT5WmDnWWto8AVXyr9Ude8jA6xsNJuegkJQh9tN7DHPS9U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28239 - },{ - "name": "bts-cni-pawpaw2250", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RZa68Kn14VoVABaTDGQsyYwqy8Bd5LwASNEVo4UZ6cFRU6GMY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5pCcCNHsHKmebbKNuoRdeXVs4944ZxonGHaUGNsFga1W5xa45b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-digixdao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t6vcpphxVczZ4F5XTQsYzstvBKmHJHGMTJreDuQQS6nynD6qo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7URdouKtg8vacaNfcBHEHrTgNziRMZJ6a6711wRby7nD7f5k9P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 131 - },{ - "name": "bts-cni-kruy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bL8BAN6gPj1ZxkTLDTMPEHqGzzRG84ok5Beni8CfL8g7PGp6T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XmEQaRGvayd5UusX2T9XRFxC1F4CeUxsWp2ZVGWraPcH8vUYi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-un12300", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wUPLvmDyRHRiBfsshZMW2aAxEDSpJi14SzmpNZAMngGEhsTu6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aPpTWZDimou1GkfnKFtT4rdFe9LGqjmJa6HEZ4BSU44oxVi3J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-cni-yus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LRDzxMoxqxZVDiGZBurvh45T1z9KuEe4Ty7ChESxwCnGnG1ED", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bh2nrND5k4HwFuSPdnHtMWAf3TmMetrQNCjmameP7465JDeyJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-kasper23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gxRS4NtvLRaHTfziuhnwLYf83woDBC6NYZqZgGMfQghMzVKQk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HbxHXPSFtfepScDPMzxjieUEg2WC4NDgATYAY2ZSosKYv1zRu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 681 - },{ - "name": "bts-abejon1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DinkQRZD4bxxwdtMmsVacwNDmZc36axpP6h5Rj3bsmAWzXt9p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B47e7B4fRzYPp413BWA6kegss1otkSMjeDKjCRyJzGc9p48He", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6296 - },{ - "name": "bts-gold-mine", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-hcf27", - 1 - ] - ], - "key_auths": [[ - "TEST5xeWXoiusMEv53G8BnGMRKh2gZdSwHEe2cn3qoiswASJtvRGt4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-hcf27", - 52 - ] - ], - "key_auths": [[ - "TEST5xeWXoiusMEv53G8BnGMRKh2gZdSwHEe2cn3qoiswASJtvRGt4", - 48 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-yoimiya3298", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8C1FFSEZc5bzSBboU8Hc1ET5FwoksSZxt8NCnU89ZCKMae5qyH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z8yALxE7TvKQBk4Z8H1LiC1bpJCPm3mUQC9BBZrjARNTdWUfU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 423 - },{ - "name": "bts-cni-marshcree", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V4T4qaa4uog22nRmfkC3gme33Uwkok6yy9ripcxwcFLHSKqVK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6AWP6xNWsbfpcEorzFmUesSH3rLkEYSkxFrP7EpqN4Q2TVMZMn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-cni-iamhoney1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KU3ivRMgiK9pd6AqAnV23U8mD1ETpvMWqVUP7CctmKj8ZdV4K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7n2o5X4ymBdzsYjrT4MYawQK6h1F457Sty4pMNy5ZaHGEmXWM8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 391 - },{ - "name": "bts-cni-thebear", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pUFJcLhW78ShuhPELDUXk49ysb4b8D2F2aqXR5zb6cTK6J4A2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YFErLUfdw212ZfacCWzwv19hDt3UgTA2TUBha3fg2Z5mBUD1B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-sjh7644", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BnXMMGjt4WyY4NvJ33vVdEzfKnB2ehpzZGVraiJBkgVSCVWm9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B3dLW6AdaaKbAn8hpG6rkvYRSDRNJzj52zXUrpf4MBeXq5SsA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-samiam-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XrUr1vuaGismvTE9fWu7JBtpvPmLwvt3135TGjdKPMybReZeD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EPuFpowmekApeb22qi9PJbHtoHjaAseMj5rwuZLEkTqJgYhUy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1335 - },{ - "name": "bts-cni-nomad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V6ifURt83pEQiUMSaetqH33kQLG3jF6ByQXYHsRKnhSa8M8k1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5v2ptWkmkgrCXGJ3XA74mhW9tTyofzehqvSgx5kUpU1AFRGcrF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1118 - },{ - "name": "bts-coindup-hasho-cdp", - "owner_authority": { - "weight_threshold": 45, - "account_auths": [[ - "bts-coindup-hasho", - 45 - ],[ - "bts-duplessisc1", - 45 - ] - ], - "key_auths": [[ - "TEST8QWfpQ3ywhjekn2uV8x2BvihsqFQfzXjocQb1wqzFQTLCPWue2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 0, - "account_auths": [], - "key_auths": [[ - "TEST73iKeX8FsHDatUt4vKvCqXf9dR8cUX3BRzAQEWkbGCuSjgFkhZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3741 - },{ - "name": "bts-missmix1948", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-missmix1948", - 1 - ] - ], - "key_auths": [[ - "TEST82GPFuKUzJ4FjA9s9d2VLwJmDNQMM23ufhxTELiu73GFHF7Y3i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6e6kimTRJ4vrRU9wqa5PUE2iEM4JSLJEnWRjh25THUQohY9bt9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-ljy1751", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MmhKrxVv8MXpDngQgPrn2x3brBGfvo1UduL6b99RXLtx2YH9D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XDQqSiCwrgYGhxezDQ7MfMySy41kiSVqj39JhBQ2XDpCG75kL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 865 - },{ - "name": "bts-jo-an168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y73hXiJpwiRDh6WjcqiycnrNEd8Ps43AUE7LHqaDPpcTEqjKV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5F5w5iVDNMGu3kSsY8dnmBgq5q9TQnyUTAph6693YBEthuCJYM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-mr-wang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CdoWNMpUBRrmUqq5SpscJPSNjiiu7a9dQyNDEKwr1DYRwRC9Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iK57uqfJU2xsXhECMT75AzBwyn3PApJHywFPBLuAjYpkzex9u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 282553 - },{ - "name": "bts-cointray-experiments", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WGXD98SdrKtzoP6hL1Ngn234QLeSPW9LQipNXoXu7YFMZzzuA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sHj6C94dwGmV9PxghmLPL6Kx4gKRwv5srjjHjokZeweGtBYek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1139 - },{ - "name": "bts-cointray-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zr2BbYwGExTRQ3mAuFUTJxnhvVBgoTXJzQfu2LtoRvpScmSg3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6obtqT8vXEodZawXGSWPZjtWKN4RgcxHXZEBNkZ4Ma4KozYCvU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1882 - },{ - "name": "bts-uhtf7777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-revo-recovery", - 1 - ] - ], - "key_auths": [[ - "TEST6nGThX9v42s8rusCiGuienWXSFJJLb2JgZzjX11UVVp6wzq59i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-revo-recovery", - 1 - ] - ], - "key_auths": [[ - "TEST8kzt4HRhbLcjbWQhi1gz1pJGaZ41Wx5tdoXSrtAxAEJkB7wQkN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 321 - },{ - "name": "bts-red-toucan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jdzhb3gLPf1pmPZf5dnmsiLztGXRZdTVt3fqomfoPr3GH4TEQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64DqEf9UGoW2hYzUq3JTFX3eQPw6QfCJjhYe5VKsshQa7PNkuD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-kuba1983", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B3GZBQfxnFwPRMY6sb5YMAmvjbgC31yTB4dhPXPxaMHxsCoAH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xbn6iC7jP4ckNQHJRCrRzNVhVykyC1cKRWwNag9EUGQc9xWhJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-eggman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uNBjWofK3AfyS61TeP9E6Ax1kEZmNi8PJwLk8veCBhxufsY3N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5PZR25378VpWd7FaCLoG193ZnRQSKJvL6DoP8EELazD1EANzx5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-johnston00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RHKjFeYyeBYXuJmS6df3Ynyb8pdGEf28cd4nrx9heyDU3nfrw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7K8VBYuyHRYRV4JJJimSGnATcKf5YBVANFQTBNiVpC8js4uwme", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-obham001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BsBfssjWzmnR2gtPczCWwK7qMJGgngBvwaWFbmPuTRBguonCg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o1U2ARbgLadpDZjPMXmkFD9mvTCM9k9JBDo2YGfjFKsYaBQUT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 569 - },{ - "name": "bts-steemit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m2ogVFbBCFKSiaYiAkf3AKtD6BB3qnpqRrqp8M8mXo5SWric5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WLKGv7JoHwsDmo1s1Zwn6ixAwoW4HXTJ8pPs7y58BzZApEux1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3730 - },{ - "name": "bts-liquidity-bot-linouxisbot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-funding-liquidity-bot", - 1 - ] - ], - "key_auths": [[ - "TEST5DLjDi4RNhz17z1TkM2Ynqe3gNSdCrQEHJp9e4tZxGAbL75Qbm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-funding-liquidity-bot", - 1 - ] - ], - "key_auths": [[ - "TEST5DLjDi4RNhz17z1TkM2Ynqe3gNSdCrQEHJp9e4tZxGAbL75Qbm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 405 - },{ - "name": "bts-deladio83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tMEeHLXSd2TZAdjffS5jQbuiUFQq5hSJrTyvUy8kVwPjXXhgG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73UbJy8KDNfSKD6r8B3MEkWfPQX5jeUzMKvG6frxemt85iJdSe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80 - },{ - "name": "bts-z12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JYf3wNKutYkJX8HkC8HKBEypSb4LydooNVvQE7kJCXyrq1UNC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8avKBE1qsV9xV4BPjdP4VGpWdTGKXArjR7JxGcmPGxsezCZEn7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55698 - },{ - "name": "bts-ch1nshiru", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mwtBGQ2xogwjcF6pipnpuVEJWu72EakbKVj4vVDCzSvkfu8kd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69JwLzXXn1EZb44UKaKi96hEU5gNXX6n4n2ZNJF2Y5G8agvuR6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3213617 - },{ - "name": "bts-sd1r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UKiCFHYBQp1ir5VygZUX9Cvf9zHirNKwAvCquaPvWv1XFPvZz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RQ8ZYURSRPbdfAa345QdmnW7wK13MuRdQHBRFRnmo194vnkqm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jn-kln", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P2GmsGuCT7Bv2oha7XA7QgotNTcnkqJespZ1yyCdhg8fGWxR7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q9T41kMT9GkCNoUYxxCtHAm54sVGGRe6AEapogJ8XGSXLiVRL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-dmnq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GvJNgUQUF32nWdafJbPw4L52zx4nV3C5DfKtYBBb31St3YL1R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F1ZZohFj9H48SmB7npDito8SxJyQvgnvEjvj69FCSJ3rtb5n4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128229 - },{ - "name": "bts-drum-beat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VqzTtbcy4Sm3zi4XfdF4VxZyoSZEnG49LqjUE94RWgGHZSQRe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86TtEeR7qijCHzpC9GEaumqFjUsZHtWvEeDwHHwEza3iVrXfmr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 724729 - },{ - "name": "bts-curree1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jFYtBTrFd8WEP1hbmYazUENZWrUa1DXdPkFU26ytqWUJFs5PQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iic2VmBuHyHNoyHUMxe2yMVdwyBSNUpcyeyFc1CQCEzhcP2SD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 110758 - },{ - "name": "bts-jxf8kkjkhrpu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LGpo5s3ZVzLbeoBxAHwRdg5SZyqtzkGyM4gR3r8B1NeWxiyyy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5p47uUZcFTij7Dxp9NDsuG1YridFPzo6oCWn6WSe5GhXmQzDdJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-a13202071966", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TbX9MUQyD2PP1VhqzNZWFZFPRS2i8ffDyVid9cXoh1Gbi9kna", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N6nPamVvzTBpGv74khuu51MdYFmWqt9KkwriNnbKLB9Pjibjs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-oaerhg9ay7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v36sUJFPjJ1kJDBt1Y1fZBgFgqdX2jrMvVjaKFteitF2uYhvK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JiqnuuTiu3CEVvpWa4ZiNw2EvZr7sEJYhdPpZSxXmHTPmTHVN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2734 - },{ - "name": "bts-steem-id", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WqXKSw5xH4Ja29YihMcNxmfLkGhEizwQRegTwgfQMtqC6c3i7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m4YgSCr8iWgPAR6TJPprJ5SgGTsAGcd7vQJLakzmaDNbJv3Ji", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2096 - },{ - "name": "bts-mcshook-101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6y9nSxAH5mLGW7M514kSNrwnnVAEhbDoF432iN3AGS7kHgiZgs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YCL5AVZKUBx855fdvHDJfut6kHyyXZCmxfXNGWeQjg6CiqpWp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cogitox1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ciuH3PcM3XRvwnXD6TYq8Tq8NdFLVCbEpUhekfBT87aSJ3nsW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5THackj5ZyX3RnadNyZqV6cdJkcbXabxd5GjCY49r6qfGG3Vgd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83 - },{ - "name": "bts-bobgate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CYAv8BQ6dvHiqjUNuXqHdtiyKL8WCfhJcrawX7Cw6gXugX9aC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MjbFfwaeK2f2syJXuXUi5wTxATELbkf2iwsBfRq7JUAXz9iNE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-cni-prosperityjane", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79CgT2FQHp35S3NKrHDrGorFrw3U7VAbxPBb7P42gb8h13Mk6K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8GxtAhAMQ7hW4NUkDgwE4GMweZKr3JNoTGb65E3RsyYrEdVy7f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6294 - },{ - "name": "bts-jodlar2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DSdnPzmP4cqx55GaSfDz9E4QFzrtBGtk3jypSunuTCbns3tFy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nKgdMPEyxsuJLTscGrpaSLXi6B9YjZP99WyUDotWdcDCwfNeK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-caryoh2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R6iBoWkggnRp3YZkP38idhg9Sq4sfLKfCxj9zrr1qaBSyYxSF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6naUvWjVhDhC4PpRjWPjvMeAD2Huon4adduap8q3Lv774RntFS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-james-secure-a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y9S5XVhsv2xu8ESLsAhMmMPNJn6jm4JDon45xwjavjx8eY7vZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P1uWR7HxE34huxcpuHhMdNfM2EW8mrHEZoJhb2tUer9XUxbFX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 205 - },{ - "name": "bts-james-secure-b", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MsPtxv5ochGt6dH4eF8UBzUrA9zXFpz5nUhc16uEFi6k6jYGn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eae4PKck4pHCgZnyePFM5favR1ggNPgMZZ5AHwf2JawFsneLR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 373 - },{ - "name": "bts-james-secure", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WmMYtC4ASDVwjNqadRNsJZdKb7fHwZ2FL9vTzPSDNpjEpDDBQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-james-secure-a", - 1 - ],[ - "bts-james-secure-b", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 1866 - },{ - "name": "bts-cni-cab3671", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86otuCL8yx5TNuwee9M4D7obfaHZMbfG4UcpCDG8Xm3Sa3mtyC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NXr4LPF4sYCXrTueMRQA5aZYSxosMsnstQAqtwkwjCaUPnf92", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-kandeedays", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tT63b9rmHX3k9UJHZrYaD1WkzKUx1FBYrkYGYepqwTFhe5cpc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5CtFANRUvX2v88BWhGc9eb7GEWNn33AYZc9u7fsVYPm2z58Gge", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-jpy-rlz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RYq6HYQnX9FxWBznABsnQux7Z4GK2ULrWReDX1ZjnZiJBtQCo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62cgLisrJEYHoP13ToXwiy7q7Ucs2ggYyd2iU8x97sCYVGQ2TA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 118718 - },{ - "name": "bts-panda222", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qZrT7ZBb4CUTgsJT99b1tjvBYAMsimiXMjv37c34eS9w7hhfF", - 1 - ],[ - "TEST5Kn3hwPDnEHYcEwfrP8ifMCtiSduohqs4LDYXtwCa5bNURwmkm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LZysRXuip9J6DE1qyhq72u8jUHQEfrh7Xw9TagsjLKqvqkRhD", - 1 - ],[ - "TEST7qZrT7ZBb4CUTgsJT99b1tjvBYAMsimiXMjv37c34eS9w7hhfF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 115 - },{ - "name": "bts-ccedk.escrow3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85aYYczaEYuQDXAKnAyQM1cTJXuw82CqoYAKp5rKF9SucYLkUk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hgjXyMxvDWSWuu51uFcbQWEmfzmm8fS7coZ6xfNX38tbmCmAN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8987 - },{ - "name": "bts-wln-103", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7skksa9V6oyrEx5FnTaJseSk3HZdycT8X2TfptQEQZPJczPP4p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GzUgRgfPjGG2zkV4oHps26gWfSDQFrk3UV4VZAVPYh1gLsxcD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5522 - },{ - "name": "bts-jun21st", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aWHRra2gT4gTRykZLUKaaeiL8ERztWucadsYbQv57nBZycdnA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tymcNsaF87eLmU12iJNwNSQC9XCzVhnGsbhqmiArLJ8ZRw2DS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31870 - },{ - "name": "bts-a13189069285", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PgDZhapjdnaRquT1ocsjdqvkJ4xVxcVuhePtw57En3yi5ixJP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iVNxSg2A6LEkdwCshBeJ8uuLBsS2YuPY7svXN7hHgvUEZmY9p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-uapan82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VdkhALWRLSMXXAbixa9iA7GBwHavDPUjL9CaJ63NXES3AsGgh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mmLbYoBzVZCZWKPWxJH5qn38SncQNoDNyMYhWLLfxERw3aBVW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ou812", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ddpdHkzbQTmiqMn7u86avvAGQUC4fxxmodzLoQ3B73sRcKr3F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R9aodSQgsxMFyyG69iMQWGrPXx5q9c53mhQ996tqxaC3s4dgs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3734 - },{ - "name": "bts-cni-pooksie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79p5rZG63r5PN7UhZJU7yTeMFeY8kVGm48xL84FWkWFd4akt8X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6MoZ7ywgrsnhjNZzyEdfCovUwvD5ci4PvVPasu7q9ncp3p63YR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-cni-ehaines", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53A48WzJRNSbPTbtSGMAwSYnqd77ipYpkEnSxeBEodLvp7JqsT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST562WeuUiL9Xrnjpnt4AMqNxsXjESkFYe95vsxH8d81wemA8y7e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 391 - },{ - "name": "bts-cni-caligal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cs5JBn22bmEZMKD7e14C2D2Rq9sN4RzdSmQcPTpugWWDaKdPM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7jQ61FsmzQiUTfF8bCB9NrrYyZLRirWPWuekBkKZMio9rN8tDg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 428 - },{ - "name": "bts-cni-mower", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wRM8U4LwctX9aZ2fnAMW19zg2Beb1aFhENF5t1qjz7ssYEcQh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tjKa1abRHfx3c2PPkgZE92dCcetzeJDuLyso3k9DCUQDFxW7p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-coindup-hasho-0001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54UvMLNgUXuji8fGPVRb5TcAd3gVixkbGrfdb1gouWggfAuUzY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNkoHhwvPac2rZfKihgYSepjHWQrKzHZ6qs8nY9XiB2bCiamA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 172 - },{ - "name": "bts-coindup-hasho-0002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N5WVhfi1Zw4nE4qkVCNwNFm3Sk2ukAtU4HGVeRnR9VuoqfuTy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HvxE1Q1ttksUpeygmoQA4YUGc9Zj3q42SyeCVp6whC5AmeweL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 562 - },{ - "name": "bts-coindup-hasho-0003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aEJM3JL95CnfZQ4hPCgFP27adbuZWYLev2PhZAwi7qnqYwVFG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LaN94R21XFy4Zofmz6SiuV6JoWAi373U7KkTDq2YV8S4Y4cAo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1113 - },{ - "name": "bts-cni-bandicoot5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pNcYUPAJEk95hfHGCPe4qCoFfcasQna8nDWG3BQBdjusWu27Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5VMywDjgoP2Q6VBV3h1SVRNQ2VJYM5ZDzwPMLh2EN6fuXGLcBL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 893 - },{ - "name": "bts-cni-sirwulfe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c1DLvUExN2c8PzXEuXhX1ViUKdGshbrnj1LpWzpeD5eQw95hz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST75NBMERmYu7M6m61ZMi3YpKAx6HK9cW6KNw5WJ7dXvJ9aGvN65", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 777 - },{ - "name": "bts-rockey74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HK2g2NQV2qwr2SSEZNbbNrk4MF7Z92sP6abtgbXcD6LraWonL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v4PbE4mFSaN3RZqBvqPjGKCSHQTGpuuXuG8oPgBebKNEpdcYh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22477 - },{ - "name": "bts-cni-evansman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ieyPMzZJ7Xbw4Jj9YoidEDbefE63BHPP8kwPrkkDXjqunGj1u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7jZxhs2HBBsF8TddppvK8v7aZ39v2FyKeUrRbUxr5GU1Mu57hC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 542 - },{ - "name": "bts-cni-evanslady", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z4pAKsNBEq4bRj1DeGssNBdUmBp28PGt5YT3DkjaBV9ughTEu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7JMmDzBbPu9qSzMmFKNhFUHakMC5ddhGRjHG2qnmrEP9DesVzw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 456 - },{ - "name": "bts-dark-angel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c9NnqhXNXcuNPC3vMvXbjdHKKaGKrcBrqaubpJ5bunq1y4r3n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6q1cKENMryVani8cBtookTRcuTHRNcfhrkaUwXSGFRWtxPVM8W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9438837 - },{ - "name": "bts-cni-skpickens", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fZcddQ7mdSbKkMrWRSBQm2EYkjmmnX4syac6janhJRf29cAtT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7xq9ZWQKVUbtojLgWiyFePF4ZFiGVyHDnVGmGyHvNQuTnMTaqi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-cni-tendersoul", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Q6gKnQNU8EjC5bDyenAZmHUi65PJYRvgV6UHTBNEey8k3VHoo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5zx3qcLnbCZrdmaTPKmLHLdZHkkmbi5jvG8NxatiwcMj7ufTxi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1069 - },{ - "name": "bts-cni-saverchoices", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55mDPix8sNdEgJC8uL2QLZjetLU4TGiFUTzbPHh6CnM19VsyPp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7pT4ivm59zbKkjtnP1QpqRMpraokEdAMQa4SkWMZ7pDC3nHLsj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 918 - },{ - "name": "bts-bmbtc1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bmbtc1", - 1 - ] - ], - "key_auths": [[ - "TEST6MYsnQmBgwqC5rxm4jTQS79YUaiYgk2nsDoHR5x5mBuRpqFzrZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-bmbtc1", - 1 - ] - ], - "key_auths": [[ - "TEST6Cw61Gn1Q538PEF5V8uffgGcQZSScPZVQeupSszWq1vZTNX1zd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14103 - },{ - "name": "bts-hthft", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hoghph1pUaj6KGjk78zm8spXjdfRYMujDerNdawBAYQCmBd3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6svh8FfBfoaN57JZ2Ahd1iDTRg2ZvPEP3AfDf6h3gy7YWghYgm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-robertrobinson49comcast.net", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 1 - ] - ], - "key_auths": [[ - "TEST6ecBRdRZwWKtbk2kJUkNN3c1XzGP1RdpdYx2c35yo5hMtAxS6X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 4, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST75Qw3eesX3SZx4R145XbZPYYKoLEWCanSAd2xE4p5Qvi89Ew3Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-dorant21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tUaT4MCn9vzvueHvLDrr1k85cFYjjious7PmND6qNmQaJyYxp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pu5s9v3nxm1JAYGhyf9FTkLbfehyS9T83mDdgTg76PiUyfXjF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-niyun-bts6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bxmownRGM84TV8XRgsyjPCzKFqDsaCzvu21XMijMYJdthhNTa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iWxtm4KUdc1Ea8QCxzUA453qUd9QTbsEJwpWpbtxHvdtwm6Vt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1503099 - },{ - "name": "bts-cni-audx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uMtRy3dNLMEtDejCNspVWjwTrvaQwSCowVpTb2MKFVHCkNyXi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7gy7uK71yUGYjor4C3BJidJ75Vzho7AFhn1NkVYLXuf7RuTTyw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 175 - },{ - "name": "bts-cashnike1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4z8HXawP8VkqCRPs34sUyuenzuvskpnfRyHdTTsmv9Y1E74B8W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ehf2jakxeLgptYF4VCmGRtmkFskrCzb5NbSwvYssNiHydzBHT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-bm999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rebxrbxy5xszGsRMoAujUH3849sdp3JSQifXEdTnYQFksBmcm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vDDQzPUZm8sjruXfGP4WUkoXTBzipzdoBrestcXjsPPMe311U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80450 - },{ - "name": "bts-cni-joyx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SzpqYXNFs3hhFrvszBDsNuEE68TFmPsfoaFNwWfyEjyQjZtdR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5XerWDDrV3BDCK1PFTQktrTz2iMwxt4qVPpsTx3mMTTe7BYVK6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-warmach-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xTYHNEL8mN5om9ovyKtgWKAzfymqqtAswb5zGS517R13KtYzY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54AD44Anae5hmUHGvd8FwD1yV9qigJrWEZRcNXGvXZNRfSxhTV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5544 - },{ - "name": "bts-omg-urindanger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yteu3VrKVGoh4fDibzdzXywTRUh6okyhuuwGmEMuQeqQHm7Vx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vo5H8uKZ5WF16Br5LnexwkP4XfXES31tXxmNBL8R9AGtvQvTL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26321 - },{ - "name": "bts-kassj7zjdjve1fdag2mp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U2XNmGjdrTc11wC4cNVKEpnw565yGLHBmLrzS9XhXe6DthQk6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BSGbRfXiRDwYaADVdWdpEnxVyxDFJ431xvJJr8qQadAf15X3X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bert1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UQGoFK1tjEA46Rr24rQkjxTNsF8v3hKUqVBYiiMa6T7tx8P89", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UMe1JxKmMGZUXLb76EUH3aPnZx23bRypBJkA2vgY6ev3hsRSY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 225 - },{ - "name": "bts-boot-up-pay-out", - "owner_authority": { - "weight_threshold": 75, - "account_auths": [[ - "bts-chefsweets-411", - 25 - ],[ - "bts-coindup-hasho", - 25 - ],[ - "bts-operatoraf-411", - 25 - ],[ - "bts-vinman-411", - 25 - ] - ], - "key_auths": [[ - "TEST5GcfN4LuEu6ZbXVLQT93U7GAD3FK4zyXRcaJk7Jd2tLspinzsK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 75, - "account_auths": [[ - "bts-chefsweets-411", - 25 - ],[ - "bts-coindup-hasho", - 25 - ],[ - "bts-operatoraf-411", - 25 - ],[ - "bts-vinman-411", - 25 - ] - ], - "key_auths": [[ - "TEST5UJqjrj8kkDopRFaXJ2BVXrQJZqJJxCLLYgq4BBV43uHKQtjCC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-rodrigo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Je2ohpfT46RiHk4zBZR4J56eA7MjN2UX1jCZNQK71DPkizsbH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CjWom5Ni8bxtNKD4V22WBNwY1vHpDSqGveYYDNQiasbSsRdxs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3885 - },{ - "name": "bts-sp79", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KnL3B9TWgU8oRnB4kWHpwZPGai1vzmZwKjLKQ9VAhS23bTyLX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6V4uUM6BsZEWRqhnAowTLThNkpPcTFFPYcAncSmA51Xpf6phmV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 84113 - },{ - "name": "bts-cni-keppy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HmwqFhBAojFWtsCqpmRRZ31sgr1rVMEEfJSur7L3zhpannK5N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5BvYSXkTnTUqSDoHDinRzMveSZZq6Kz2xmDJyy7VsiT8Vucn2L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-elfix01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XaJfy9DQsXb1f4URLGHkBQfbDBfZZ7CNCdG7uM9eDAqpCV7Cd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YVpgZHLYe3SxgKAup1u7VRxTY5kgESkWWBFh68ok9b9skBHKJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4155 - },{ - "name": "bts-lvz-13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5628EZQrHUFmeHhz1Q6k33cJaCQkGyXMPPdZ4XEYFcxfqefN7p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oxU5RwkrQUCdJ9ptGRuxccNVj8wRGahKBWXhFVdkunahMo11E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 168321 - },{ - "name": "bts-bts-djemphol", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CYeEMzeTLtzQGhqDzmqkPH9Tu3Lpz6bcZPdPg3iuxvP2962L2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AJW9b2VqiLQAMkY7YScBCK4XtFwkUn8P4tiqvBoGQDmW6MmM1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-bond0072", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5or7Pi2NHrG8ajSPxsJ8F3vZHkKEtNToVfzS2MZrG4QfvyHps6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C5t4DmZuV3CwZE93kDeNZ8oQkSZxEWwZ61zmB8zHbkXwym35U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11191 - },{ - "name": "bts-wonderboy907", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST666Efr8bpijEXJk7JK6F2pJ5mc9Kyu9UoSGgq7eRBT8a13aPA4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST845QZZ4s71KXu4SofPXB5jiePiJo2mVQoKMDy9FtjgsMTp7oMY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83 - },{ - "name": "bts-lucky7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DzfCKzwdxyu7TGuYu3hyD3JJ38e85GgYrDc9diUb3U3JCCzPQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zFmp8x5Jubq9im7T9GgUwJZ97SMByXGSuCVPy2peqUCdWj3WX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47722 - },{ - "name": "bts-cni-jrb45118", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uGpSMvMXqDhByx8cmmF37RFg65jWtfTxpCG4dGVFG8hJ9p2u7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kXCAhU3zRATNnDhwRqPZ4PcHF3f69iwK8U2WFVLBtyYBPqqxo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-mrnanashi74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tgrN5F24fy7XZEnenAJsrFpyC529DGe5VL9gXjtgWXp1hv55G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UVJtfY4HMVRjBAvENGf9ndbcFxESo7DF7nyJLZhafLAkFrguN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33867 - },{ - "name": "bts-sunish8t3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oC3Z9hzrD72fsK9L3fwKkVdUwLwF4BYGas5bX9FWqnpAMWasE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yf8hZdGFWVTJ5hiE2S92pfvJ97xZds9TAAgH36PvBwvakVXo2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-ledgely1977", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P9D4hb8Lct7VMSDyTVH7dU6cU3r4FUXoZBE9PqNnttTgZyHUR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4znT26RMKhtcB8UMdvBiik6xbpv9rtzSk5ju2U8oaeDyL2LGTo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3744 - },{ - "name": "bts-cni-billorme", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qSyUJ7JaNHdspjua18rng6adkWr2b1HPevNSwoHVLeNvNDYZr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8QDF2C5V7BiQuLxg9cazFyVZUBCxkVmHEwyvZHo3y2zbB6qinH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9431 - },{ - "name": "bts-a23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kLLzaanVh8VzdpG55gY8EThBn4pQxdAU2z5htUc4nBzsUHknk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f7fmeWAtVDEBtLbpUNpF6H89FLpdBX2pxZ59zd36xjUx6jBMG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-webblink1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81nrnVYuzeiznMbAUWWknMRycWfqqYAn4LddXZNp6TGLkJmsWU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73xp565uv5tpf3miY38QdERzdYaQ1RHQKmNqG1faxTrxqFm3qD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bassper-3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89f3WB9F7GGnekqPS4ghG2aiXYsyGUZ4YaTGwJdafZmnGz2aVk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-sophye", - 2 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4x473495WfxHDEwcpiMXQmbN7KPsdnWKy1uxEQBk9BL1tQFEGK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1420 - },{ - "name": "bts-jaycee16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YKMVvSQTYMBEtRxrPyJ4Tib3kpLEhWJgKhBaqbL2ehcfUNtzU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5DBx1WhfPNu384Q1KWnsuVWDPVmt1dz7j4xFs1hQdScdHcZQU1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3760 - },{ - "name": "bts-novus-ordo-seclorum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ame4gfeuDaaAtkXg7TS4HzB88G65dNj4jeMUdRUHnyYfjFZi3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N2b5QTF5HqjtNT1NGRkqd1Dexm92EjytT7ABhaRqPZXbsLKHh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 891 - },{ - "name": "bts-aet-test-0001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yTdfhDeZVf7Dy8Uhr6EKnuBkMWk9oLq6GqBrseYJLECH3rkZZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DiWC2WZdZKJ2ANMpAADxAgakaFhaU9h1APpfk7uguQVYiPTv2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2749 - },{ - "name": "bts-z444", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j7fXtW14CDanarKG5eLEuFQMpMmZ9Kk7WDxFukmxdFU2XNovD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WuxmbF8ovmwWmyo5tN5NPdb92EXrhtAFwyYxTggCzstaZTBAv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-kiki-lala", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vHiRxBvgXnuwZqsBjDPXnuSAG98phwhNSthEyyqcgxNrswtw5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f8ftqNDKPnYJAsGG4mu1i2pRMDV8JdGoMYx6STtwWXkcmeP4G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 426645 - },{ - "name": "bts-satan-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xyi1xR2Pnp5ULqudM2RetGLmYxg9iTeTJXgoPddLVZYH7Zgvq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83fMhnV1ipwRJWQ2QVNDnnD4AUohSdM5GumT5TFRNsveo7RiBi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-optictopic-ol16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gEWBGzZYrUy8qQiefuc67p6ESvZEHfRJeMLssErbkrBMyEcpd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xWTsjutAQoJyMFqL1PYjcExS2d1KhhwsfvyW3WYzqPQgiqWJm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 605686 - },{ - "name": "bts-accumulator77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EnYtLg5oPrVgdK8FbxFe4Tp64YNFqfGrXarLAUhpKPydKeLmH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tAvse9vivQyV66hsbTZHWxRLVk3H7TjeRXTJqnT2jVdpaetCg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 436659 - },{ - "name": "bts-ad5r2t1b621", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GMRF5f1HD8BLyceaGuaxjgb6xuoyde6WYuzusyPq7781w4Rxk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rpBgccRAh2ChKY4pbrhdG6p4iqj3VpSPLjtehqFPJ4s7qcPFN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-cni-jaykec", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uk8kBLuLGjjTe62yCzhKyQnP68KXFHp9w15DPDDuP9owesfTS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST62u92Mk4or4HBvFX4n8BjPfU3HPeq1W7EFhYXgLgZGZtnapV8u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 508 - },{ - "name": "bts-d3nv3r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CHHgHaBG9BvssLW7D1HbhzeNMkmkE8ErrMGcciXiFpBP4WGM2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gqXZ9aQXB4qWhqyen221jF6ZRjtfXvJfW1E9MjWTwEzxSvTXp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 624 - },{ - "name": "bts-dgd-sales", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JGdfx5ExtUMXCDDBwByDZKYCFm6vPBCGyCn7Xc73pY6rFReq3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LNcxHPhuLrkauTvhQRtrBjPLL1SH9wWWjTH2piMijXSXpK9Mm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 297 - },{ - "name": "bts-testerere1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tp4Wq6GTLbuET4aSXNmRkEHFkX8A3AGEopBPq1zncjrn6w6hj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P8YW3xqWkZx8sBPkEzx7pEvnYxroGwas4FDtTWPT2euhQJcaJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-suzyq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tatuAojpcqnTbG4a5EK8B4yZUwdDY5f2jjmKDmqMyiKvkPNQu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5SryPk2jvSo1uvmRotkXMkTqQB61H9nthyp2V8LMmNwiRiU9uD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-autophone1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RmDQsgWZmxHuBDsAwvPbz4Ej1ZoHF17HH8rVTAHpypMjjv4A1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61inBkcNQ88uFkpvZzLdfqVtFZMHyDuTbU7Hgu9KuXto6RbAUm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 754689 - },{ - "name": "bts-luckyebisu1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AwLuCkFF3MaBhbKNomtd2D3QqfFVwR1MwZQXno894E2dE6Jbc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59g7v6tTLg6s33EMmEAJh3LdZKFkEp7YgxLtjt3n7T9hnsmtLX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-nl-7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P32dFwdEpBsshyksMHEKAGaUEwkuZj493spR9sbCQ4Hne5Nfg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yEJGTsqB59nBhir9vAzGHcu7Ng1RcyncJ6QTTAJcZeCBbk6dG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3530 - },{ - "name": "bts-minfon2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xFQrb6yztxvvGf55ygZ7o8hWjTem36Q37gaK3NFee6CkBNQPj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j3cH4LzKN4zWBG2qfdVDH7irfew3LvsvZj8aKuHVYzrT5Sb2M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5353 - },{ - "name": "bts-fanyanjun2119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JwMdjjk7HXhYSaU9hz8ubj2TPpJCLJScGksG95EMDV4LiBmDT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QeHwrCvAk4wv5JXAw3JjQQuMDC5wgXVda22QuJX6dhxLGvrD5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-sjorme", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g8Bekdk6oJWKm5hQPXf1c8yBTwGkErdtJR57FUGMVjVr76JHe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST55WQp3YhsJ6CLS5DFkiypVfLqru8pbwB46eNZKpoU86F2w5yYB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9386 - },{ - "name": "bts-kame3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iyso1QzQTUC1Lh1FW1SKTGVQSAfhKnkLFt2s3tXbf9k54eFVt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fCp2sNPEGyeL2H45irp7CxwwnXtXH192mZzowooJXuNDvNLDa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-makaronin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RrasaR8nN4TPLCpHuviCM3tM7UaW9XmA4CQ1p1h4hY2DyBU1k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oeB9kQ7UBPewJZbFuBVLRn7XLzec6wwU33RpkuC7MwC5uY9bF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-gekk0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6chBC9ByJGLRpgXmas4soG8KEeVQuA5X2fKZoUVydKg95byeue", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sKe5yUTcu8deZsopebqbw3mqWnVT1VWYNyvbQhBLbHwTkxfAN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62955 - },{ - "name": "bts-jenna-jameson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MCuwkbRtJfF7k4K6ZsLxcL29zU83DPBaFpy8posGKSsKRuvUZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fL7PKQ5VhLxn8jc5ZBh2Ag5ASrSnSrCUm3mhhCSrowpUKVhgn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-kdjfslkasjfjslkdjfkasjf98134up89u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86rbg38PJWskKxkvSkqdhhZs6kSqH96PGiWZVUS3Zox7MNX8Bv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WbFR9mj2JoQ15KH7NNFNJ94qMQ4YTGbpirsv3nNNRD3VMP3oL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 380 - },{ - "name": "bts-curat10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TvhqBPRSRuSNGuhznm6qpqcWJFr2tLy4UiQvey8HVCisgBa6s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pv45japYUq2Snz5v4d9H5MASgTKavEgDZiA2Sm8Tso7acDXWM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-thief-of-habits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t5NxW3yRiqpQyMPaxgB9tjT71kBLMNK38bHNsuXCb1KPYdg1u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JYn8yEiLNVnXgxossecLNYBfpXEZKqEdJRCrYsU99Kx8Y53Tj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 302621 - },{ - "name": "bts-japb0t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NPsGt84zKnXQGgQJhvMQm6u8x5xKKbazVVXNfFyXTVvjDux1u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XjTdo9fYU1GvvNZspCUNdBjS8xs6CUBQo5vm9XYWEVWPgPoCb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1114 - },{ - "name": "bts-e-roh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VGZoqJhwmWjhVDE69iVqZBPwK8REV8E3vAHefnRdTqP9vCu1h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BTK2T3sotW6sJRC99oSgNePxQ2XpUU4k7YgdW6xHXM9TxmsrT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 193053 - },{ - "name": "bts-wrr1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tJ143dWQo3vbM6i2Ep6HoHjoiKbnAcdVJV6TWPcXCgrSxRG4r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77u2eA577qqEEChKYqftxiUS6pzy8zwmj14qcJe6k6QH6Po4xy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-w456456", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8memBrEvw6vaic8vuHmjEgVd3oKcG7jKRKhHmf7onJfywuSxdC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bd8zutfWN63GcYwbhgHCwYudyzrcCskkYg5qw4s7ERz91JH1b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356 - },{ - "name": "bts-inai6obu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62TJ37fpNnMBjkG3SQ477cQJ4cnh9K2uJDAnE75CVD4ggEkgG5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a6Pw3NRpygroJhfYhbKnJDz5bSV2p9e1gxZvw1GSqcbKni5HX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 611 - },{ - "name": "bts-rushui-103", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78LUPdjTUgHDp9TVd9YCtJL9dbRd2dAdzjsh4oAZy6cF44Ehb2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79wuMvPwUiHidQiPgnrXWdox8A1ahNu3TjYci6n4FkFd3g8KRN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-chippie0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST885aopxxQjiL1usaR51kQmZHBetifo39kq55TvvRtc5o5NhPeq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uGNJLVjSgA4ZrDwTfXzVbRTHKVChDJ1uEk7FfN1fuuC8Zy3tP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 151693 - },{ - "name": "bts-diagn0stics", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72o8PKmYKocPMQQzm9ogKfZogtQXxAuzwp44D5frmxupeexq3n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jYj6fVGgepp6H5Q2fmg7YefRa8nDCmoJrYSuKKCTVDCQ8ggGR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-meganick", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jfhppnMV5BLHgHp41mFUd9n4QZw2g1yEGdFdNBYYgiMcG5toe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6TVZivmpuPPzufYtxeW5fyuUyTRpiiN8cwjbFw4cUpw1ZmFELP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-pennychew123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FrRPcoXfRAhQYjGB1yG3bUQf3kYVdEqkNzsSRxHbScBQE4QVU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GiRtFUHmsvYpLgDxj8hmHm48unTJg4Ewbfs8yAwh3i1T5tH6t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13583 - },{ - "name": "bts-bts-jpritikin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oLvW7GPkJGVXGZvAizk2CdeoW7YoNzytYbXKUmHENPpMAnizB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YqdYDgMxdYsXXLfDX3qrZmEkzpPMgcvLuAmW4KD1BTPuACcvK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3742 - },{ - "name": "bts-cni-petteed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5khbMKqnBRfN23NahbuRjWDytNDRR3BKRs42DMX9AJzkLNsbZe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qHSwSXqFw5TeWkvnMWeCK4ePTToDHfD1qXmaeprpgjuVRhRos", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1069 - },{ - "name": "bts-cni-shenley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7v3UZpk5PUEmPGdn5sHPNwg51urbhmFWqhPdm6nCViAHXku4QT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69R6k2XqRCm4nuJ3H5SkGCfvEuZ2BSCaB5eadcieHeQXDCCqzY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-jvbts1200", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p3FyZ2HJYMBu2L97Q3FGbcHAoBDNykS9dtMoFzSJygWKse1Fz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78oaBQf6zH2F5zuGTPNLRZr6JqFKGNSf5NCeFwzUE5Y2xFr7fK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2031981 - },{ - "name": "bts-asmiller1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BJBEQaxNCSKfrF7N3KCLzyAC7nwXZb7CefiSkzWU7mZY5PHzE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SHyUwH85dhr2NEueVPthwsm65AZ2MDkM396UqoqPmNEqssLQa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-budman3207", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iKeEFsczCRZQGFPdoiLubtrM88sF2NLAibccLMZ7HHg6oB9Fz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6U3YXAvfo1zLstMHFWDs5uV3f7UriCZWhZLugTgVRmNaZW7TRA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 117 - },{ - "name": "bts-ottimista-nonkimono", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XqVxy3iLdGTdDHKvzJedqo6QP3jrKzLGvEkNW6FnFdQ3EWtMt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5o3k42WvgCkcU75zpDqA7W4zyhWQmAHpwcR5cjFjxwNu8RDe6w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161850 - },{ - "name": "bts-weserr3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kmKhaeuTZ6jtkHtxoh3P4ivp3EEKNVd7GTMv4DVxB7RcLc5Sb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aAL4sUpxBWhLqiUC46uzJAiWSWHCHbKbYkrrHk6mvUpCdJo5H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1749 - },{ - "name": "bts-yzd369", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pMtfru4jahQqrFZGDswJyfJacGSZGP7nrdkS5MxijmWRZ96se", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5asTPQva7KaWn8WZigfdJLvN48suFLCrEahnRkJjjr1RwspaXu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338 - },{ - "name": "bts-doyang8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mm7WHBT3a6jkUmvm5ffzhHYyuDGKtEkk56NtxdK1BWVEWA1uq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TEGXiRUZuKkwNtsMv8RjkiEyWxLdKuReaecMq6gPrBoofSi3m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-sdeville1k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5krVCHAeQbkztWyW6n2VemSEGDJ64pKQ8UMTkN9x6B7hjy9Ery", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ZAmUoMztUrqyzfNPKmzKj7YbKHT7xg6okoNZdei4pXZSbb6nn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-cni-golfman1992", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ydftHY1MCjswHenfm2TqtMZWgxg21h7XFM1PMNz7iqVTAh2TY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5aoRKstbT6nHG5fWjWjBq72e9HjdYs8GZMHgE3thKbDbzn9MC5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-cni-czo45", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62b91QpwqPhzxKj32S5XriSkyXLTjk6ueUzRDkp5hUhvh3XyyL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AfxwCRoeSutvUu8yT7oUbKgEGviazsxSNS5MebmSA3xrXiWvj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-jetset", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qrtWukNufxGZaUt6nobca5HzBPRGxPY1y25onKn7ipejo9Mmq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6WFG1vAGdSzCjzViGudyzfjn2W6GWgYG7E3ndCC41y1qQNPPwj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3928 - },{ - "name": "bts-yusuke03133", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST644rR3kcvU2cN5EZqZu8DhPZaVLFCsVwHf91oa8umvF4qawX3s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RKARcfVTdhpHYCMtb4sB5PuoTqA4k1cbW2SXrY3m9DsLbvKgd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-cni-blackie2k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xuvrXKo1aUJVEAVWjsg2oJpZpcgJHAWMCH6DAGyGsbEYssqik", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5da27Y9xpMo6qz1WaunEHCXRd3iE5815bCrMXRBDRzaEtBaDiT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-mystic5k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PCkyBrL4dyWRUq3gxYGNQ1A4nwtRQgNTH91UFP8D2CVecnxAU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6q8ApMQi6H8hrVr3FXAsgzFqw3TLRX44uzZKD15vHAvbwNkyUj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-mystic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hK7BwDSfDYEGY1NJk3qXBGdR72M9FpHrY6TsSTC6Jj81tZQGj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56zGMSamC5qHHB2WdVJrZPNq5UANeu8LF4bwjqPHd857Bm7fHv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 166 - },{ - "name": "bts-cni-srgb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jBQ6sAYSLd8w57kjKcSoxYnC8MLtab1pMBqSJtvP5o43NH9Fv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST86HKYZHVJK5CeGMUedHfESEcFwEdHJ5oYHDnyxLQvyGW5eQBDV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-coolup77388", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AfsfJgAipMrJWGgiz3Hb3bwpNbaaCohxodFUK92nNkURG97rS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D9CKDLMA4FQVuwnaZmvfoWkNrRpeqwRxgnR7eZat7cv93Nwpj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 350 - },{ - "name": "bts-cni-schizz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83L4cUqWF8aDZgnF1M2z7iinUmZJBHB4Ch8neiA3b4UYzgspJ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8AR5dveQe36FTy4XCfzihqMnMfcDB45t2D5ZZZRPTNXYJSfw6H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 535 - },{ - "name": "bts-chmiela-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J2aFiDnBBZ91fVKgHSeYtBWHUuESJxMZutbFrvph3CccG1Zyo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PpSMgKevLpyKhuKiRmvz38gZaSVfybNj6QTNW9G8W72mqYMva", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-l3stat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6n6uZmh8crJAoQNokTZzXW69URWv5WP1N4yk4ZH9NrQdyeWUZH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5choWFHuCA8bnnuCCUw7MH7e7AyZpDWbjJj28grAeocqq65vsQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-chackzz87", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zAaKWmcKu4h9MzHq8Ms2Qixa14hiNrzsjcedxWqUj9tUgQtYj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tMSnk4QzG9GJ8GR1BDx3VKKNpXobG54CdSvnvtQVRL4Pq8TVG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-madmax7777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZUuAuPfGbinmPAAxfXwCuUeDkEg9zWVZkfrV17fqWfLgpzRyW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7im3KxYqJoxbtSkPiP2yvyZu3JL2rmaEvo8k3WBh2qGeCUMLPj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3499 - },{ - "name": "bts-colorics07", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LWUVcZh1F8Qg9qFCuKvfVohv7eK5515VSBUn7Yz1Lwz3Ma7ve", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YTJjXuM5AcFhirceUwuYZXew6Zb4kFPDFAaFYw5g7dRAmugDC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1226 - },{ - "name": "bts-cnii-corican", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KttAw868c7ZZbjhjLDm6f1yheW9KRipcBweZvCKA4rbL1cYw4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8go6ZeuKw9pUxHm51LbDYyLkcGjxsExYs82VMH6ykvSwbX5RcQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-ernestmcbride", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fijJGHAXGdnNdwVeHBN2377KMTUzAkZn4wFKf8YvvPJeBYfZ4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6iEVTwStJypddzKPKTvPNiBuNYnHMZ4fL7PmrVuzzgRMfYZ2m7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-lazerdye2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wLn39Kqy3h96oVWjRVZRTSS735tT5iBdRCndPJuppgsSBSYFF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hVB1C22ejXR8TjmBcbqx2sAVfDKY88gAzzrreoo1QS6DHugHS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3903 - },{ - "name": "bts-gkucmierz1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uhdDYuPFRGjJSsfwZzzgtpBWHfE9CX1R9U53RiN9ai8Knr1nC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SLritsAJVrq3NDAkqazcainUhvPQxhWYD1dJWFE84ZkZwKDcA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38881 - },{ - "name": "bts-quant-trading-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72AvF625W9Fsxz3xNKMuYxqgBN4FgEUHmoyndcxpafWDd5qB9y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MudNtiJvPWcihF5XBbzk8v2E3rwgVkpr2NgBj9R92ona2nhUw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 139 - },{ - "name": "bts-coin-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MbckJNGt59d9CQKYDbhBZV3bDNCP3f5EzvLA7aZH9jXVBTvTt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TitzhR5ZFZ8Dr7odnU4T5ZVaPacZpDCRfTvvDfz7WWLBD7564", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 321 - },{ - "name": "bts-gkucmierz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LF7mPZmtKbWPESEMUFr2wjQoiHJA6s89xkGpMsPw3zMYFC6X7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MqS4uD7hFz74FomX2uuNLzx1CAbeS9hmXoSJ1niWZZ9yXhajZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38945 - },{ - "name": "bts-qrio7sony", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hn5USy5NVaRXWJub2gjFChACqbXsckNpnCeE82hX4ubFbJmb4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5abWSSvB6hgnPbU1vyARRqvmpvFpGugb4TawoLkh3TyCgJMQbZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 284 - },{ - "name": "bts-q1119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FatsjXSMyuFkgnwn3TqoRtQ9Zipg3KDT5mnaav8NfJorTcUgx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Utg8NHB8ZoMoGNW3eDhgLpSh3fNmW3Jq9Xt8bxT7wcMQuXJAF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-stephen-jos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82kbZTP1CbMmqcPDyPEwUTxn527m45qw6cqrVTbZohK22YoiMC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5meqVKhb1zTSd4mWWKv1AA8QefrDQaN6STaUJQAGPy9RTWmHwU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 271 - },{ - "name": "bts-m0se", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SXQ8gzzNTitjPshkVcKFVgiXVCehhUFE74rD4QwMoLZ3dyNq4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69qanjDkKUrtSpbD9gaF4xFjFbiGX7rsXFZZ4sgEAjXQGkA7Ar", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ar8173r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xC3UwGSNVor2AdfVTsV4xUPbH52CDChGiq6kcuXTgpa4kFDJz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fekvbD5B6uvgiv69JHwygTSeNkndJTiqUMpbFQAUSsv2jfASM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3739005 - },{ - "name": "bts-bomber1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jnyVKBYUzoHkD8fgetEtF3xHdFo6juHJ9PSgokTPMdjP99yX1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MncJY7X5HrbeQhHyWsC3XX2fN4JQQCwcvQdRen73TWEGKYCxQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-master106", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6G9ADUp5dRcS7zKXPVqTHRJVn3HYcqivo1xvQ2oFpjFLRf7vAv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kA4h4uqAQVA9oGeLJrxKTWNEjqCLyqEzXxdAdm6uUT9nhgPeF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ozcap0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qz53hh5pUnWPWxgiuCqv7GVhaXh82wJTcT4cQgRQw5CXBt2Br", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TcdfhycFNKZRp1cKnN1MFB3vvMY3AVrmTjvzgxqgC3yimuvzD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2397 - },{ - "name": "bts-skyfire-x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5K1wqmrXGTypkogRCmggeadujHdnay5F8HXj5HNeoFrvBBMTn9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rMDCRWDGUdWHc1D3Hc2DcS7A37eNAkAeMa7jeLQARHpN8uZKj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-eric-terpstra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6knqSP3JPo1zVCWpiytEw9Hnn3r1b3ibDjkHekwd4VMXinc89K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h61hfwSzicvyAbVA5tQf1emr6zX1zTNjwZe69HAUUwJdHiMRz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797 - },{ - "name": "bts-mysky11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CXXWrNZMSG3uqZBfWB1bqSUA5QbFkToQky69uXBB3QBqQBcfR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78eNR42YYigcuCM5C4jW6fKRTpmCdKVMpD6ZXtiMogjCJh2BtC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-wwkmtg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ain1bLosYNzLn8fcocEXsTsugm3uuZTK7KnDc8ZpjZgYvxE83", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zUrxQwEp5BrAA3geDm7ZtkcV3oj7DJdCHYCpY5gspv7wriowK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-coin-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HX7XvMy6GA3iNGasLYhfPsiAMCsVb941wUSZgG668rN3uadhF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q1BYsfa4nydy3hdXQCkSM4WM3dz1rEeEKUpGULSNqtDWFkuym", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 336 - },{ - "name": "bts-b0902021d", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g2zj9VCNdxmW13i5vjAbYNfY2pdZ8gPMm2eTS8QPBMTru5zCf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Gqz57LtVZ42hb9HbgLqCmxMisA933HY6HFxqpoEhiMjiEw99M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-genx-btc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7baQ4mCNGEeWW3vtvfaLeH5TkVLuRH8xvnxMuCbpU1xejwa736", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D5FDjtNAqLoBQvXUKAoUth1fcrez785SyNgLHV6zALTYc1c4N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6887545 - },{ - "name": "bts-gaas68", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uSgctY5BPXJVse3fwKMReQVokJ8tJdBQn9d8xYE6EtYcnEnV2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A1rzA6J235QMS2YQnxp7uQ4dhKSNBU3FMe9QxGyWpWhG3o2oq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-adam-szczepalinski", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n4coZQD36X3CSJEZGkS1Pn2y66h3HLQpQPWPbdu4fvCeHWKgR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tfaswzz1uddRUjNRz9C7tWYjGLVSoQuJ2GbdfMtyve7zcuJsn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6117 - },{ - "name": "bts-maemon322", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55AK9fCkKbXHkESRPxv3k8sAbcLxHJtw6fTVW5oiV2veQDsR7B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jCZDiSntpNHqV3n5VNMSt7fojXu9ZFLcLuuRhvLo35zuzLaFV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-ffzh888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kqLRswwk364bNrrsbdK2Sp5v4diW4bsXPS8bZU1oW8bcJ11Ym", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gzfmMsEEmtbqMhLvWbaYX4dpCdAkHEySxyvhdU7fDmZ74MRHJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bittest01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82qTzp4st57TYiujgpJC53SHq2paco5Xmx8F9eTrVgMvG1CL3d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6StiL77E5KgPhyK5bzT9qVkMRKs7MmU1G59jjTguGdbEF95AqK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ozbitcoin13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iYuZB4r8bN2giUH1yFbwNZcKAjKppPANW4kmoBqaU1MNarmof", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kGVN5RdghPLrSAqMvrXLDGjbyN2k8ZPXY7MSPXU9zjw5CrBZB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-rooskie18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e1mS1TMwfU6UvDVopWaWkCEWFCEEi81BauFz1tqr6Nvmc1RRA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MJKiaLszvxJ2aXr4G3w5TZEePgJybsAfyQkAnYBLGrTfNDjo5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-protegea1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V5cXdok5vBDdfcwENpYMLbCCzWAimwSRu11sWL1t4X74BkuEr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WWaeGVsr1cRrA6ZWS4Jexd1WFypsKj1vQg7B2mbRicz38QwSN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 170 - },{ - "name": "bts-cynus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82LpHroc7dDBzuVYPHU4TrUtT6UC8Z58eZ7Fwj4QwBCNzoAWfH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y7gyxAEG5F4Zw2m9tc5Z4JrwojttzWunwPQk5Wov9XqLSxiAA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1461 - },{ - "name": "bts-raven303", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7go8xJe7bjBPvshniC31vJ3i6TpxgQAUiSEorUxEG4PXwgKSA1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tc4s1XTy5D2B4VCcgBFMK6iSAdtqy4rwoDU8Mw4XSDZA4vyfJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4301 - },{ - "name": "bts-sell2me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53oTjLzwXyjfybRdbyABqgicqoeTStmWBazAC2o5NsPqbAzZRk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R3rrgcCzLN4JKaFLfSwoEnTQp7Sp5KKHbnuvudqSSjypoEBdh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-xjwk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WTAsZpP1mKuZHc8fRdnHa8622MqCGGjJjyyiaLkuaJiQ2APvG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57VbT81gt6WWuKsd7ZpAt7afAFS776k9B7zoWowRdk3AbfNf4E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-coldlin9uxis", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-lin9uxis", - 1 - ] - ], - "key_auths": [[ - "TEST7We97rfHMrTd3q7LqcXeZcFegfocF5eM8w5VrCqqc6BXTPKZzq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-lin9uxis", - 1 - ] - ], - "key_auths": [[ - "TEST7We97rfHMrTd3q7LqcXeZcFegfocF5eM8w5VrCqqc6BXTPKZzq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 751 - },{ - "name": "bts-btsabc-hqj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xzj6icnt8TaYtjCMDDevXcwnJfT4X1pUudxucxato1VVzMgZx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82eXUm8QKJ93LLbGnZrUa7ijV8AvTy6gHaqUsQmKH9pqtdbrrj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-john75077", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cNsXJXeZJsXx9PAe4bLJAXjoy2fJUS2vZ2KtUH4ws3BMooHuc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HM9Mr3xbXR4guxHm94Xujga6WWPTQryidjNt8kJXLwzkXiQ56", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 706 - },{ - "name": "bts-tetu1019jp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86rMgzq1W1fYKM7XSC5FmfugeN97yxaXUbHpEQXTpRRQThFhtE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YFyZJSrNNqvd4QmEVwdEMkeD9syLDWKM6n3QcHdXQomWkGqjF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-princessalc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ztM3iVVdZJznvYTVS7V2X5jtJU2YwjKgR6vDez5mvdiSTXPPh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6i5Ucz7kgTM7XPTYw3D4SvHJgqwzybwdjuQAk6YAk4sXV6t8xV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6037 - },{ - "name": "bts-akasurreal42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST715p9ozEcAks9heSL3UqbhH1PxtUbWYERnKwgzfNmzHZi9J4Vt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8We4BxRaQ4SWEquwQZWDs3L73CzMiPFKFmb8jFyRe7BCxfcWnu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49892 - },{ - "name": "bts-sung-tae-park", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mT2qJx3FAB49KfqsP7wXm8skEjkjHtziMRAcCvG3WKiXjFoDu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NCKLZXbmCuiqM4GVU4jU9NdosQoUDKRXn1pjn4aWNQzWoM5zw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-luisasen3093", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55XmH8KwrC4jw1nvnfigHoGbhJodnS1PwuGR66Zdib1SeAXJ3T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WGj1gF27dbcdfWkAJEFEKAbC9t3gn93D5fEVXoTFQPM8oGsDX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-mu-13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vD6N5MXvMZ8gifQc4gx3uJwvhUUjFuX9GvMVjXiEbGUFfmVRV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7p6ECViCfQuxhZ2a89iRgJ7W5vvtCjicy73zNF9EZiEYBkqjgf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43555 - },{ - "name": "bts-spica18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57P1PLVecmpRyiFgi9sc7jfPJa9pwKX6rF8hScUgtW4KvEGzmG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mQA68J6cdMMBr3BrQTfT5bbGgymd8o8WbiLZjxxJazJETFRda", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4361 - },{ - "name": "bts-youpyoup67", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73jSjDpcyAsVeL7n5F7oPLjgCZ8om4wCZbzmTtcGgP1tCtxCYM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x3NQtLUCsSyHyHkEv12LKJcwR9LGjTLFRtuHuzTpCcPKZCAfe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26934 - },{ - "name": "bts-aet-test-0002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZJw6V6o9zN7av9THdtXvBLCzjzv3Aad1UqH6PRpMBsjd64pok", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s4wnRiGzgTJoB25nhdrSFB1GFTYoWjC9EGjkbMYSWJnSeYDnn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 451 - },{ - "name": "bts-hellobts-wechat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w1xJ64tsN9bdqzkhRq7pUq3p4dv3hxAj7sxFk3GQEM41b6cWR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pkdH2hgDXug8gA3GkeAsyqDjKcDX128gnA9S4PyP31zvw8Gnn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-goatmine.etapeco1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q2ppRdkMTscXtoq4rfadPwR7ofUFvgBQzFiP4kyYgvx4Rsyqz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zHakmUhLqGe9uvp3DoV4R1BjJW4PkzJ2TWov5mhXp6GETAiAy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2506 - },{ - "name": "bts-peng-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dqqf2kXibx4fc2QAAjx7UY3ZJ7MohaN5y7GG1xMWZc4inZbYW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77HFpHTJF2vMK37bftDvjSTZMjzJcF6gkJ3Ks1bVsBvmHQKoDM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-looperto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Fi66TqVqKRuFXnMcf2ru8sXT4aM9wPiNiGAm3vC3YUoKHDD9f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7eaD696JApZ1RBtJ9wJV6b75sE3nWT96K1qet5eQfEfuQNKdTX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5014 - },{ - "name": "bts-cni-visionary1948", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6s27g4yiQTCiqHvCE7zDrkXJGbXo3Sjp1ZSwaEW87jvdYkP78t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i1f823VwYvPQPAYP3ssAdXQ6cj3KBE2khdxJEuuCvnWa3xBRe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-pandad1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XiKW2ikArPK5E7fR7QAUMiNqkBj6kW6Suwdb4sDCcb3pLoorb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bHgWyb7JMEPyBHeEdkqCMwwcjPhSvUhBEBmL8KaLaDYLjgir2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-wolveofwallstreet1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wTdj1tVVXGwXaRNGsFkko2LnZ3TG6eiac3x9fKvQA6p49nHc3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BSRBq5AqGefVriK7uJKL2n1CCDcMYW8gUmHzKhdzdZXqRUTe2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5444 - },{ - "name": "bts-mobile.hcf27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JKY5S3Y2j3yYNouhwNPiUKEGN2DF9678dr3W2pEwfQoC3NtCm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7giaT3awKFsMcA1G4EbWMduXvzm1ypepndJuNwukoY3AThrhbP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-r-intintin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Jfi2wXSv9dFoM59m5unmoeHVvoz96efxrbbx5DZdvm6mKLPUp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KfaMKJgK2nYmEDU1jyyE5kTSEorfQs71qGhavjjCrurWLxSYv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-milli4272", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JYh6U6hUhBzdkmM3Rsv95iPxTK1VJaabGb6HXWsreQXpmBphd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W2dz49oAqCSJ83nRCbMCeatbzU259WR6RYRcMGesgqhqRh7mv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-colonel-sanders", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Enf3oj5jgPzKDKSVe1mbwLZRLnaPQiiHGNaysiwsheeiCE3if", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iZuNhShjibbdhiiK2WhgrF1PTh3HkFHEBDJve1oKYoAGn2vQb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-nick1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zH7RCwCdUz4UyvQgHkBxfS2BZ61FRR5qLa5PoRA8oHJyCJFPE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DsdWB7wy3cE2ybQvujamr5c9DYSLo2AkvWjAsSaYRMV12hmbt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-bilbao39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Nn5z1C1X1oNH52zYWpeCg8cvNGbVgbU6R5fqtrNFAxS8dj9Du", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k6JSGzwH5PW25esZmAW6H2ejcFHM1e4J6cvteSjfgMEbqVZZk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-acqualfresh8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59sA8pDUGX2ry2jR7PYYEFq6BGWpSfdkp2yQEVpgMcxBAn69i6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Wx9NMvNRqE9Upa6CucfuYoVpqxWG9wDXdzh2uyLHSsWunj2bc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-steem-register", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t1TXy4xJVidBqhrBTYzGA1mrGCTT6RrM6oTvkj3Zr2TkPF5vc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7joTokcmHGqgAnbQCh3MVC8Mtg3h2qyGVKT6XTjDeL2sEYECZP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37544 - },{ - "name": "bts-star-bucks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kgk9DXcGfkk8c3u91simWSrVcNuEJKdZmWdzYcRRft6MZXK4b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k4yUQJmwDkmRwTY2tFn2oXAhZtLxJrgLwaGmiL9hKA5VwfPhy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cafe-rouge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79F3H3gSMDKotLHHM2JyCuzxptRpdZJDgth9hXYP2GJGYezDy6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79ca47mp79nvWajX5Af6dBfuhcKyqWbXBsbHBzwqsWbpmGdocQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-nand0s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Z4qrkf8PUYXvvPdRJsAUgBkUjjawNpSRtH68NCKFZesFxCCjn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S62yEQmDjaZaTBNYkZ5B1KnMxFSx2QgBY56qUr1vCQLnPWQNR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-pizza-express", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bW8GyzKzRUYQcPFWNwaoZvtLDncmVsPWHkkM4vDxsrK9ARcNr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EGe6N2FZZ6qHgM2F7vQakcAEeArAi1bDEVL5DZd4DzacN9k2a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-yum-brands", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Co7JosqwSoyq7rcueZTai1rRZDSdD2C6ztpWq9pivQK8vEznQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JELPE2SEEm9WUNRo9NSLhjszbNGqqdadpkaWHB94oMDKAJRVp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-burger-king", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59BArSUKh9nNwjGoiZfGPpfh7wYx2Fwa372J9rzwERnswnxP8R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uXB5iG3PZFK6coG49j2utDJH9G3nd7y7gYYqvAmw2vKcDv1Yj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-taco-bell", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yMGvEVF46bx9Q7VWJm2EqsT6jhqHK4V6VsuLmK7MfqhKFnz41", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jPcVknDNahBPLPZfuxAtAiUTzTZAHUr63j5cQJtThdvLrL5mY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-pizza-hut", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ums9DWipx55KSRFk5rxZSU1Fy4nzaTs49X8FBJ84TBvRFNuiL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tC8FSyEbtKXF4Dotb7W15RJNSZTKT1Gumxu3N8Cie5CBGbSzE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-dairy-queen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YiB6RwRjgYE9SkymD42uX3ZzdswVtvhp3PczcLUSWrTzDFRfm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NxZPjvknkmy7kVgUyHBmmxbCzkLKcYXD34kWKscg8pReAQdsc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-do-you-bitshares", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tXAERYDD1PAmCZut9vQqAZMKdcQsDVrTUzJd2bGsCW7JSXmrM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Bom7KoLfB2Vcuz92Hqpzh8vAUrRS2C8PsJZ3Zpr9LmabgHn6t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-lapte204", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uGBZE6vxQSAqb6Y7qVwu3stZw1aJZ2ZMJdM6uFZxjGpoYgSdn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-lapte204", - 50 - ],[ - "bts-lapte7053", - 50 - ] - ], - "key_auths": [[ - "TEST74nWv7detDfV64Tpk7R6WHoHwJmecZ7SnRAXRzXyouUk3hnN8K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6761 - },{ - "name": "bts-orange4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AWpiGDx4mUoUUQasriHS74jmJvzgSJvCw24h1jr1YxAvZFFFu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VrGus3PrABgRUSerhsXuwwhhGP4g2r8z9tyc5q9547fxAvsMu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 267 - },{ - "name": "bts-gord0b", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ewfe3yJPUA7k1yHRNUPCfVqXQcJdxmgE8ApodCv9cdjNEML9b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BZQGWaDHKTw84PVqZ8kn2G8cdqxZYoy2K71CEFNz9N6W3w5vp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-dh-zeirishi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DPjiGwfYvUTPcVfmAVpmvCHZZqhtW2hXSPXd8cqzqPiaYpWVx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S5kPie5QSKqz9yNLPddXhLVWYWpbwWVrKg4UbXWqz53GDr5Cp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-stock-broker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PqsqfcsGtT9gADtH7X794HQfLMrQUKSXpcRgBBFs6cwCvWM6f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fAYjGRtpqefaWLVbNeAW8P4sV4VnqukWPk6SPNSFLUou2WV5q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-waste-disposal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EtJsU7camZ9e593eQjjZSpynM1o37xx7McezPf1y2Qpi7FhuV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RogeJaqUDMrGHppHerMv77uvy653Fu3PzoyUwiBbbyCS1jEgG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-park-sung-tae", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XJjsgXaEuPoBbGVgtqW24t4QVmEJMNyMj4yMFCsn2U9RrX7rJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GeF9LCjCPcvzmUk5CEpw5zDsVnAvAvs2UK2jb5UvyBEFzvsNY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30622 - },{ - "name": "bts-recycling-management", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xh1wBLpm33GH2HeUtciE9QZAF436bieraHQweRbKrjUamTK8T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zg1K6v55Z89AYQREZyCTTTjK9ZuNQuEWBqYYrsemWREBf1Q7w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-bts-steem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bC7M9rYAeeXNRh35Jp12QdsQExJc4V77tin3j92jWrgcpfC2o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tgpw2mgoR9Th8jQ8S4hG7uk12bUPeYTbwEPo8Gg2DAssmiFA6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762866 - },{ - "name": "bts-banx-ent", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-banx-ent", - 1 - ] - ], - "key_auths": [[ - "TEST78wtWaAQgAttEPtcmP2GNzZFbRYCwak8BND3S4tLHnh34zTp2x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-banx-ent", - 1 - ],[ - "bts-banx-group", - 1 - ],[ - "bts-mark-lyford", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-afterglow1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CAkwxUFEyL7WBa3UW4PoVMr2MLTiUeUrf5Wbkp1vUos1WxHfU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zucqRoB9tJBGhZczD35gemxKV5Vry1J26DzB6WWocjYFHWvwU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169421 - },{ - "name": "bts-xuelin5888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wGEYsvoLLKmUXzmjuWdWawiuujouVYd1mue3YNaBWW8Tyuido", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78EALhnV24XUUE5vSPDYuaNYKn6GCSqPBygY7GYAc6D2gohrGo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-triunfante2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PY1HVqoJJGWESqYG7hmzXtULeH8t5pbfA8qcH96JbgK5fDV9G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HqmYT2vrHpwbLgSRZbpRucrySLQhc9tFonbKpSHveeFLwUxXH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1866 - },{ - "name": "bts-kic8462852", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CaR7dH1YUUQgvToPAqAm9XfvhSkDvvTYyVySf3Shgqso4GeAC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WqishswmpnC73kFqe52vNjJMeWkU5vVB5NsktxrkqER1kLkio", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64 - },{ - "name": "bts-kamikaze23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yNDdsoYgXRiZv94NTpfgXL3d867gxznPf8Nqdm4fpHrZVsdEt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KMHo4zxCWfbfmCvqWU3wCZDoSk5Y7zgVxfKyqzcrfWBtbfFt2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-global-finance", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HjkyS6oKN8uJWrfq7LwhT1aPcq7n7PoG9EswJcmF8cWPkrLkg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NrdPsG2oG7wBc2TudWdGdgeNVYCHruytp4vDfbdP2REU2woJA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-serke85", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75nHVR8pBD1fXjR9jGKZCw63eKU1ZoBAM9LAo2RQiynWLs7UFg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dvdGNpexbdmzgNQ4ZbmyvKRZ9pvzXTauHt2N5ETnGMZchtg2n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22203 - },{ - "name": "bts-x6792678", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iVxeUS1oUqdwM3oyNmiP41zAvJjz3TwJACk1EAUsuE2hJoEwE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YcEURTCSR3qRqYHZHiCdL1impTg4MyJyAn5RarfENQxQQdsGi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-plenzini", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XypYPwMdThwKPELrhNEYC1tQ1PpnZxeNV6bFmUxrkJj8nNTC5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8AeDKWUSdqnR24wdyUuEEcKk7iqGCUMssvkpLwoGHox1wnxZV5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 797 - },{ - "name": "bts-god-mode", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gFnqH7th4AnbeQ8GmQdVAC5uZyEYmkrVW3xuvSospUm99hHCy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FbbXxEY383dLBYnUsmK7V9THsEnn4WR8ATjeDG7hq9g3fXNVS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-afterglow3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EaUba2SEeqfrcJ8vipKXPDtXRU1GU5hxhJmSLJfrzMRYUA331", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VamVC4ut3F7ARH2vJWrHnuER1D7bfLhSzgwQFhykYytSzRMek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143672 - },{ - "name": "bts-re-gelgu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P2DKh3tXgA74enQSbYSS6VrvyWoc3E3WhMGYgLbZBN5jMpRkd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aBbVErk8K9xG7h7z5VZzTCyXQTURtpGgcb7CSgH4swyVxz5fB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ableton-live", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y8XXv5r9pUHwtY8nwwsmycryU29KpGNvJ6LTQAW55GmRob1Cr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6G8KS8dj1bZtuu2jSTV6dqwSFf3pYk2qZEisWWNWp79BSAUnnd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1217223 - },{ - "name": "bts-hermitaj12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59j6hSNfgWdBsoHbd2FfV5Zbs2p1VZ6tbgjyC7wTcNGawwTxvo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BhGAQvBePZPauXscrrnUDUuhyp4VUWvuN1NZKh9Ngw6Q5vKYx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4654 - },{ - "name": "bts-ljx12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h1Z2UtX6b4Ag8EbKyF72oW1CyUHZcaeJ8jEMTmxQp48asHF5E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7D3Ti9Lj6b1iTS9dNds1ZKtPF5nmSGe2w9oHKhnPKm4oHVBdTq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-sky2810", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wDUDtSoc1FbrFc89zcNUkMgML9DTCcjio7y5Qbiv3gc1TApHq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67Evwtxcb4x9Q1b5ecPS2h6dEu9eB7xmp1bnQZ3q91YQYnDUfG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-qiu-t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c1cPA3Z7xgpyEosYRJkVynd87bnkWnSdNMWBMNbELtQuuknGr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xA8qBeJd962eAN7Gum8i7Pm5SEWNkrJMKVSv8uMesu52W1NKd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-f-wwwwwwww", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gspJ5GmsAcaxwWBWyiV5F2AekTDU4kKPTVaB3DckMu8dLBGzv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XRJ21K7NUqMyuj9qQkfHPud96zVhCwm8AFbJ5TneuQWkSi5iU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-est1n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sZFYiLYvkanJND7zajBF3SN47wBXps77hs4qSe1m1XieMH3Qh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QAnbboNwfNpNj9TGUvxhZLC4jiLhYXBTkS2bWNe5zkerFNUbY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 329688 - },{ - "name": "bts-redheat66", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61mMtgfjP6TWvov5N866WiYLR7eiyN6RPuSujsKoW2qQnBDtVZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7djRhC6gm5A1HxipmCuzbRuS95ZV2MqU9cfrafRVWiskorJ5mc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37614 - },{ - "name": "bts-wienayca1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85niNLyvoXu65b2yuWLxXMNRc69pLqgLEtxmqETmFSzXEcqqbW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CDEPRvy9yG1DzHzGhJ8H3jHhSciWQpGtx5fUdwyJEAwgoCjgA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9999 - },{ - "name": "bts-ddqdwqdq1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cabxp3hV1jykDnBzdNhaMs8p6mc1UYL3kmUj966ndCFSPvcKH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5erMZTktya2zkhzMNSL96ndMbvBReNQq8jgfJ4Lpz3wxYxSxgv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-su100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ksyrF9GanSLjCyhWdvH9PB4h4SaBWt85yrnW6B6Lee6RiWBQW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LMXaQRPV1N88V3SXxfpLEsJEGSK1i4Zt5nFg73Fdjxcqz16Hu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7002 - },{ - "name": "bts-coderagon1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mNwrMAwB3Wh2HnhhFDBnga4QEPwU2G8msSaJFyuuq9DSP8ekS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dwapcFPqJArgZBeJ8WPzJDXfsDys7XRpNo33QQNSjWUqAPcwL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-mvlhvtkul9c33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZM6XZa9QaEryZ1hbp1WXrjxSJSK6Z5UocUvZF5d6vF5A5HTsg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FA6H5xaFYQCicrnvx2GLWgJF2tYhp672C8FbGncDaR4Mv3JKt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-kenbob250", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NWma5c5CBiGVVe2f4FFoDkM4hWSShYg2GGNSNeVW6dbs54Fsi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JeghJCfLi4YRNY3FgBWrPykvqKA1iHJiB5DEtM7jaiaXQCEJm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-lobifsna3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51E552FrSQKwUvBmgnuDKB3xYapWiXTQCgR9N5PWj5qZGKWhXV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E74NFzQqNS37netVaDmLi3amyn3wZrCo5mkn9piRFDfHLgM1j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19968 - },{ - "name": "bts-skywatcher23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55WcbnkUG9uZu84dSmHpgvvufLzxtMpmUKcb9Wt6mrSgpjCGPT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59dq45JRt1phnWF3hkXwmqmQuHMHhQHyK5b9atiUDoSbjEQ6gF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11497 - },{ - "name": "bts-cogito1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SKobPWJFdCAosBegcK1yiRao6BnhRQBKaX5iZ2RCbqHUWZYzY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D4KmFFxmmufackxLKFkiR2UagXVfXS76rwbXkSFLE2wQTqoCW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4551 - },{ - "name": "bts-coinvc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yGUanvgqYhqHRMxHDHYkh8u7oHmdcdMLXnrsJNoHH7vUhcBfo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66WSZXN2dyxJWPZApWKrGJmMtDAPHMgmEkKxQWpgDastbg7uBP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 892640 - },{ - "name": "bts-yle42ol7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KUyjDKdqT4PwMhqvNYWQmHvfDLrPg9PNPBPoiX1JL6gkW5drx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tG4a8q3epLPqK9SjhKHmnFmtz8JjgYe2FRKkTZHSL4ZHA3ygP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-de-stribut", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83We9xjUNeXx9tD3weCKbat7SbHrMm1dEUxPrLvnknaxrAnz9C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aqBaCsAkzUZJPWSkXLt79sc48cWbn4wP8YTmFhTdKSunZVvKD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13644 - },{ - "name": "bts-zoro-10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8S75LjRW8YxN2c5b17mqVKvDuG36va2LKUzNkDUTBGJWobNs7R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ffNM8Xym23Eb4mKAXiEAkviDJagQtWLPr1S2pssGAUzsL8kNe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-alexbit12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nJTtgbdPdChGDyDzhofw5gP38nu7nkgXHXcrLNPUPNP3SnXzn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rbm6nFqss6CNKpdMPTkCFKeoE5nHBbSxFRrwY16sFDUZaTLrz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-kitazawa1020", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iifmisrVG4x2ozjSyHpJaHcU5h45BoiV9vVTMJuVaoDQgozH1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ySLADJRDqVVfwkXdG5s9tgeVh4PW6EjQqXAPkag8KjyZcPPK7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51069 - },{ - "name": "bts-tkunio00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d1nFCgK8egSbeiWCyiDQaySATNHerWkNajLZf6ouPyR5bMj1c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KXMzUjP5gw7Sv2WWfpDC4RtUVpKJeLLQ8E2m3RT4bPbF1L67a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12661 - },{ - "name": "bts-xpc13527268pc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST774gw7iSrTYw3o4d8VzZTwBPu79jYm97XF3kN2iLRrt5AXPswN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yWVM2qxPigQQ1cVg8BDaYLfGPKDLrdBXdc52YfgikkZnKzs5v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-markr7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vWjozADRYjVvg8WM39qhctyie8ZDWtxMTWXFreZ91BZMAS7WN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dFCxGL6RLgANxdnR4wATNsN4T8MvG4XFvvSuPFVw7MqMYob3E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-drouillard9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XrUyWT6MHEHqKxxpPatbHJvKYaiVN77U9qKrxzxp5tKGv8T4z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UdaHYBwRXgGHBQa12RNrx7YqdChx7nWXx7XHWQZiMX6EBbGbB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 235 - },{ - "name": "bts-barracuda77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VHPD8pAPnmhzjS1zoG1j2YJcDEmM8C58u33aKVV5VzL2YbJFS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GLemFMVR7s9k99Du1aPiQpUjp8pLiQyuPCtth2JUUATHE31Md", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-bobby88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UcLMbEmzBXQn3Y3eWQsPUjsnERbYtNpG2NTrxceFT1dcfUBXV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79HPg65JEHh4AwyRMewXdvyRumtfSU3gGPv9JCAHJwEMudNn46", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111 - },{ - "name": "bts-aplus-assets", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jdTJHG1fgVV2dhZ3YmzxXW46sS7qjkZFbPEHur8tybt8omJMm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AuRUxXhiWviK8qe7NCYVoQ5PwP1CympM1UmozdN5R9zsUjgnp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-huige22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VHHYS8Jh6XTMXadx6a2A1GfMRRJuP5XGT2fWDWqJU1yoSoBmD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DBYbEXnBZBBiivn1xTGHcVsadGj1yxBuJvb4zGwHmbCZLrmhZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-xelawings243", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST744rtJAYZAZAmRkVG7joCvFCYxwPTXFLdtbHzstwCTSfZZsZUr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vS58ZLK7Lykr9oc6tVurgwiwEX8p37CRFVs3H6BXr6E94D5z9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4163 - },{ - "name": "bts-orion90210", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xCaQoo9onQ1A5Xj2smoW8VpydNRgkiuVwXdqBJsCWn6byfQHP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a2rdv54ifV7fRWtcG8MUXMK5cvBcyUi1S7fpsLzvZbHBWDxkm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-coinboss-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jWkVxn5ZDEusixqEDQhUwqtvbUdmQAKnAz1M32dThGeNQUhZm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zo55MC5MPoSDUQavVpQYGJgW86HpMZqo5GAZbwPHAwHQgCgu5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3808 - },{ - "name": "bts-maker-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pWpVRe9v4QVcexYa4RgXi6baQgkHTKve7qgCsL4nzzsRxVgi4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LzGJdS65X3dwUEB7817k7gG3fP1chUTMkEhWZ8sweiqHVd5r7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bitsharespaco01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GKpnnxEp9Ln7q6UWK619kJq3jwVwBuTw3USBeY3GGE55ptne8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zk1Ne5PtncErVQC18cw4xytoECXJXwNK6wBfuN13a4ZbNV12K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24622 - },{ - "name": "bts-fhenei001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nngrG1z5EZB3hLArzECe2yBhjDkHBezGb4wkJMsspVCvNDC9H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Sd8pyZhGHa66nHQcc4toGykeNB3c1beHZsfXxpqUTcRZSRSQF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7699 - },{ - "name": "bts-wxibing2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81dQcZm4RDArLfHqxG7VxLz86aoGfn5LjPQ6z1MberbeApSzry", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C1akiXyBNZDBjm2Y4dkPFYeSvy5K1YvpjYkRp85yVd34V4Q3Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1615 - },{ - "name": "bts-ferrari599", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KiyXmtEv4iXQJ7yCoK76QNB2zFcCQFXuH5jK9AecHn7kiiESZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56WAMBXXH8t1yG8ZDtp7pPy6nnui66HZ63VsZ2w8qrCHco1kau", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-danesk1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oiRZ3oGLqEiNSP59ShvWQsjqWbxVeE9iEqK8H6VvfmZmUabxg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TqkVhX1vYvbsKe4RkGK4VBxy28omtWJMyYuNBbUv4XjeiuvUm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6517 - },{ - "name": "bts-panos2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BRY42h6GUnQq5BpNg45DCY2ZMP9gh59n9ofY217EvDGDXDYek", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TuDXZJ7PxyM5ryobdUw1a8LK7aMo26UNyEfjNPpQFoVJxS8qm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177163 - },{ - "name": "bts-ldffiwdjdvvv01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HAxnE6TcQR65eELrqKqMNhi6dGyDZK6zcFdd8YjKkjWiPxVrH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PkfFBL583iBZMpfb7F4Kqr45fFx8vGwPMd8bJg1J48fQBMn4R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7510 - },{ - "name": "bts-mcnobody5287", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j7YbYjzB39uAxab5JSb1gY3DKkVvL9uzt4QvDQ9tdW1VBy1KH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5raeXrKeBsByp9F9ytuBEsTc3zqR2pgUJPtfg6hGTjUPBGNCtp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-jacklore001gmail.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iERyGrXSRszkUgoapKMSZ3JFTNu17hsfrB9QSRwV19EjPtLvU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ALXFYBBcPMRUnAyVekbd4SHBXQG2oj688YDRajYU9UQ49SGgn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-dgd-trader", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RNLSuCGM4i1x6qvNbtQzxg5wLNeq4KAKvno9DSdiNJHAr8Woe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ev3T5CsPLSNNixUvZdAPpH12yMAPCBkZ8zkpckYAdtFysp2xp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 349075 - },{ - "name": "bts-ajeto2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72Tp2nYvE6KRNpW2hUqgcLws2neepoTEgpFazqopmsezbeSLUj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qPLRomZAGBjtxRGc32WDnS3FBzz5Jo6spt4cFzJQmbRXBnV6N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-open-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rNCZCfztpnZPKiwb1YQ2g6eGchQHjkKasyUcSxsKbm4cVNrmW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fzXnBEAFV7QUZeiMg5by1EVABCBNUoUFwhaMQxQ1pXLCXfG2z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-akpmssyzhrt4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uHX235fCvQheyuRJNJ1kyQJxWgCobeQ3YdScv1wdNqfRuLCcd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gwHyrQ8hBYuKGrXmZPt4zjNQozGodQf3urvU73amRBjJC3t5d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 286 - },{ - "name": "bts-taffy-trezor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59YAoN65ZBKiJsq3QtzSUSk3MkDPZUWaZKMEU1KiTKMHhx9wpR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54wXRAK4hq6mRZ36Tg4jYw5EnapKEug8CsGnyMaFtBMoAFyjTQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-humpdebump1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wMEh621junXF46Y8PYEJgtGxrusgiaD2TP9CmBD2gCACyhcjJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST748J97EePEUZHMbrEs77uWaGyAEkvM5Vu2Qq5roB9wUbgN7qrE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 346 - },{ - "name": "bts-webpro1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oU1KDXCCxbLKxPTPq8vNfA4r3YGZ7AkHLgzpmkm1PgFPAHKbK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78QGD67EtpNmaZ4NSpevLm9ANehrZpgcrS915WFgftmJwvtguP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-mtraveller-12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88MuvVq2mdEPwH8aY8iQr4RYLGBVko8LPMx3521ZZfAWr6qKBn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VGf5BuPDqteC6a9uxndKLFNYiURydSmVdMNsvcQAVR1STqzeH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-craigpearce1313", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pD5kGBq4sZRdd4Kb88xXPSHideiFtC9xdkMNcuBinX7yTQs4X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VUuYBVSspoZYKvokk8S3DyUvRfy5o1zcHZeaxexoW3RyZSM5C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 115489 - },{ - "name": "bts-yuvalgov1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T3zWxQYpaUmBhf1d3ugGzGkHHS9qoABTeApLNfg7zHmiFDXNg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uqA7xvEBj8yapCCPL19vnryDe1ZXgRUwcaLW7hummbyvj3eai", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-th3h4lf50ul", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Vg2zFkSup9XBZ2RHUA69oxbtTM52n37vcddzCiZVXaKzm4aTL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67ayMaaY6hDkNoHTsMRiFwavp1mhypymQkrtRYaTnXgL7VqcVU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-poloniex1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EvYgZdiQBR5TDd3txpRqCCscNZnb5oC1m5UDMpZUAuFVtv6zm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5czucCYbi1tUarb64AfZfuZEF59LYsoxJJbwot18a5VyQnGapY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 324 - },{ - "name": "bts-coinknapi2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d8gjS9gsJsBrF55SD9NuHvcZ6HDS9EQCYStMQE7aGF5C1MiGz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kbM1kiFun7Lnrdc9Gm4Xx8QURgdUrw2v6VgiL7EbJSEoyQWAY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-jeriaska1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QGS6kANbkQBKWCbhq2LJLyrQR9v6bWn5DpXGrtbsAtjDvNNpK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ybfhEJHyQ9jbJxp5sTxYe28fyTBWnn2AZmL5CxxtnQpFA29ts", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11391 - },{ - "name": "bts-elhoyto1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EZ6tVFQY2mT7mMD6w2dL8yErGu8uw72c887tmHCHAFdz3DUux", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qesZUuQJNNn3GXQZNjbq9SaxWeMWURHzq9FFE8BcuyCmTJmLY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-dont-know", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j2v3Cp8T1cJby6ZyqXKaD7s7zPP9LxNbon98r5Zyd9i5rDty8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5toXfC43vJucK2H56jfScJe4kEh4BPEpvYuHeh8w7pNdokt2Vn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-logo-creator", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GdVJajcieV6ztq7zNaGFvbQ6zHXjPW9PskEtQqjLqpezSXPEf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MWG9BrAvbWN3HfXiaN7ej6jwy8suwdGR6Rss2cqjgnKg9mEC7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-cni-macks710", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uKMsusoSLWkR3LKVoUp7MhDnfbnSD4dbBuR15cGPq9H3pWg9N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tsZ2j9kggi51xe7WnEmmrzCvr6uZ9tpPC2CzztQt2BnKCAwYB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-brownj4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zcY1BLFbq7rst4DyWnnFRHEFQv2DQoiM2bwp7qgvdnVXwDuc7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VQqr5BhSeMo7K6pDJjdYvV7TnSCpJSWnJvZyiCtHKPvkZcBk8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8947 - },{ - "name": "bts-portal7dgs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bwdpatUfHJ9nk1fVxZ3a3CEbGTXzMK4ENz7ma3UmRjqpKw9zM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZUAhuPGq4mZfyXQpfe9wU7A9dR5Py2wT8nevfq6jjDg9urDxj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-rvelez83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XGAUX3H8PBSpMwjV5uwkaP6Esjm2B35rhy2qDeeoN7jq5mXt3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89MTq6nBHLjh5Y4nm4SpDMFrgD6xBMskHroKRXsZ6yhjvrtYMH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-humphy2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rbfZABTo9FSsPtWPZxt83RnXTUKSMkUSxGHuCT1MLj8a4fWcv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yrcb8BPw56HH8Y16ecy5ySJDWNsNx5qsV2bCzzUBvZu5GSnLb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4240 - },{ - "name": "bts-omni-foundation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SFAZNvGUV1N6XkN3ri5qhc5HfyU5gMwLrrhmtCwgeXJtKm29F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ReGkDNZvbhGGb2fMsqMmsvqwCwkQ1bNgnijjpEX6vcy3QTToM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-s4br3g3n3r4l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79JKa7gm6WcF649eHJsts2v1L1N3BgykfkYjFzARootkwMZsxn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hhg6b6rHyZuYzNinGXcsiVkVcYW9ofjvY8pEjbtu6x51C4mgF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ikrachou3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DhMg1aCFTCLVVt6UNCe8fWkQQvggrz28ZSTpwW8Q8q96ZmioE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hH1e5cqQzPXxtaBrQot96Y48ZQVjYcumhUk1xsnfdbqLBKtxu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7667052 - },{ - "name": "bts-n1ck988", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aYektjBaaWbx6fddztT36C6mioaC3WAcJxzdWBz6dDGQrkxQR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67MmZHw9KEzA4S8w5jbSSnpG9DUVwg2g1u59JDpc1CeRyopr5W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 377900 - },{ - "name": "bts-kikocherman2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VGY1NR8XH6vdYNRvkUtA13o2gcnykCZJX4n7QoAYySGEV4jg6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y3JCUK8unKhDLLTov7f8NE7egWUojETWNefKU8SPsBAqo9D7z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-xen0n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wik3B4X5nwVns36t2Q5x9DDXcqhiqevvMdwWe9ndtmFqiY9Vo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gzyMf7oxBUw6waazjKMUEFjiZJAQ4zQmZsQTn4iazrs7PGush", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83359 - },{ - "name": "bts-cryptodex-assets", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vH6ZUFZxCiseobWc5bqQbqQwRkXCh2AWdYX2ySft18nNRWHaJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HSsKy6Sx2f94n5rkDeMWYB2fem6kA4yJeqMYuUoAczvAy7S2P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6464 - },{ - "name": "bts-angels-bitshares-vault", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Axao6Crouupx4ZuK27jqt4ZhZpCus3EkjzdBSMqP1vnMWg86z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Wv1MCB55zSEBWmVTcdiZyFUajYkKV8Ps8vguEgEdEeiWWT6Qw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-gliss-btc2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74Rnhxj22vQAkr3EiacNd1VTbysm3DahhxmBqEQg4Am1MsxACx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Bi11Lpo93hnUqsz5tccReufm4oAzSSCJQ3dpr3koMj4C1KWZc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 818369 - },{ - "name": "bts-c50", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M6pSKZgxsr6KkVVgcYvF6B92T49KoLb6KiHnTnxgSWrB3VSkb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wvmFYf14iGVxcArwCDDA4KjUEZuHzEVvPGf6HHaRv1vx4MC1u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-tereska-pl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JGnM2uGkNgokdA9TeUZQCMdsFYuo3NXTLDnXpKj6PVX9pFY99", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aVRoKBVZ6NEQNLmGZiJjx3JPGg6zsZ4KXqwvCspPU32wUEKG9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 180 - },{ - "name": "bts-teh-crypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W2f9fZQYGHSFagVaBbPoNmYLsfgeDZ6wcSzGPQMJacfAdZWVz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57MvcnBmXMcbnMQY6SyB4JqZXzppgBf8b3L7wSb5Pa6RQDMT69", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 321 - },{ - "name": "bts-primevil2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GbipboZXgEw8EfiX2QKGUCKuGqnHMZM4J73nxWa4Lo7ighNfN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JZ9qjpg11UZWbNeRDDkp44siLwG7i5s2KMWeMRm1k3FztMS5p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-balam-web", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75t55xh5ko1DASwVQrY187oQjipAeqgSQE4vG9qUbTfLmm5ANz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69VZD9mz9utwEz9a2dvk8W7YcMQXni1i68ae3T86hvXWdNhG8g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2073 - },{ - "name": "bts-atlantae", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-lin9uxis", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-balam-web", - 1 - ],[ - "bts-lin9uxis", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 694 - },{ - "name": "bts-rv1976", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xvDsjBsdWSjdmrhzZo9DACHTBJU5W6pA52hjvpzDcf8qQ7udZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MfRe6HG2Spqakireo2PseuJY2Ukr4tNybWcCSuBcdkNL4uQzq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32362 - },{ - "name": "bts-sappy5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KPy2bK2iJ6eGJeEgDX2k4avpnb8o9JRMtSXybSP6NxRHQgF8N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UstM2hrARxVHa371uSz4LKAkEr6GgqeGPhsWDUoaByqT1iw56", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 173 - },{ - "name": "bts-aaa55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d76npn49Tv7x4pBPoNW2t5iLPH8Am11j7Duv6MCcAxrWbFq6i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fbtXP5ESrfPEYX7mvQA1SxXeTtQCnGnCRATRRD6wfKbJxD3gP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 417 - },{ - "name": "bts-serendipityfarms-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mKYHYQU4hPnXPPCTPVE4yjBZQietcwEc3HYNUCnd6BEBoYSV3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z8WfwRnqXtnswVRkBrDhJLXdhCd3bx2aiavv623Gr389UnXK2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 100056 - },{ - "name": "bts-rodrigoc1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CB4DbwMcihrJrGFSEGTKBhEoUVt2WPujVMh2zvwLNa1yYAidM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RrMxm1NtmNxQoJTDnjQB89xe8h7Fqwzj88VrTWshbiLMj2CMc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-teslamodel3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QEPUWf2ai2Lo52YyW8vPxVmSW149q1yQYfoqYR11nXPmuuPPT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Btm1pvw8RbPMrq2H84QHj9sJcSbh2y7TezBCPTkd5ZSz1UNUM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1362 - },{ - "name": "bts-tesla-model-s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mj8L94NAFrid5udYP1g2i3cmktCecGzZ8vnT2nLydncvwqdic", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6h2NLCQF2kkKgHr3xM2NvneQ4XABwf7n261t4q3AxPbjdEDAde", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-upgradeadvice0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iiPARbD6yYjS53YpVk3ojkMemBp5YAwKXFn5Xf2Z58wJvWKUL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TWC9Gy5LUxKiqnHZfpRfL7z3gh5c7UG2Ea1tWHA7dC56UEio3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 726 - },{ - "name": "bts-markmidiev88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68VR6pnL1oKNWcYqFu3Vue3NpLLvCj3hFKFqhiRuVpoPPZFhNW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61mn4zQEUsupBuoGsCuAo6KgFZa1MFGMbLhUBnBKAFRvWVUupH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-taffy-taffy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DpS9YsNzXnyrSranbTiEgzV7ob5kokyf1SCKb4dk56pStg82R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57wazPqazuCC4g12WB7DhGL3bJudEMS4QMnVcjmB6RzrANpMmF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-steven0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s9Q42Tm7L7bNe8T78hLgavjij1AN59XSDN4L6cyaNy44voKso", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vPqtFYi9ywPZWQXPEyGecqftQj8zqNeLuxveuqUgAMt6FmXC3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ripplefox-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DKL81pxMfYfgKQCeWx5Bs5tumJAzm8UNaESKMSpjQKQkhyBxz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cTFTAUheYAyWnHV59uHpqZo11M5ief53bR5sMtbHQCjwuPKUU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 826 - },{ - "name": "bts-xkmo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58vaY6UGCdFuYjb4b2GbZfUma7ym5RWZBXR6AaSkoyFVeCKnt2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72opR7Ywm2G2F74GHForZe1y6et3wVFdn59jcgbQck4vZMYEgq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 566 - },{ - "name": "bts-tiger-in-ants", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yKsxiK3sDPnLzPmfPnwJZGVrdad8EygndRchEaSA7gjP87Rtc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pm5KFMNi9PcEJ4C5tGsyNCR1D2gE6kuMScHw4UeqGEHnEU1jM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69 - },{ - "name": "bts-hc-cookie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MB5KD9kTq4vrsKEdacjdnS9VTbmQeBdJXqDP6eJoMuhvmxGCa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xNP9PxeXZhTwmyd6qx1cuWMhHt4TpxitrCmmTrfpvApJ9UwGz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-macjos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KrybxLR5cRxKboCTLpkWWRXYrvb8tzmJxiBfjLrCdfqpQTAjr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7631Yw3B6pLstz2s1u8ZSpht5wbekLHpdbb5bADvLeusF1b8bi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1484 - },{ - "name": "bts-dvnnsh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Kn2fdMXF1DkeDAvs9qKX8ZqVjYtkuYXrtpTvDpnfdKr63zeET", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EeEcPjundLwsGy1gBMbdmqaJLcaCnCjsqLBzKRMquv34rh3Qb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-tony-he", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jjPUaydzrfo1esC1KBjRGjqEzDmzpVGxDy1pAg8HFt8bTjQk8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5R96DxzRGzhnimXUDpX6gwYDFWenDi4PYs3MRvQ7M7aCnVTpcB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bonnylove232", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jcbU9oP5m9Kiqe7emZKDgWQdaLdrYQs9ehiTVkvjRhRCbaeBW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xxeS7UGe3aL5cPLmS9ngV71Zi9ns5mYQ4YfE5fDvUxWnGAzXT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-marie1979", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f5h5bpstyucNnhcnqKbbeCPubyZ8e7UPoQmhu4J7ujm8QAxAn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6LiLvr9i6oBKi3AJwDNNMhwy8GxcBkz5ALmKjmZYR39dMmSbCP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3740 - },{ - "name": "bts-sandormarai77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BY5TfHxwEwdEw6UgH5jqvbbu4Cz3jZTxZj1uAGDJmeNhtDDii", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QCXUn9mJ7mdAnYMiJaqPaNEcEBcurr2vLuuQDPrYgWFuytFsf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-sch3nja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52SGgSSQNW8bi2GHfijRZY9VofJGyfmzFUD5GmVsHNTawDKuzM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SVdQk5mw22T4W99z85rLhBMjyeruuHe1m5kR9ezMCux7MVtXr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1995 - },{ - "name": "bts-cni-mygold", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST748Pje2UmFQ9YyRa4UwQd5JzLwCZ4QRShVfcjJKCJbtA4oxber", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7eHuqDayC9Js26o31a37siJAkzGv6Ej8c3DgrrpcPJwztELjMa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 731 - },{ - "name": "bts-brutus93", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WgWezCSbQ1ai3Duo6nVoKrhWTYmrniUgdxe713rKAPee26Cxj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cGRQWKt5ZLTjg5KDLmHURr9ZfYmqAFWrKoX4TwjqSedzvkScy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-kevinhoo328", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST586VmiceoWHdihouLBfkHuGKnq99Q5axPVAW54qbH6T3B9dZV1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HCoYt95ayiGp6joLdca5dakXKDX5LcX7jxZ5pFWNxN7YBAB1A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1884587 - },{ - "name": "bts-thinkpro2open", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qYtgJnfMgEk2t2bZcdjfUAcKYbJ3Nw1UgFbkTX7ZY4UvZG3Vx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4uXv2yn62GKFBNqTx9Nu4qc4uD3pbwb3C2nxq6CJXD18qGpvXm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-cni-wilcoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QzdhgEsRP3eYCKcroLpZWer5Q1ZKwiv1jAuPFhJksUTMUWiKi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7aJdixuvsiUouwNnFvSVTMaDn4a5VjwagV5u9wyXSoowDhnSaA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1581 - },{ - "name": "bts-cni-garthknox123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7frda454pry6YcAJeM8P8Dd3jm1znwknaEnMihrcC7ryawwqvU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST872UMmBEQyFfG6CenWX6tDsQoKhfENokNRELUzaSYFbyT5kir4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 956 - },{ - "name": "bts-opendao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81E5uySLhQ1wgkgrNfLwYeKYDB6nAMfpc8eaVswskPDt3gfjis", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XE1QmrrRVQr8McHP4exmKuKiSumMEGrWhKqxE86Vi7rogfYVS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-icoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PLvf6JJ4ysxrf39Miv1jAEs5EZ5JVTt6Whs9XSFBHKUgw9bAC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xTG5r5836NEoBCTccjv6qvDFjU4zc4WsHPauFGFjScUx6XXDp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 315441 - },{ - "name": "bts-cni-florene226", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jfCfc2BEjTUUXqhybivg4ofhh3U5Xh2FStDzPocPJJZLk3NbC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7H3KjUQHFLd9broQXnppAwVBEpiL9bysEEX8iYCYjYrxUhKBcY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 689 - },{ - "name": "bts-cni-jaimini322", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WHVLPWPNzomzZSucXgUwXSWGn4ePTFu5QmprBqTBjht58Tq6D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Y5YXby5tp5DYN1KtXPCWkpT3WNzrrho3Qxi1ZSD5uKyQJADDo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 711 - },{ - "name": "bts-ronbernera17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r6UJP1FcFco9UZGSHuUVfeBxQ9yRQxHwVwrU1ok8SgfVYP1S6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6L2vrm89JQny3KF15cErVRNDRh5pHiJ9xbKrkKUnjhc1UBUHqB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111 - },{ - "name": "bts-nabiac1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q5E6DLT7Dzc7ZTuu1pcohm3LCriw1BtVzqSDqfetYcHQ58LvY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6K5MWyNziyPQWMzgd2DVxdFAHtLU2EyhnsbWNF4ZVvWLqS96Re", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 731 - },{ - "name": "bts-freedomrings1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B5J8BnfJAjk64AF6uENXiPvwabqqAVKLAqrRqMMoHsT79G4nH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6YZZc3wZKYh1LeRirLDwM1PnrHzP9avb3VGgwvRZF7KR29yFKD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2831 - },{ - "name": "bts-bit-aff", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h9mkEdFVfA6v8daqYduPgwhwK7haHBtYEb6FLsSGTURYuo8Gd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uGexFn8wqT49oNYt5z3pZjmpJsVsXhbe5nPFZBvegUumNY67j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 680023 - },{ - "name": "bts-cni-mai2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JFy1u6VG6cheUeoei3aBeWDk8KoUBvd8T2YctxANGtdT5f1tJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7yAUGphRe2Wczh8A5D5v9YThSaV6EVHxJCvwwxXxj4idAKmur8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-mm6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pwtcgUt5uJ98VY8uxMi2GeSsr6UrbK4eCkR6BBrFomWE6WUV4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Luk4otbYXgyjSEyfVHayw3zHTyygHwUy8H5hWWo5rs3gVWhBw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-noon1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wb8R82ifCuMkLN3CXc8u6ssgbkgTZmgueyHKqFzxbUzSSBSvW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uD3tcFxSY5JpNJUjmGtatvNvbvG4jz14CQGY6ti6B8TuVbazY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 648 - },{ - "name": "bts-john1973", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gbZrQbpioexRHm4C6FVSxLRcSWurAxZW22rRotsyLUU35YqtD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ociqePWVya54kHFjDznyTc6PYwAewrr85E7VnYCqBZ4xoi1pJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4059 - },{ - "name": "bts-liquidity-bot-mauritso4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tD4mtyDawQJ5qiSumwytDwtX3LgH5BcR6YXhiNnGTnaij36Mw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tD4mtyDawQJ5qiSumwytDwtX3LgH5BcR6YXhiNnGTnaij36Mw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39018 - },{ - "name": "bts-lisi-k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7so1w8fPH6MQVrknCM6TTamSXcDci6ZtmKWjQU2JhitmJieJ8s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Pi4haQb6nuEtvcWXQwipERPyecHRpMvforHcd5e3ua5s1j81X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10351 - },{ - "name": "bts-cryptoversity", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zvcoN617SfRppEvt7aSfN9eevv1mzrmB6Uz4HmHomeJJ4XHDj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sYxQCk9mZ7n6v2ggT9G6HBkjuXVi9mPdQwaB7sbUPdi8N167e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 219 - },{ - "name": "bts-anonimau5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61bjpPTFA5eYw56BwHqMJR6QXx8T4nxPdCmsWNZqgJ1Ux4229u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dHc6NtJaFD78jWx1kPwrsnsjKE9FnMEb35Cf68ymx7KxjWvPU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379 - },{ - "name": "bts-siva-fund", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XkkqptoCnzzxVJDN3qiFArRHh3pkzknyavds1aksRFor14txB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y81LG5tLcqHoyQKx9cx3wf1SJvetX8axXQiEL2ReVjiM8Zbwy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bitars", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VpMTMYj5RqDFnQwu1V6SYWZ6bnKEygiWsnsGRKuKzB8Hj1D3K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76MV1hjBZPAXbVuE2L7t5h9wtx1kaSyfaebdDirDeBPMCNE94u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79851 - },{ - "name": "bts-mytest123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7opHG4f5VbtkhGiETvSKRoNaJGUcwHnXhfsrPB6sAadU1Emys4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-secured-by-peermit", - 1 - ],[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [[ - "TEST86pLcae4y5Z6zEVgfRWG4CFEJQ7KAgKAc18CMmhYMF7aiWjRgs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 148 - },{ - "name": "bts-ninjasoul", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eqqjfFctXsYUfaFaBbnrmPz5fNVTGidQWLhxZpV5gEKPZoMgT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67fULyV4AgpB34RdKCfyFRJSnWU5KkSgG1sHXtpTFCBeK8ZGEp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-manugbr93", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kqqZqAeZSisu6cyh84RrWsgDDET3Cwhm8PyzSKxDG3YrbgfZB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Hd3eqwhWPc8QgGH3hmcH31HD1bH1SsuwYLJipFYXAmL3MdgQj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 543 - },{ - "name": "bts-kyedaddy3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jBTanASxgKwqWVbvoUJvc786PfdYMPEEW9YtBDMaV6R8RbP96", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5bro7XvsSUe9rMQadeHrBaVeyEW4uQukXPDvDmAbE7ERxqrPkx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1831 - },{ - "name": "bts-jspook1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8irPPjfCTr637mqSforc2TiMCTzkThEQjSNXoSzexNZU2L1q5T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Lkk6dBCpdcHctcBCKBPr1UvNME7i3dFzwCLUC4D4w4kjN8prV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1833 - },{ - "name": "bts-cni-kmds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LH4rimpGxE8Hvo1YZCPx8RTd3zzupErRt1fZ5coa8sHY2nDEB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58Nawgjz8L5gtp8k8P18SYYzk5bjtJmhYre8dHPqs8jiGZS6gA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7902 - },{ - "name": "bts-burnt-eloi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wS8y8M7nmVR3spGmcDJ5i4aNbju76gWBSDuEgKv2FL4necjkB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kLuk6RvLH8DHWHYxSe95Fkh35Fpfs5b3hFDPWDBQ62dH2WESJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7145 - },{ - "name": "bts-simonsun123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TGjpvbQKvFphB8HJ5q4WH8V6WuLbz1AgtjXZ31khsxz2qPEcW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aLPn5MyMSaGrpkMJCPZHVhoNBoJcTYLJ5fK14rHqwBCvfN2rx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-cni-marvelous3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST899cj9DXGk1sBJXkrpFQwZdaUX6BJuMF6v7aDPDwrzBFMGmuLg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST83TXg5iFAeMj8YwGBAdhKL7LDSU6qTUzU179N5kaQ2DJfmi4oc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-murray-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kwntnnyqATDg4NcEDH7wHbT2Zgj7ba8bV4saBBBSVzkhYyNdv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KPd2LYvULua65NxvpSysycTgqMQU7capcLu2AsZmHqdw76zZr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6922 - },{ - "name": "bts-furuinahasu1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q1pKAMYi5nPJWKGQsKfLC9p2ZWDE7oAG6A9iNMuwR94thRRMz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a8ukppwB9bipNHWLqmskjZEYgEnvtKKih5b45LB8djMSkh8yu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 410 - },{ - "name": "bts-cni-judyw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cUksJyV22DHy9tz8MEof4zmS2ZfEtBYXLyavhtYb6BZGpNurs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6URjwLUTjGKMAuF1zRtEeiQX62tWCuC3yH6z5uZ2mhdth4cwts", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-adensound1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST862MLsjtWj92ZgkKxWGu4PUG1Nq6hnCeiuGzFWdmiwb96J27nA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cgmsdrFCc1hi226AtUerNg33NgMj89PBdfwF51dcU2c56VkkT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4543 - },{ - "name": "bts-cni-larrywied", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cVgeUCi4MfHjjTvGH6V8DN8RLFteC6TCTezpmneHehGhuTmZw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7xgdBDHQsgmf1hDbV7q9ePWzKoUFuc1g2HyYDRdgM2zLpwo8MX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-freche2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FYpu2JRS146tu6JAVQjWWAEDXHVZJA5TSzXyVvHqEpxyZh4ZV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AxHAj42fCuvDCywz3Kumgdwg2vZZzrYjPJXTvQeXtd6DrgK5u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1806 - },{ - "name": "bts-true-net", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69bcaydLUa1nqiUdHytudWCDYUuoFFKpj7F6g2vSq6RDdgPhiJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QyPZfZfuu3Tbe65kmBuwgoURqZrqBdxRDFvMJoTLo8vvWB5iW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-daowisp-io", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59AhkRyLQZVTS663ZHYt2PFrDj2HZkgwKSz6MdngtM2kwghXpW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nNxSYPK1WdrKtj2aM721CZAEJPK4KwfS6tUrYQBTAKq363Pqy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 239444 - },{ - "name": "bts-bubba12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62TRQ9C7W1xk36tnystYzRYyXQfWrE5WdNzK2h7Jgeg9oX3VvM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qfxyKJ4gHYkbtfYfUbQ2kprXjDeS6yJ6pM7LVZkSnc5uo37yP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1855 - },{ - "name": "bts-icocountdown0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BXtc7ovHhL1vaqRVXriLPLZy7dg932Et8kN2nWCf4dMsiL692", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86uyyVTynxtDsRM9qCssUmJD1WjtaSBZ7dCgRdVRHndLaQhHCg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 880 - },{ - "name": "bts-koreha21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mBny5vSAaK182BRnvtriZspTcjy1VsdD95e2VmMrmzaHb1uwW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XkUtC1ZxNGR8h472NUfhuS48x737g3qnEq7mFr9wRsGWr48D5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-liquidity-bot-msp1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-my-trader", - 1 - ] - ], - "key_auths": [[ - "TEST66hztJgu6ozwvSWM9ybvdjBwJva6YqmHFiP5eiVyhLR4Mbfdof", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66hztJgu6ozwvSWM9ybvdjBwJva6YqmHFiP5eiVyhLR4Mbfdof", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 364792 - },{ - "name": "bts-liquidat0r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64xCWQeSckV6L99Y3FxxXT328gVGicKgE1d8bppDPg54rAtL7v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DYLCPmgRRnELnczU9JpuBx4eqresXjuJzxNDQBL2FCNTuFXNv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-a993eva", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LseiUwPgcVbqF36Mnmi2G74aVXgpZjmZpQSTMgywPq8kJwNXA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88FX1n5BN3nrxaXKxqQEse5wYSKJTCQDSSF91gG2ZPkFeMvuCh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2722333 - },{ - "name": "bts-aliki-zisimopoulou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aSEzFsucTjVKPcHzT4SbDojuxh9e2xjGQuJAHE1Z1jp3h4wji", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LKn3i4ydYsxKLyCp19f1pj2QcujrzBfL1qKe6gKd8ZfTDDVKd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45154 - },{ - "name": "bts-steem-punk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6njGvJv16ui3S9pHSPBEiLny25wpRaLwMDqc2k3eSV7N3SvpGv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vxFQyqE69fFrrpHf36BxEtLWzD1a7Nq2HgiZo6Bum3SvwJw5d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-tonyson82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Swa66j6KYgWegQvmxsGUGy16ur1SFJMPsi1Uxpt9egCN5b7Cr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vR1sUFtXJeKwNQMMh83sujxqcdeMKiDTFuHM6cYu7ZoqoarEQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-benold1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hNwxrUyWeGCJYNbqLkTDLNkeQrwcvQk5CCMcrbi5YvoXyd643", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xhqicFWP9nkFP14caLb54jZyBWVKENBcKgSTLCNrH4uM6ByTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 179471 - },{ - "name": "bts-k0nstantin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JvfMWsiyjTwFrxtZz6Z7Ngg6qPzHJpSbDhEeXByo4Ywjhk4Tg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NaPKiZgqjn4MU9LbGAuovSfpXU9LvRKqEKWRnn8xxyXrA6WUG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165172 - },{ - "name": "bts-cni-webcat47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VQ6RnVth183r9ThYdbG6uwKrPjCBVick7YA5F6qGtyLd8tvYW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7XsmpPgjVAwJYTEYL2bPPuJqNgTanYKsTqj42Sh4NiUAU7wk1Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ba-boo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WMSFPDqYriszXwswEfd76SK3mdUE73meeP5zoSkA85XFB6yRQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mJwZr4iZfmtpQauVKeKnso3k5hsRSpj979TG7M8K5YyjQKw44", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 431 - },{ - "name": "bts-cni-craftylady41", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NGt53FE1uEqdss44TpByPKvCe2JTRkWrgLYBMfhwr8jE1QXq2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6bxTqfFYKkPbuSREFnSEgt5AxpMVEGTWnaJQgby4FrWGQLnF4j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-pp55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZDxmeDZ43PS4aeGHCfCCCkfdiznaFed6JBGfVATzE7BAkX3Xp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q9FEcFTd6wuTWSBWkopTVQhvagtcWjBYUJCq1CEWiVbqFxGoi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4342 - },{ - "name": "bts-michaelgenu4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q8STiuX9ywKUB1hP8tEmBTdHk9iFArpZiQLce6A5vJ93VYk4o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5G7tAptzgTnN7kbbCZ2wDAEC2EQYMnawfewVwgY9jhUsNALYAX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1844 - },{ - "name": "bts-gumbomudder1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59Gs6W3xuC1H8fgZYjHbcv9L8hBHWKaTP2mGXWDqat6XygVGrR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6M2RCmWj2VozNfGqZ1SseQC2gQXXdp7ayTGoT36L7JrpTPZoFg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 679 - },{ - "name": "bts-danosphere1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bWAii7FZZ7nxNF9egCqZAArzW1RETvVosKzL83wXrWbjojbBh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JiE2PLgoqKQNWFzxDDsjoRy5cSCefkuxznHZvuCSZ1HYBmFxH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-pad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FPmDMW9jKvvZP43K2gGaXvcfDNcupmPU4PpTjfyEYieQXWap5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7anRTr7n8rACf3rN27Wu3iN7BdbLGX71v4KZgEs1o24DN75n1J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-cni-hollieakin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GNZWCL3YzEYBCV3DLiX4M8Sf2RZ1sHpmeh2rM6HJALxJFNtJX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6c7EhySKPpyXNdvH93KKMXzUUqoL47cRfLhSUc2pv1enCbW9kq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86 - },{ - "name": "bts-fox1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qNaCeQyMBAhkdnSmfKRGUubE4SEKj45t5EhKGnEn35T7t3LuG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vXAKDzgJqvhpf7f8LWhxgYUcz5AWpSwwnWfLoMxP29KHMZatF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9631 - },{ - "name": "bts-cni-akinjha", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iBz7t2LPmR6C3LQ3b3B9qksrxT1HyApz8aYwHCJiiPYoCyoRP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mJ6ZGYXwRGkTBusYtUZbTtJGrxLEjhzen1iFo3ZrXzH59kvf7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-malfaro55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GpJJFFggRsjToUp1KHFTkjPMyRyCBzVDQ6hHmHR6RQoAoZZDv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7E4kUnK1ZmKf8LADJRe7whuSvpsDZcneZpbcTRv5ENgDcYDKn7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-bbsdream", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kS9UrgC3AmiaUjvqbban32uXQeRzmgadumNed68Yub6s53MZW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6BXcMxoNCXqmmMUtkvMSqdefbpp39mchbnufCy7Q3SFD2Z5FCB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 894 - },{ - "name": "bts-cni-extramile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QMU3yq8ZCqwjnt8PHag6FCZ4sudRJbywBeGAuY1xg2JTQMrog", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7EEwH1VzceRe7xnrEA7KpgXM57wkG28UZKE875mVqwYskz5wNc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3719 - },{ - "name": "bts-mastermined-710", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oVLNMT3dzE7aqgHcwhuk5KnpcDGhZBF6NEPqU3UPKiKcN389A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pM6GKDsgxBiX8pyQ9tueseAC9vFMZCUdGFXa5nQ5zoiXfhYzJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-the-viking", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NLGWhQKuw5hmwjDoV576HHAtcz1TV3bh5xdjwPGQL3GKf8zFs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k5dLudWpKzwmK5RHRmViiicDMyRMnegJ5WjShWnfTuGyHn6TQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 890 - },{ - "name": "bts-djc200", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ddR7TxRgH7SZXBygevumXm1J3opWcmrHUcpydymzRkaecT9RA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gk1Tgk6bGsAsYADAdCi8p3vghS9ARpZF3PdaAMhNKyh4sZ1G9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-rus4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cEKgmt9Py3GaG38nhXKhkwdRf8Pk56HvzFfLh6aPq17KVGaEk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aMp2QHKwV4ER1j4NQFMYM3SQVtLsUCcpJSs7t85kbnMQzr3Us", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13912 - },{ - "name": "bts-friend5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CMeVSAzAKWk9E64aa8RA5UcQ5xLWzhSamGuN3n1rx5rUQcdTW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zhj34wak8vKJzNDkg2KyLDzxHLvPPFDoiRkh4uwjfMsAyvLrv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 245 - },{ - "name": "bts-cni-himself621", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TwGzYKBiWdtFwU8EmGKESGT33scJa8tDRfJuep8HKTH32Qxd5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7hkj14mUSYZPPEUAxaVSLWvnBUr8ga2NU6xSTcbnx4Uhth1om2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1917 - },{ - "name": "bts-cni-leopador", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kNkFNBZjBRfFw4yPb56ZfAtQC6fzsG7J58xhkiHCgSZjEY6p4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6m4ASFqtbeas7DLT55ZZ1bidF13RbedxaUJh5o129SJE9RB6Q9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-erath", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GSZiiPSHaUnnh8iyeWENiU8do9neb9iER1nnDkTXXUVUfC24V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8825EwKcHCifpBzSrLS4HWWpxZNBQP6i8V3BgLDMr3jQFVMJML", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 248 - },{ - "name": "bts-cni-jojeff2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hVoqUMumVYW94k4cAtioZphqFnAvWp4Untv5p8o5k2fQGXCW5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WF6ziYDbq2k85WpdSYJtMA9AYBxHQSHHDo7Yw3aBprqrc5N3Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-tourgar-graphics", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uGz998y64oF4tjsMeUEfDXQyzXJGq66zdudkUhKoFx8rzbnyU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5uUbxKL762422EB1LD2gCYkg84QKJcnCooh8zik2fncdzMYaqH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-tuschuck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST676xTvQbxHyTjMA1UCHkwSiQRhYCCsaZuCyJKPjoKzvEbAUzsQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6fo63zthBEorxh4FMe97QC4kCVM1NW6x9utugxiJnH2pLgsmQT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-charlemagne123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5reTJaX5SPZt2qtFNUWZ3NK7VkaZg55Nwz7n8Svm7UxDkMAZHA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6662W1pqG3EkotrC6PG1ZY9Se7JtqHJjsKYQ4vvxM2NK11cws2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6086 - },{ - "name": "bts-johndoe-secured", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aKjTss6z1QSQgzxBujZx6asiCTKyLh6HSKj6dekYSu1KZgmEG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-johndoe", - 1 - ],[ - "bts-secured-by-peermit", - 1 - ] - ], - "key_auths": [[ - "TEST8VvWSKNA1vZUt459DRP3GJeJM4rS1auWygGQaRdJYC6CJ4Zp3U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72 - },{ - "name": "bts-pulpy1289", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JuBNvqUc7JJJuQCSKtNAbnXVUx4VMVAZgiCUNK3mT4QtQegPp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oknPbitmSwwvwQYR1UmpYg5wJNNyrbNB477FhhME8uPf8yHrq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-carpe-diem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YHBMytHXrqGvk5tHywhkCVCoRzRvTQnxM2Zw2nVh5dPBFQnPv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53zhvnXURzML7BdxiAwiCWW1eywC3BsLWNd9jbx2C1Uvz5ecpv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-satoshi-pie", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 5615492 - },{ - "name": "bts-caochong2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RmBRqHharW7qkS3xKf5xoPiZNRN3kqfCzDmgg1BYjAshWZCFH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Mh9VMnNdopGTi5RtqgFjv3ip4NzugufP4rENd2YbmDAujYM8V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-jnbujak", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ehC7kzjRdQSgehVDF5a6UbbHJwUD81QQSssnz9xw3CxmCrsL7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5gpWeHBik186eaXaG4tMghH5fXmaEuMhRCLCRKpSPEShBK8tmM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-vectortmm0309", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eTu3EZwfGPCxWgMn4t3Km3Gvr8PKgJrsQ5tm7fmrLZCabutnF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EY7zKwi2WciMwvNi2aeqNB4yLpDkmyt6UC9SbHfmTFDJBDAaa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-pe0n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XvDieUQfFbHMhzDMMr5h9KvDYs5pDkA63uCsPitBbqs25G1oq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69tjMghMeAaej4t6Zr5q9dTgxXeEdZpcuRgNmUY6Vtv5gdiXh9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 400 - },{ - "name": "bts-wangguanghui2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UGUidkknXJmw4EvYdWS2tfjEQxXnVgpnrMBEpDpPAAxrP96cE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Nv762yPgFzFqRdgcmpHdKYnzUNA5GPYcwRRK16W7SgYR26e8G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-liuzhu821129", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WLTFbfBJn7HyHvKUwSNHQp3SpxhDy5PUBSRkohznkLAY4QTpP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kU8C5yfaH1gRkyhRdXRDjDkmcj1QNCKgLsFeSn5dTjTXH2TJW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 775 - },{ - "name": "bts-peerplayer0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5o9K2sbd3iM3ACGT91mnjFFr41fN4gZGMn5CF9xz4QZvA6ePC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Zoxyp3A54pxP6zQji3sSvchQ88w5utcSBzrg5uY8eXRXfU2G8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-animotas0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EcSsZyt4pMwdQ2FNh9J9mPwbfn23z6Bie5n6czGmooXqT6e68", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XJs2oEeDSscyEczTXRiaSAqTpFLJcyrwdHcD7hZ2sp2N8NsbD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-liquidity-bot-msp2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-my-trader", - 1 - ] - ], - "key_auths": [[ - "TEST786YhUn5x8vaPcF9pWnTGJr9iwuRH9yRcFiQ6AUMkAvVCYfbRW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST786YhUn5x8vaPcF9pWnTGJr9iwuRH9yRcFiQ6AUMkAvVCYfbRW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 393393 - },{ - "name": "bts-cni-glory22g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DMdpvixdYtEA4pWRP5bnnQnqE7C2fHjrNVkfSxf9GcBhUrzaL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4xvncnEV9Jojwkd4juQNvdgvf3DhAK5mPctQRz8w97cNCidbM7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-transwiser-admin", - "owner_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-bitcrab", - 2 - ],[ - "bts-transwiser", - 1 - ] - ], - "key_auths": [[ - "TEST5g3ADTLTxvHgrxCBh5Rm8oUNT5iGHh3DmwuHq7XDu3Eu7uepyn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-bitcrab", - 2 - ],[ - "bts-transwiser", - 1 - ] - ], - "key_auths": [[ - "TEST5tSXW4wpn8oPpVi1Xecx6zw6tSKiYkCAf3VYM4twmofYWLLsFr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3011 - },{ - "name": "bts-transwiser-coldwallet", - "owner_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-bitcrab", - 2 - ],[ - "bts-transwiser", - 1 - ] - ], - "key_auths": [[ - "TEST6qHkTvYA3rAiaiK8WTxs9iEoeDPw8xDJPQhnpm8p89t1He7mXP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-bitcrab", - 2 - ],[ - "bts-transwiser", - 1 - ] - ], - "key_auths": [[ - "TEST5PCJuscgNvNWqf2o28kXPcxrJaZP1q1jVpua3LqkFCLk9Fy9xA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3761 - },{ - "name": "bts-joan-168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64V4hfHSh7VLS18uC9ecwXoNMio5eXnTfqbNGnMbyJeLPxBiuS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST831QEhqRKDT8t4HkzkzFk9JAPNwnDSpLo3oCo6DpmVFhVgB8ig", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-other-dave", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VbKMJGkEPeL3ew8rgURD6KYwVbi67LnmG3QUBxq7pkp14Bv3S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J3sMoV3unRZUdLHRSzNgDwPcYU1LLREJcfeX9DsZZdWyFo7FT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9367 - },{ - "name": "bts-i1yatarutov", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5So9CKocUWvuXHuhhEtv4G2HB9mKgCE9rCGi6Twxab7f5CEWVh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jZdjGcoxTxggM8zmmjWFV2YGE4x7hD5CFq6dtbK8RN5edg9r7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-ostap-bender", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gcjnxv9ne3Bptnf4RwoApfeQ11AjNh5YgWcThdUSQU9bb6Auz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST586vbicpsSSXStb4bLbyB2ZcKhF8f4swLqeEByVgkBuzuekdnR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356 - },{ - "name": "bts-chris34947", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81SQq1z8UBC5hcfE8ecsA8UtfUwNNHQmSY7NmN9DxnVMbQFD9s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RkUht7tiiZv4rvjfKwBVT9X8JMdkRXMXnzG4Depsh2UbUSYko", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 199 - },{ - "name": "bts-makerjunkie16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75H2npSXfUQevunxqsavwZvCBRGqLpC67Ux95WBus3hRmdnWY8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81SP91XVSfDtEzubqgaiNRqHAnZNqXd3PaCBwCTuKE3hCLEHTQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-partycake", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WskZFGfSoNCKuWVpCwKdP4RtGTzpbgYUNkrmfk4JLrws79Xad", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8NXZdbRus9uYuZzC91Srs7AZRruDjXRdB65ZiPz1wHb3hpzvQk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1001 - },{ - "name": "bts-cni-wonertd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oGb3WV7D7EEYTs74UmKde8miSewjVwuC1SauyTQAjUu98GJL2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6NdaMjXctEphP9t29DWD2SKFhMNtRw9kyJZhuLUJzQYh5z3Jny", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3746 - },{ - "name": "bts-cni-freedom5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oBySn6PbryY8ks7ByTK3RqZ7jkoWW77nose4WMak3wUTciBXi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5qB3rFcd4UxrPaB2AeYDuyGjioLd3z9hBqVaVtjDJ85A6PwTxk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22 - },{ - "name": "bts-cni-free2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56yeC6UwPnpepew6V4bpWXXgGZZdm8baV357pZRjoEbBDBW6Qm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5zymi3JcG4vD8RS3SR9vEaFumYTneEhqGpYfHqNjWnocNXAbBA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-rstaylor62", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67xaQhA9wkoVthTMoUo8P5WiZQPtsxX1Zmo9KKrFog5fgj2FFA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5rJn3uFHYt9ri26mweJgc2cmr2H2MxXY46oJGoUXNND7y6NirV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 134 - },{ - "name": "bts-xphorm42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aVSXCa8JgTfh4cdCv4f31eQzKSWZnX1aAKeNH9zs4ZRfCZddp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZZyrSqTtFe1ykqCdBn6J1aSW34A42jmQEG2xBoiC3gUWtS9fL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2216949 - },{ - "name": "bts-micheletarrow2009", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NPCHwPwbCtqPjofZsg7YiyouxYEkExivZrgKmptvjW1KCbBei", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8M61EjEMQdiyZByprxnrCp6sgcfStkoj3XizeewkTHE9PciwQA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-dlaporte7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68y7Vh3aip7f3BRdjpHNgGSkX1TeR2oCqJHDY9ZBd1QsM1xjju", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YDLGuWtXk411kXEK4JS8rtQpWDLhoJaPCzzCNvPkb89rHEcnX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-johnnowak4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86USbH97ETYwxCT1b7y2aYVEkg3BD81rdYRkB6pBdeZugBkihc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6HpicFKR15HpKRwYuoNKQUVrKZNHdbZNnXoc7Xn17sWn1F73i2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-bit-whmcs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7perCJkdgc81XLk1qUYBERK9XBci8c9KXzW2bY3nPnLcuRTgqk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U8wtmoK6KEWgEi8Ra5SoavSVfEL4f5pCWVhL9JHWLty3TtsRa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1198 - },{ - "name": "bts-cni-barand", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gWJKT8BxsAgL74YLpvZKofuciR63vxfzCW5oRcyzTaHGGxNxB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6x6QKcG8TpKUMPLUqdKJSueSe4PSVMS2JHegwZbBCRFoNf2sLW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-tusmorris", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dD9sp8VnaXqrXfkEQCg1eiQYUP92QLR2JfirEAKUw2rAxGpfJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8U1B5mRdwrQti28Sw69bq4TkQooFTzkL3dQAKrqBwUTFuZ8okG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-io80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8doF8jWTrJXtao41VQayunC7tW55ZBHckC2s62cShfUF3CqKxc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q5MPamM5xyAgtLTiEZ4qgVqa5Tr3m4wAnSXDBu1oZUin4t4c2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 217 - },{ - "name": "bts-home-depot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pjuokQ5dnEL84G639TPjPUah1GEch894Rix2uBNABQ937tB1B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68VttdjfEqCsUazwbsVUD6Hyj93KZ5HfdrF6QDV9eH4GwC4kE3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-kering-group", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cRhJkhgsdMk3gQcYsapejzLBZHY6M55Qf4Cf29i4VBZXs15jC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BrBQwDxczQwJjAJD6PGgZHPthmDjsgsb91i5KhPJKdugPD2Sd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-golf33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QLupQ8vMJDoqDiNDag8bPd8sXfTBsfY1YANaRzAidGMGpdFrS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6W7m5gZ3CEfxKvjt6LqtCbMyt5gJGvbwn5ytwECk2yEECqPMbf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2126 - },{ - "name": "bts-kakoulis400", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gMH2hGxQY3jDyX154X5U8GrAJ7gKXw666ogo4H7nn2Xn279C9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7myXhYT9Zi3rqzbaF1NAGF8YRmkTRo4BH8oAJNuNyvfDtVxsYG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 311 - },{ - "name": "bts-bloggersclub", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RNAnwH5dxD8MJNhwMDCCisEihxPY7n6CoEGixT72YBY6CU1cv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xfsczah1Xkw4b8xWFKFKgxVToAo8CDGYThEh67zqnibAL4hQx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 859 - },{ - "name": "bts-cni-vellen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N3ReGVzVrVfi1BR8SDbT9X4mZbu9t1pBY449vV38drawwcE3t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oT12d2MAziCca1Rp8YbAwidqo18ceR3YferqTLfzF6K9vXhbZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-kaito-kid", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NVDu4qXrJBY3ymM7fkijprMgr2fb395DfQCXrMYjtaYeR5QAS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rf65UDcWbZvxUpRvxcLau35psCHeQ4g9kCQRQonFWh4rHdS8R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20387 - },{ - "name": "bts-show-spaces", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eAgxbk5S9QYF4G7tVoqFX7h2kjKCNF3MSPBdNn5z4jkLuZ32q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uo8Wi4goaxco8bgtxwx1s8DgRS42eAR3ALMigeDQQBdwXLxoE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1833 - },{ - "name": "bts-onebackslash007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BY3M7fSGjFbjM59mhjvVkrs4vmhnLT6DkrshtB9rUrms3F5n6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pHRyA6yBkJhNmhdtqduMnC9u2PgsgnX4cNXubqLomT1f9whY8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-soulgate100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vQ8suQG5b1p29Q53rHbBYJhsmcGZWAfELavcUyDqRUd3imS53", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85xYNEmtKrNMF1niti1wBM8wgv8nZyUzbo7u2moViPf69j3NTs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 215 - },{ - "name": "bts-cni-texasnana", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ha8g9SzD5y1TAsSutaCoRcLbnuQeAfunDRodn6XbvNTAu8yu6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PjkfLjyT6aQVEnk8PNk2HdiDQSCModPvqB8nFYHTAHSc31LW5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 413 - },{ - "name": "bts-m00nchild", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65cMEb7awnAD2w9wnPUgoTMoCxLWvCVdFKQ8iwkWukEwfsNxoi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74ypj8GuiSSwWYMLrmM6nN7rzRUnhG56HnEsqKooZTTAM92pSo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 398 - },{ - "name": "bts-donate-corporation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fGsBhLS8AthqsodyX2JCQqBYbW4QPGEHUcqS82ExNLsmVUjz3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87yTT9HrTAM8H6wmfztqkMEoXH5i4GEm7wc57HXb2obeWLvyuR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-davian-pfeiff", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5We2izKtMi9cCSKPoyfWqHyFtGneExfhYrARsjB3BM9p6GxmAa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BTxA5m1L9mtEhmz76kvY2YTbhpwzRzGr7raPuSiVqd5F5s4op", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 333 - },{ - "name": "bts-java1959", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ByG12wMjwrCh6FvUxpJ5KnkBPGTwvPDbu9f9rXKS6Cn72t6Gw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ysJzgJoygpaQKMAUhcFigsxewUNAJQ5ktoQCnBV4YSKNoLQFY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 213102 - },{ - "name": "bts-kamiyama3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZqyrrGNpK2D8VBbPk49FF7sdd6YLrs37nHHvDwHrUQsT3DNYB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mwygLSAjppoGzZH3DZvKrhWsXcU1fttPWb8nZqSrEaBBSBKoz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-psionin-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XjKRkzwY1ymLTngLECB9p7brFZuN8RvnoCEFEYKP6bAyE5jJd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xNFz7zkeegEuBs3sFEAg9WT8pL1r4kYMLVHgtjCxmWBBffr6G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 456599 - },{ - "name": "bts-cni-eastbounddown", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dSKXpq2tDQgtmf5GEWqKgXSn8Exn6KiVHZgmhM7FNeb77WYbb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6V5f7TBK7oEwy38LyAvBreQfd3LPnwHRbvUSE5wRc2i3fYQjFy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-mouse7982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JpeLBzTQJtKY7bB9xeyWsAKCv5BkgLAAEKJC5yKYh8QemKm2v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6SgtW2tGiyTS6gT2tP14ZRPc2WeWiQ7A7N4BvFdSGJiHQEgEJo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-warmach", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YZUuWnWff8rEVxNeszgEK1tH5x2N4DpdFTaKDaj77RLrxWTiu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZwJt7yDc2rvd65WjsuG4cEfkQ7kWiVG91rgApQzx3cdShVw4b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1917 - },{ - "name": "bts-villagers16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vkDcZMGGpyXLpkJJSoYTeK4cgkXm8pvEZaUJTXzGuvFXCPuDc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TnfWFXnuAMKcgE8XwzbBt3oY4vaDeps8e6pF4dZNFRMc5shUB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14190 - },{ - "name": "bts-hhao-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uoGvEA8JwT3pQMCVBVtWxxtwanF9eCX3GvmjLKJbrWw5uMi53", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7og6SMcgxKfDfsRXtXG97ueTiGY2YMw7LQzJmQ8fYGUYhfd3gE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1156 - },{ - "name": "bts-cni-fecarter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uBmCDbccD77ycWhygfJUCLRiZPHZsYMUTQJAQ32MM4jM4tU4b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wKt9yPCxcpQ5BB3PXYX2Bn52u74NoKPcBfhZhLrT1GW3NqcX5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-coinstogo65", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CYbLjDj7oc95kCSR1Bi65M1Vy5A9r9nCGKscL6cheT74DYGzX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rAw5SQWaG49ha75aMou4Xhwr88uu5aJT8AeRtN9eiBJtrAkP1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 77 - },{ - "name": "bts-gr8dealmariusz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56kSS6Rm8BS4XJA83NKBh1PawXLEFoMWCn4ZWirE9mwcNekmS4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p6yNAsTHR59crQjb2DgNMXmqzhi1QTJuqmsbT268wZNKCoawo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-nanny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fbpeUqQZcsxQyFbx85ZyxTwAFHCh8FAys4LGeEVVzyNtGGCzo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Xo4q5boZcNotQ8uJDihRLRUX6dTKCtyvpSXrmSUtsmBB4rZnz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6917 - },{ - "name": "bts-los-jimenez", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LETAtweUJJLfXN42cDQtaCEvXTnFjjcrPtQFsrtHV7P9XUv8d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dQFTNGw844FNYjkhzB2wQYEj2TpNkma9aaNoEE7CZ5ahBp6vp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bitcash-kk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76pLRD8S3hWLwh7HDoQQAzVG4nfitGJDnsr114efz91qgverAN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KDzyJYASRxBb2uftuaxXbq7ZLoV2B59chp7Q3FuKQnAFgUX95", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 827841 - },{ - "name": "bts-trustn01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VMJptizUtz6TD2mT5NuS5n5KgBDqpNBvyuUezFecxzhDy9Noz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aDwC8pQtgMY84BTXz6ZHAtigmmFm36YXoJwchvNUXU3Rqn6nP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11491 - },{ - "name": "bts-rwefv1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81X6kv2ST8ok75S6WpDsP2Dzi5E3TG9GZc786rhwp7GhYm6n5j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kKRvGivxytC7QU7st4V1MUtJrVxGMz7ccebd88TToNWK14Mze", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 300 - },{ - "name": "bts-lu8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61LKWUEFe2Rub8ENH7gj33rUhbq7Gzmxko8BTK85ikMbrUiTz6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P5BiqkM9hqr3XFT97s69ouVz9DJvyYkKNjsHsGmCBQrmiMnqP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 619 - },{ - "name": "bts-taisity21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CYd5BoScNaHGh8zL5ZVtFLne1RTjLGz1SXAPnmYnh1iNC8pK5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vQCvyR2oeFgBvnsu3Er8TdRh1rnKJ5vHsgSPxsgwdJ9mRqCV4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356 - },{ - "name": "bts-webplays10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59PgBbYdGwVUWgw69sgFkBb5rpdefdXt26foUov6Xvcje2WPpa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55atVdNWDACLFGBwp9jiAZcQBdBnWLxQGnaC6YiewKBqciWFeA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16220 - },{ - "name": "bts-cni-dknox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PguDy5BB1yzoeKR6iQzzE81bgGwXeX6DsBwaBsXHdP3gkChZD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7FVmTpdhaBeXdJniMZenZeRyegAzhEEb4KgQYWn4SDux1rLEFm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 945 - },{ - "name": "bts-cni-uniqueconcept", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PPcuHmZyKzvAT6ZK4ghSgEenpcX9iJeoAtKRzTczL58LdzWQM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6PdXzh9SqPAserp6mN3C75vTZh1uApUHxVtdjHugjMWYg43vda", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-hg1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WrKrQw4uYYs9kMvTEYEPCSKRF3MRKX5HTGXzzgYnHEcoEpQ8q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R8Gf5eU3WBWLybjuByqY7ubSchyMK1XBzYG1D6ZHjdH86PPNK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 100 - },{ - "name": "bts-kabosu50", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j5H9DTKNKY2r91zv4NLubi4kzwjJZeMFwxMf1Uh6sGnWUzi9k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Smus6Mfrc6nnW3TSYcKvTrwfCd3o1BiUWNwuJUkN3bSNqULmu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4857 - },{ - "name": "bts-micahl89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xsiUmTYwoxn6vHso6VgppXJ2taCtVjhgwrUGfnJeKDY3Mnmvi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZFGF14K4xnZpGZJba8axqLDW5tDrz7BKwZsz67zhnEdMzh4vc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64 - },{ - "name": "bts-kte0810", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7976zcNBp4Bjbk7ciPPxyLp5hhGhGPtqmeWZPodPoW2pKgB2th", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UDPh6EdmRTdaAeruNaU6c4W3w1d8jrSmE1nod8iC2g554MjrD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-kxsxxx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JDNKhoMbKCd8roHuNzd75g288PREynWuYuTZiWv4mPkJtYynT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f73Cy8NVFLXsvF5k7gcESZ2gDN1rmQnecSEhkox6YmWTZBaY2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 184804 - },{ - "name": "bts-frontier-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RVsaey6r4neCpoz7oddNNejqJcqGPFqJ8GQpkmQZi1EkStHJj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qL8H8Vt1mk1KTUXEbgirGBgYWPDSHx9XjQ4pwNFzhjQtUmHFK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-f0x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59BCbUheCPUU1c6ahLjyBmsJ3rZaybR4tGeCZzyARNWvWh718m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j4wCDT8bahMdq9CBhmAfuuMSjhM6t6P6H7DFpC18KjrBuKSA8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31617 - },{ - "name": "bts-incredibert1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P1xwsAEkPzkp6k6jHcWsATu7iFR3CtjkjcnYq4FyiyBi3SqKL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aDRbMnPCAFbxZy74UtX8ETY7cV9V4Wk5zhwbrhhPHauucXCmw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3317601 - },{ - "name": "bts-yahud770", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E2sdamiBCXz2bfY85F9X9HwpZfRx94tVzVuBLy5wPEpSXm6nJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tBHyoqxgS3Fsmp5LYrYKrircxWVVFSe64oU5wVKs6SqcjGPWz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14477 - },{ - "name": "bts-cni-vanityfair", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69Q5NYGGaMUvHJZt9SqrH9sCmb9WZ4RZC2pV9dst9sifK5jNLo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Q6Axg2tf4JnEiYSmd8zagc5Zq5sfsvnK5qpnfZwwXgPTEuY33", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-enetbiz1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YgTKpPP1eSXZJ7rMYPS79VCTdKpgLn6A1c4YsUSyauF9DxE5V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6nh2gUavZFamPzYssNqLJnGrg1TSJc1fpAJk64mVVGqP97T2hA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2032 - },{ - "name": "bts-tumi1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68HWTaLL9oLjrANmR4Wd7M53pGwRRxyC3arKeGiWbVo6QTtJge", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k31hxrTF5yom1r1mQkJm8FUDxtrT8cMWFKWucRmb18zLRJ8Fo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-tak-atom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bjase1NVU3jBxtFzMotJgbdUBvud5Qph2gXTeGyX7yMPS9Voe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JskLR9qShzi5d8d78b1TmLkwTEcdrYp8pBnftW6bEMidjuK6f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4507 - },{ - "name": "bts-cni-hottopic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sUTRt3Kz2JE7fVX6HuFDbQifXXZxDY9FYxtfQyYrfyZPrNYy6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tkpwQpF7fpU4sodt5TEhragYitTxWMx2cwSd7XHLUUf1Kwwuv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-cajun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eKDiDvgBiJSxfYLJ9mkAqVZzJMoR4bQuf2usyKnv8ifs3sGSW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4x6c6iPXS5jxGcutMN57boLHpuKWFduiDwpJiWTDsiDEoFRW2t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-hunterman1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QFu59EEkc46BCDoHggAQ8NBAwhshzgtfvvbksvYwNtBv2wSw3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST64SZM1KonCTRrrYxf5ZDxpy4bwBtzb2jkWq9FBxyY1nrqhDSKH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-lhq999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cSshmhGndWA88j1AfBZsgPf14DfPu3gHCJik8Pjp8mutZA95g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CXorhQyn6PVyL6ps4tzqUicnZvoWUHVbE9QSENnzKE6FpN3W4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-kerkjeff", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pDwPeFfJrLHAJHivWPjurz4FjKCiogrBLXegb8r75HHU2zdAv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5NscMjfnUb1qtXbceDY9pCSrsLCE85VZ5TA1wHL3VJximU9Tkf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 310 - },{ - "name": "bts-cni-goodness35", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P5oGVxhEJsYWqLxKXeMke3mS6uChXgSheNQbyBqEowdx78ngy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6DuJsJr4mLTcpTtiVM6z9YnwhXtV8hz2AVdmwstA8qvKWRupeL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-rexy48", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jraz3DjVyiFPGWVtWmJ62HVy5Rx9h2bVQLNzZBrPRptvfsx5u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tTgFUHtv24zUohDT9ME1aWwH2V1ZdC6c6DQaMbLkaRhc71p3e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-gopapa76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XS1i8sD8jpt16YNYaZqFFAX4TR2uK92xgedYfuf8WGdPJmG6a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Zwf4ukDckJd1oqh7jfAXAUq5uCdTEZuhWReq49t5cdcDsfGRG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bart2305", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U5QLe7RRZWcaKWzWVZFiiD2NMaLoQ2iopajXZn9vFtsGnAz8a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5V59KqmYjj1SS3HoMjYr6RKRWip8xt7TPtbgvScGHFEnk9zRzM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 613 - },{ - "name": "bts-sebasan94", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YAd3vYbJLaLnJugJYWqe9tPAFo4qP8zarQDcnpJrGnHDLXRrV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AoqHeJQTaK5ykMNus2iqjcCsP2ERG9VKJH345cG4dBygCLBCn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-owenk32", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6d7sZxMQrjqQtNB3x1oedBBUvys1Rpgi3LZ913feJh9e23jfZn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CqQgWCSuNA35TbS6u4FEi1JMsiS5THNkpTAwyvZgM1H2EnVyJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-liquidity-bot-paliboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yYYccAwhh67QV21eR2RbuwguJtXRWZBfg4nt1KL1FMkY9PbD9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yYYccAwhh67QV21eR2RbuwguJtXRWZBfg4nt1KL1FMkY9PbD9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36359 - },{ - "name": "bts-lyndalu42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8W57y5arJE7bNRySBVBHcbJkAJQBtZzd83NwvZin9xewNgpD3b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6TZGEEic2yeJ4ucpbrKrakS9EKtzfy4NGUoywcz6dYG5JtMtCQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-ladylyd59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VmtGjqipMGuLZKrCUXpqPBEN2EHLxx4dmPQWf32Mnrc2EgUM6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST82i23fzy5c6N68MXftBndrzPQDi7RQKymBk4fNcp4o4TsPZBVh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-jayne57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GbLPGa1KGasb4LxEMZtaotbSLmcgkvBYygbFpQhqG5N5u9mit", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cRRFjrdNQk7zF8ZR9G3Nidv3fxHvcC5wGRW5JmTcwA6q3H8AU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-rhea47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72fs5hQm22umUh6yDrUa9PsuZf6muoFhVdyPAZ3vMEDjPZXs5Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST54RBijKydDDVPUAUirkcUqwtzTF8BjXmJEsegTVwZL9Ni5ixuC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-tumi2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L8yMJ4XZsrgZikG7eRbk5QbV2pp5nHR127Ss3wtssvbtANeUt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7A4KgiHUEo4S2NBeHTj1TQZ9SWvQ91oKyRnufahEH5ThqSU5qY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-nexfbdotcom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MBSoLpctXAxMFNLhYyxkvHAE9BcRND25eM29fLTWUaye81953", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FxKVY4Urzxw83Y2UZfNCnwpZ8mRVjaqxo72AuaM7Rq4BKLHeb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-cni-wirri", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pLtjSJZ6CnfZAmXLkr1yUYj9t2KphHuiqRsbSAZtjiUtVpgQv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5vjzSYJjBbw6bi6zTqCFZcHrUAC5KWsaY5fwY7UnsYXxSDvmFp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-btsabc-tang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ipyGv4hwvZMtd5LeUfXEwXCFHS2DxD9oSArf6m5L8soNX3F6S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59W9AbYw8uvg4SFzAHmGX1PtMe9rgbDe7xTjcqhTnkX9pkP2wr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-rickeywilsonjr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fVGaS3aEEx35u2NAJAd8xDzchhKVdyQG2gZCgoz14GYi4sKix", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8dADCZtJAzxuZrRAmmFn2otknzThHZ2QMahjg5aJ9DZ7WGqXov", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-nonperial", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MfmXkptm864NjdB66HNgspQ47wiFJPKYtcVPPrihxL7ZNk67w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6LZtJ8WKxe2iamQ8nFgLFTy9xKNjPqbVfQHdehvBrFjqHTVyiW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dc-reception", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J2VrxSHi7H7JadoSCTrBvK9doRguSeq2HMton5VU4UBXLwwg1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65uSwbHXLiwzd7Z9q6Hnfj74ofqzDJETUag47UdNag7jToLk96", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-dc-auditing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Af4bRDbfpJYZvpuBanVAvE7davjjbNgTTqpSzzwTTA8d69Xcn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72v3qBg7SAJ1eTjuxaFbNEZbcwdF3YQad1zuTEdrRaEHLXmFor", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-may17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST541B4GG6HyHfenTqXgZqDnLRjqVDVD5UQLqqG1X5qDiQbUHKny", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hndXL6M9VnJkFtLtAG14r1YZDMAAkk7KGEyxuWw48LEz9QqLL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ffsff", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Uasey47iaVsAyQ6yCA5rvwAhJfdzBVxR73J7WzMKtCpVXVEA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AymzAMAdPwXzbtdqqc2LtarpTbUy5NfVrzr3jW1bBdtTQo3ng", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-valuebeer123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LHHGXsTK4zCiDYVpk5t5HNP2UsGaFyoyLU6CkRQgA2AJJGzZK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LYNockHGCCe5RhSiB1vVj3eieFWPiBrXrtXzzf3x2Nu3pEZoq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-svetlin-tchakarov", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85A5j8TYAxN4RMVzmM48AQAp5uq2DkKMwkD1C9Zqzc4dJccvqh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sCN6pseWas51P3wmjd8RWaTS9Y3dSvfLy1hoPLdZtbt3k3KHA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14259 - },{ - "name": "bts-act67", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gMsvbiFjp8422zpAMePZQnwwCE31XrPRVQbcdPkNY65vut6fB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8b5sHcspRLPWt1ZhEfiXNGqmh6a4AcyezgEw8E3QFRCGDvPcV2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-cni-sweetsuccess", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UmKLh4uTZt7ShBdAjA1mJCx9R5LPbSRiETTT2S8vvtNcu6qVM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7rPtLAEjhRiJ2Zc8cHa7EThM5jgvHxCk51c68KtDjUFxcErD5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 410 - },{ - "name": "bts-evanw6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sthK8NdbhfiJM3ypxKYLYHRR1vBsoepnrm7iT9gNaEh2daru7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST82ZdneuZMr7yNcEqW7U2ijhAcR3zHR2iNMYb1RUXoGQo6kUbtN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-jd4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gLbkYEB1XeXYfR5MhErP5vXhHfT8j64xPj94k2fDiuFbJtJKQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8YuutGmsPSfRg5qTBGLHgttn2skpuc4Z1RdpwTkGgScfHsaobu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344 - },{ - "name": "bts-chengdu028", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JnNaBmEd5gKyQbe1A92Aevm6F9ZUoxYvHTru5jDFGm1yDwvfp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ga4vmXWCfdVRJJecyZ9u9S3i6DBfXJAGfcNC5xAuSRkgmWvva", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bts58", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hZ5WirdD9TfmUbqVSySwRnvCrsX227JHPau6Tzzpz4k2gGKBv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST879jEBhgJaiMWX75ECYFHvSDLcAWbkzx99Pe3TTjwch5ETMaRX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-whiy4ans", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84tN73kvvngu4Kk8VERMBaKJdSJDbYQvrLmGCjeYY33e8hupzP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QRwX3RS7CjigsqMfyQaQndigSJ2pojuhxUnhz3zgNNWkutdwn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-manrico1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZNUUxRyQkdSDyfwWAmPR5NqDmkRBvimU8sesLaAWQFFwBWNTC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST747wUen8uoPZUdS2wCDUE8Rvz4GjDWAYdq1JRoqq8SYZQ3YhsB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49521 - },{ - "name": "bts-dutch-touch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rzTQTdwPt1gdfJJduYUkfN8ZJe5ms1szKfkeFzuNhVXEu97TL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RFHSpf28jcooUPty7RCgCtgsHvAtoZ2n9xe16dUMKr3W42s7R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-dc-upcoming", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m58YUVhZBu24RUoA984DpK2AVYFkehjXmGXwuve8ioVh9uRFF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vhn8JDgctuB3sSJNEackuXi9ip4HUL9A86v93zJh14VYPasyo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cnii-pjlcrusader1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GTKmhntR7vXX64pbXqJG1RFFbqPszXcdWk92FCezx8f3m4QNJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7bsTxRWx268GExfnZSwDSQVPAkV8tBhUkPdBhAXwgDUh1FppdB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-foo-yung", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bPnEFQtALKeiUY1SdLKN6mCZKuhxN8AZFMCtjvc34dydECq9Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EyoUYv8hugQRgfsohnzZQVSaAyUTfu81dz1iAuzfLFFgW63Xy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-b33fribs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r1h6sEGawWTj9QBcRd76Eb8YV2jCJYQB1CwMi2RDnvJ5S1qM5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZF4t78hrubbVXi1R1YnPnBKw9177yQXyzo4z5YXs6Zr2jkgT6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ify4life", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ExMJAoneTnwEnoWeg7dsxakmNpGKQ8jx7H2YQmaSHRaKwYrW2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5W2zGrxxiTtd815hDB2eHgEaQ65iCsYC2izvkBTUWCHc6Zrg89", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-mcmlxx1vv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bQnVLExCD7kjaLBm9aTCMUHH6PgxxhyaQz6w6ZKnL9Ag5wzvH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u1uBWxKmKpr8MDRSP7K6ABwtr5MVd9Vph8CTmzXRzanKz3RfC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-rene1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rb28tc6YYf4arEph8iVsuaKbH1oZ7JuPkiqhveKyRdEAPtwsz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST61eigBERjo69yLkfgw5CqN1jsB6Kvt4gyfMLEJGXfQLhwYC2Lk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-hurenhao1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SiY4LnHzKt4eBurDSe272wu6vRrbHJ92NyyW55ZKmuYUm9Wtq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vUjoujdp2M4RXDavCjbFEULxFsimFcviWMUJXCwaxdbgD5B6u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-facebook1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vweYwSMhvHNuvSZpfMWEF5sX1zenFM3pQMSU4En5ufHhpQxH8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VFKHk5jmM3hYWdusrfw3epvChBdfFbpcrbfWtRaF2F26BYi64", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-bit2771", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U5jhsLRcroUnfGfAWmDcVRK5J8m3L8RMivCmm9gLTzTe5Xiax", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71iFymaZsJ1TTB9o38pHavJHquT2nXxSUsDCgeb6SbwZPXJv8K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2445 - },{ - "name": "bts-merk475", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TLWyPwpShWBbJX23iXPFzz5784KjhNuVTFxT7fg9dh5HTEw3G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oRPwsSee5LkVqD3gjm1tdU2ApWs6QWpmoPXRvfYyqBoruezK5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1725251 - },{ - "name": "bts-cni-raya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bUWt7SSP7EpwJ2ApDQBQZsGGyddCXzJY1ZfvcZjh5xnLtLzVi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7bqzZSQyLT6hXVnjjawG2Z2A8RR7ndhRQNR6wM13Fpy9KqJQLi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 696 - },{ - "name": "bts-liebre32", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LDYZ8HmXnfeaRN4QLYJoX8GddpLShvVvf8fTQ2TXseKoeE44T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jjTXx331n6CHd77chBusMWmCKousbRsEwWC2L1Y6GnzTbGhc7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-pimato1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PeqKBf284bCD6odp7Ad6UtukbBoMRbmC6Q9SrkZwj8fMhmwoC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6s7WDH2xUw8bgC4cx3gXK3syjEwWUHUeqgXLoF4LAuGLyDDZzZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-akinola1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yz5LaFi96XjGwHyJ1bhT8CT8ABu61MQa7irNg5eQEr2sfHHd1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791GHQFCWFZKcaq5H6KMC2LgkcKBKbYkBrdEgKMuzkMfC8o393", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 806 - },{ - "name": "bts-facebook-cryptoman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xLuHD3WtqyNNEUL2cf1pC9oPqRzyQZJRWXsD1ktgVvqxB56q8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hUGcVggzSQ4pUdE9ZwoQ5DuomtqA8CKUXGCRqHaPRZwrMC7JG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-cni-sunshine656", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pcSDwyg64jJ25VLRuSwswG3moTfqm83fLtvNsPYWehnxZE3JW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76GpgnCnyE11sjyb3AeM8omNmdU5myQHfkvjTuyntr7sYFSAi3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-tigergirl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qnupYJUBZUHRktcFaRhedai1mAKxnEegmm3ALB3HrLq1Ci7zs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5fiHdiewn2QAMaB2Cb1JHNro9mXo6iwXTp438uEF5kt3r2cw3f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-happiness1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qsDccMLBwDcKtP1hJUjq869yoQxVWZeDJB8DgsHFxY8ENnmXZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6HJ3g4gUAb1HmZZbhXsN9x9EpoDXSN2ACaiRaifM7jcHat1EsH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-coin-yoda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Xq4TmdpWXXjuBQZ9B2S1kYoKbXBLTx4SFR1pc9ddkLhbYmQ9c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HFMnucyMa99JLuRqUBbG1vBYxWsFRyQq2CF7FAK846KyoaqZw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-djdjdjdj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rt67mFTpECxsnnrC664dgHLYZ7ugeQRdsLRX54B5cXgMUMgfB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qf2FtohheYyY4qAVXoV1irovUQTJM7MPrv5jUGHBEF4dDxtSx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3424014 - },{ - "name": "bts-xiangjiaqi1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FqJqqRRH7pe5xRNwM3uoGZm7NHSg5zdF2bawBaUzCmBybDMCy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v5XhLjvbWMmBHvXPuCF7BJ3BiSpMvkPLddp9apBqkqEZPuiqF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-bunker-bill", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K6zEgqXEHBPFh3mZ1DXNuzcDVvFny6ux2mUTPsFkQTdaYDs58", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61bvwxVWjqBknV2v4MZVsiJmVqpe8aTciKHWXrjHHs8bCitbfQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-newbie2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83CuKiEXL6PRfh7grGHupkEV2d4Nj2yttcyUSBxDZKSZbNbxHe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vPd63oE1kaU3D4i6EKUSfu9QGRknkpvBKhcT4jktHyAF8mrXt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-sydney-trading", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bnzbWrSaDNAELQ4rcSB9ET4LgGwQyrSyLhs1YX5NxmUaXUW1T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dbFGLHngHRMiCmkkWQKhhBU6H8PVdWUJ6G7Pu6WM6b9kMnxJg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-forum020", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kamPEYjNwVbfchP6kvQzq3LB5hbcSoSAAhtrv2xTZiZozWTys", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uxMSJT6eyuBmfCpc6NkH6394rM7muZc9Lmhg9Z2xVZw9P57Ls", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-cni-rj59", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64FZQQj6dLv9RHZQjWgPUExMVxcK6WPEhMyYVwYXKfZShpS5wL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5X8xuBQoTGVX6oFjK68mHMD63K4mzgn4v9CcgeH43ff7jYX2jX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6687 - },{ - "name": "bts-emeon64", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mNjVgJa7GdXFHhFsn3oFB4jay5TBdFQXKD2d5JZGSRpW6k842", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TtpGqnTe57FVW2ctFh7J1ZRpYrKkWpdzBhAdfeUfebZeoHbEb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2848 - },{ - "name": "bts-tyrone-shoelaces", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cjoXsJMPNRPXsYEAVcbV8KPfTfUxAsx7e3CGuDajJLZxmqL4p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7w1K4gCtpvysqoodq9K8E1PoczGHPYRYVUV75sLH6rLqogBdc5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2376 - },{ - "name": "bts-starlord2-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ts3NtwLAtBT2DR3E4zcKuAYH4y9kPy8cWjKBd9JdAn7qo6S4Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64HYCC25VsASXqMYpuxVuWXZUDPJU3d9zeSUK6sWJ5JW651WNZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20142 - },{ - "name": "bts-gdax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B9QgU5pqGQD5EarpAtN4NAyvYApA6qTbQGDZPi6vvupnUMJcS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6McgCnQXGk3sGASqGE55ufpF4N5hi7Haib182n7Ked6dWNujra", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-lexihart2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YdCRQeEPokrgdmTE9j6gdVBD5RsXZPWpKAojv2RzhEVtvXmRT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5yHCKEW7sKzB8R8aijaGh9qjuYz4XXMUSaEFBNSxxmMbSCHD1m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1104 - },{ - "name": "bts-chronos-youtube", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qaTtwufEbpvy4MEkHk2XJJuy2QiUwHtb4rxjhFn9ZuRuR6JVc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CjuLQKpP6ZMPbjdQzWVrQ5JG4FRjsMQiFUprBBAQQEQMU5ifE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9324 - },{ - "name": "bts-qq0pp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5puozKj3qQdFHXjsjit5ZYwu84FPkdXMbiCiQ3kJKwzpRWaMeo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5F9gdVt9hJ2FGaUJZxjNHFiSwxomWcE9VSNwQJs8PC4geBwmzU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-bobo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fYzqThqS3GbDqEnKhbDMPiNsqVSsYtVqjfHEzQRt2rwqGBkcU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST826VhkHZmPwXUxjqWgKun7LiyTaFTdG2KBmD4S4Jj1ehpZCr9X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-ryosuke-suzuki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nVjQfkVAGquVtokmy4RUoWUMHjHLrnYj6zz365SYiFY5MGuoL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81amNK1jGmWJpsVYzQ9i3YoAN3tSCibwRmZqH6XuZDnZDDPL3f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19106 - },{ - "name": "bts-bev123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87qmLRLjAMki9xp1hpiD9vDxyv5fqm9VzaoXELZGcR1FU8ig7B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6u8zyr1RvLmTopbZJGqW1xi3BSo8Bm6wzHf6cWDyYec7K8k2Ui", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3424 - },{ - "name": "bts-tsugimoto0105", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kaY5UeAkM9ZuH5AxaEK2hzUYCDtPWZ5we8K3N9kjiKjCjPYou", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XVpdMpnY4wVGQ4U9XaekHFaWJgnDvo5kEKPYLxiL3CUuDHVuy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45238 - },{ - "name": "bts-alfa11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CoJh3uSYxDCWRJB26DAmKLEoq8yD2GEoKGjZQAV5wRzASfULR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dKfBSczUCCQJbD7fvtHrgzavan2GfyUTZVWwzsmotLA7cg1mm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112456 - },{ - "name": "bts-fermi-cn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EZWtSAGF3w7nLKrxp6BmHCgYyGvtiPVkoR1Vq3svQnyi9JDZA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71fksF4VRvJ1YjXvZJc6cdvLnCzA1KLcXK5Drs5MwxRrMNEHZk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79 - },{ - "name": "bts-kenny-007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72Vxi7QG1sGjBJWCkxSxB2v7swkeeSzzGT57ZQA3TWmnSMHaXa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5buNRzTcgvabVpr8Zm3SBJjXhxSY9WBbd4BGedyMFxYFcGJ7US", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-h666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R79EscQoXX7qNwCqjLJPoq2PzCYtzdCcjW5GqmzzAf6MiN7po", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TgMa9ovqajkQ2iSuKv9V1dVGFU1LprmotSmaccwrExeQyzH54", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-james314", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qhLDouUnnvS2yqpAtwuvbV5Uejib7jtVMFf26oWhi6FjUumQG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8crD3fgiJAgbyBSZ2aYYu8T7PqKR1qLh95Z3pKFvaBY3nngKj8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-chiaki6080", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iPXCRTQMeMhnWit9JtvH97PYfYZvbYcVo8yePyBphDapFnRkz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yqjLcJzbmwJaw9tXXdUiP87rYoHXuEsk2ANN55hQwNNCMxxpt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1612 - },{ - "name": "bts-cni-denisejj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xczUW9GZFRvDcyzqf6Tg5agf8DK6YHKDGjj5EJNh3FHdzdBTJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jFsSUJp3T8otLGtR5QiZ6VqwjpybcfcyMRA8rzbpGYYQc2TCr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-china520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TuRDVxnjx6GQm1zTXjcgRBZsRJUgv8vaRjGdPbDUmMgbjwvvm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nb3LS8eAsVKZsALnBe6ZGa3j36Ao4ut4NGUCALTTJyUmGsWx3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-thewh0lecatal0g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST511jTNMGS2Ys1NY8KmSsR7PZ9GopRAHHcSL1XetdBuB25SCNxb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST579K772QpURykNsCQvRMGB5RuwLLCMY5kx6z89oXi94mfMw1js", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17292 - },{ - "name": "bts-pokharel2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Rrjca2SudTvEiZ69s64Aku3s5LDPqDnXQR82ZYpAC3CaAeEpu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FR3jXQ9LhWci2nejYHXcT59MsZF3V2WpMBzv39uwZdsmMTH4C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-joanner", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jfC7ZX1Gs3voPjadVfembQD7xEYkcwaoYqzoWwec4sjAKmuQz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8JybDGHpRNii71oU9DTWEmkU8hbMME3q14UnNz4tG6p9N7vYKz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-fillbox1306gmail.com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uuRKyue35T4EB62maZxKJ8o9MsWoK6crdg4wueA9iiF1dUynJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WozZAUJYZq5TXZUX27N9wvnp8F8BTh8unP7X9Kh5czraCdzTN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-kaesi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kz8dGeBztYvoZDP2DiQMciJNy8n2B3Md2wQVSLDJXqGbnH5Vp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6rybWnkNLgDcRiJqCZNrZxYmwyyw9ZEWdEiaKd4oEqAkCoWQKr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-chronos-demo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kBug6cZbjJNWUpRtANXDpN8rTYRoQ3o7wDvfTx8QcuDBYY1JQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71dKLJN2NV8s7oMHzuUX3nr3hMF1jcB97hfVX3BW1DP9UGiXtZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3772 - },{ - "name": "bts-jsteevzy-100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kFz3aSFHW8AeFQyZ3j3Bo9YvbNU3kXuM4kwuD7KdBHG9iwu1b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wHdAYYZHzmc1aEkHFRY3LxBwkeY5FcKvHBw5zEwAQqe5GyanJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42 - },{ - "name": "bts-old-pts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56FomQ53uKueMvFnU6wxpcpRyj2Nxj6pS1EkkZSnstmEcNzH2m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sVitpTxKrg3dazbQnYj1P6mCwzzJ1qnZ3YZ7KnCymSkr5wXiW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19811 - },{ - "name": "bts-cni-dudeinc425", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST715StDFYgWcxGw8Me6PjBgFRfvDXfd6MgvVwkGqc6W59jg9wQq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7VvAmvLvs7FJqhzDEeBt2UwRZqHd3Uo7JmAgHXWygNwEvnBy22", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357 - },{ - "name": "bts-cni-jdbiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oEh7YFExSNsgTbRLU6AwWjwXdvoPTQw6zuESdei3jHNQw993n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZzpxkUd28NFhyWia4wt4EwatZGtE1oSDS4xQfyi44kzunvJSZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-z1cc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U3oJQHKxjHbQGpKkvvLy5CZGYBDtWGZ9kpUqqUWyiZNBArjvP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qs8d91hoRTBGEyoGvrtMSkZu2rAfPjvzgaevRdHJhiQWKHgyd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-thedao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DW1dvqWvW4nqm9JEmDgbtbm6U7Hj5PP64RVSC9SFp6hTQVo2E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xgkLTG5SQuw3L8bSegeRFmzhm1xvzYdSP2xStN3gwA6oq2prh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-ezlibby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Zjm2bb8Yp9zpqALaQtWNhSStTeqDVJbotsKZh8Qb2HBetQiBJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5sbiLsao8EooM2JK1oZHfYktsfS7vg7mWaagj4pFYfdUeMPDBL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9519 - },{ - "name": "bts-dc-rotary01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HPeBrAzouPPMenASgK2MRDrCu9PJ25roxgUkVog7QZmi1h2uf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JFgVjVkQHG3nUBBU5sbLXhDuNWB5UoXc2u7fPrHGdxhH4fGeH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-rico86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6miXLfsTENYyojzvZPvEtVA1mnxdevfRLpvLp1DJLzt9c423Ep", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Byumuut89na9iJ6hAnBTBGjDpCxUUL16C5jpzHUtTu4AtVsBy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-a85beb690d27a05", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST887ZNUXBXFaBjYvHD2Cp1FxSwV94d8BmFsW2PBnyQo2pDRTw2F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KmuJubTHeA4Gz8M2a3ptFj5Zjn5TiVft8RP7dveSgqBM4np7x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-james-liu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Kvpa5YRs3B66jhXAaCDC1Z2o9cqVmQoJBENGFqcBfpx3oHCvQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jnXzqauSsuavotDTy3zFWik77WPS7q2TG5AkqYNJtMer94SkW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-btsabc-icoo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yTtsxNYuZ3XDQCguxTHwjxs4y7xF5C5YEysCt6KaasdAZ7aoy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XMNwpSvKggUw2mCSf6WCSEFToEazxZyRjf1ZnUkKTLKeTV1af", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-ok-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Qx5GKyJna15Ymb9oKLcwmUVgLnPTMeUNAFF22Nro9HrikNT5g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ifBFGtxYuYj51znQRmHza5Pe5ce7UnvSb1Rwyk6hsA6MqLsyR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 535 - },{ - "name": "bts-creeping-penguin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51TBNnPkWFhHQ7e7hcZUYseqtD9vrjj7hn9YxSkhWdXbS5sCTH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6moJwCD69FhRESC6bPbwWR8fJC5sVGt9B6fLNMH1nK2VUYenNM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 79942 - },{ - "name": "bts-bts-wh1021", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5frLTZJ5pw8bGXuGxSXoUu52L9LMrxLrEUfmJY4ZUvU5QeanJ5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jstcX73DyJKnZ7uyT1tekFTSekm2nYbLAWY175RYmCsDqu8Xw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-mytruefreedom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hRM1fUtmKnCv5QHXpDXPScGRrg66b8MfvY8jNVdpyrmrVR8EW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kn7crW76EALcH6Zb8jZ11Qy9xRSwdbJbKLsdMPeu28KYb2atL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-awesun-ridge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b38mScVuKVVyDXnNFadKyMBkUPiSbUSPVaAXLtaB3YsApr6Rb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QwcFP1A4qKvVfMzmpHQb3m8haWurbQef1ATYjTuGSZMVJmjS5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 61796 - },{ - "name": "bts-h3adshotsepp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X1WH2AGfQ9jhGfdKQVyCQzkoFiH3YRjMLTkvr7UuuYK1C4P2N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nkCzxDKxyBagaqLkR5rfsERg9EYVuKBM1pTvhhhrsW8Vz6BoL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1060 - },{ - "name": "bts-m0nkpunk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DPJ3PGeta8yR6YiFEKnj2zXVqpAcVEKjDFRgVoRPvibWLRWHy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E2bX4n8ip9XfnFPWzMEtgaknTVrvkGZJGs7kMooRSffrZXGZW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-vvenk12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67yuMNHMQC4hzCm7J8qNfBuXZm5s4SB2L73occVtGf3t9YYXJr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HWfx1jnBxDgb5AuCoHCeJU3YK2wSfcL1WxpWfMyBZ3HFVviCP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1484 - },{ - "name": "bts-fizzlepuff5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YJTLmHudZxCJhgPJz2DGWG761QBARunXD9VAGfNEB1mcZrqQy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g4dhRrx7dYABoTA5Uab77r5ZGnPuBAgA8geio4ehtJg2t9yM1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-joywon2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QrEzLrNKw2YKvrMrZ8UJf8v7KqPw5vB8Sh99rAq79yHYSeFg7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NLZ46ViWQVknD9d6GLc5AKvHDKwR35hF5GZyyp5WjBcxgUWPM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-alex-clark-barry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pEiNuZYLLdhGy5WjD9W8AMs8nKyH5ch9uxVrSdQxrg5Pm3kXb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rxxRdDcbhJ48nVLNEr2y8r8n2rRPsg1x1x4VCadg8c2ih1L87", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-antonio-costa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PhMFw9b9VxvQ3jag3uAjNUHeXDo5eLBn3t311shUp6cLpgmiF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zAKWtq4oXQrML1NWWEgr2aa6ENC118Mjk6dY4byhDGGwDxg1Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-fermi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EZWtSAGF3w7nLKrxp6BmHCgYyGvtiPVkoR1Vq3svQnyi9JDZA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71fksF4VRvJ1YjXvZJc6cdvLnCzA1KLcXK5Drs5MwxRrMNEHZk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357 - },{ - "name": "bts-earthcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EZWtSAGF3w7nLKrxp6BmHCgYyGvtiPVkoR1Vq3svQnyi9JDZA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71fksF4VRvJ1YjXvZJc6cdvLnCzA1KLcXK5Drs5MwxRrMNEHZk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-borderlands2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o5tRyLszHaJ8NxtiHi2EZD5cVdrT763j5sig82KPW67sTNQLr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XiC5A9K5NVg2z1X8UK5yWkoJdTgQd9BmKE1KmmDVeVpGG1AA4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 854 - },{ - "name": "bts-honey-thief", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DCXJqZDCdjmWi5WznhzVhtnDrkM1RGpzvYkgMS8RnjTWU73Wp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bim8UZ8YPaBvAuRoYCd5BWqxFFetpeZJssjmwnDBHhAB5JLak", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-profits4all", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WkLG7f4PdEgQ7gzdAoRr5fbT2y6ppYTyJXag9qdZfVemjKtLw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LM1Rq4r2FtyGtW2Jw2ckb5cfDcZYfir7XGpYr38zmbHwVVMKa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-luxiang7890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ETvuBFDu5docCDqnC4n68xGkiHvnvx5soGAYeNrJUMfTTyU8X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7k1CJ6yhhzzWyQmU7LC1bCVgteVBMRtdMHqrDDpATgwa4opHFm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-johngarrick1972", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791Jcwjx2CuegxB58NutBkjTiJscJbU1zdAWenRZnNGhBX6FBa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c2UuSJdR1rYpateeXKAehZncuJw1z72Vi2PEmP62fuQ5SHy1q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 500 - },{ - "name": "bts-gemini14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v5LkyHd6Ro6FRuezHjwiZd7EAGgB1Cd8Uxrg5k31TET5gCNZk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6n6kx3xbBV3pQkDgFVWbUTUbJ9u893feWwhmgVqPYx1BsndUnj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 982313 - },{ - "name": "bts-cni-toby", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RtiBKi8rVfRjprp25DV5EDtH6eMQ86pVuQfWt5PXQ95rsGVPs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5X2nPNWK8DMP6LY47VDmadFp1CJt5AG5x15NnDjcvDx3Z74R4t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-pinkpush1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Czh4KiZTbBgKpetS26a9PbfFUtsCtyGEDsyGPUkEvvHK1cTez", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5exRZLwn7PSNPPGwjoCj6zjMoTpRNWzeELo8xkkJpjvWF5bHNb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1978 - },{ - "name": "bts-boukhyar1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dr5cy9LRWuQT4KZt8dHQJRboGsppsGrYEib9h6Rfc6GY9wjSR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L1bufGG28r4Q38So897AuH69GMaJd5VsYtwQy8Z79xieap1ek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3862250 - },{ - "name": "bts-saulsaul77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Myr9MR2R4k9WXL4pZZisYCtYernV4ef3ksLtd2Xs6JU1ym888", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dsjPogQBD2mvJsDtAd9HfdAMxMPvNwvDGnPCJXFu25jSDAhGi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 322469 - },{ - "name": "bts-cni-barbaras", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FcwLzrBE2Pmp82pafL6BBfdH1aFW43uH2pdhCau4LrVXBuzgD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ajxxAku2oZUV6XG6biryPvVkG4yajYZ5KLT3xxqn4UvPugJJ4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344 - },{ - "name": "bts-zhengxingken0603", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mUU35PvmDvD82bDfNbhwfPCdKX41a6ABoRJWGoD3aifTniHXv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i82WGZD97RYpzNSndrsqjQuSiR3mH31ykrpj9H9izzmoYrtPz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3156 - },{ - "name": "bts-cni-veletia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jDkS13GA82QSqpGUj9HayF9n3EYSigEwE1PKg1gjyYX5vjasJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8JaCeTEADpiRehFcF2JGJHh1zutk2hcgBykQbN3hnewzNvGjN4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130 - },{ - "name": "bts-imacowgirl2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wKUDY5Exf3QaErThniNRVS4Z1HapsQJsfzzdUjHN7RKerWCPe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5GSZZb2z5QW934L5Kiw2Zz9CnV1e4by1DMqUSBHXWozRfQeKnZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50 - },{ - "name": "bts-mazainderan-3", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-mazainderan-2", - 50 - ] - ], - "key_auths": [[ - "TEST7bHRDeji2MrAFaFyXN5P4NCmbJnr3JgRYPWNW4myqqVCMpqzD7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SxDoscKgBbLf26vinwGiJwWmEzryV5mJMAdNtsz1GH5241Ytv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-btc-panchunhui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LQhGepBsqz7jtLxa2baERS6ZW91Cp4zgm1tL7ZXAoaLJVVCUY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cook8zc7VKHeHa4iRjPk5e81eP2UPesGZkvFXrkwgkYujwbTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-stampchan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fvstjnBVjbVyTWHd55jRRJa9GCukcJ4dYi3DnmVSwXWDe3C1m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7oz6AWEaDqMMjKa4VTVk5uhPPdnNC5gxZhaUVDXYnuDujXJtYi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-cni-pointerchar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nU7Qt4GmJC4y9UofBhKDm7uFWRYUGEazgM21jS4dLea1yZrJY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AiKL622NfcX41pzXdHJ4QNnBYZ7JRTAbsmHwjjezVkEYHR7xf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64 - },{ - "name": "bts-cni-kidde1945", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kDXVrnPr4HmSXLiG9E75KdUkNkavqKeTAh3DKpbafnfhGxocV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7fF3LqPuKA4YKMbXwwMw1rfGqb5QinKyC1AwJH96LGtfjWjXLB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4259 - },{ - "name": "bts-babit01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87A43GzXoSnqkTttrBZaYZzAPVqWfXPzQPadRj8A6J3TyZig2h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VnCM1xWdykLCSroJehX76HtEexCUvdPUCE8JFhfKKBoube3La", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-thirdstryker11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZKdt9gi1b6gmoM2V2mza7SEjQ1W94DRA4p2uaDMPs1XC6P9KV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cHFGHEo3EFKhyMCdPNqAa5X87LuGFddkZjXS4MwtgzA39jMDY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6758 - },{ - "name": "bts-trycarrey1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H6quSztNmXwMHjmy7zVvsgbDWLHMBuTGDk53s6u2QLokmVoJw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NQcZtrVDHv854UA5vqbAmiTTCUkeUYaDmhqUxrU3MeaUpismg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3335 - },{ - "name": "bts-drcyto08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xboj2ihwE1NXnQ1uTtAW6AF5be33jBd5kQiPqDPDZqXU3DtP9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JqyQb52imfJfgc21mYinsLCcfeEXUYJ6CVieZAfwMwRE9wmJE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 182190 - },{ - "name": "bts-asdf-4321", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RMkxM5vxdcZzuep55QrYDV9kvzrhuCRL1XhX4SqbMJ8BoPNfA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LknvAXvusFKpfm1KeE3spVnyt2CCDLGPPaLJ9Zo1amkabu7LF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-wjr1666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75z9AGjSctovTdFSA1XTokqmRrycgZK9gepzzLj5eHGPi5WTpC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nZywTTpPcDqx2GJvgb1XRfrvnPWVTApGRWcxGH1Rkpsyb3um6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-shiva-007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EQ2uEvtujwiqVGYfKcFU6Wwq8Ya239uB6RqYkAFZkja6snsnW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5obRsKbMVoA1gsZhyqH73uncVnhyGXRfxJTmNFS4wrgaa5s8Sd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1198 - },{ - "name": "bts-austral2000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SEmQ5K9wVjp4TTBdEyJnWoVhqBFdRCrTkezuFp4EZWeW4ZXXw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WF8NC6ZGAnD5A4WPSfY5QQui7ved3AzuRFEmGUgemYX6j48gQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 345 - },{ - "name": "bts-bittwenty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bfyWhrAtod93XdEdc5NPbyDfLficcYkkYNkDXPTpvhEh4tbpC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CEaiZaNNa9uR2LLyo2UTAH6BwDYZsvnJZ3c2URRUMpi5kCxev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 222 - },{ - "name": "bts-kiisk1nen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CHVXXMw82UpbwxrQmgxV4jFYi4vg1aYULTtAjeVKPSeALPKsv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PSpvY5aMPW9Eeb8o1bRqtpMvzxQsibBwQx3gQoyg5vBvNDXyn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-cni-moneyonline", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gQ4j6RYKB1d7rLimRf1j36pNVbkTR3skVMxZKGTHVcTqGtL7U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YgwfPR42AaFvDRP4JqMpFYd3AGWjBycmWx41bpHmnkjMVLFFw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-nichol-i", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MawMwjxYaL1m8UJRQuB447rdLiRmb3RcmcuVcBkGyPpKy2QAH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pXYgijivr6mrbfzDqLaNoVtF7myWn9cNoLtRWXHR68EtGRuee", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 109830 - },{ - "name": "bts-cni-chatterbox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JbaPvgDi6d35AsLuNTCmL6B9UBVYDCN2irRVeY6e4U6Ky9cfR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76FiLbVENxV857ULdzJJAgQ5UYKijMQzEF8kELTb7L6WRVANPs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5144 - },{ - "name": "bts-nnik00ei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7twjNMEdzt2vTCRAzZYHQpupL2aBMcDvsFMko49mzRYBx6iYPd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UaJkUrXwRpUz2tU7MdEuoh2zPbBBUKQy4u7LCV8WZuvzveRaK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-verborgen.heitor89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zuYVev7tJRLJt85jbA5x2i4nPCRtSHQEeHdDZNms6wkewSefq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Gi5sHHP5zzEAzmxBvtNDYMPL6NZKcN3KWCjLc2tFwq9EL856k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-ht615", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7171526JUwPWuo8ujP97u1DzBtEYRbqU1a5Ymbmcz2aXNo9RdQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P8EVxcxKvp78zxGuUqNM5wgoZoKGeww79HYyBxgPCqWQrKRme", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-cni-margaritaw8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qnf5z5ua5ZgjSQt4dUKQ4RP6jMKKx4WjntV8Rcwsq2Jabfi97", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ozuu3dPuyWiwmKEtKLtCRGgYE4z9SpwQtzMLrjEXkZkyZWVYS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13874 - },{ - "name": "bts-openledgerailex1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mspzcRDyGP85ymQ3sUT9Lu8dAjRY8AgywA25xN5WbahpS6gwg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63ToAVwefmRigT2GEpHNpnSCTERJKyksFUKxRmfcMda6HszkjN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 234 - },{ - "name": "bts-d1494", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zAEBXwL7sCXVw8b4TAE9wAYHv9gdMTh9kGZNy5tHxEaKey7t7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Cdf2V5b9MmVmuW6bcsCsny9bu58SkBDEEqmnPD5NqKHSXLiRY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3386 - },{ - "name": "bts-cni-logima", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mJdCsJEtFwezvKSmmqe5RRH5F7tapiE6Y9pVyHYUUjhS7D6s6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8gdGy3KLie4cS68Cw5T4VB6uwxAVVR2HwTsmijQmXGkFqd1pwA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1051 - },{ - "name": "bts-leo-pard", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6e8gnF4BunEpLPcXb29rjuvid7wqyxertPi1TFVKiZ4oGqa2Xr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wFc2uViSLKbJtgHZDEs9wGgmXUHDXQSvNtZ5BYn4tWoPqbmrn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-rezident26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XWWYNdPR1onUZq2FTUY1Yipknffuei5E7RE1mUbDyREL6TggF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89V9QCSQG22HKEX6fDfLcujMD1SDHTPvWGVcicA8bZt1yqoSSe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-jenomoto613", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LvMPD2yMCh6KDiFqbHhuyiB6LgBBFtH47588mzLCJ76TN3pmC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jjKRWpnSvFKf6q8LBg5a7fG94LRLYB9QLN6fJ82toEWNFo9bV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6672 - },{ - "name": "bts-the-schnibble", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ew4qkPp5zhet4X41hmTwfJDp8w49ztrkoiKycDd2RcvZCdP4u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YVMdYCLEMuUPpPYwP1M5i7rBxiWqKdR1JkP7Fn8RgfcDMSvjD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1483827 - },{ - "name": "bts-materia-x64", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tdfj2FweZjVJ6fmWCK17TEVprnqq2wVdB9ZFDxmcnPApZaZ9u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61vEMvskeLJo2nRWCXNvWLBjsZB9Y2ZWaz7Je2CstBsgxpKnu4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97079 - },{ - "name": "bts-arakaki002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JGrxg6cxASvZEmoGkkFpmYuETuuajyMUuCtvdR236PeYPNLnR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aZGYhZkYFRE53b1dRU1V6TFhKNvANfMddSq9M5zdCnBjdjVRv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-annwey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81Vy2KK3NfUyrKTee7cnk8Mz1zrvVTCrGquMSSFKqukHf2KEdK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST71jbzeg34cpFhQNRgV3MmewVNE5FHcqBmxePVF8A5UWbRaGrSm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 370 - },{ - "name": "bts-nativas1peruanas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WMu9szWgyNitdnixPuRmWkepoHQ6NXsqMxVTXdUBEcKpxGV7u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XVccWJtXdAADMX5BD8SSzqbysqULFLVZZtoYNpjRRyXKNsWrc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5586 - },{ - "name": "bts-cni-rosebuds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72FnTMZV2ZXfkTF41KJDoRcCt2bWMHCs6tcQKfS9n6G3Corm87", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mFQiLGbMGxfTTvTsV7ZQhNqXB5chH3P6aiBrEZwz2juxBmTRe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-ok2berich373", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C8EZs96wfJVjvQbmiUjdqKCobnsPcDKeBSRKsAzG6xSo7T3iU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5LsLLNApUam9YyGeVBV5M8qVz1z953dCSNvvChhYHZNc33RwAR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 372 - },{ - "name": "bts-jcsp1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RzZccqtvB2n7pGLKuaegcCPYNQAGbevjxf9a45u9ShBeXYT6P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JF3JYAdo1bs8WohdzoaU8Po16tTbaWBPAYF4ZQ84EH8zGEwVv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 515247 - },{ - "name": "bts-cni-flyhigh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6y7YXG7jDp6baJvsQJtbFRTsCJV8d8d5g1ua8KPPqxgczmJwWS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7WXbf2EAPQQioksivCSeMuCeqoPpfrhBXfCx8EUpC4HUSAyRkd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1163 - },{ - "name": "bts-cni-startrek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST756ZmVn8UGxEXo6nG1LTUAtCagMLN71wBunPihTHHi95op6mGb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4uUwP8JLai7ozgjP3BAxqLrm8rX2LjNGpqkeddyaoTtPFYHioJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59 - },{ - "name": "bts-assets1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WsyzVf51f4rzkUkpErbZ2xpqnFGQgdNJfWrdqHXQy5abUMKnb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z2Y6gwyTXjTheUZL4r3bxLqQpNZYT2WDKDjzZt1g5eV3FmT3Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4565 - },{ - "name": "bts-kimziv0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CBXcHWKBBVAGntU1dEwpKgi6b6nLziRRxMSGmht5nyHeHn2Hb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EPHFK4NKCrXsfX8zCBwnzN3FziK1js8XjDuxKSzK6JGWP7ut9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9613444 - },{ - "name": "bts-mazainderan-4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Bp2WXfSsmjUM5nBTM9SLBZpwtC7QXKGmfGpCSUWz7J7ERqgCw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8as3kBWGCFiCNarDDp89Gjy81kFi5TrixTPyENvVRxdjvgHWd8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 212 - },{ - "name": "bts-skynet1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tTSuGsrQGyK6EcQmnpTDJRYtN81A8jWzoG9URmQ52x2QQ6Tht", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D11DFdQW8cYDpftCnyz898e6xxiSUiejmn48STFX8zidmyrev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-kanjer1965", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NCRvaLqfWbreqSSwfzFsYBmmDRJecLwx7jkiKSGoPkRe3ozAr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5NeX2ZWvrVbJfzmUe2mdWaUTtHVFwMmDKNsQ8HKsnAyPPG3JEY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7468 - },{ - "name": "bts-bhchchchch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GHSEomMUpTKdjiZcHQHPPZRbPhi81SUFNxxeqcgkTxdxmckEu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EhH89YqN4oaYd44y9Zc7BnEBA3rDkGPGExh8c12CShVLAoUJu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4425 - },{ - "name": "bts-better2know", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6adVwsKy3yyGJycryK8TjAG3D2f99pdwALDGqnnJtFMNuW3CkM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VSfQo5GYz15mTnyay2tiSh6Hp44Siqd7JaQTNt2cE2438RYrn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 911 - },{ - "name": "bts-takao-asayama", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QvrnaXcTmLA8wk19qpFZR9acpXkm18zK82jUTbDT1WhzmK8zo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tf3gcgvHAmsjNFUedgFADXGR5vr7VfsXdWYFBUwWj6FXF1p1Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 741087 - },{ - "name": "bts-jm21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69fgeCfCYLaef5cPEmDqvZyDCYPq5K8aMRcRcg8s2V1YBDGwMn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CQkk8PKfM7FzPuYiPBftH5ihtikJRdPWUQnca4GZBtPpB8RVs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72721 - },{ - "name": "bts-cni-pacemaker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Kt28po1ZQihTprqjt324ttYK5EqDY1tQiExne3xh7yTDTG1zf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7EegVgexSaeu2MhZhH1E4GWc5ouQ2CprhXiZT5fSEzjoebBaGg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1850 - },{ - "name": "bts-cni-venus12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vtfCEKGwZ24XJCMjsNZHMRyLhw3PPj9hthAu1cgQpRFQFAp1S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-trade-ceeds", - 4 - ] - ], - "key_auths": [[ - "TEST6NhLmmvcbpYTkNoepyETobvgU7quJTcrvnNQHWsT5ouP9FJnza", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-coinzz-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SwUfbRxrs2oSVFx6hSTmVqu6pLaxv9SaUpVxPpFQG61PDtwyZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rKy16iMnqGPijk68kPiSQSXHurWLkLAwKRJjqGT7swZdEK86y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-savachan1982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wETDA7Zi7GNyaKgn735jqFuckwQ8QtrMxbnYVuMbwL75cdbhM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58XRn4zhqTvsRYnHFYqrAPwWVW6TRuLsXTDmxBfVcLasKLTmaC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 345 - },{ - "name": "bts-cni-silhouette", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j9mEaCEvSEe6cx5AFwYPAkz15DyoKjSi1fvLDPmpTMTb5ThZg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5B2t4sz4TsGZAhrXABeP2NEEB11FdE9Lgz9SJ6aYgA86yQJepW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3811 - },{ - "name": "bts-tstc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qmbKtkKiPiCGctz2Tiy8oztxY9F9TBBQHQZq2y5ujcRupnH8X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HoJ1qg6i6nY1ye1zo7veWmrgcWTB57kzEqpQdXdHNacSLersT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 220 - },{ - "name": "bts-lzlh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tuNBoBrPB151zMfy9Y6gjWQNCkVwbzjvraZuctkaJmgAPd9Mb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eXmXLX4XjHConKrbZsMXrPuVa7q6desAp9MBCSCGJ71WwfkrW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-slyder4ever", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81xK7ZyrBhQjfjC3GoVXEQbPgGfkrjUXYwUM8W9UGZF6HaZTDU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d1iAJc4PuuAj64pmypvBo9zbWadmHj6jUMrRRF7oLsVuGdjJo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-dool777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ADsEUsGvYsgEHaNAdCW3ort1ihhecuyzobMmzGxD6YNKfZzE1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-brandon777", - 4 - ],[ - "bts-cni-doretta7777", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5S3AKDXzzm4DufBHeWGFwxknttAQjMJSMFftMK3zePbmVpwtgv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31354 - },{ - "name": "bts-bali-ascensionz888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E6R6erQmyvRNnJVGeGjqYrc8dr842V1VTf82wz15mQ4Sa8dES", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YcA3QXLQiu5AWzsMNkVg3sbfh2BGNuGwuQ3RiLZ2Gv9F7Hmhr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2158667 - },{ - "name": "bts-bot-2a4k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aqcrDtzHigANdfB7ZUGm2QToiDYRAKALsGFo7ApZinKbwjNC4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L7PrcynqajjnrimPVqwZHeFyjMA87yrMJzB48E59q6iGD3hFq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 437435 - },{ - "name": "bts-greasemonkey1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RHDQe9iVNwYKZ3VSm8MZR4vHApqB1koSUJXW3FrNhEv78Z2LQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YWbatz4qevqZ8PS71mPfAd4YnfcT9H7mhP5c6yXusjK4vAwRL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 340 - },{ - "name": "bts-zxl-flash", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QxSMNGV8FBB4PrxXZWpjJb8WNtgD4ZJopz74De6p5L3SPUygM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v88VPWEUUfNVQRBEgF7Y5Te4zYHbGbAJtBuRZnSgNoQo4CsKJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-tabuku0151", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68Xr27X7S5Cx5V78LaAJrSA1wCKJSyGMh9hPy1Jm1BcZVwBMMZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UnV6jKYjkTXH7xCeKLZbKSQgAtE8fWQM2EKaWfmZrRHzeyoHq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-p00p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wQ6KaUzvYoP2dyj84G5mcJhGwhTJvCs5dK9VCuhZP1W1DQXhE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dvanmV49kzGZkS21Lx5uaPbLkMJkprMANwBW7jnpiuc8LwEUm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-mazainderan-5", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-mazainderan-2", - 50 - ] - ], - "key_auths": [[ - "TEST638NyEbmGmDqVTddsyVDTNv6MihuqnVQANYbJuEmYyNkshC36r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EdC1mpbVZgEkZnDuYbVJco3Vz1AcbaADYnjQDE8P4ZpRVuigj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 114 - },{ - "name": "bts-bitcoin-8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AcyE3EHqe8E1iVCkmGf2CKsEVsLCvoKwoXomCLLtGx6XEzwF8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yvSqiudCbkMQfK9gXKsK8aRyqD3BVG7Dw28PG82c247dBTmj8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 191 - },{ - "name": "bts-cni-napoleon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PWoXGKKGWFy71Grb3MGMjMzDnopY6BbMV87cS8jWGJmqw5okC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST51ExyhoNkh7sDxHzvxrnaQF6hT11YFfT31fuyFw72j3aoYtXHm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts20160528177", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST651ZzXZVKiy76VRnZvunSVZH6UcCkqBa7soCkySswaDD7xJ5TD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xBhaUaQBwZW4MVTfZtxuhKfEeXTPoKAi9ZSTB5tsNDsYMs9yf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 437860 - },{ - "name": "bts-asuka666016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NGvgyzxyTxVuBd9s9Fg2xsMgvVy5Mmh8eDxjLhoLgZKSz9DV6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BB6NLRLjbFYaAXeAVD6p7RguSRSwMP75FLexzrvuHVJjsJTZL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5902 - },{ - "name": "bts-coldstorage1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X5JZWSZaAT9Y8CtUaSPK53ePH7zcsKrB4YFi62oq5kDPVpLVS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84Uie5hwWhMHmUbigjVoDAo5uv8EFVeN2H8SgX555b4HxWEAn5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15764469 - },{ - "name": "bts-cni-mrscountry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kJhQNQZyufftTpr9ok95uEq1HqRAvUqhhhm1SYpHUpWt6pQg3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ezvZwT1G8q8ek9vAzZHCAgxRPh6a3kDzApoWgkpPCqfJgGrih", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-mykolas123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t9khAgi8wC8UvMnYJTCWXxQTrdpejWhzufvyJjX4qG1m2pCVg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7TDCoDJCMKwxrgEkJxXiRnu9fdoSJ4Bu2kg5wgVKiZGpHze5Mf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-patricka", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f6QDDFNURi7P7gGTnwnMoAG9BJEvH1xfM1xq4DKJzEmBkHTfX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6LddwtSgnYSNT44PtVnzhxwh57PnaHpoUpYHxfpzGcnCFmAG5u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-mazainderan-6", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-mazainderan-2", - 50 - ] - ], - "key_auths": [[ - "TEST6yWGSWSDnhFtBAZPpwoKdNUFoBSYDWoLq1Nmx83nEVaxd8fS4V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vqJagy5DhzBGBjEt7pJNRkG7GKZLccSgmSM27xQ1EGj14s3Ah", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44 - },{ - "name": "bts-thndrx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JXWCPVQH4eFzUkGSnPDTpL2GtC7b3q9sa6FxcGKSqb2pM5kTg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FAbsoWCbuVnNsgCKXbvCxVzZ9wrNfBm86kZ81DYf2RoSn8hno", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18321 - },{ - "name": "bts-mrxtar007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76UihigN7myxT98KLXPU4GYAhWuC9GK3msJm91nJtYZUW5mV7d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n5ewAZz2DLMmim2NdBYmuSN9piro6hzXqmBdhRbr16aNHuhtR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-successful1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86Ju45Ruxki91KvY2sQYCDTWtFDHYYsSptiYsCQUAmxFJUyvE6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DB1YXaK91n1w2CDCNSV8EjQHiyGwkKvsRbMECa7k3BaWNCJhw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-xbl68rich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CU6xfBgufMj11VZXUh4Mg7zVACRp4fZc8nuk4botyQP4A2Awa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5abhGarudYf7aG8e7mQVB74GgftA5uoY1QxPBaq3SFZPuUaHfc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-sl-bamba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST864QuN3CoQs8YVec9bWyF2b53Tg6Ac1z2L2zLhzpKLMwW7eDNT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ac41ik7w9RSDKjzBsQngyXbgbrjfQdMGrXbA1uFuRC99pgneU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 537040 - },{ - "name": "bts-bebtc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75j7uTz2mD6xctQF2uF4ekNXM7jpjjsGauw6wAeH4UDrvw8UAH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kdzHmt323Tp2dvwaxGf4jniDULdTAHm6xktCMC1Dd1XxTdK7n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 84979 - },{ - "name": "bts-rodderick1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NDQZGRi1eeSBSdZA6zZwyJe15cqoXzEhrkZaVbBchvyTPKXVn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g9TJebtg6A36op6JJzme4wMXM7eXMBmMvseqZtn37JHe1VtR4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bts-55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g3mwQiCabLAaUxC5AaRLZoPRJLrWpmPHj8VKVZ6w7u9p7YHjG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SNaaaBj2crqTA75KDm6eQFieMAWbEJq65q7fxopRgpYvPWPcP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 144 - },{ - "name": "bts-mex-bitshare-76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6633emjjaqMSVVGE2ghVmFTe3xXHuqBgijjvxfnPpzgoGZ9fW6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SeDVnBJDLD45BAMdqFMgbRC6Q6KQWVpTvq4WNY4ckeUybU734", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71113 - },{ - "name": "bts-int-openledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87xbsyRRPUCd6aA5JgJXMcZY4Uu8bm6n2SgbCBXjEgMi8w4fzv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TWw3dshf5v53t1iPhzW9yx4TYmmExjfsatMPtihMdqcEmDVvd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-cni-krmoniz72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hWcu2uFcmpk2iUuhD9JV13wKpzVNrM3jBQhXMBndAmFxXvDrR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89ni1Y8UvkwTvYkisDmXRyDLe2tiHNNX5QKn1u1G6WJt2eEs2S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2833 - },{ - "name": "bts-code1420", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o5kfFHF28Fu6Y7TcyYL7ZepKTviwZZKwgr2QEfd4RZGBiH58W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mF71KXEbyjJEWUwpWUzgHH9Zry37gnV42WDTyhpXsRM2UC2E5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-mryukonc76", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RQmxzqc5au7ta51qSMEAdGAHNorNdjK1y5Dw2knSqjiFacHcH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89hjrMpTgRAAznZPK8TArj1rtsH8RUqSvjDXpgVPWWBtP6oDXz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-tripjammer69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NXaDSZcBZyKvz6oGMEXa9Am3rYM4iQkLiNR2VaUwPJtVMLyKR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST777rTmmFHXCPGiKiuzK1Fk5aeHUdu79gayvn9Fkxwdyox8EHm5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 194029 - },{ - "name": "bts-maru-09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81owkVSTjroCx9v7Xv1ZaZh8dbVvNCye66VTAZuzaqngX75rEy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 3 - ] - ], - "key_auths": [[ - "TEST78LbfR5vNFajt2F9YBaK1nQkuQiRepV7WEL4kE9HkVcKVzGbT2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-bitcoin65", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TF3szTk8KCtNfQrJFjusTw7CykDUADiS78vVqgoST3YwBCSUi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yY71wNQzuWs4bkjy38jDDisnvN5cvbsQF4tjo8HPtAZMvFNp9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10842 - },{ - "name": "bts-bit-menwhmcs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81mHDRH1PY1AdkfBbZ6zEy2HcTcfutRtGVt3e7RqUgYfgis4ik", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UsMNZGEV7zvwYVk8qyYwqP77T591si9jAFUdBp5uPzSZxCXcG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-o5478896585.minebitshares-reloaded", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MwcQRAv74kD1QA2y7JDH79LJNRCPp2xmiwUDVrAfDaBY82awP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dWDbwvydR1QFHmRyQWrzLqkNzsG82nG4cNWCP4asiwU6AKyXv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-tomoaki-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VExsdvGs1E6eDtgB9XvrkfXN5q6P1A2Cwxf26XEAorn1vc1kJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75L27kE63Ab1wWc7rbtqPFuZzuTddQSUtRfjSbmv2AxeF8p8zt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42570 - },{ - "name": "bts-seraph144", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86B2JSMwGyYyDtDycVNBpPfELxvCv1QKpeeH5zwibqxyco17Es", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C7bYDGoGYTFMQaf7A3GztvqxyfSAG6P5V57jELc4HBcLxgNts", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-fed-kassad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VovtsLrgV8FFiQXdWfC4UBPXMAZj4njhR4MdPToFXJBD8LFEv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d59qz5pPJvbwuEthCsfqZ5KERXmxqZ6D33eGJkvvnqDWmSb8F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-demoforcylab1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QF7htYdiua3fE2mcRWPYc5myCBwvCnzQk4Z7VRMJkDg1CRJZb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6W1CCShY6waW4HH5rsby71fWw7HBsF7a5orqzvvFdzWc4XJDvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 656 - },{ - "name": "bts-daniel54", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7siUoBaW87VvgtsmavU1Bmk5BXXXDxGGqKB8KnYHzd7GnsyNQX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ZHeD9MdAKEjcCfWQKZyKRBUeYAdytBQiPLUVPYfzzpKCjGKHH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-bitfire1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST656c21NKMKRjbQBbbEFMYdA3mBfbmCQaHFQzrssDvXuCLVHGx9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68JBagwhstFrfQyKDvYvYPBH9TKmhVwHFXYHYvYR7DfG4C1KZR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-salemvalley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ySTviv1Z2N23udwG5rN1xYVnpkq8xwWUBEjP5wZSSXY2yyQts", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6wvEihPsxqN8nxWdrcZhY5771GNDtnJ83inBwpiER65m4PJMsA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 525 - },{ - "name": "bts-kinglisk1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iB9GjzWbTKmDQL71C9ja3VCd73XFU4ZwoejyKjFGeDvdHhGHQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yuedYz4wq1KCbjsBEja4697BsHSwQkiMMqbytaYUURqtexcqh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15138 - },{ - "name": "bts-ceshi1234567890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KVYxpnmZTvCVVZMd6r5Un6g6fr54LJmqsv4rnFf4LdDyWVBZ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jz4PZh1wKe36Re4SqkWJgtDj4YcXybLoERaZHS6xfstmbaRTY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-rabitfairy-sakura", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iTqqUkqKuUsGbJmiVLH9SxM4HQnv6LJfP2YAuFvU8VbA61QPA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8U3HXkNZQsk7WJMe4whrf32E1movoF4Mhsi6qTN7r5stiTbRrq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2428706 - },{ - "name": "bts-roman5577", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mAWprETjPr1bzM56LxAKTb3VpjsiexPm1ZcbeitfJmHYVf6FM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5csdrs6EmJ3sxyn3RWcdyi73vztyh6P1btqwqKKxVgjM3fyQ6V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1486955 - },{ - "name": "bts-kyngomal0n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tevrtobaZvVxmWCicgW4qkD2Nsmm5kwCnvQoVMGtdXTZeUDZN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kBVmX7cPiKt22UKRHroXi83sbAKBRrHZAARvoFUMYg95ttAaA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3055 - },{ - "name": "bts-toresh4096", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69srvv84LhPWc3Pg7TJ3B7h5BGnzcyHuqrNcJ6LLLGbRNGaz8m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51k5TQ5pq6kt6iVZCsRshtNNQsk4gMQ71jRfVt2oLvgee9Li4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 635 - },{ - "name": "bts-horus001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xRbGpEUyrX2UamsZ3ZLhVLeKDVVYYstyPG9W9S7MRf9tD8n6Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bATe4r1bjK49bdWyS4TKG5SrzaueNv41axgh44oGzL9GnU84y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1986 - },{ - "name": "bts-cni-swaggyc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82o6pof7zCvG848SvtPLgc6bxCoodCEvBHk3nWNw9d1wudgaGZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Ld95VTPS7b4J2at6eT9dPjmkQQLjqRmuLuGJeHU5m5QNxqEiX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-cni-bungit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pmuMrvhBmY3R5PySqpWPPA7muBsxrZuCCTxb3hPht3S4VHDje", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6d387ikaHUUtiu5711EWHcWT7NPxcLh6pZmWrM8s9cD7Fhm3Kh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2331 - },{ - "name": "bts-cni-trplsec", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VBLCdgchN358GJVjwQUdzBQRFYTtKbaGBjj4MktPN8J6JnqgA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8m4BgupEai4qG8uXbfHwMgJq2mPCt2NpG5owmEZfPrEPojLJQ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-tk88.one", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7j5u8q9rLCvoyHi4b5wXqy16q5VZhUcPhLVP4D9UnMJqP82gKv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KDvUrmncsraiaVCtMdGYHat2hwUBVcxvLgAU4q8rNyWxyXyHc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-sbhu09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oL7MNYbUuAWr884Vuhe3VnPcLbACaVLoEwZaVUCHC7Nx4GrCq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST587XNWM8BYi7BwjDEMfHSHBzkjJ16KKD3K3cbxN81ixTKsdoQj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-jp8080nl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52YuWcgHAWF3PVxwicy8jUDkN7s83tL1NP24gWqRKcKjttchtt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C1ZeAviFeGr1iun4VLWqYpxfVFDCzQ4xVD18g7cKxYMxdH81k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-z165251462", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HVkhPk3arVgW5UZnGRb9baw5Px7pcrpydcnm64i4SfALS8nun", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ESPSiAY1rv4Qc6u2EW59pPmXR2syqdSJfLHzZ1QkZL2i1VMgb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-mammag1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SiBTRPhGSENQwFTqXAUF41EoGSJm9m5GQMSyCa4pBqScf4gga", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5UBJPPGpHZKYkmqoneE4ArJ66aMM37ZWA7r6jg6EwBa64AF8Ej", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1309 - },{ - "name": "bts-cni-lydgroo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ittS3sZLE4Y4YFJdGrCT2ua9DRQodu9igABQheRHMUCuAXhm5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8CM6N97ZrFb9skr9sqFa2eoMgwvNTtbtXFRsmRthHgqzbKx5d8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-cni-jneal51", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53mrQq1HKiG8UJNz6xZE1csqvsherYgyEjSQzWBwQYTjhgpmQb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5zWaZRV4BWdh6WFpd8dtRY18QibgiTgwxZg6DMWu1TC9RWWYB8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171 - },{ - "name": "bts-jill-jillerocks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hWB59HatC55qp33fm7kAxsdEKD8QdQwnuKHLat7iKoFCJuU8T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Wai1vpXMjzYNsZ54YQwsQX7EH3nQw7vgcxGK9tcNCkzfYsMKf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1451 - },{ - "name": "bts-cni-meleanahi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zAWD5fcVYGe67qXqLVQDaKn3JrNFYuhBuNcT2kwTUf9FqYSGs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8WH5UR17Ud3eVW2BkYBqT6QxAQzywgei4ZNoDfsLdsFiB7xHcu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-scottherren1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L1KVtC6HoV5GZmRkNNSSSoDaVZe1L4AvrzcCKsVZ5b2G3nsCb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8R6LtmvNKnqqkGnLuuPVTtrN1jd31R81h9w1XJB5aNp6oNd7wN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 438391 - },{ - "name": "bts-onemoretime1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s19iT6NzQiVA1nRe6Eaz8RDQaor6ZpP1agh1mmNXzDWhG4aB7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F6LEq7BAtoTn1ZkDhzU414FjAn5Kahh9bNSUrUw7Qg9pbkg6e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21920 - },{ - "name": "bts-teraotc-entcojp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PS1bsQTjxa7DCKuBVtHAvDPH9xEy2FhZY6pmqs47pfnUJRWUQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xWpPs28GjiDXx1dngfrPGP7jWSgrAwbE9y3fVFhcxfF1K7EqK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10479 - },{ - "name": "bts-seb-seb-zen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zcyvgeYipcUX1Rz1GNF9RLWUD5viuxLeqMzfNCmZTc2zYMxXG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST566Vb42F76nJtxg1oCHN8HpSzgzXNhrKHeciUivo5kemX27eDd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-daketv123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7H5czt52QFB4hRzijaV8ScAQDwJ4qLLyJorqFjjju7stJZULR8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62fVbMBrMJ4GS15VHDNUac93Dx88HgT3kUL5YuB7ESaEaFnNpF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-worker67", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wyyGxw5dbRarGJJLuZmYa1FjoEo6XSLCBRg7Ufspy7Acjtmj9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST62htPx8tvuyY1tCPJmbMU2hvVDBu4ApqfdPM5Mww1pb47JfJLq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-chrisconey98", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mynRF18QbwhMKAnM5QaStEooeQi74vqiQabdyq6Zs3tgboGNp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HmfD7rgEtAh8Rtt5byCEdLyHWMDRApCTcbjiCVfCmgLKC77fp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55 - },{ - "name": "bts-opedrosobraleo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rxa88irjKD9witZEzqji9dDwF9pSUbrjif2Umr9Rz2CjC5J1g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xFoLMSkS9v1RieGmQNr9NyJoovaUpRHAr1DMiU3oYvaDQu1zC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 908 - },{ - "name": "bts-dgashi400", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kEEq1JfBRzHiV9371PzJc641CLaG2Meak9QPbYZRRWrxBqW63", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PZU8iUXs8H7Dae4uukXWeTnqJfeSCuu3163FjkDPsNVf1io2k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-cryptocryptocrypto123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6grAYXLkou8vDt6GWW2G3kQhFxdAgTqbpMvg6mikUhNDpTevks", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST562B5QMGxnHKRvRdrZRDtRx5dYx6fP2W97UGeaK5rHmpJTUohR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14437 - },{ - "name": "bts-cni-eduardatomarong", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vjtiKoe8UotVUNdoTUAPBo6yuGCpDDBLq1VoiS5pjKw1F81TD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FVGDhTZ3BNDMZPn5NF71KaJsAHYZDzFRhEaKu4m3xkxkqkrEt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 51 - },{ - "name": "bts-cni-franz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QgmJ5P76Xb8YVmfQsSMfhwzacm6uQzTBHrRtJYxRaWf7yDBD3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7sM4XYEvHVH6ANW3Z4Ytg4KwwNy75cSKN3193ewU31SdVTkM9H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-cni-hannes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eKmkkqLYcXUowMM6Jpgu15DKfn1Si8F7n4o29gjQjZk95G4vy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST57zinRNo29ZDuqThW3TmaGHUPtQQdN1oHQkV7a4cvv5j5TCwu3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-judith-dijkema", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f9PRWMpJr94j8RZYrX3TuHQVg6EDus98heCJcnuF79wVKuZPS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eiH6SPQqtWZmwzTzaG8VJuikjcg3PgRRN3CuYTNbJf4rZjCR8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-daan-kramer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o7tNwG3HqDJSN7WstGkTubNKRaJwQNz2QXZsc2KyaFpzZcmnA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86pi7BYkaVvSbNmDRw5axB7dHVVmY43vLkSFE4bwNQuqELo3ki", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-jelle97kramer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ReGnwNAEFYBNut1ZbdVsXYybkpgbdb5WFVWFKDx8T2tLDmSWC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EWkbKJAQRQibKavKn5ptacXptuvXvndzg6oJz3sgTcb3paypa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-hydra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ohLgNrKkw2pZdcwG7AV18tFZqd21yhHBRq2oDUkj6rxjPFAx8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mo22kY6VR8gpidbVV8kfSpDxSnKcG2c2HiLdmcMNCRRZJXFtq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 181 - },{ - "name": "bts-bts-cmo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7B3QEPoyTvYSFV9XLPjm5KwcdCKk1xmazLtNTcBED3fRQzAooi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6G52NPiVwwd6hEVWjW7YyQEJg2zzJ8TETthGsfKgjrcpMw6e82", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15493 - },{ - "name": "bts-cni-pjames4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST598LGXTBkvwjhGpABb4nawcxwQ44hbEJR87rrY56Z3y8ZLvTBk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6wfGCV4fhisg1EzSwMF74vyq8e4zn1faxMUh3bgPzqBjC5LNYj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2015 - },{ - "name": "bts-cni-dvdexpress", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Qppof3cUSWDuxSt8xwgPmGxxjRtAajsTNZf21A76DfoBAKy3x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Qppof3cUSWDuxSt8xwgPmGxxjRtAajsTNZf21A76DfoBAKy3x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1106 - },{ - "name": "bts-cni-everettech", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xWhUJCLAv8VY3bDRwRp9n36MDGd7RkubaqBc7zFRftokRn6DH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6sffLxR7V8eRN6yoos4p9MuEr818m4oZ1JszASwC9JpKn4hfLU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171 - },{ - "name": "bts-cni-lscapel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iN5dAoq7DwbtsKyYANQ3wGqcp5HMKdNp2X8p9EzHyWsFr87HQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5f5ME7BYYPWgzyb2XByTZgBc45wjd4nAAm7M2E5EiuU96jwJHA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171 - },{ - "name": "bts-cni-ccapel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g2m9McXzecu24DHeZrAxSymonNJG6G6EC9Rn4SCnRuS38AJ8Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5cKp6D1FmUW7FmNrpNHXgXDGPNEZnr6m8M4sLRse4HzHwLJ21f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171 - },{ - "name": "bts-cni-2opp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KPSJfJJQHK7hSzj45eqjfY5rvrcMUggZcPNopu9NczrntiFpC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6aJz7Y59jEHhg7yztBoj6UXAsgxhqjHFX6UnKAFd8LXVRuaQHA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10945 - },{ - "name": "bts-cni-shevamc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zPS7z3ksGtmCzxe7SdHywBea2gfGbPj7Hj6WbJCzfX4hXYKk9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST764qzDHYux4juzS3EdNfCsoThEqve9kM5vYYvL7StvgmRkx11G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 926 - },{ - "name": "bts-cni-sandros", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SDwPKFnEzdN47xgzD5VUuztv41DAJ4pDvN93fcbHGUc3kyivU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5JX3Mm1CeFhrDq9fozHCdRyZ3ft9mCMih9wRoRgeuY2Uc2Go4p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1107 - },{ - "name": "bts-jonno-katz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LBtsohH4kZL2w4fNuqrVariq8hwrQQWt57JgiD4oA9nP6YGUa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nRCBtHyoECsUS15N79nvHLtGKtq7GJLgMosiDdwBHcDwGUnX3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 442241 - },{ - "name": "bts-cni-nofate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KqVyvqAz7qFrpMKJeHjfxDTP3TfgC7wkg9FJ1TYDAXeaTwWU7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Ltef96fQUNPB3YgSvcfJgYsGPZLojrPfndC2qVjiFtfixgMdz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 571 - },{ - "name": "bts-cnii-sandra628", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DkkrDwcsv1RUj2J86fDA99Pz1PLibWivtPKN8y5oCdkqGucXi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7MmNwup8yurPcW64Hh7UBuNWtzbgdz7LZrXYE2oYGD1NSG3gpL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3523 - },{ - "name": "bts-cni-godfreycampilanan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6th95r5sdkUTR16B5hbU4pif8UefWpjKgv7NU2mdxExDFkHavC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6SRHf3h8cE6bsTqajbgfVnA9N8KfHqtsGiYau5KXs4DnG2gxgb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 633 - },{ - "name": "bts-cni-ceefa1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67KokNX9R6W45c7DYienMVrshh9uTHQvFujwJ3TWPFSGagpreo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7kNraBYbQXXiRoVjFwsDtUz8kC7788aCaJY7Ezq4Sun3seVTN2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64 - },{ - "name": "bts-ymer14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Zxey5SwHBcvYh8gxQ4igNMBb7cV9xqutnmqdyjxaJVZRoMjCc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fZQvQPbRHeW5PciPYFGwD6gTWPbKZNA9nA6iNXkG1rxsEstGb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-elenya82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mJGqJhn7H6s2V9vmm3NyMhU5FtfRSHpexpJwAsZmyet49fvcx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6GC3Uy33fktPg4FPUykeVo52GtoQZWz23fCH5pFyHxWAJhNwBt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1301 - },{ - "name": "bts-cni-sisca", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sHgw89vfJUPCER4usBDmQecxAH47LKXTdYBFcxAwHyEXGFXfn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HwiAqHYcNG3yLARTe6vLFPKYBZEbs44f4SQBT5tqbiDDsSDWJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-arditi123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JUFq3pdkbZiyaugXxkdWSZLaKgNoG5Jn9YmYWLBHNMUUBeZsT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BbBnEpm8sEhjPGVUqhiXxuFEv6nvo2EboHUoRVeoEWP4cm87S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-ripplefox-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74KX7yvwLcG3QRPUgmqwmXRftFFgXCnV8BnDvGGrgvD4tskihN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oAENvYCZVKdzRNsHtLH6xxmNnSM7HcyD8DoK4rKoc25V5F9EC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 750 - },{ - "name": "bts-maverica100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Yh2phjun81whCd3581TB2oLiQHMWe8fE7ZWeLqnDsy9ny23UL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ESKX8nJZ4WrrdHfaxgjiSHrDGswbrQmu36GwETk6iUAoemJdg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 285 - },{ - "name": "bts-cni-kidula", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BKADEdwV1rrcNMTEgDxhfuh6Hnd82vTLNNcxEPaUd6z8pbqn9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7vjZ2t4iB3x2xLUQ6Xboe4WkN4wFCqnGnG5VwD8UKgCWMNCXgR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-cni-joopliefaard", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MJogcrE7DcxAw2W4gf18Fi5FFsrQx6fRb3u2ZZETneK8c3B6e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6h6WQ34sm2MjhFsUCxrgtnF1DxqPjg2ggpxg8WYSeX5qXx4Ff2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 692 - },{ - "name": "bts-cni-kukokim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qBVf1iGNMqnGzichQidWLJaYZ2TVGDEsLA1EdBRHAkRKEYKW9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7UR51MjXqaaPfxePKWxd9UX9P1UdKMYw1Ba1oRkYSvmovAELho", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-wambos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66AnLN9CeZGkLbb5xFGdARYVeAjU4EJRzV8XSKmpqJwGgj2nxD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6nmHEqtpofewYCAF4q4eMegpCVovLesMvMszGeJnsGtHKZsChw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-heloisa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rnPdgwHbbNR4Zt97VhrkbbEqazojW5Dvx7E9hgVrauy3hGCcb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6fx2b9mPuAnGnnFKYdAyZWJQygX1p9PbvZBs3uHjXqCQRYDTNP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17908 - },{ - "name": "bts-me2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TXk14tecD38A3tc416qSbJNw7vQom9RmrtfiyzpwBXX3hCcw1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75RjTXAGx6wcbaFtovXi7LRr7QmcqTmVq1EF7K28LBm8YyAPSE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2089112 - },{ - "name": "bts-cni-freddy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YEwu73LR2444czxj1MiH9SKTLFvffCW6SCy3nUY3VNyPXDKg1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5XiomCtb6AKybKEwjXQs8BDJpPZ18E3PJVfCwUqPBGrcDBKijf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-btsabc-valuebeer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PiKjj2rYupjgXgCvob3mY2VQ4ptYPyxk2daChddgktJnGjVfN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r7WhN5LB4m2gu7VKk3F9TAsz9cDDNgxKQm19CG6vP6qB3Pmht", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-cni-nikki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QRcjohQJEMaRj2Wjp2SZKHMcj73WjJSZauSwU3t92JJwf9372", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Us8r36PSBk93nkr38ngBB3r7mfRY4pFuPaweRLKYLEttAyEk3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-trom-pos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-schuh", - 1 - ] - ], - "key_auths": [[ - "TEST7CSFwDx3KXk2AkhxcDgY338HVXjp9uvvirm97CJdgmi2KnUa6f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hShw2ELUjS2kc5XiRSvEsosPrSBEp7Z6xKDVnTKJk42RLhiBj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4378075 - },{ - "name": "bts-cni-bassman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G5DvCnFxcca4GupTHfJu3Nk1fukM2Yrt22HWQpamZmFkaiheE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5i6covnNQmW4jV8cTSgKeUwpeM3dCrVd9D6TTB8fT9D8GQu1C1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 383 - },{ - "name": "bts-yosuke9999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cBEahrLhraWuKL6Vvy9tnFN9ynwGN9zDuY7tQyvqwmJn9rTdE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zU9J8Nid3SL1GX8ixYwK7zRThJYmSYD3kvjEL5ae4JsKhMoRB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-cni-baaru", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o6hAwz8B1MorzT1fjYSyZ6f9fV2WpZRHm8o2tWrSt8raSvggi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6sAHmS5BzxtWyscX3wEJWjMXZ5de5QxGuE3Zd9J23fDzJGJLDp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-cni-jucapel00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gHBGbHAGK95HDi7EFmzaPSzvoE7L5VXAmh6UT5hxN5PQQWW9j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cdqeADV4dHN9guiLQiV2FKBusryBZYrn9FAMpSt1E6NQ2voym", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 171 - },{ - "name": "bts-cni-shesselton57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PrcccMCUG2FGqZizGrnoFustUEFmGwMiZvSPyqFNsBTAkrWbH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mTt4qsx8TyfSa4VppKndj6D2Jx2JNzzLTYKooMD2X9VfRe8PN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 419 - },{ - "name": "bts-cni-marionkihori", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST786T5BzNpdGmVNVNxshS7v6QWc5n1S7N4budQaAasJ4PotRdQ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89CCPzo4keqjhmbRH3ew256sxdkyboSFXpCkzN81sVPi1UAC4r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-testing00115", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76cZy3N7xbkAXqrgF5rvS3co5UtnhWzHHNZ3LeXYGk39BF55gT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TuNQmNoeDZRCLSMTUG6LUCYwqAEjYHTxfgLzst8NsxoxfSHUL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 533 - },{ - "name": "bts-cni.hammer1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L77ZKkKx6eWoqDGWaWccRP2T86JckDsM95xbzQZSK45bKsZNi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7fAF3jjGEMTLq6uaZkUoSr6aFZQqHjGHAjkjYTUN7qRVUGZ5vv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 850 - },{ - "name": "bts-dorantgashi1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JmjPzy363tS6gmDhd5CHzz9K3jHmNKbweRSCjLSdHacEUHk83", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dgNAkMea9U36b789SUdsHzx5btoFBAfwtWjrpP3yjuLUT4M8X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43 - },{ - "name": "bts-cni-tpennau43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TBDgXuM5fJgRWcSn5Q4rZJURvVg5DQCQqvzCmtmyWUVbHkopV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST87GtT4Lt5WBHTXk8FHY5fSNir1ymw3hE8cS5d83E5GQnS893ef", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4530 - },{ - "name": "bts-cni-jpennau43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63mY5J8fDYTJZFwtDwTcW4P72uPNrLp78UdfjA2CLi43xiLSPX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6wn9bDQQC8eePHWPQhEAFLdUM7XKYX3nVKeiN4wu4KvnhL42o3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4530 - },{ - "name": "bts-cni-winningwys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8czJn5C6VokbD74HH2HGAVsHgrKCBTWhyJPTKT9Es79F7XDB9x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69WyXR6gzdHUaYJupEJZ9fcMRPa9Qn9MSLLzyphqxCiz84EZp1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1740 - },{ - "name": "bts-edd11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ar8RcGmfJGQqpBH3Ec1cRkcTpF4VpihNZFauC4GfKX5fwDF1E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XNC4FTiCrNGA5QPgrQVYaxVVMfnfKCpp6wdH1gh7gma88Jkhf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-har123ley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST73uxzsBH9btpxvxSmk4wvawRhtQi2qsTPLsEwTeXfrsr8F3uDr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST85UFTxX95mEDkzVpfudNtKckXmSwBMyXEVn6VJLR3QwSVwQ8GE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3480 - },{ - "name": "bts-valu-ation", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z4VahN24BRKyhL1DQoZp8f483U8H2j95UWLQ1A9soGaLQJMic", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hZaKTpQ8EqXbssDG7La7Qfs1XfzB2UCp8mt1PHVs2vP69zg4h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 994 - },{ - "name": "bts-cni-allswl1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76UNEnCAbszRX4yfXAK53jewkMibDwBtTc86dzX4kne37Z7EPj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7etwUbzhNiJJZSUdLC3GNf2JnfJtQnZ8Gptng3wvfg41teqZzX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-limaknop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HFdrcU4SCZxMVex6Ywbuwnj8qrCzrGGXntmKezWX7Xgeoa752", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ZSNbRd2qrED9Rb2hCarBpfWitKvdm7kWUDe21XVDVNxNp1nHL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 549 - },{ - "name": "bts-cni-gman33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MwZV3bAwh5Wf6gR22KeoZGXmB46TCmygtC1fSHiM1TCNawaF3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5bk7QZG6cKM3ykChw1Qy9Uicr7cVFDvgDmikSvxjT1k8vG7MC5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 109 - },{ - "name": "bts-cni-ebenison", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65cdjvZJMWkpv5HXiMrHjp52EmLnVrPM9azvrdQgmfQRmjZGv6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4zFtVGhSTG4x1chSATroSJvh9Bowmm5nZ5YgVPejZGUyBaqC3x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-cni-musicmaker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5742F5ti9DJdao1fPZZ5c3NB9XpH8MyEfpWw2TpR5fa4X3uXow", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST88QKKaWQpr26YDH2T6VphEWsWXxQG8iqKhUohoRHx66Zkf9GQU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 431 - },{ - "name": "bts-daddyblue1959", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xgnMfztvvhxnoQHUycaZ6Lf3JoVpfgNzLxP5nDTiD4c4B6ocs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RDw3Kddu65WWu2rYbB548Bsm9rVonWjmTWKkyYe9oGvQdhzKG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-macattack", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JUXNaVgRHiP7ZaGaQcMYbyoEuNzZxDMUoqmAkp1tkt5juHxMc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5HkTzkudSMxDApcuQzzkJV2ez7gzP7wfANRi7WxgwSYLMQe3oh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6308 - },{ - "name": "bts-gametokens2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ktW9jNSDXSjWL5hUch3h6iQdGmBs16nzfUJYUii4PMvfeDdB6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mAuc51TVLdUAqyBkzZfdFweNu3iyzgkxh3WbD5YagVtKnVPwq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81 - },{ - "name": "bts-cni-vignole", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TgeUFhRgWESXP7wpqfQKzoCNnGV9g9iPszQCUCeqEYg9yyYHz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cKwdeNrEXLSLPHrugUYzWk9ZnG767DG1N5TE6DGkC5jKrHocC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-jizztastic2020", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hAf7P9dbJ1vAyY1zNFYjRdZPfBNoXHKsncACZQVLLMkufs3dB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53UDFE5aFji5WhS7GH796c86voqDYtuGEw9oBubtQknoHtCR97", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39645 - },{ - "name": "bts-cni-kansasgoddess1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TwihajwPxTFzbu1mBPpjZZHk4d1WADMbiknmEYAGM1nU26SRU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6o4FihWCk2ydjdtLmotu5KG7WZJ9y3tnJdhnyLs7C6Aop4ddeV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4546 - },{ - "name": "bts-cni-laurieralph86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gtjDMyvZHYiGCLNaLT6VcJdS9RtEx2dr8TCBuCm4KvfqR1ov7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5h7sGG4nPXsCETnUGua9kDunFuYJCMyU17vrL3S8e1gbBUaV44", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3302 - },{ - "name": "bts-cni-scribbs32", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5apZYvZkKNzvzdmwhwymq9YpeEY9jwjF7weL8WJrcNY487uZRf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7TgZjmPP2V1YFSMf2iohEmEZxBSHgNYzffYNBYErkQm1doP5MP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 419 - },{ - "name": "bts-cni-dolphin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ur5SagGoZM1Qu54qV8tAsKEFcPknPtM5kARhjpSAKqvQaKUZq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uVABTinGMEaQMT8BWs2dHrbiDDZefVKpqjWrffBbUsziiRjpE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-moresel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WtQYzhVbLZ6JRZ5ysQKjRfNAXpWwY1tAbLCYvwDtSDVT5ybZC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6onbwuw39jPRyganWtwATyXKmtyoCYntqiNNKFLAxkXbEGjPpz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-cni-webworker7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Rqh7XgPhzoJ7brbCFqnkGu465stRuro7sRNybZfZ8m8aq8WwF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kBz2vcGz4NrP8HZR23hdAbtb4eiSZaaUVav5g2KtNieoddYRQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-teacher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UEtPixuD5tYwD5WQqnYLWAwXt8PWviem7VUP1EXWukBEwRDJr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6UhRsK4FEQbNKSpBdzrjyN7tPqP6DHY9zHnRGUkuoBjr8pSnxp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-vacheljr-baquiran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8C1opnHU2weN74ypq3EU3X25jPiNf3q7jZ4SaaVg1PTzhd3hTT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5B1VPr2KvMhadvUDiCAdVf7DQz5g9BtQTeH3RCaw4er7agjrSg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2310 - },{ - "name": "bts-bitshare2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST533R2guvo7twHtcRHXu6fxTzfvtURakZxA14gdU6Xgt4sTnGAH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8e8tB1Tvj99uvJ7Z1NmjP2vNyV3p3nDrm8L69v9NRP56VBJwJ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7419 - },{ - "name": "bts-cni-godfrey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aVSGkTCH2RYTq5M2SncxdTb39dHnsCxrPYyEdFMwM2KrDyGmJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6zhyUyELLn6GSdSm8y1BPCfgZ57AyaTqoMRfZRh1TeVmXSewU9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-mimi47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HteqhqKXkQ7RJFxJ4uajAfbiwx3wiS32xiQW9TLx7zgP8HV5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8artQk6iTRSzmpHBG1tuqLDadQYVi8VAF1dhgp4EM5YjyGqmPf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-vino-voskii", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TfWZjWeLbzEzzFjfgbtQ6iSp9p9QyJSTDjoDWz3pBMVghqinM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST78aPkb3GgukDPWscX7narbRNZWxeRB7hW7fnr5wWTYiXGibasa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-cni-joanna311", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xYszy99NEaDht9uyPxaRMzrpuEGJ3Zx4WZoAdNZ9VXLxjbdmw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kmU3ZjGNw5FhwNcHMnYLHdTsiASeJdagpb2G8uxQQCLxN6JTk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 392 - },{ - "name": "bts-lanz021528", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HGZ5W7y7czc4kVsEsFFiQz8g4HkPpwQ7fiReNnoRXzbEmF6J1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ef5xZzq5j41zpb62cR2nsZSYSubucpACoUDM9Ykygxeeoj4c3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-gwheeler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gBLSS8yjThVMAP15kN1pcr1K6uEnbXSkWBUW7rjRH7ZDkVb5k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5uuLknwiVpCTSPhsFcq8bVzHx9596GBHgsied7yn78BTxcMSFv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 163 - },{ - "name": "bts-cni-yolanda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PZxomyPCtzEaod8SudRVvPaZqGFsnhAeByf3kP9LnzYiDUo6b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77oVWuu6Tky4PiUrZjHMfctCp4SHzhR6AfdrgJzyoqwkoxtHMr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 164 - },{ - "name": "bts-livingrock247", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55sjPW3wvyuEJVDMwBpJ887SEKPsev2H7Gc1gBBDVcCjjw2puf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yhYmWEuzYi7xna8ov8A2wMTMqzwtt8Xy1QFE2pYQXWaJQQijU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-highcountrylisa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YrDTCk7WThuYbMYa6g2MkqsH2fSwLf39tXzs7fEc1EaiQGYWr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5akSEpHTQ4vsUqyba9rRpRGCDf7ebFm1XgaxwaN3NkYkcVEdSt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1482 - },{ - "name": "bts-azzytota007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jZipcCGACZeuASjQRzQZkxHiugxfygUwQYcDH7PBXrwM4CzLu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qfrMG7NB2zVddZ3q8TKVt7FNBfLLKTrjgkLS3ydaQxzgRbmPh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37092 - },{ - "name": "bts-vballkool124", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j12nPTrNqC5aV6DzmtnLCCZKz7xSXHKmjpXU3sgaCbC3D1AXE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yTCvvMeCKk85rv9ED83cxre2xDjiJxKJDXYCL3tRQUMDJFdAt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 443432 - },{ - "name": "bts-juju7978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76AvQhuAfMG4EHJ6s2SUQuFqNLdtE4YHdCPTb2xGd6pB2FaWJj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DdMPgwQvFKihHBunz58qMSoZPhhTqtSuqnjPX1Pj6h5wQQnc8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13549681 - },{ - "name": "bts-andywudragon1988", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mNTgm78o2LvxHfc8C3679TSu5ELCf6drT745BARJigRaz8MZn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KkN8t1tBzDRYemrZdzL68cENEVzPi5ME26bQNPFojf6ZAvKYa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-brandon777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BRzT9ZL1bKFLdHCKttRLCF5tqEXXiL5yMqJCrxa8yHS7kfufp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-dool777", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8YnAwXam3XiFDbmJbaRVyEkR4VLig5Sc5QfjzSWAjT5c1pYeMJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-cni-gidneyfarms06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UV3VdHL1sYrSJ5Z2WVv63qk6ZCWUvuC5BxUPBZiyyUU8zx8q2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Fp1iGJPDvSoqyXEhV3znSUnvnkLsFn8SjjxLQoy66pyXVzDD3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-maverica102", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5w3KMDq9uyUMqYuJwMLBk2pTN6CZG7mnTC9pDn6C9uQ3XoBTQh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76DpXNZUPbKQFCbVUEJxuRPd96m481QKM3xQS4RS7TRzeq7cd4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-goose", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-dave68", - 1 - ],[ - "bts-compumatrix1", - 4 - ],[ - "bts-ronmur2016", - 1 - ] - ], - "key_auths": [[ - "TEST8GrAeP2iTSR1mBqPT5XrfVLqxgVAhrpvPioE54vzZWsMq12QR2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5hZ9gmjoZd5e45bEWgtZqqtcs3DLhCUJ94gEALj8ttqmkLwcZP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-cni-janet-ke", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vwkwcnnJxmcoEiWERkfGz9pMtPADzYmeHNPckAzWaCfMGFdv4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69Jz9vxUh37aavUUefimWQig4K2jn2Fp81A3LPpDgLU5NrJo98", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 725 - },{ - "name": "bts-cni-helix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Rd4KxoD45vCbhVY57VT2EdY2eVfjmiMcEqD6RTV1bSyRCEn4C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5v3FHE7V7qEYPWVdVGaGvMjnJN9ry8wdzsVfA4S6x34SFKtL8e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-sairji79", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7chycNXnv1mDwPND7oi9E4LvuNbmVXfHJRLWvmbecvNAwGVJSA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Mx14ASimCHh7N82ZjoCUZPN48oz8aX8PWnf9MARDGzRZuf38B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-kirillch2000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vbmHfo9QU4ukACpF9MbrNS9ZpJhewb9Z43RDMHz1wYdFYRJY7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UGDWzMHCe7TSeMFBGGem6CvFpjh65h7egd6FXmF6p2bsmg72K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 181 - },{ - "name": "bts-maryannmoney1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fa2ihCYqvSgNKF8fL2yKppqTfdQCquUy9aQtq7nstogkoSazH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6kF8nGw7PXs7QdWjW1ByxYTdUW72TDZTy2a5set4a1YTE9ZtMk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-richsand", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5B1tLcX35HzVQtyTb28canRqXR6K5vCUB66xKQUDNMNnfjDge2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8KHNhLptRPmXxr4VyqMfoq1mSTQKWthVLxGhjeq3pxf1ykjvUe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-imawhitetiger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lmn3AgwqJ1nMJrDYo2XRPr8QokTWeQ7QavdNPPLitEAJbFycJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Ryg1sDdoYcDH652Et2HbXguj3YrAniiP5mtYw9ruNt8s3RtTG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-monaco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YGADGm564xHLHUQA95shMA5uwkz5vsp7mG6R5f5mJEECMVCLz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5SzSk48ikhUmgAB8CPx4kmuJ4MJs5tiAUJhUNxn2YoZ5vsDADp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 530 - },{ - "name": "bts-cni-josh11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q7mmE3f624ZDHKgZPp23mW4TCGQgdy4HZDk528KQ8MLMtigDo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5RnYyars9Nxb1gHppwuQuxZv1Vjn6pfU4sgme5QkKw3zDo92VJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-tracylp4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63hkFb6quLnVTCP4Zm4WYUyfLpjsiVSwFMS5UMJhjdTvCHs9eN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZtSkbFgeZgv88ippSYjN3qeYNK37WVSze6iXxNYfaRns4agvg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 391 - },{ - "name": "bts-myrna-baquiran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JbfRfUnfX3exPm7THqL27FPXreceB56SmK6ucLoNVXpCjoLiG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST67nj2MAN8yirKk59dENcYHPhzgNYppNvUZrSyrbP3wE1zCVjAP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 361 - },{ - "name": "bts-cni-stogy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X66YeGLTeg27355C5veDowqrzVWcv5n1TWmQrm9Fqusnv7mFv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5sZxQDopu5h7tvgVwG2W7LUCktCUNtuXvcwDfCEmqT7X3R2WLd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-alley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ru3E1R8XLPuY2AK7GfBYebRAi3pcnq4JFKdPb212wn8SNCop6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7zN8DYNSfnxxqb8wC45cGpdwhvyZzgeraMGcvmjsLzcnKvzMbu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-cni-doretta7777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u5uPGYBibXDYSZNAS8y6cKnTfYj7ufnbwERaMQLJaEZbT6nbB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-dool777", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7uXBnT55qzrF3PrrNnQLCkrVhatSKdAKiMAppNQCVyj5tzSRzo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-cni-osiaskit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KtJKh64HZKEf5xncNmWDHmNmZwXcRcMRSRWCiHAC9fguYm6bL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8iHPojL92XCBGjbWdBo79CPhztUpazSb9th3tg8MNjrxw7YhiS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1419 - },{ - "name": "bts-lesco-1949", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P45XKDuPLiNqog7fihx5wzjUKYGaLu4rGsQCDPjoKym69un82", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5cGX3xB5Vz9cZXyctLqDvNxf1De9XvqoX2YxgZVSYbZeVZr4gJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-freewell", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WPpLWovcp6Ni9DzQH17166cNRXfDBebwmbhBHQujeT49YS2C5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kcVwFFdwSW9nAoQP6kH89F1voDksRkKh1yN7w7phyytWr8Sej", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 110 - },{ - "name": "bts-cni-joeuyjr2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KwEExCRvrx5DvqY8NxBFyz9aZZNDSz4Xtm1YqZ9jaU8f2tFHs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cwY5H3Rnw7nUW4fhoXqV29q5jiYRNSgWi8gZe6RZbevCzg4xt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 262 - },{ - "name": "bts-b-arthon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oskt2YPmMwZR3YJCjxHW6GV1y1CvEcCordQtdzBKgfZBdj3AC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rRtsHq9KvbsY7JZLwhFMjXTSXwHETVSs1Jq5gDWGw18xNPJXY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-nockon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jif9TrckoUAGrQYHJW4L118y1A3MHBKiAaGCQEPbZDxrSsapu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7sHguvRLTVtVZYfD436LujgCbg8RhHwzVXgtnBKvoyqJELSwfu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 730 - },{ - "name": "bts-cni-amycceeds", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76iwk7c24P2oES8zgRzNXgLUwvHQgYGZ66DSLGeYRxu35tn5Ln", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5w2aon989asgptK6s4YQmt79JaiwMLeLaJcEb4mycpeZwqrD54", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 735 - },{ - "name": "bts-cni-gerardodelacerna", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NQr8EuWR8AqbddFMHnWdwyLzXfqc4xqVHC2rPZeEV74HP4wRy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8bpEbm9f68bdoDVRxV65k4ALBHg9RnLLdUxbfktg56SKzsgrE1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1955 - },{ - "name": "bts-rosco104", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86pxC5sc7igncvKDLvfaau7amVF3JrcS7zGHQjMdqw5HsuuTuW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6SX9Yep14MRspdMszU6YWS6p9ePpMeGd2dxv1CGAKEiJNn7joE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-jibble1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cNsJ7Xn5Yfteo3xvfwjfpPkKRt8SptWcX4CimqkTjhkosSx7J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fRRKd7VF5qnus5whvMsytfVzSeAzykXMpCMzqAR8DtAHtk3dD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-iamrich2day", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YYaerjMvTkj2k4e9deBGtZ9s7afWRiwwdWajo5XhwHjrLkDr6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tUg2Cg8RdAGjM27uEKC2DEhMff9GCZ11K9nHHKZhC5QNQwAMM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-joeuyjr2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aPWWLtDwy6X9afrShc6Apg77FdSLMqkSRmGBcZP5gTfug5YCa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8dye19YViMupRwXpJuDBZmWv69WSfEbw6ATZQavWFiWghh7TbU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-jasontz71", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qb8Nzn6fYUbPLpJ7Tim37PbJrAhEwpCJxgkX9goq6DFcuUN8F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7oqZbPiniQcSWcL1f94miTTy7vhDYbC9AbgbMxXfix6tWSu3Xc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 354 - },{ - "name": "bts-cni-rachelle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M9NoWicSbY9Ffnq8754i7YZeVnGPrQozsXa8CCve64ZZjB9Yx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST55qTj5y1BmdCXeqsj4235ZZpi1bNnYxD2WwFRTqnTvDQUytwip", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-cni-david4u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CK1NtxdL7LqjEdx13c2erKCkzSgXmLDdXcQectdemeH2beENa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST649K7G6B9aMMz8gFW9bnnCE5utWW7Sn7Doc2CzAjVFYbS28WmT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-profits2u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sdVyHAhQTQRoY1Hi64DL1RM4agnLoc1W7bKNFYE4w2nyQ5UFi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jxd3YqCKxj9QFHRcDAewJQvV6zTCmZtXpqhTYph6mqadkekce", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-manu11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iNnZURvDSumN8de9j5hrrysRJ7S5JqnaQFDsCtXkoWMkDFWfs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8aL4b1Kapyrc1RNsASagKHKnZLRgG9fpKdMGzzcBVmXGQj2DbC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-cni-dexwilson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59dCp3ePfLKsR8EhtKddkpFytTonSMy6WknBh1EznCcrMPXisE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cpnMxarqmHeevzRAVQC5kVfE6i5E9eF7uEzGw7ieLBCx1JVsN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-f119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7msSvqWpK95pTLD45hkYwsdxbxoiNjc8t1Gr7eF2kYnxXio8eZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6namxB951AtJrkVjfsZYqcyiw9yyXBQRtfPSHr9Nb1sHzDwg6b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347 - },{ - "name": "bts-kingmin020", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DWsAjL7oAhfjdG4EWtnM5rw5MQGEgPM9zN3iQC515PQrfocYE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b4hLXNB5Fx8Wzd4GErBaHnLKscPY9X1peE6Nngr5PqdtkkEfg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7976081 - },{ - "name": "bts-shaun-djie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zAH6Zb3bDZPdeHjHKoxZQ4zpEbMerpQGcijQ8yeb8TnpcQix6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sLmUc9s1mFhZMjEJhVRzzDpzJyfxgLKGawFxSTeVTPpZYjBcz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-poespas1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v7VQBjZLZsuD8yv7QiJXTsdjqet9L2bvr9srK4cBxxtcue8jp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8grogVB662y2ow775cEEY7bxeWu1626qwCYiCJXL7S541c3byD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-infettato01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83x42sXcujGCFexXxo6wJp4467uzwWzjvmDmnuGtQGVvmsm8h4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CbjRijtULvnQbLyrjzBavNnzzHsr6ccFRDLzGDDK2NQ8JZV8b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5978 - },{ - "name": "bts-rickytomarong1980", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZoykLYzT5U47dA8G4riKizpQAV6raS34RvSNau2SWwcFBg1XN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uisBxJFDn2ecyJx68sce96E2LUa6zbTcm3dp1sGNYCy3MTQB3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 299 - },{ - "name": "bts-cni-primu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HmNgjLyPWjvneuKUSm9CcTnaDn4SH9T2pa7ggoebaqdzyGQPX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6GstCzB7moT9Xo1cM2r1R73N2AqFRcf9RYtHag5yY325DjzXTh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-nickhiggins99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tew7MkeFhNRqAQZUa3Y5kVXDX5w68CFLppoTcDKYmmbHyHfBw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Qgu9aXEzBGvr8mSH6Sw3xnvbzfCc7pFgH1my9xHqgfsGkQmdQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 385 - },{ - "name": "bts-cni-hakwalu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53FhN55vVQLpJVhaJZdd51pnnDfc4Sx4g6kHSmVneF2VX1Giqh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7psXofN1agRQMsPTzsEEnRm3rL8Ucm4XRMTuDCS4uK1kmwmpux", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-cephas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Sgd4y4zrZPRtNuQVpiDa9KEeZAFSReupFxFAFG3BPxyaivYbr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8m8t65tBcxYuBSDRHGAx59y29bGNUCwKdUwet4jcLdB6MzAnTr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-gathitu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wL2owxRREoFmZazNenYUFESQRmcyLNTDLgeNuuLchUcEzvRor", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ZnDhBx9kD6Aw3iqzfumGt9Y1X3AjZYTm1DSq4aPMV51Fkf1XM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-cni-costagozz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Gg78VNzsjzjWE53DWC11BTkkGiHawAHfhs8D963CMBUA126Mn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6jyYZ3SRLhfiRHpkw65B3Hv3WKtTX4in6NLFFQdqm4f3gQ5vpw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 125 - },{ - "name": "bts-cni-vivian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FSqrLWT5Tq78AVLoLyUoVCqcmgUk1skdfSasqKZZP41GW6D5S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5sfKW14Y36iVCLcvkNWqKK8Gs5zmd47KCq45HXPh3wgkkyfL6D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-zabed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EfDkC9nwMPLhehq5L2bBH9LYfLHX7E8cjReLW3h1MNZS7E1xX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7p81VVf4ZF5BMfvwqLWpdMwk8JYHghnDCdC8nDzPJpkDuNRbyT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-essy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mGS3S9irLpoL9Rda6qkGyWN3aZvF62JwM5418AtkoD7Di8UNz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6iNzCqdacWNAr4ptpQ78h5PJnfbb9ZrytbvUGKiUTS2nnmJg38", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-alicem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VqPUNSZaPegMWDMrbDo8Wsu2eFzcGfwJMYbv2ixaq1xBH8tSD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7szWjcdePWbkUhijdVwu6jQhVKsxLBUeBrzVEDPpfm5zryCR2r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-ans", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56zRdJ9u77yEUrkXwU26HeAeMqihLmP6twUf5MiXcq8FWNca87", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7x4MgyUHwWbVEbmQ4ZHuCRmVj8MTg6hqo1uJKC9UPMa34jY2j3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42 - },{ - "name": "bts-cni-matete75", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FRwJJRUrvVCLty6bBQWF5dE1zM3LJrZHyEiXC1eLQK7TnApBv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6VwDE7ZhGcvgoqSYu9fiBLoKkDZbp2hLjv27ASbucPdoGoeX8d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-bw37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fY7FYCWtbcvpwft6AZbiUHU6bCytu9n8Jb9VEmukS5P72j19K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pJjH1zikHwE94XBgpn6vkAVmfqvxdETS8TmwZk4VehTkaL6VN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1794117 - },{ - "name": "bts-cni-lorna", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WJ9BgrgHNnbY4N36NnC1QRmqgUzPMbvszGoZ7GUUhaBNgpafB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Hr1CQUFeTctnXjjuMqKq33dWcrp3FK58PdvjgR7qNdNh4szvk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-openledger1961", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nt7e8Kgja1hDSYDKfutSH81cxNAiH2UD8rGuSJDuYSF1YxzkT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5nEWsvjkPRHiEzwbsFxfK92z4fDq6P3FYXKvVwmh9RodWLhXT3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-attys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Kz36ejWk9y9NYnepmRPYaGGRLSrA8u8G1Dc79Dru74gdVxKQq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7pMQ6xr9cYd21aWVA9Vqzou137MReMf2Vsdhiz3eysU83rJAto", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 64 - },{ - "name": "bts-cni-mmuhu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62LNjx6GdSZVUkRmCZH3bUkpoSeMp1cp6joXKS478syWGkfBcr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tJ4QtfQeawcRoj5Ckmxovh8N2frAuxZFcB3d4j9ESAx6Mycnv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-ep135813p195", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JvZAK7WkB57zsvq65mREJncXFA9o9zYP8zrdEV6J6j1g7pRTt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gi9EXjHWeYHgyZqdTiFKCBCKHmpWb7xdcN7vwoQCjArdWb7fM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6890 - },{ - "name": "bts-cni-dollymae", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K98JtvTkigFnxdZN9HaCGbXCNdmLqC5md8V1d7swwPRRq7UYm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8P4ReR6qMnJHpLkAbTiaa8xXsiJ3Lp923hyaGvH3aU2iR7hv7q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 896 - },{ - "name": "bts-cni-tomarongritchie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5R8UYt9Y8ghbxmDHyA8npaxb3MDyqb7ZkGfkmevhyTwGTWweWd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ogAAZV23mZxgWPU7pqPyW5tvW8jCbBQRNoX4Pu8DsKwUrCcsD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 232 - },{ - "name": "bts-cni-jcarole", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58TK98t9fteA6LY3a9zAg2PwuPWdLPPyFkgvcJoEdT1RtZJYMt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7XwpzBanj3NxhgBRfg1RhqcAVZYNUsRNXhrDc7HBSZ5P4zEcJ6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44 - },{ - "name": "bts-testing00119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wuX6DxpGD4USQsmMV8fiqWknj5KaiueqN3DgkG6gvbMrKULms", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64Z46ont8fCYWqTJ7pXifhxTigYHt1WNUZWryjSShvWqnqKS9N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-emana", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WBeo6v2fJC1fXm1pkvDAfxsaWRmg68fo2Y1HKwSo7LRYn1T9P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST53Y66cKydBq6FCtJB6LjwsUPFT7t1FbJgo4hMhfEnenGx5LqVd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1880 - },{ - "name": "bts-cni-mph", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oGep1prXmU38cDTF6FGcgGEfoAT5XyCnYEKyU8pRisiHY2EA7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5TMCstANeBDz6T7Tsoo3wfwJwFeK4Jn3GS89326AcK8tXbkYVL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-myanne", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gkSTe1oBHtM3ajML9NC6va7ywKH4rkMd1ad5QdHmNtwCTsicg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST53M3WkVrmiVMuJ3dGpMibun5TPSQFzDhBafLFG8HGPd5pP3gHG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 730 - },{ - "name": "bts-cni-bassie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57TGtq5G5Fv3V33yuCyhCqJ5uXWAfbz9CxDTQWpiwySrLM3smw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5KYFbwDaVAJuC6KsVaRP6oVp4PDS4qBinMMa7FFDw4xn62iysf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 204 - },{ - "name": "bts-cni-donjuan101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Txvq1oEaipUQkGJB6cavbLwYqu2FWsSv9jSjXaVikjDjTwTDG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6nFHPZisYF6uZijyFpQkj2Wd5weiusixULJQV8VkCmwndADrhm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-sjs1253", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hfBtaFg7cXr1DHdC3hhbPnnEHCyYDjrejEy9qaUV2Hng3YcJA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72dvX1SZbj2N1wYH643cz6FNWpDV38GwNb34fc6hGUQhrNNtNz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-donfarrrow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-donfarrrow", - 1 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56Gr3FTJKFKp5ofLy46JJrSkbYBGoy2dLXX9v1zAr7tmuygzSb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gHkvaicdCa7hgC7VFazv5LFyDXHh96jgihy7oT8mPi2Z7aHb4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1876 - },{ - "name": "bts-cni-dick44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nZi94SY97piWqJLZPrcErqfoo3tDMzX9wpp8oRBj2Uitzxy5z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST52WYP6fAwTjG1aBivGztibSDY7JnrKziJBMVZcc9aRzgvggzdx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2126 - },{ - "name": "bts-gas0847", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dQ7TmLA2qDiQpMjy5CgVjUnG1YsGhVeL17xQpQacTCGefkQ3s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6a4rAJj5Pe3T4R9GCgRmN87aCqkUrRzPaHeqZ7jAjAxrC1tuoS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-msfaye", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bw5zcr7hbNpyaCb3k2uf6HrRBcZeomufgVLFmHDX5fEagpDYq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fZASCYmDFzQirRWcX3JKZrq9gPP6vkcdkQoPW5VsSiNR6gtiy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-jhhorton", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52wVres75sfN7WNKhfQRNDyhsgYj81W3BBSnpEYARirjvPD2Ai", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mxTvV3edQMaSPD8Fkj82SCgAbPESmBVoA1JjoULMk8CgSadgd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 520 - },{ - "name": "bts-conradrei1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xeC2teK6u986rZFeM4yo3e4YdmjYuNW7r5awPvmBvHkULZF3Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RM5s5v7ED6bSy1FT3qv63tLagAjpV67Bo4RoPXFa9W8vrunGS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3461 - },{ - "name": "bts-dlaporte1323", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QtEegXqnxQrL8sxfTUntduCG3uYMS5CQRTiNnRxucEWVtbtZg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST882ieiG6Vj7MYASHcSKrvxabxNFyveDWZN1qA1XR72siLdDp8R", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-blkswrd86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SJt46uSLeFAzAD7N4jfkZnts19aFi9vroDdXQoP8KniMj3J11", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7jrtoP2wR7pmbKNAQ5xsrXD2nwPKds1zVXxpiaiRSr7Wb1Bf18", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-amparis68", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vLHeAC6RYr2vrSiXbUXWFmwxkUuf3BTaiPLKjCCkGwAESHu4a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-ronmur2016", - 1 - ] - ], - "key_auths": [[ - "TEST7brwmUNH1FbRbqujgmVAuuHdWWKdphviU6zPXAMK34K8J8iexh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mb62ah6CKDEF4W5WFYooiYyPotGSzaP6c7wGcbYikiP1fTka8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-sophye", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST82RhFaDWAuLSPz1M7KPBqfwqnBQLeBTK1d39TpZ9CApRhXw6MS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-auroradawn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AUskdSZB435XvJpujd3eyknn5MDJbnZA6qHBUMhvdCGEpS3ug", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ZpsHmdM9tPHfQNMNAi7ofy11HCeE789AbpraKiCRQJpCeDC95", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-aqueous", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58daCu38ETJ43wsGBmMAdFHbmBuNZUrVRyZb8PDZ8XWDXnxdhL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-trade-ceeds", - 4 - ] - ], - "key_auths": [[ - "TEST5TyckWfzdHqgt3tyS1rrKFH5zvsYQeiNwfjVAsiYh1BJMFad6D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-q33n-b33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89mnNiNfB1PJxu8SrFaobHdxeQCskSSwMcWnpgT5vGgxRzHmPD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CQsPpGUQUz35CmM6wkEGGE1RmogP2J2mXbjKdsvH1EYX9FbRS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-lsmbrn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6khVpG4vrJDRq8azngiXhAqJTWoa17NjqJxhnjNPqHRtWGJw9m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6QnrtdAgcDa9DfYuhQbaZ29B2J2EasjsxYJgrt6AFdMpyrJwnY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 144 - },{ - "name": "bts-jtylj-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TRbayjwewmw3hjSgG4MRfyS5wGAM1ixAeq3ogLfMevvurorxL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6w8AYsS8xHsaLEzWQwBe6LZwt5WB6ZtjNpULR7DtMsQVvSHWDa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113 - },{ - "name": "bts-cni-amaimbourg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xHHT8WJufDF8ayaVCQR5boTz9HqZVJ7uNNApjZBJMsJjCnsnz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7XuaPYSSUa8p3LcvPpnsYYDnY8vXdTvdmrstdCtzXBBd4pRkkL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-cni-7figures", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7D3UT32yUqVnNxGL8pggL2FvGmrumJBaAPAQeBcEuBXC98oToR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69MV9NLkfQsX9J3VH4Rw3TELXGbHu1vjsmtSgRvFvkW7GDdaQb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5013 - },{ - "name": "bts-cni-kimsmith", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o2aXf4YXJMZ1LPmDTHteJbcxcEvZnh9Yd6rM8TzfTNDLzhb1W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6BZnQdvufCqcE4WNwUjntFEAFR591U5V8Qof7qd21nuNhhubv6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-cni-felixkilag", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iKnMStNyUqLC1GHbSPaT5CoJSMntgDhFEXwjcjLLujrPU94Et", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7WMETroRnyKHwbquAKPdVhyEgPiMhbEfR2gfXj2Y1KfSbjvsgY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 506 - },{ - "name": "bts-liaoc5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6U4x4SVP7cvHScvRdqcjCP1EMzKTRXTKrFESKSchmibfSi57qi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zeec2mJNSj1rEn2fv4w5g2vg6Zix2v7r974yPJv8ZUmYE9Eq7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-dscott", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UNsAG2wwr8jM41JQQ7avMnWHUFGxK991kS23WCKkrmciazJKq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5zDAFeZptppaq1N9QPJG6sx7iFQRoStSR1chhkWHEenqQKoBrg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-jillaroo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4whyswr5rbojdJH727t3B1AEpXvLvQWaeNcXaBHD9Vm4rVnkdQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7u5H624ynQtYY3VAEE4mptKf3xmZx573mxauAN8uZFv7a1pRJh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-rich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qJ1HcZ4jiet4uYB6FpNKx6wyFEWNS8qB6YkTzFAYp8HwQd1qW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST637LJ6B5mc4Ddt4HK6NUxzwLAQxTY37RZWXP9tFEZUNjxWxtJh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69 - },{ - "name": "bts-cni-tekoa1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63ujk8445GLRa6QRhRQbhbcJYk9rvJFbWFzexiUxRwMAZP3Pt1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8BUsm7MX8scVkCRHNzVBELTXCymtDspT4SMfwTw6H1F2NWaxJE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-chakoto8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QgMXM41dgEuJWbz8hcuYcdnPWf7YLJiCe351jMtchokuzqFMo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BEME3W8GCnfoQmFacqnhDJUL5bG4ZS7pUE6A1z9rhkiXeAQuW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-pandad21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aV9VpR2dFxoeguDkToKjzEc7spmuRVoepu2FGbXwrWv75Svqy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bFFSDPXubLDHrzLL6mnfJPKvMnvM5LBX2fsVvSxpRMCpFiCmL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5869 - },{ - "name": "bts-plutonium8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r3YpdSbD5a13Z2hVP5h6dxiQHNbxodtiYgrv2NeEf1bEZWzim", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6864V9r3wdY8TLpKQXwDgoMjWBvW4MQMs9Rn3Arp4imRRVkc73", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2000765 - },{ - "name": "bts-meltbanana75", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xGFJg7U7nbUuwhsmhs5t7SvmpyrvZQ4Xfw7SqPa1TNaiRCW3b", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LeDG2UECqjxRZMrTEzawEUP8jH76SBke894SqrUvKRa5kBq37", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-johanx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST664qE6ZugRUMcWQoR7KM6YBoPiAA3G7Z7q1mzL7dWhyk7dDEHW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8VraBLkXogJ6pqUBtH1TsA6wDuG8qHzMbBQncKq36StKHDjTHt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-cni-groudenx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M1hz49gJ1iobwGqedrztGVY1nheXiY4e9wff6fCnpeQTtgoCd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6dMTcUz5sHoL6RDEt2of2oRHub4uWFsM8cQkzrzM1PjzXhPyk1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7644 - },{ - "name": "bts-capripayviz2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zwt9KuZjgKh7iYzksUoSrWKUeasB3jKRGyQJUV3B7srbiudFj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Ufn1rMCkDs6FyqfpckDYoNNWL46oX7L8sQRszWQHX6aM2X2z9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-cni-pamelax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JfZ4Qdxb6Q6xCqFJTz7ERYNBMwS42ofxtcQUUCiwa6CHwzDh3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6nNFGazvZALKFF79BzUjojf3bziyfsvHcWx6KN5SQ6F9apAD4D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 581 - },{ - "name": "bts-cni-beensx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6usKo44vhHY6L7gJS8yNCX5QrkpZW9dZhWXrSV1n74H7t695ao", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Yx68vWBJdRbiKzBhSx1BuQZjtuCkPnDMhjQP82VDFhcvbknMG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-heatledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HW3uFdbetsc23tnXxY5JeRpS1BSLrqZ2WJY3oynu82myPuvbm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Qgn9FCA1Fi5SDH5Bk3ExnLVq2DMob2qTVoEXRG3Mu44d4fp2H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-investa1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81wZPAB6SrtUxefokNUA1quEY9BXzftwZvYZTqmNKiEDZyDuJ5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5fFnZxfyHeFUtRHkyTyTXQDgjRbZADGAQnatZCBv1cGH7W4T2F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-fayepit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ERMHwjgDQneH12s6URELYWFwiiaP9fQvxsTSoc1bifHySr8Ed", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jdH2YwW167duej8Nr8qA3DL1uXi6QPRYgswjVXK1oqwXNEgsh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-pennychew987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mJPhGkR49cbcnBMkwPmFjwcCk6rPAFNZjMzaaisYy42fQ8wB3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6EHixXndqpAvxYY2D7SmPRqVEvbbE6ED7nS9ok5z8aZPcWnPqk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1093 - },{ - "name": "bts-user26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xPDbAEnDiGArdphfTRQkTAJEHUJtpHxXZSSM4CRuHzJhPsZkU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6e98XJL8KmiZNJ7iftxiinrX51zkgFTvkLd7C2nW5eLy6LyriQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-allegro1312", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bicmFjakpjNVHCbaU5oY3h5C6RgxVpqXfnkjk9CGZiEvbfLkS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7szk29qTedD86HeJ2SnAhjDsunEymtuACHXuLGLbBoapmSkmn5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-testing00120", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dFqRz4X4YATN8X4M6mjVsrWt9AAn4naACV2dwZKWaz9PBf8vv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gbJy8ASqYAHyVvbf9X158at1o1GmYpEiPQKNg5A4AnoMBC5q3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65 - },{ - "name": "bts-anbu1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bLYagMPWCursUAV44ZrvD7CsL629bUkcN7kBJtLEPxTEfLyL2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rJXZJDAZrkfS2K2ruY7sN2DRYnRVNJqsz8Uiyz2sQV9XfarGG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 285 - },{ - "name": "bts-cni-elmaox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c3XMXHUQ49HCP95cgo1Ui1QVeEt8cb11iLXmKDHLPmdCgPpD7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6fWhH73o2mWFfMFob8tMBWijTd7sJ6KrpBRpiK9d7Nz3kBFfQ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 159 - },{ - "name": "bts-cni-mheinx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e9eGtpkffa3s6f1GhJnfsGotUJjNQksPqPKc5QhuV9StrFypi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6gmHLq2udyxxZqkdK4znxHm2hwi9mAv5vDTMZ4QZdPGSUmvfYq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-cni-wblokx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JRHhEAaw7p18APaUPPGZQb5e9CHqN4K7ZDUMMFZVSjZm4Kcbz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6JcYQe36pqbmnrsVHLEddhkB3FocMRtgRusNvejWgQrb36jbt5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-cni-linax", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST673Q9YUCAvFUCF9uk5Tfg3VfprbosWgwXA4hpGbFuRUby5CZ15", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ftQgystwSEGoxMBbTzSrGofZ31j9Nfw2TL4oLBqXvwyMcWipg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-daddog70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vfbTheQUbEzyrUxJgW3gembPssAC3tYjibXk5AWogygi9mfWw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8BmhepX9Mw65TFuNvCz6nS38Y6LMUAGrdh1CPe9qp2ifFn5Fpk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-maverica103", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7E1VhNG8S6gx5dVQRm79fRtETqYQeQJyt6G3vHwtTarhU4iS6v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Am2qbWNspXgctYbdCRBqGtpsjj4GbgBsrzZ77ezXaT8sUSPq9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10550 - },{ - "name": "bts-karent1956", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LFvckvDBLV3YpWSDcq1qmQzV7Nes7m63bpnME5iGPJ3FDtyp5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AUFVfmEKAYS9XXhehJwHFcHLSyoyTgHoykEheYWWiovpcn3sE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-lasseu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DNMEuHBmfFxKy5qF4sabC4LiNHaMtFPbm8h5wXxfdLJxhyJ6S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7bJCM3SYEUGuYhotMGyXdpwhRWWpnuiPBsVCQMKLYiYnaQzjWL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5667 - },{ - "name": "bts-wildman-tradebot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wAUWFqXXrDVtzyTZa8uyAVGZDPWeTgaD9KAbCnFA73bKQFzW4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vVbUyqEhhzTUFJ6pimPJX6WqRSYmWxSPs3ibqjhZcdhHkMQLM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1690 - },{ - "name": "bts-cni-pdpal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f8AKAjJyndqkNKkC6aX6ruTb4btiHDzhhASWZ2htSAyNGjm74", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77zmzEPDQYNN1PjwA2GfUBJwRu9TyezNzqkBvrfZScWmUZDnpq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-toon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7svVaysPfmkAwZRhKZDPzHz3S1QQPvsAMhXciKQi2ptMVkHJ6s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5GVkSa4H8Smwcxp8gJaePGpzGR66c1VEa5eTtXeSU8ZknsLnve", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 137 - },{ - "name": "bts-dorant12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BMUFRZw3YMFfDkYZKgLfc1LU2bofPX6x272pWSKYhm1zx1aeb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wqLA9swcpWtqXQMJraEUx7fFwLhMH3xpvwjRuJg6oUMbcRfoJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-ym3r14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qAxFNRS5uvZDkMAibhvAnL37sDZB8SgqwsyDUKrQm3CiZwtZV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jVK1hiQwV1kNTjBzJzVfUWw58nRgDHBuGTPLBk9A1nAXVEFwP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-jsharpeiii", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59afasSiqsrArntf5r6Ta92LGUTKtBgrLgcJ9RJSzNzxYQXWKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6e78t5KnLAXHiG2a3ZCjoSJkkoJX3U4TK9kRXLaahfAnpLPmG7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 130 - },{ - "name": "bts-cni-newheart117", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DyRwNTbTjKNYAkUc6juRg33KNnm3DgGmA7raewsGNziupwjPb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8FKtYgsx46W7Gv6D3jCmhnCyZnPBAzzzESZUuBXLPNmMPrZv12", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 241 - },{ - "name": "bts-cni-cb2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JQ1seU1wXNG6zY6XBsmmjp25z6UQySVNSBRF43iaNyW43Cpbm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7QGRtKM3aqUniQzMz1dF5NouTfFNCeo6nGSeBS4xZDVepqu1M6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72 - },{ - "name": "bts-cni-lisa70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86qee2L5q1HwiHCQb5SC2sr53E8vM8q8vqdbsdswLB2EmHnWgY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77fbSd94mcdf3xY31oZXudTBntUKMex6FwtW6K9oquwR9S2WQU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 230 - },{ - "name": "bts-cni-musicman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZFMkYicmext63jQKg79y4vuZQHwvUYZuuByi4maPyyM1XDfGW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8cq2J71p8fTLdsUzoLVCEdx2WN2Z4YGD2xyXSJ5XASQz3reY3k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 241 - },{ - "name": "bts-cni-gbiz7777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yyntR2xWHZCLeU9XyZwvcHf6VLEoyq5hW4235f6vdD5HAFycv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5nfs3KDhfWooSniUJKbLZnVygBQyB9gkTk2TnZHoJXndmN8tax", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 410 - },{ - "name": "bts-freedom1337", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dwTX7TwpdKa16mSMNNFJtQfHVURUg9PiGh5u7c466o2yt3YvG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZKz2hDDVGMygEPzREW4fEAJuTwbLC1uebHjaAQtdPpUi1GXBx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 141863 - },{ - "name": "bts-cni-elcamirforever", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k4UZFX4q8Sgz8BvrRgumGz8gTVVwDM4NeZmmG8ivXDE57wLVo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8D3po6LWhDMPeHtqQpUnvnQYgSCPepc9UBrpMLRwiCo14FGC1m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7472 - },{ - "name": "bts-cni-arutledge1323", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64GyY9CXnp2NT38zfEHctfrysDcaPo4vJxztT8dhNzybzPRon1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5QagRSdVvDqgcJAANnMQQsJpdpx63C4krUS3Vpt1CtdoHBof7h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 166 - },{ - "name": "bts-cni-bradlhor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66Vdptxn8knHsU44Y4Qx5cBPiCB4k21xBwwidq22kGHT5uDMch", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77HV3DbMTbePU4d9LuYZUZrEFrSh38ZcWcWU1Wp35x972cDeuh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-susie0218", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YD7Xhb2BTF7MmMPNgVAMnFqCtjKYEHnMXt2aHiDdwSgDTGqi8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST763qSCyWUa1Kj2emiG5KjMwNSd4SUd6XUypm3btUvQuGjVMn44", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-cni-austin808", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6w4spzp66fMeDn7eS5RcBCWUQ4YS8aXrJG4vsKHweoXZAnV1HW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7LJgwRAw3WQ1K4Fx8ZyryjLXM25SrtDK9WHURsyc79M7RpTbpZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4120 - },{ - "name": "bts-cni-veetric", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YjwjvrM5hdVAZwXrbg69JCx9nwz2ojMdRNua7eF3TwuXkhF3y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6zWFyaSyUiZy7dR5HPouwcDWbAqNEVSNSs6NcJS5fJUkVTj6rX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-wattho", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hi48fxanKpheHSiWKyUiUXsojikvQ7iFP3tfacZw8nFi7YMEQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76YFJEk3rB5CzQpBxcKUoCLmJbi4wF4UoPJJXFMvfL4NVtR8dB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 730 - },{ - "name": "bts-cni-janyac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76fWWd8MYHMNYfsW3hSghePS4REmWVkWg2YHC6Zu5AY5bZ73ks", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qfsMcfWhbuo1TpwEizT5hnXm8uj2aGXmAWwiuYtYDx96Pu9xZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2830 - },{ - "name": "bts-william-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yXiUdaePpX1eSXRWJrjVSYhnYMxGvYC5LnHQDbBfvP1Tqgp9z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7iK9bFVs3CfHCAG3WRRb6Ce9YgQLrVUmjBKAeCReG11crkuR6i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-jam11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6y32bEi1XUT1411PjshWEysnLg9wgb2KXgtdMYbJ8SfnqBtvAB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5om2JfRudFSn6aLGeQeWhPVvmBX886pDuZREAssQLdQb41XZhf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-tonylac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Bxu6chtcVkgNFnqJbvyZrFzNvrYKFd3cxQJ3ernRqcbJZCQGP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BzJgu5NhbSsN3MFJNHozEEST7VAnwacUtA4h3s87qSRKcu5aX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12048 - },{ - "name": "bts-cni-wilvic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68uHdrTmp7FF9Ds6CDFoyE61cJQX1ukCPAwAK6yUYmY2kha2zs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 1 - ] - ], - "key_auths": [[ - "TEST755X1rkvJobrNRNjAU3zfLLAqMxCVwvHdEvsDwLkgpdA6s45bX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3551 - },{ - "name": "bts-cni-hero24", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SdoWufcsE4yAUHFyZqB86eAJ8LCrKKSvz6QY55znFXPJc4bA6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6De35uSvq2jZEoXfozh2hbjhAQdFFcePD9CjvPkF4PJYVPen2e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 730 - },{ - "name": "bts-cni-jdbiz5538", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pe7AWAyGhN8DjGnGh6dCuiejgHfjSzV9Nj2k2yKGVEqoCPeaz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7sYU4HBdfynF55SBPTiWJVKsE7bHP8UcHTu1154NKhS2odU3S6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344 - },{ - "name": "bts-m5-mxpy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZPQYM4QvGJy88dV2vx3zVPxk3ry6MaEpMC8sz1iuBSPbhVmvU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7PU53GguZA6KFEywGajrH5FiRPfMZAuzytJC7dhZd9H2sGNmVF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136 - },{ - "name": "bts-cni-ebaryshev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7csCidSARoidtPx5o292hf7mtu9qLZNqzY45ZdGE5Ne9E4rBAq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST84Ad5KhRcSqXACxXpyQPbzuHGvvbYwHte7htU9sqhGrgghfr3G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3987 - },{ - "name": "bts-cni-pdpal1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rXN48sLVaR5aXvFbuB5YuZ567TshWZGczrenEjeJem7ehU9Dh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST623nZEnMmP49AVtnBKCYwYJjprxfeBenM7YtrejCrmfBYd6dto", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-cni-bouncer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6S4bxwf2FXxpAMKHfyzri6DKKQSFsp9MdDQjhqEKanwQZ8DRgp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8WxUFuF2JTtLohwzeJb1KZY2QM6v5sxXd9vDc8GQbc3djJuHKN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3987 - },{ - "name": "bts-cni-nashbennedic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZuF2ef7qDeEGuLP7k3YShKbhNVcqry4gA14ThGUbJsHZuFPQD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7K97Whbkg5ewetGnNxtEpUdxNfcjLAv2SArbNLTbXsURzPDijs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-cni-joecarter72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GNaLfD5NjWm3ricokjWM53S8tmWQGtsuedN6hH7sHXqCqv641", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8b7ReGZe64SVDaKaPs5zZqiGpam2cf2cCe2R26gqAJ1tofzgYW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3987 - },{ - "name": "bts-cryptom16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oeC8yVordDBuJzR3pcS8tVLqgUWgVQzzBwfQ8UKE5FAmdp5yY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5hJXyBt659hxAWWgMKTbTZv3ED6mBw2jjLUyKmoLE874uT2VAz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-lauraborges", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aXvvwMrSHsj4NBbtEen8CMVbxbQMUhUU1zcqG2srrA1frGuU2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5rDdwfucshe5nx4FWtdgeBUVgtuuwfdeTQGRQHKN35p5RG49Nk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4457 - },{ - "name": "bts-matia1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nb5EFeeBopBtzFTaBsHvaHTyKLNLSAwxZvDzGGwzV8hxomVzp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7KZNNnz1M4NgL2kX2c4uhPeExXJPNDgGShgKRB8qqTmqtkrDNq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-kicici123456", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jNYtJRUaAc1URMyzg2JtJ2z3KVL7N6hPVcmaoWXzLgwzNzsGC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QLxCb6x4G3WiSmQQg1cRy3prQn4iMBo2mFLbVebMj1sCUUx53", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57 - },{ - "name": "bts-xuan1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i3SjrhGXMTB4V2L8MkvbgBHjf2nzZg2XnU28PKffQ6qm4gxyB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fiTofAUskJzkxLzxKSsjbZHKxaX4qn62rmsQJY9pkWLjhzzL5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-tb139", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7srv61cXMTQeEsq7zjpPAqxqrGNnoLSWd1RVDXPGajKmZfjTkU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vKQxbxw2jdJZ5Ec5XFZ4PuKNirVw7k3DwjT6QkNf4zk4dK5GD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-hewi8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ei6JQoe29QbPrgCdVPBFbTJjty3yWiHbxJ4Dn5B3GArGpxZHL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AcYHrsSFrVnZQjNKbb32y97XLQMSptsvNXf6MJQYrLbqcWUfR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-lively", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zV4cExuFNgyZjQGpunAuNBYNYqi5CjzUbfrqV8RjHfTeekBcf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6rtKzjvdz5KSYK4PP1rECEWHxiVVfWt3srjnyNVs1YZiTem74M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-baoma520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87fc1ZqxPMFWSBez2Xej7xoEEnCYrgtQ9KE2qRYu9PtsFRPcVm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83iZS74sSwVHcxeagSepwhMfei6fczgFRvGMu3xd7YW8wZkf36", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-wish", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dJKw48NHz3mM9mTkrunN3xmnnv4SdyfEMoA9aToH5eY2hVJYw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ZZjXBJb3CX5qQqbgVw1ge751LtTyuRs3CDkGcT9p6KgQySatA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-xiongda360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JSCcAHksDAKgxu8hDFj4tGHqiWy8yp3X3eHJageR8WqrbAaje", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DtVGdhcjYWo15LM7uCU8vDjhNBXzC2td1fgnn2a6XZdWvz2bL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-btb0000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69xJyJwSQjZxDVetBcSLXaBavFmsBZ72FRuj21rxyuaH5yyRkX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XH535aqqVsdnBkoDtAeRU1hQbtUHB3SeotQhRVJdRpWFxbKMW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-bk360", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74oqZqAxacJNCb2vdWChqgvSdmyMRQPLrCudhedXop2q2w1hcE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y4DA3XNAESgpMuCuYqtqtPmNoqkxMba7W5vG4aPisEjbnuK7p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ni001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Lxx2fFGxZhAMfvoZL6CfStK1ytsUJ7ykMB1XUxc5c5iYFPAWE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sGsawP4F2is45stWpJAYrYshHy9LC6Z6UbzdnWVrsN4bXu9uX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-btss520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pNshNiwJLphur7VKcrKNnC4gEV9Yu9nMJy7ZUXUur1NV7GPQ1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kqQAtNbs6czYNh2jrgyLaevV8bPCQ8CbH8WT81YXHc2Q7A7ZG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-grateful", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fBq8VsvHuaXqL3rGS3qfuD3ksuouc8vNRzUR7ZBzMqEYFnDKc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6oEhBTup8xJEuMtg939zrAkJAo3AgGuLYuo8GTLdTDG1WLmCJp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-yiannis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kDr1GVmdUHh8e8WLLotdMQv5qs1yHZ5WnSkfT2z9hP49Zn4D2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST67qPXHnVP792swbVjkt4K1AYkfTzWje7WGX1HB8VfG1uSDHRzs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-angel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZJPFMRwjgNGm7EhbXaWkdTcid1RfJE67p4e9jyXD2rZbzZ7yz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST54aHYh9oe1AYjb8MmmQLRxqStPf8A8fT3Vt4dR8jNAFsaT1oT3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-edfsdf4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HYxxoaamCFX6RewqQeeWj4a64ds1kdL9URdqNBZM4DMRFqFdv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nXQqUzfjog1Afi5qXmF8eVAVGJg2RMrPe4SNomLCPFA5xqRvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-vlmhz123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iZHJsyhcWhr6CxBkFpv4NLqT2xFgLAA82iBsPacbLZmberBYk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xic86d6gir82V3MF1uMC5yWaxaJoyoVbPEtnUjtajo6fM4LZo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 107 - },{ - "name": "bts-cni-abendanalvin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7npYewU48EV9fHMXsXDihkqSpK7tXmcxhNDkHvhMjJathXhiVB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mdnxy3cTy5VLqBtzn8xfDk885Zz1LkVeGwUZreFsAd7AY8mDW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 155 - },{ - "name": "bts-edona55555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FmJxuUfiSQ7Uho8gxsmv9nArW6RhjrY8ujtYyEkbdXhqBETfp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yFKpUfim6YbnaFAstW6GTcS3WHEiDnBDLScZyoixgEXdZ9927", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-cni-trekker2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aEwZsZ1W2PXrBzrowvskTXZhyf6NT4CaFvLncXbCE71JQ2eeE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ZSJgr5QB4UXFVHiaBxsrY1uJTuMQKpYaNwTyF3dvXofLLCHRx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1696 - },{ - "name": "bts-cni-mdba", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87eDC976Rop9fcPbxiBbm2GEotpuQweX8cs6LkxLEzo8QGESp1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5znvngqSWZpyyhZP6vW8qqGokvoMgBwUDuJLsB1Ka92v7di4TP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-visionary2048", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HFeRj2srbi2uSRLzfBXN2RJW25nHykPx64C5ct2gfgoW4tfzE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7d1SfpQ6x8msQ46dEJYwDJTJSuap2EgBBzk4eAFXquHyiBPKF1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-successful3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8De4wAVN3La6AZHXjwTaHLs3ury6bswaH35aCmUunkSn91KpWn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5wETKFwmy5jsrYY4R4RmPbiEVtfYaYTCcZcRHHZXm5qnMBD6T2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-doreenlarkman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aGVksf9xerywgFShDx11yfAntVg4nZKkNz5dZvf8e34viWzZV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ArcT3BQjiNXGuctAdhmpH4tWL14wV6kj8E68iCwJbsCdfZgPy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-relaxedsense1992", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yGWX8MEtcjK7MWrvSW6UYwVwxqDQ6y2qcq5pvyYVJGQC2V9SF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fnarX9fUFo8f6aaiZRcFpQHLguKmsyjTMavWoAwBy29cRz9PA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 196 - },{ - "name": "bts-cni-earnwithme1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST766K1KsyQASKoqZRwybHsq9iSNYKaEyAUEpGZd5EaB3KsPe5iH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QXmYGS1Dv7AsauN4k74MNfcGeFQAh3mH9NM2uCT3okbj49eRz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-clains1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8itYs6YnEo6gvMDYpNvLfMeRD246wqe8fyEHS58QJMhUL6frNM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NWgi4EuSNB1XjFhpU7cYuAFALHygbHUFKHzNVSPhE4q7Zz8pF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-valdivia3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YKeatEnr8qygfMT42BVmxWTgAQV4dAL5D3dc3GhHsiPqdaYfe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7naD5g3pto1AjpU2XnJXLYyg2UUrw6YMdtf8QGkiBdyEDzekSY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-earnwithme7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zD1rcy4FSq2yyH8WQ7rrkZowJjYWzRa8Zb1dWGxRTFy41uEk3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6oxjk9Tcc8KFZcLDwpjayz8pdYtGMcqKz4sEk7VXxq6ooZFaGR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-carafrances03", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HFffMf53tUVqo3LfR8Krc3yvSpYKvL7LSGo8HXRaa3s4AJpHy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6sWzoenxgp6KQpqR5JDutujn4uQrJRZYiv6Vdm3v997zKi4Vv2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60 - },{ - "name": "bts-cni-earnwithme77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tVXUxzNVjMRXgoF9MUu87WWtLyRs1J8p9d5SzUTT3TV1pAxc9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6faXtsRe6pw9HpM7G8R8tzaUvkrEVYrTxYp5U8zt6LbLeN7nPZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-fire-water-earth-air", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aDdAH3hVznjE8AHN8yfHtqE5SAJS4LA2Q2WcWzLbaoA34Cy7o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4unUhGKnH7dD2CYgoNYi6coDWX5N5m3Zn3N8vewuEgPTBLaekv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-cni-piscis1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ex1QiTuZKGvGm5QzdY9GrTQSVWvvGpCJNEmm91uXkLWAG3jtD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7DsAZ7dstbZnSjJdd19P4rR94DTcTDscBFmtxyxrYvuRwuGDUU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-teech1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f6js6Tbk6K2e7sM8Dh1Jue9ZTmyNy5VYtHmpdvzANfFftyq9U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8my8eVCXyYWC8BPBoBCPhCYz6AR9mHzTwrt8QVPwemKJj1zN3G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-silk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uYjcxkxNLMU5BJsWnpdXi9CyExxpaU15u471rM3GUwQQhJNPR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56J2PSRzmkUw6LRW3QYmVxapXYVm6Gj19hjM5bFEkQBDX1wuSJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-pandidog14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST812GuxxpZvr6fp2uA43YeRm1Nfk5GicHNxEeHmv1rwtJYxdamg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yziZXKeqS8UVUUBiGdqBVntxQT82UPkbjdsFU3AqifEnWuL3F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 297431 - },{ - "name": "bts-cni-guy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WD6LuDqPgJiV5J3yST2M5Ef2HEgMy4VpLC4iuiUy5zyxCFF6x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uXCMVZxfYbeCA7Gbta8dFu9rj9aDU3Sd6pPkGEhBtLQBvQreG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-woopig55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6h792YjXtcgj4Ty29UhQNgWdnW3msyue5TgFebLQYNc3xpGDbj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5drmKRFRb66hRcWJC1BpNNWQSGZsXmxwCfBqayxcWtgrSYtzKm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-lolo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PHV22CUr9ackmE7RoQ7dJzfPDZuwQrbs7pAcebH41LZxEnhi4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55qap78f3i6nDkDdM3uLV6Bmq2jmbAr9hQH5zTskpdm3Vp4k7T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-webworker9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qgZv9PDVXNruj29veEtEX4WayYabgcoUUqNPypdcjLHSG72Zw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ZC3388MFz6BvbhGVJpGRHvAsY3CF8qfsgUGjgSMzNjwf54mas", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-bts-chinajsntwzq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZHF7LfX47WxHJNHTdcfVbE3hoXnGFLi7izGqAYzXKsMf6kaar", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gyyMyzYGpomscZn8eoz8HNePBwnQpwbQz1ScXMNtrsZvSLFMh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1835588 - },{ - "name": "bts-cni-imsweet2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ks2fLKxVDWXN1woQrJgkuSxvHp9vHKQmT9Ue9H1xuWWCUy8Pa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6BfTstcWrQFJQDsamDHc1N7vvUW4AxTqp5N7WbbeC52DKWUVy5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-jameshettinger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iYRWV5NidRX6sc814MzacspYpGC5gSzbYGc9ThvuKffpUzUi8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DfvNgYkRvJDnUP5BPJ8FMvF39vmT2Z4Xud1eQVAznUSQujcHQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-lustenau17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j1DXgp5ywdWq15vnyUQa6qY1QcB1ShY4Joon2RZrCfNZ5d8BJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J3nrDSkCBFatmiq2opHmFFuP4itpcDCMExG9C4a4ZNWfvf4Ct", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-casey1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JYpxh8PTGKt3pRF1LpeT9rCSkHfeh1G8jtdRA5V4gHcRGunqT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e1MVpXicef5TkuyRCRWMr3MQ1Zi5AAh9SspUTXXd44WqqU3eZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-emmacat-5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KMfazf8zRmWUFqbAGGs28brSF7kbNPb5NzWdzGFMDhpBZCx6u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E4xEcXf1jMXt4rNC2v4HkzEkhQmnmkAKN4BZgb7DrZtDdBvcd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-drperry2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84uQ2KgWUABEwfQLYCFTcfMqHsDoY1xYgqxv4uTXrybLXXEiSM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST833nMrvJVMXFfQ8iQDeodHPEWZoRvKFzF3t3tFm6fk8KHEjs1k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4513 - },{ - "name": "bts-cryptorepublic-99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UNDWYR4vohVmUsni7omyrokafBDcMgdRfjtJwBookNf8x1zDv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79qfyaJc5aWDEFKH8tbxbMCH7rVbqRr6uXUzKXF5caAYqqE7E8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-charlemagne972", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gs8aModRiWhYAZG1PZYjkmBrRfEtGVpn1zQhohTc1r7XiZe6V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uvDruQE4FCXX5GTRVcaDgmtDL4WNt41kiH4gTnUrV3qW8sspU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-heelloo123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BoTTQpykbRXAgK82efhjqvJzaecDp9Cw9juhaTJWhUqMe3kkR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qYVVaAGyyPMhoAmmGFtn6TWY26FKGCuzsM1eRxF5JdKyjx971", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-dmitry-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iyxAhFvMvpT7b3ubosvvbcMAXNQHPU22GTc8aArNKELswwR22", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cSuRxjLpAjwUb9r7EuRXDH3hhDgMWh7CmyRdTQPftcuTC6uQA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-dampfscharlatan00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F9B9MGVuaMZ88TwUAfNmhrdDp6qosraaMWSuPHxrtUiBoPK3T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PCQeVkUtddLbtXdSACDbcuwLnCS5HrZMqNtvoroYhtCAshY6j", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2377844 - },{ - "name": "bts-martin021", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nvZM5vECy1ggRiuU5B44vyuJb6gnKxBhepxygAu66hEAApCsg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bwDi2mxfg76pNH2P3yYfBN7JNnZgCUYNVzakVqgn3oM3nT7bs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347868 - },{ - "name": "bts-cni-heatherlynn90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ykbxT4TRQ8smECvcaDkk292PNFgfNq7ZhJ8TvoQ5tMSNsnshj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5mhFNVGTzZdtanrguuWku2yoVkW7AQ2BH2DVxT2XNQTTsqCK5B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-diana123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5htN2EUtE6JCscG8zA9pDtMdwwqww6vQJjLformCCuP15MdV6V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FummdhXL1da7FHQAKXQfSJBdtxbufR29bqztVzNiJxi1oNaqC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-chara14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST594QPHqYuUEFwK7TpkQg64qoNwWQKbXijFPCkPHBftRjyHdSCv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4vWNJ32Grrwqx2k7zmbsv1hkv6NB39beyaAPqPerWCY6wG9r4y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-matthew19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Mz4YoSBUdnN97eThCaAgNdVnJuLxeSmxcqWcfBhg1JYbr5L14", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST58eLa1Li7MSLm8x6dfs4SyKjxB4FqCkFoTYjzwTLKDndEAYJRH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnibob1940", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78m9C6Yunp4HJuDn5A8hNthAQTMsosqdE4aWc654xR5pkEoTfZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6msXBp1gSt31CBPGqHJr35nMZwAGwDhbCb8BeMhWeXCoESct7p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-cni-debbien", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BYnfEEdPj34FtqRvxP3SoRztrJKeMSzoznd5fsem7zv7eeUoZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tGW9MegZXoEx6EacGNCEMiVUfzjwueQvD6Tiws9n8Cq2NngXs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-cni-undenyable", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GtsBPajrBuXLvA8QoB237YDR1zyRAoXWn3ZtUHiye6QWQ8fEW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oEh7L2DWsCGGNH1XyEuBpyaW5w4fjwaBkS8vvR1CbQcExisVa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-jnasty08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n8Ht8QFCwthLBW4hb8V5UdN9hCD9V2s1yCYAwQA4yxoaWmwCb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76LiscvV23qajX5CSZPvidoPazyn8WuwWFJjXDCdut5QZsbYbv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-cni-liundenyable", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MG8n8YyMt9dcwyLgdjzxj2CvT8GJ8q9d4EK3BPGDaCTQHpHdu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82GnM7uYBqDZEtSZdKKzA7QGTExfJos1YyFRh6hHAbra9ct5zJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-testing.xeroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [[ - "TEST55h5oTNbqZXy5iWNins389Pw7Eq2zNhLw7724mTtjvPANGQUaR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-xeroc", - 1 - ] - ], - "key_auths": [[ - "TEST5aAWHbr8XTezymzMSDxLQDCaz4nLLqbMo33KmGDn4pMgkH69LN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 194172 - },{ - "name": "bts-cni-wairagu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zfdwDVRbUWE7TSe8ot76GeLhtGEFzXr4C2t2sxHsQxhB8KgJ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MC3uEWNpkBfvZpM6mvp4nvK4dQpUqeK2DSLMbNcTrmY93i2nN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-naxrun1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WHvAimAjbidFeyqoLNUcWevZ3qJzZiQEYP95tamHKHSPyghgi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VjBeeVkSswY8nCWhjcmXhBUykcfjynvJVsiNJWHyc8CPnpvsD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-ashley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YTZwwXFFnAiZgDUwKPqe6h1RDuTaiv7KUQTpMaQZCHcusLF6Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5KYTg1f6FNHd3i6iPvLGdBx62bZJS4atp21uwRE843RnVnBQYM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-petermwa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MAdrcXGGh3ZLeCjrUADEgWgoDEwEiLopDDUK8JEqMv3nrr7YZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7byUiHyeMX6gdTcL3TRXkYMhcZqn1K7jGaUwMdfebwBTwamzZB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-lealaw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Fwk4Lde9CzFbK58cGvPDiw6qbB2vuikmH6c7eabcecpjQZfPz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8h91fuFi31H8brLvA1ssiYXcDxtB3yjFGWooZ7bf5tnqgiFMa5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-risky-fire", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6okewb2UK4mdtfwLSUP39oshQzYSMa4yFNtLGCjioDLwc33HWU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69wru3Lr53YEujYxTsZq5XJf2veSc7Xc4XKkUvdRVCfDdHk9nw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 290926 - },{ - "name": "bts-cni-rognot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hdDwPqfAwYa3a9ZdNfhH6NbnpnuM4Vp83boBGgPa4zEfEJCHt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8DoUtMUWVovN5eNMzYj3rxjenxpK1bTg1viwL12kzfyQzrCtX4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-myaccount-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nqi1Hkc93uVXp7FH2dd6SKHfuivnKJ2ctVDCuH2pJonMhgU3U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dG3E3rBGNBjEqyw1XEEnMv93RM2sVWAaZtgFeaibCZ1XBrBVw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-noswal2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qoGDykjfA7nbMyRx9UkxGEeDfFesfH6vSfw38jnymDj8MiHqo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5KQ9GMKRGEUPmYV6w2aPhbTtZNbUrjGfz38WiX2biPNqVDTQZX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-cni-justdooit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nsfMxa5Yt4FLksMxg8DZ8tfjUhXxg6Tar4W3JY6LL8R66zTmx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7im5PKQKBxmdNWqJ9zsURNb6KkcCsyVuXrkDzo8PHGgPn1JNGH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-kingcobra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aEZ9MzDfmtEcSPkuesSeEpiqewe5WqVUnYEPq4VZbTS1AppRJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6qndDDUXDr8aynxotGC9KSGmu562AgvL9qtHqGKT16gcXfW6bN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1391 - },{ - "name": "bts-besartkunushevci93", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H8SP7mUScDEb7az1cPMasTGP6BFLnfziKYCqkWsYTZCnjn9YW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yc5Shr3eGzRqvWAQMqrK8k58X9FW3RpVKvn5dePanKLLQhkj9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-mutanu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HnUNbx7CpaL5wcym6H921VcsYDtDNSvhLJgZjCSXMVCczMFeh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST83RVjzjVkrntS6YAD6TSftvHuKSgNND2LARiLJaHap5Bmb8pru", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-wuwei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59oAd9BjD3Su3dQn7c3seeDWzUKzgEVgthsYGpwd8G8J7VLdfb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BbpbhvVzFrpVL8sWWoD4PmUbYVoQVHUfyviJ4tzGvgoJumUVP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-marcenmarieke2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76UNrecpkVuEYFyMRF4FwfEit9Ma1mEXgjLg4nirZEWssbzSxc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82x37v7Ue3Q7haQiXvY2uEjCSZedJy9484JnsHBVvzyZ84uUYT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-riverb007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hGuc4yZjCkjdcJMDJ3ckz5DpAQZDdE8DBvYztCwkwUf3dMVAv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ehKnmDh4xz9KiJu1Quwbia7ueZTzEx6mUJDsy3nLjFePeG4Gw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-iching", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jW9Wwzpnt4Y5UdovE51BptCTvBbZF3zFtQWZZkHWJztFy4F6P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ca31PJeTnSbG1ZGzTJupZvW1AYezNgUpCwAhWu8p5mToQL4Ci", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 243109 - },{ - "name": "bts-jerik-do", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ebkAM8oVTgSKz83hNUCzJoWjhfS3ctA9FUkmGtjDuNFvKSRfN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69LvxS6dYhaN5EAR2HxiV9oC2BQpjSnayR9Mq4VtpXDRFmSreW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 281636 - },{ - "name": "bts-bitpr0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wU1oKyi5NHu2v8JdfPiboMs3rW9FTaepNaz8fEZU7sDmhymu9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cHZNhMA5WjuHtLWXaMyexpUJdc7KakhTJCVatUeD6H51CAe6e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108 - },{ - "name": "bts-k4rn-mm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vYAjM7rUhUo96Dz6w5NVVPMJi8BYChQ4BGDDKZ3khYdzd4Mn4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7FG6ss35ZqsAyF1wuv7Tq9dsqg7XqPEFzpxtHMU4X9yFrevCQM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cj-4196", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST763UgCbXFCqQYE23Sr8PFdH85s6SUcPU4C1cJ8TvRs1Dg8U7gK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5VnGLwKDNhfE1f5ehw9t8h3iieBnQwgvTCYK1rvpucyyHdZD93", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-pookie28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CFBNBP8WvwV49aVJqJLtRQ8HZENVbRnA9NXcyn7JVnzaU6Z7j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cqcSoyhccgcVsUeTDenELxrL2RmqccBtMtzb4pzN3cHcqXARz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3525 - },{ - "name": "bts-geo-bor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yRjkss4i7snSnfc9QFoErzeDmTN5t7gw1a2z7tzBwRevAYVnc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZUCFSuXTWGW95Nefo1c7QApXBViBysu9bswDpktzzAXdrReoB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-pnc21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NQUdDmYTT2V4D9CV7fwtyWdrVrBqS5ULgAG6M2HKBnWAtQdNW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n5mLFwBvet1ubRuhTLR8VYZJoQMHoV4LEwNV6fx13AiMjWzam", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 252 - },{ - "name": "bts-g022362", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Cyq9yVWcrFGBTPdErbtmodtqd9LUzDyzfgaTEwoKacqNTpL5X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RMXpbbp5GisRh1TJbTr6My5sL4PHuPZHVYqwfy16nRNjmApVk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-crggtx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xwogdJx2jHzYR7kn8AqBrXLorZT2AGcteYydGKxcSihUZF2js", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cFaHhPu3XcnUbAADHs7eh85ysbuwj4gnSPQVFcFLr3HkU8Fer", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 620853 - },{ - "name": "bts-thecrazyminer1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nv5cag6bPNQUYZcnWgVYUY6VBKEEBuxatVykbga3gN83RoLi4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64VTBgCoGB6ehJZVTshXameA2gWUyVAUgxas9evx3eyLPR4LPw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 524013 - },{ - "name": "bts-crypto-maniac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55CP2YBSYboEvnZQNvfowLEuLqmNigqrfZmgszeMKvaa7yNEmb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vNqjW49h1egQ6NK6RhdK3voLXg16uzKcRdgx538xrMFJ3nHGH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39876872 - },{ - "name": "bts-chantilly1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ASGoiP7B4WxfStvZ1ZwQCwguxz8j7KnVHjNKydei5m3HBcAgM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vqDvApycmeP1p6Ae96jpPanRGkEB1dWa9ScLufg97LUgzwEA9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 381687 - },{ - "name": "bts-pumileon1976", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yYS4kKHACViJzuDfyu7JfMRtRjWSMjpKHcZxqx2MFCn2VE6Sb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YXnuEeDxb15spTCsvkoivyCWAcAqzBy8yRVKGGAZgSF6pHEAb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-fuze00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FMLSqVkgQ3R1bETYhrP5XiWn7Mxjzr2atysevwHTwmWEX3GZt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EnWMeDBNTzdrJ8KuLPmwawhgQCseGDu6WKPCog6vvbpq4JLNS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-cashgranny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HYK3tWURcerz4BLd29zYFpkyVdb5rbuibrv37uAjhQ9jLRNXf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7LiXJ8XJqxE6kUKnAZnVWHFJ1vU6DTY5ywLt1tTG5ezYxqQTgN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-cni-dalegregory", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5F3hHRiDJZA85L8jTEoXvLotT6TuJrLuBRKLz9NyPGT747swZH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST67TL3Gab6euNij3ikN4h3zfQCbrPSwXRGVpkxWd8wG93MkPWza", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-elextid2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UFckdbmYhxgPCmhGTEYodVxHpFg4SjoTSFZesnepsQGHTkYzb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST64TqdfU3zJKKjinrRGD3FVDedE1qhWSo98b9xaNbH63CQrPFAS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-mybiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oufLfG3sMGtvQYC8CB1jSf1UnJLRLf3PG2FcmvK4L8kptWDbm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uR4RS4TMN97CZ4yjPJqZUQZX55QdTxf63x8Vb4kbAVZGtvT8f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 402 - },{ - "name": "bts-cni-rdrobel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MVY6XWjr18grs7ZiCGmkGqxVakKUpLWrgXrUrBaitpby9zbEh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7SnurdvQZiCyE7x4KxCUkZkGw1EVMSKbGjX7CE95yJXXXDELq3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11181 - },{ - "name": "bts-cni-avaspgybank", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ux3GHyxqnfqWtHpXm3Rte1xXqRPy99zz7oPohieaEqzDwEEQB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Kp2JRBkUFVw6JphpFJ7SjGCzsXFaF7Lbq1FZvitZ5WiaX1sty", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-duck-soup518", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yLJVmyuYFcLfgWrExGqV7TcpjDaEqZGabwWybFsmKBRqrLV6B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6arXszVXo3neey4wGxqskhQw28Sbo9WvEeQLoBhFgdJ2cUvPgZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2392 - },{ - "name": "bts-kwonjs77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fZgGkpDbqLoiukrQ4reKSz3BimZ3vuDeQRRnuCaaVqm2RQhms", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iAWmA5gwNQntySH5twCnmY3KGqa1eB4mVM5G4Qe23XhEdQBMQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1139551 - },{ - "name": "bts-radar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cSshmhGndWA88j1AfBZsgPf14DfPu3gHCJik8Pjp8mutZA95g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CXorhQyn6PVyL6ps4tzqUicnZvoWUHVbE9QSENnzKE6FpN3W4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-ripplefox-in", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aei3jqC2ipA9vVzbqLNtAEPfjB4tGkh9YAnpxTnQpvziioXB8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PjVVvDawWaYHfpoVqtZuFhjSdzKfLWoKa6CyTQzKMk611U9Nh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30538 - },{ - "name": "bts-chris-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83nacM7WnchB3FwMSb4GBLmKYXRiCmfLsjpyycBuJNUnKH8fwy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bAYukSiDAs5SGmrtHS4a6caVh3xd8prfjaDu58JZ7bajuCF3h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1822 - },{ - "name": "bts-mr-bean", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BmvdCcwqjqaDggU82zVmAkgbMyEBYruSNjkqtKze8yxsuoRGp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d8D4YwMFydpCpjDDzHiFnvzuBjrUiGwqCvtVmgRzZ9AQQ1xRC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-video-drome", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78dSx5cDeQa6EJNYiX8tz9J2DqEA8MmtsqLH6vMo6jBe9ikFQC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kmQHUpptejBG4AzubbeuypFwUhR15yxrrDY5z4wya7ZsfqanC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-manisha-pihu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52BWqdpiaukKv8K9ettZZFKgf59HHk55PEAXbUYyGG53NUxFnS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6w8ky8kZxXf2CJnEt1LaBXKQBqJX4t9psRvmEaWSj29gkZT8GV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 784897 - },{ - "name": "bts-dphoenix5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SsdHzaApPRksB5XSV7jEqpS54dmuYkqA7eQxaUfMo6BB6C6Dw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zsy9eXNFpKB7DbYJiZbqj95z1LoqaY9vavammjTHVMvVaSDfj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3693 - },{ - "name": "bts-guitarplyr1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yg2W8hD4tF44KNCSmb5znAKkFPcSpxYijyWPAGqgXr8PNoRUo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7AnB1DpMmbBn8TRPJvFEp3MkjFpe7JF39r1TGyZK18KwPad3Vh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-cni-emoneynews", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NDHX4grfanaH98hK36dxuXQYQ4aKBGCxFQrwdaTFaCBddsVm2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FycMjBDF8X9JTUfoUdsXdn6NmTAZgwgMWgDDR9EcFD5HuheMp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-jgnamibia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a3vmX1hRVMTpKsRVAgHJKycdrEPkkCcLFf8a3dK9rRyXc72qu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6CegNdXzmumCifibfBa1qsjdx3iHGsxuPE28df9oTK8GN8uk1u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-denwey", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PV7G9rGF7hcyVeDqM9QPwMnuvDcKeuCYUjh5i3WdNeS15tUwU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST78FNJPtXETgcNPoAoctMPUCgHm4JuBPHofxQ2gEQqeHnFmXvMR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2960 - },{ - "name": "bts-quelec1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LjzhcvySWhfL4yfGK3gyPY2JgSuFfFwYGNZH2EZNE4LvhuQ6N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tcuTqZE84JuvQX3rTwrpNwhHt5ZgzoTp463sFjD4131DZqc1v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23277 - },{ - "name": "bts-tttppp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TaN3WtpM7QCVkgERk4YomRKL5UQqBxxkmiMpJKzgoLsmeK72i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53uP3GNKKpShZRGTkQv1gfmxQQYNYD2huXGgVXn6GgfJG5i9Z8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1076 - },{ - "name": "bts-ozcap1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73a5n9oy7k6XkKAAonBFGRMzpjFGxtpbR4RXKyavLjAGjQ5ioK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DWWk9xSENBCozQWxtYVVgcLr81oPaiMXibfbpoTRrLvKEkXGg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 345 - },{ - "name": "bts-cni-dziugas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hci3CQSaQ3xtb8oDKdcngCqrN31y62yPAkhwJrwY3E77AvvDE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5PpEMkjWLtpiThwE8FGvZn1tKVLsynXbv6MmKqhftkF4YUzBBg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-btswl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NMJgyyTPUPi8KUS4WYCC2bLKdBtRp3x8Z1yo3afeYhWj2ZaN5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7z7cvRHixQMQdzmH1fTnsCRRTDRg52GDaK4dSpeb8DAsVuH5XH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-jwheeler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8C8KAnFQ2ftLxiF6uRTrCyUvwRksRrtTxyiuXmkNg1edcSuRdA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7U3VXHnB2jQvC41SeFDU2obwtrfsUBX1yHBQ1FZsLuK8VX3qTP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-kwheeler", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81ojwFbERFtr3nuZsPmWmTMww6eRDHvGXZjwKGTF4f2AFzGtB1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5sgZHNMU3o8uRZzJRX2V8DWvjtHa3NvAfreWCT18WigRXRUSta", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-hfw08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66ymcRYHBdNHoUt5RikFJRhFfiDg1BPp2dP2cw6yFbvnMjAK3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yMbbGbpCPZZunHfwdPB1s9gqdu3XYUEVpG3vNEQr1R7h1PU7r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 166 - },{ - "name": "bts-farm-boy84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eXF8FuhveARjMbToGbmPvWLSRQUAKhF15Z1gZzE6Y9zxgr7vH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4x4SyhU3tFteCwYdbn1yPYWnW8LMT2A9eNDojS7B3tGBWYg9DE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-anja-kramer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wXbVrTfVQnfYwVXQXN2NAdLBqmsRNxjgqkKdYvcuYEzfuty1Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jQtaQLLaoMrPwEuLfywAMw6Ua8FP8zX8nANzCfZUdxhrnhSiW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-alies-kramer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YyenTjfwWKsS4tubtXm3LKqr4UwfX9tBGztoHVkk3zAjEXXzy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BpWLWBcwSwVs3dEsX7z2tDtqALWbTkHD96GAfJMfwpzeiWyiQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ilse-kramer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xcBpwryYCKu25N1GwJexVWGKZsrhipGsggoa3FJ3HradrjJUH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kSd6MHV2VbeJMgNGuuXYdYP3hVT2j1r5eRALPVGMCcKCJAQPW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-mrk-8p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gHwnd1cxdoRGmWrGRAPshjWk65gtnigPk7xoYjdUaESXDh3Wp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RBstEjibUgnE1oboRtSbKtDy737v1KKsFpvUaSgfyPDLXxitJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 404145 - },{ - "name": "bts-haz159", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TDHftDksuoAAeAHnC2zJ8FPJ3vA6acbxGMkgXJ8KbUZhbKhHM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XtouKjDsDJmq4sDT1Bhh1Y73eSBAvZEfg9uLdgNo96h5BcJsr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27806 - },{ - "name": "bts-kschris-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WgT6skG5W1LaC6H2SwnedXwbgGcZqh6nMpyvDrDBa8M8NXjNJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8j3yREmMYa6cCX1fEseeuJGEHuz8qvGq36C9LeW57yTsh1DLhU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-cni-beenemon2k2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wEsLmk4mAwd9cydNcwiCJkykj8qBN73EF1E2tbidaojJxq7sb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5UinpHqxZ298r9rPm7HKJXXKTotkX3EZvhoeJg8Zk1ZcvRJy6J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7524 - },{ - "name": "bts-hold-em-po-ker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82M2e9CDm7AKAD7gRSy1VD4Vji8FKciQZ4ucoLXS5aMoH8H6be", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XpRjUp9pUbVWbZPg4nC7hkL1aEbRTCejYcZ5PaZUz4XerM7jw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 662204 - },{ - "name": "bts-farm-wife82", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST632aD8toQxkh4VH2pVBNymKFeNkwMybb73a1BYLznv9Gnht2SC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HeXi1eX5FRyCVV6nH8gGx3kUyAxYH5EDDcwZu1QcExxZVDXZw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-suyuekuangcheng666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7foJipuV7kPtFNyqEpzkepZd4GN1vFWsUeGDux4ptfUV3Y6m4V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uUGPVwXQRNWJQxNZGFs1gShfpTh7gRnjjB9EBPAXgR2h8oJhi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31591004 - },{ - "name": "bts-cni-southwind", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JpFH1LXv6YSyccbA2RqiKUGDhJ85tod96z7m1X7Nbda21RiLk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89ByrGUMrK9bZHxy3LB4X9xH8BnNw586gDz3gKjAG9YXecC4mU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-luddy420", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XCPaxkgsuUzZWTGxFq5tJ8nWyfe9cDewnvUnH3dQNJUVgHeM3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67nGKDvg4WtBJEhgP7VfSNBNUwfaaj1xqJNshXSVi17KLNx73Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-coin-geek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8id8AYGqaKx9oGZNYVfnBH1jK8so6CeWCnnCz8ivKB6hh5woZJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KYsdQdwFoDsLooJSmr3acY4uD5kH23dndmc72JxQmZ87sibhf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-auspal1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87QTVUKvgjukqwAE2QeVC42YZugNhS9uP9dptg99a7R9AiQdas", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66GGqbQyeLhcXt3NzWTwmjYCrYvFJwqRd5MqqLA1gFtGrZ4g8W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-bts-coingeek", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rFFh2vVLD1P9jxi91Rk9ok11ymF1xWJQ5LuF453DEnAEZXgMH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wJF2w2xqbaKi1PGBHEUF2dxm76GCPWnnieQx6xqPtgUtgcVTf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 444 - },{ - "name": "bts-cni-figtree2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hrptx9kYVgerxkDmbEXNedbCA1qjR7FPdXPYy5D4qVHd6wYfo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tz9LPX1jigY1kg8Vw258h5D5D2qWVSChb2db5o7yyLCbHN1iS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 939 - },{ - "name": "bts-edona11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HGSe5seMW7XvxP6qks5YYrbtqyXnPFa2ZMK2ssoduEzxFmEQ7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66861GdxuXVgwvz2p4LSECLtbC2Xbtc27b42gRqh5FGG4QevCs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 196 - },{ - "name": "bts-zhangxiaoqun-1978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i9KLM7W3dBSpqzzkQu5o2GoVJvSmEtRDybfi5c7TW6sA8PyKa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jk5Bqh2TLGmLzhpcqQAEJTvLYMQi7hK56nXaeSVKwKYuUetUZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23664 - },{ - "name": "bts-winston-1984", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69B3PZt6BdLAZgyYmWgKkZ1GyhMtGuAShGVRyJZMJXMUS83iNt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7amoHtRAmr34RfdDQpT3vKGkyzQts4SkjeBQCMsfPETqPen3Xb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81 - },{ - "name": "bts-cni-sarahdevorah", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77txZN8swc648Ym6VK4ExARxiKLh4uYrE3pVdkmpWeTpKhts6u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5j3jQD5JdEzL1r27AEycmuHNWncNvFXfWBR6h1EX3CygMFT3Cu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-lavernsflowers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63rJaD89RpnqJ21fzgkWtWWypmcmjuTdsZWUL4xDnWbjEgFXxe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8C3PEER8jxdK56HsfAghQwXTrsiSh6KY9coYTJB1TbkW8hcXX9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-tasai-o", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64ieQNSU9VYbaH7VaDHB4Mkkmvpkx54TkBFgfYFB1aPYFjkVib", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59znM1KSMra9FT9rPZqxN7kqFmRsKMgQw2iRu4tyidMimZHi3W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-skysenna69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MreaCSnHVi8oTH6LQKuesGsCedJbuPUWfq3hbCTWLTo4GEWXD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kT84CvRTWKRWzZv6d3iBLvJH9sHoTJVppVAmykjUizP5i1pMp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8232 - },{ - "name": "bts-resti70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gAquEzfdJhL3UAH18rFwZ6Lx1GsPktqWBo6h8iND37zfhma6m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mmtgMdSu4W84KjzLLRQVhc7yLRzGc1FmGaimyLKjg8TNhg9WC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1656708 - },{ - "name": "bts-musy9999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52zbc3PwbJhdBR2Ss5nJpb3N244QLyBQX6UkPLPvcjTyEsJu2w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zzBFAqbDtoGyNDtgZkjQg5DXmMwAobSBBcggBRWb18iEHTZyL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26120 - },{ - "name": "bts-mullo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54DQCbJbaNN352wGREHDZg7a6C2HCW9PAv8dCLC7xjFEoxatj9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7b7oyYp37zSoLVs3VZ4oZrV4fUPwnu9tLdQifa8SUeC76NJsFF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-danny61", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68Yzo69zEa1TxL3RKe2BZMZikuHvZ9v1sUz6ZjxmUr5GbbCCm8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7UAnj8dcwguwQ65nX39E4u6cLaaNzenRxeKFGoade1HhEfgHnB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-chalayne14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MkWGhN7E8fhGyTpba8jCDaqMTPsVDu98UMpUofyRdvSURSxBK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST84DoQbsmvexueM39FFonpG7pkZDhGaUueg6KLRnwjfdi4uNHUH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469 - },{ - "name": "bts-cni-steven91", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84DDfEh84E9ikFW2G5JXi9CsED73hKGQgZSEeUuPmZCk9MrDtW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8PsJZ2YXjxtozQ9xRqutSt8gFMz2cVjpkWZsKPFcdHSAweCZ7Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469 - },{ - "name": "bts-cni-look2u", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kU9dbrg7r4UKdRdXxxe6hWJDs5nbmRYC2UAdkfDXpjRAYXbDJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7DDDzKgJNJGBqa6WRCxAke3SrghjEgKp8tkhxnR57rt1pqNxxC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-cni-shelia71432", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MEvNyFfJSw8NCur5bc4DsKYJADwAdrB7Uhf6oNptBq1rRUwh6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7e9jy2hs9h5qwpwDj536zpY9Bfm1p4oyAK4uqc2Q6wAZatmdmf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469 - },{ - "name": "bts-cni-vlam1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rmCJz8KWXnb2QGqon84g9HqfpHNGCVDHDcfNygC61vHwFZUYE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7vnFG9PzSiYhzFyNDifjfKbzrscKvJzfemtC2ysrtDvsxpGzdQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-melchezedek-776", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cmedman57", - 1 - ],[ - "bts-jesuscoins776", - 1 - ] - ], - "key_auths": [[ - "TEST55iZfFQ7kD2qpdLBJoKmVZBoYaUf9xmdacwJoP6LXnC6ELUEmr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 3, - "account_auths": [[ - "bts-melchezedek-776", - 3 - ] - ], - "key_auths": [[ - "TEST6K1NL55H42kVyDBZsnuezEehztMimQ1KwmJLw2eEAUxKhcPivc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81973 - },{ - "name": "bts-cni-dmlo1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53CLDzxzMQLE3jYz25z2vznkpWXzyNMLSw9Lu76WXrTWJigPvb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6vUL2NzoxD8hDUNggbwDThECxBZEa4uhyQFsTTSS93GMYRSEY4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 140 - },{ - "name": "bts-cni-mendes1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WtQ6TjM9G2mXTstvSg48T4k4JeLKR87bT5fiVeAZsJUSTFxUE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5PjfVSrzoxw4hes3azKy2WKT99goZzrwNbWhvQgsexxa1Ne6cb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-mouse001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51MfaCCih1VFMqqVo5TJhxk5ga6Z2aAnVh6fYv5Uzd7APewdSE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RgzSA9r3w63bjbjqaQsaBxtuR9jusTVmrdtBrhWvwbMF7znPR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2931939 - },{ - "name": "bts-cni-dmlo2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5t66foVP63PWMF7UFb4ewXqRQ6YCRAmBdhN7JUg3fzWW4MdbRP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6RJzAP1CJpAe654Mpx7tdEjQ3g4T8rcvLFBefoXRK7U74L7z3H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-tuesday2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7quMR5oKX9Braso5hEMPAskS7yp4gzFP1CrADcrv9DypBd7tig", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mSHXNb15uafDiUaXvEtRwADBYBFGFeQ68mMFQqhF3gXL7ZASz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-bsd-bunix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xa9QGbXBTR4StgkN8hMn7ra9Q32pASmxbyKJeEAB4CS4WHg1V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MqaUy7wjXZiGN9hLNTCGWTD3UBhhpHmd5tZiWJbU9e6amLjvq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 47691 - },{ - "name": "bts-cni-buscon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WQ1uCHZgQqNmayt5AxvCgFyTZvU4nsvVQD71D5RBUwoX54vL2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Vrrrx5Lp6S55Ss7LU5BSSXVtqKQ89hRe8QhBZdMUS2T8tNxLX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 827 - },{ - "name": "bts-soana1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zHteyipYisHDsk9Xf5krkxmfonoGJBoM8NhFdbPGtUDAuFyUn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tzCZSHEWZ6N8pP9jf6RLkQFrMr1gKR7ufWdy7VzHRgi9U2CNQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31753 - },{ - "name": "bts-bull001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JEu1CnnK8WjSozXbiezhZW9kH8acBaFjrnFNuRdAsyGDpjPM4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QCtRhHmRHwSoDviornDDarM6jYzBQ4Vn6EcnZN1i8VxUEW6W4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3135211 - },{ - "name": "bts-tiger001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vc1SJ53RDx9bR3XHpiHpR3YHKZyVTiv7eaTr8MASCMS8aTVyC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kXmFLeS7NoHPZZi73TrWgusJyp7TxgGqHXTQzhtVSVa5NUhRn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3329273 - },{ - "name": "bts-rabbit2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yuKa6tozZmJaPTEjBwV4uDquHHxzukehN8dniWAWCaa3yxoNK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TivsXEbkGJ7yAB23JpMAL327ceJfWUBfXa4FPTj2XHJc6MMfP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3567858 - },{ - "name": "bts-tnknt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a6uYzMY671WMKyp8Kv5iyyPGnHrorTdei7fS6RgJ4M4AmVyAX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Fk7p6cHDrktT6sBWXBQM9kqBNHfQGBgRC7kPchboj1vnAhCsz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16118 - },{ - "name": "bts-cni-grayfox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h24zGuEG17wMpsE4v1GcLP8bsL92kvBUV3S5ZUMQsx4FhnZES", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mfyeeV3u7ULzsMbLmQp9cH3mQMTbayJpBZvi6Ttcvqggu2bc4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-dragon123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VgRLWfP4V8mG7Jb3UZHLJzRpFAsvpMoVRdE1kWT1DFKT4TcV8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7auHUSUZzcGeGktUHT2cmquX9z3SYtVdFXPy3wxQZKtQKFCkb9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1751630 - },{ - "name": "bts-btsboy123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vZdgQ9a9BA2iGfh1nxK5fsxikmAWxwbw43zH2Mg4sqnGzeDoA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c8RCz5DehWykiJ7f8qWMhkgTmBaSUL2LgbRbp9C2zqATbpeRm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6241235 - },{ - "name": "bts-winterbike1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68QPRKSyLJL97gkxMbcPYB9z83z9srdZroQSTdKMpm9puDKxcM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SiUVQyPv1GcWnD86cgwBUsNKKBNpALYLdH52oRMNYKwB448kc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-oellenbennett2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72ZsppafocRBrZFxsp2a5ZgntK6zxhS7iWVnACkmdjfdy8Ggy5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72ZsppafocRBrZFxsp2a5ZgntK6zxhS7iWVnACkmdjfdy8Ggy5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 530 - },{ - "name": "bts-sunshiney2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZNTRQx99xjP1TT4YrH3y8Eoaf1Y7yJhDH2bhXqkHxDTsWvajF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PCpxmEgtMgtQkhNhp4xhh7Q8LxMVUiRcV8HomkhV4j7emthY8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-o01l1ll1ll1l1l1l11z5s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v6jabARao5nyeHVXY84eoDiBpreJ3nprcKn3S7BAM9Hn4Axt9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UuxbNvYfwAtjau9X9y7ujS9qXtkRd2TEUYfjoYi99sGXyK7KG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20545 - },{ - "name": "bts-cni-mnybags", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xtKPzmo8vGmVt5fWtFdLUmJWjYpWFJ1xTmtNQy4PLMcPgGEit", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ks4XJq2u57Tzk7XbTSh3rWJGpvofusrXzYcR4svt85Hs9Kgrm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149 - },{ - "name": "bts-maemonkek1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5m4T2zUftTH1RFwFz7CtecMtMHWHubgwkZWoAJZu1qHRizzLxh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XcRcoghkWST5Zjgp19hcsBTwLh77NqTgd4zkLLjWgUvEYMuri", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-ronjer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UqMK88gQ5mojoGXfqQs3SkegzPKJ6UXdXh4Gf39bWTjveKhyQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76MCuRTMf47vSCTa8xaTBQd3AVDqonsot6cRVCS9eU5gbxgusd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-services4u1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KKSsc2L79MibundrzHkfkMA7L1nMHKVSwMpZX1XLbkZqz6cLy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7XH3F6sDoDbrQEWLE9MucZa7Y9fHFFqL9bdULRsMH5USQMrSPF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-cni-astraman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jmHqmFBseQbsahZ5yMKsRzw7mSJqzXcCXK1k4gNfxUtdVKgoL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8juVFWfDVNDt4s3rVapK5Ko1BanJNd1LTjtDnDx3bHLppHTw4T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-cni-astralady", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Js5WBU35z9EHgHLRA7ztWyReEQYhH6t8aRwRG6AF5Pb2Q2q1z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6S3yCoeNrbJDDphQkJdPRgY8sd66jWaX98a3V9tXr5CBWTXRme", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 89 - },{ - "name": "bts-haefelmg-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tMV6AG8UeL8ipPK9qCcSSgnBrQXGeCt4zXQLYDqU1zwDq7iPT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CNbKVVvZP3BGyuUoNad7BSBpFJUsj3Th1KB3BQJGTDmCHHS79", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-doelanders", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qa9dib8NHNXG8rcHxJzUHxaqTxKZvoRPWRukERd72z1HqkCqy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7MznHbFwfPZpUC4zb2kCj9kF3Li6knAYV8csvfTRDop992RZKZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-cni-krev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KRR4S8euypQqoML41JwrEqxb8CmVqnTRyRmLM7QMfQ14MwcwP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST63NZSjMtvR76pjg2TTvYwMU3jfFNyuot4jMVViRbHJoRJKX7J8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 342 - },{ - "name": "bts-cni-sclady", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xe56k8UJtiSta9tfBStjbaDaNxupPZVCRj3XSXvcovcaH1MYL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6JB9Avb1bjjYxjGxZKu48vDJwwZkJTWNGnU9nzwwauta5EYYoX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149 - },{ - "name": "bts-great-find14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MVjJfCJ6LAkZZ7SbA3RGkL3tBb62CRH2gRrr979a1TywGsbWt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5T4oycQPhyhfLhtcaBaVwLgHSzfqJTrSyqxEaXQSCwYPcBk5po", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-cni-firescout1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82o9URit1jmGzdogbZQth2NegZMdugTCHai2CQnjWxLpgNL6LQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MDhcCyNEf7cnWjxSi22otpSjJRfumSzRYDQ9uW1sE9CZN81na", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bzygrl86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v9JF958QLnMBCJkPFQ8nqxCaiSngg4iTNCUwtbNHZutY2eRB8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7NG5C2EfmpYpaaeeu3ePZSDsiG4sMtqMWYM111j3Xg1wqP1vCD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-cni-topher619211", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TNcTawfjF6dBezMiUxk17p1Q972HV96r7YQwAsZv1r9cJUJVQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST66gekW7f25xgKZrrCHXr1dCuHGS95ttGDrugegs2uFD77mVYLb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-doubled1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6n4wAn2sfzSbLTRbXuQXCLBAbBiyKVx1NrCE8o1ziKBVy2hyg2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6R8yUxpo1YBLhaUZ6ZikwZZX6gfsRe6i9Bxs1rfBxuksHyRad3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7014 - },{ - "name": "bts-cni-faithworks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i2qtsKTDNiMSCy5ZHQ37BYKc1tytfvpcVG6twsnzLLR6gmJSe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56magmYTKpy6Nx3gtScZBmnGuUmK7ekudxjrMnYn67EHrTdddh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 299 - },{ - "name": "bts-cni-norma", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FFuzXauax6QteKZZ3yzb1oJoNrtWLvPVnxy2Gv31QZ2S2caWU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7PQu4JQF9mHkW1f3wd2VYZGyS8r8vnB5QNNKX6hdD9FoZPVFdT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-peerplayer2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wm7oyC274wu94BoVGQAbwGd4JSnHiYmAneK2a1VGemqgbhmJr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64fUzQXFBdp3YWsNfzKDd6FhvNTuSBkEBDcosCtBndWq7BNmLG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1603 - },{ - "name": "bts-bonnie-peacock", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST691pGa63SnbbBmUGgyiqdttbhtqNWqiR3erfvvcJUFUhb4VcpD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5RRhaTMBa1N1f439JjWbPWNsUwbf18Zt8wWjGsJAiTv3Ywq5yf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-bunnie36", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XTKzHYLiL63P13WXCsPbDpQS2dveFcgkvedEaX67pcpa6SiFW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5eXFHwc4qfc8EK2tsFwbAh2EB3DjSjVKof7xnuVfsQSgwom5Hu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 787 - },{ - "name": "bts-diepnh89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hafmLc899zDwrxymoasKToeAkNZB4Ynv9nXaAMTrjeC58c6uT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PQcbcerQLvBECoi89rkgquC47JsZJYz9Av7wTFvi9fewxKp3p", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-drfrzn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fauPiDYHUP7rXGuBa1KA67kd4VzttroY6DQeyNUU1XnFDjoUu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hvsPLaR9ArygdrwCiLafNiS23vVzqfMAai4uk4uxrEC54XcHy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-infus1on", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73Abg3uEYvkXu4rLXGkoNKCDZb8EpD9hfQ5e1jmvGJLsnqmS52", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ah7rZ6StUjtR6hmeZP6QM3D6dhCXu4nQfJSgiiMoEVGW1hJwu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-jffair15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SkjzMhNXxZhKeQMRhqK2amhaocsjSB2GDCtZRXnYANmAMBA8i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8PDMAuDry6jssiAaqq1hAyGZUDbXSM5LWqG7JzMmM4wTnNd2Km", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-cni-goldenopts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68PkENs9SbNuZxYQqMu2RUMYojPDWK2NXtKf8fmeUW6132q8NX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6t81KWFot2rbb5kEn4DbX8EUqhGEUmoKr5cv8U8CUcMkecujhP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-writer1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QHbz8zKGyssafFmXUQicB6BHwgd4ZxPN8tRFoRDaLJ1WHmTmB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8PPxLpbek9XmXME7oFV7Be2pB6zpnFTVTaMZ11BUZBn8gUG2HL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 248 - },{ - "name": "bts-dp2wim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S2aph9wojFNujwKMc2LofacijQyRYhHPwAon326tSuaE4hfgQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6BCPAsCfPc3edxvThz4Toji27pRKhJn4HLVKd63G47684tGBvd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-my32great", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xwCgNoox1uxUCmCGCPUFvgDczKrqSDnsh2rMYWNKHHFXRu4us", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Z53wU4yiQ8cpsio6CKzpHLre3ThkqgMXZ7gwS5mmHfQnJ96p8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dfghj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JAHt4TZk93iWUExMu3E6BCY9ZqJPWyJok5BaSAvfLMaQXUGSq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iSk2FmZrGziZKji3rCiX2YRdC2V2DiYexFt4kEfikjfs8FSk3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18132 - },{ - "name": "bts-writeri1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BWbvxgEyrGnjpqQQ2GG2HdbGevDU1g9aNexEG2ZHKYu9kqwn8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ZvGVaBMjy8iF6PGQ8Z1mZNSK3p4iKX4DFJ78CFeLYrnNtPnpV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 269 - },{ - "name": "bts-cni-nuhope", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xN7FqNY5jr15FCeyMdwXZfqxAcbLYLwZSwRYxrWEHRmdR5dAb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST796ihAdEYjfrs7DZAepuUf97PDMhvJPsSJGTVc2fMq6AvtaV5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-time273", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yRFu7cnMJc4Xhu5zbQw7KyTCjdwN4r5BUbZL3GmJZf82aW1HQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ECtC6S71SeDS1mWTjzca2U9RSToas8kMpbBuHKTpyqvyYfqr8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dick-moorlag", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65W4G3PUbkKFPNS8QMx3PQFVNNJcRtXCQMCjNzcrhNDA2Q3d4V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6CRf4e9ubDcBUvwTwPMUa4ZvhBRGnkMpi2wHrwztcNATXuk2VN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-ymer01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RuSvZEhYZwDUthFiRnyqmS1HdPwDJzeKR6q3iB2GwcjBZw95N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sEVnKcZX7FnSXeBeCEigQZM636ppTXRVu26JJhWtmX2RKbp2k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 114 - },{ - "name": "bts-maks421", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MsE5e4EmHPmj2WNdwBBLVh3LZ24xbsxGFJerFhm2uRrLiqgfc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vLGbA9UZUJ8pPz2Usi1XySN8guw6H8P6SBpoq6243BUHpMRqK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-em57783", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ujJiAnV9JcCvadqgkMPgyxFFKNCKhhD2HVn9rXArBVK4d3Sq6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UKUG75kiXZYcuq9AxbwCtFXTHjZPt1fHazR3uCGvvhVZwaZ1N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-cni-dave799", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78UPu592WofYkw1TfUktJM98STN9ssH3Xhr4wFY6WwVoxuyutA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AoxNRgyPYE1Bos8onUPC4B2qN3bjk9WPJNtt4wkRFD9XT93CQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-nellybom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MapUVbJdto1qKwp8imxUTGmGLetwYDkPNNKM7uNzVXqRU9Vbb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GUs8UpDCAubUWqwCsRFoFviXWKDBo1SJth8xLVdu47noQ5LRH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-piano", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L5yr6H4zJ4XQ7CFGafk1vRheLo77WbampFsGaQV7wFJS8Tthj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Lz8EKGUYPutSmUpQJdYQQNmnUT1B7CT1N16q1BDfi3MouHu8B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-veryberry", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bJCxC1jTozCt4HbQdeD29ysz9b5S2A8MxP5bTK3Pg7X86Z7iL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N1C5b4KuvtB68rBs9cYc2kM467NrHR5GmeMYzaUNiZ1RKdaep", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-alyce-g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RZxCovRFocfeU2jEkWpumCGsn6AipG6aurkJVih4yC9aL1ZV6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST78hDJTE7TTJXHF4PmYzsLTYbGr8c7hmKCdBQ7JZsg8esfn1CTH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-risehackathon1995", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DN28ZXyUg6tth2dMRHtc2N22RWLUGs3im2Hx5phJWTZeGwDKz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ebFDfCDPEHDQ8qVfHCwth42nh823RRFJ9oC3Bh46x62XFiZ9y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-cni-bishop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57TxAR1AVfJwie6LfDK9WiQbf2JPwqDwmGwAaTFb6g1aojY19m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8F2Vazm7jNDjc3xXc6ugtANeau3mAsFfarGDWYuJy2AAk21mwG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-mheath3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AJKvsZNLhWJzcqiPWQZamhQHYuwnTcwS7h6nmjx5AUYMSP5wG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qcxFcTc5AdaquXw2MS96VcXS2K1oMeqBbGaXq4mMPtuxWjPhg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1096 - },{ - "name": "bts-ivand112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y9c3PNdS1PP7nJX8yKTdbieEjh8ap3zHq7zbjbvmadm5g1Jca", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST559XymPQ5BqbjfyFzXLGAGspEquCnDAdqV19wxbMoesZJuMuRH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-dude-420", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J3jfbYSTzHZkk86MbEYgxgKZXeHhaVYYozhtKShRyzoA2Esgi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ahRu4yxKSMEwft957JPYxeQCxsFgRBuHbuDEc6ZSWUaceMrjX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3463 - },{ - "name": "bts-karoljb81", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mssiwfiUdz3Bpnuf1AwZNsEZCW7SxRoWos3ht392ZF7AzCPdR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zrWTN5NycjYYnCk3iPRE1CEs9px6wRHDaEaV7f5N3yQNMZXVm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9640 - },{ - "name": "bts-cni-fredac2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aYu3rK4iBZvJ1oXouS9FNUkYEtijhQr2krLCi7twnoR5Uzpuw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST79r3FREnwkECbEnfB3kxiAf5qdKj78qrxs1Voe4xw5rQ8NrRVF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-hermie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MZMKkYbVjdWd6QQ63PqebKm6aVh5t2poVBdetW3uStSyqq2Af", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5jyjMbSFGAFKRdg26DZyC1cepF2qfAHkVLZzdTT3ZVGXpzNBAm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-cni-pacpar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QU48JxNrvpwobc61dqRNS9fohMf8Dj2y6DA1wFou3Vsknfxu2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7mvk56emB5UWpiNyaaVTapoK1h75qdiLtnq8cQmynERAh9J3nf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-yoshito", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AwHMfXGWD5B6Xrgak8BuLH75dGGcYwqg592uxVudcEjV5FaF7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5z7wNs3cN1F2x4BDtRNi8ue5GcW3cfh4dDQKeQstsRjQ94aUvT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-jade05", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Nst84zHDTk9VsB9zCHXoTJNw2HW87E1F8ecXtfovtHQuN2AgM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5yp8Vm5PsP2ywLYepf87ARRUSdYWjWS8PBEXEyQAcrKfhnebdA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-harris1980", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fzonpad2V6CyZTyEWWQiHbBUJe6WUCKMPddyR8rcTTZohwg2P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DAMLs6GAPrHHvvKRpJhatVqCZB9RMtvH3bN1QJpJG3DnBtbkN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2257682 - },{ - "name": "bts-murkle-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wNjgEZSubo7aBtXVZax5jjnQy1bXN4PmSBuGsMSQ21zd4oziG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AgorL9Ya29987FpEWS7LhkU2VxYGMUBvE2Jawpa4x2h4Cjb3k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 383 - },{ - "name": "bts-s4i87ha984fe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iTZKme3UnpufogfuVGRW1ELuAnYZiCo1y5dcRuAWZXDfCDjRC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yv6sBoKaoFEmL3sYo7ozoG1EAbute8nfsMzeRp2FgCQiWGzJa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-koolcat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69wZvXhzFiAK84AnyznQxBnHCjVuLVzGLN6TzpqYhPrZD6WV8f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5UqkKbC9tiaZyKzfLnpWUSu8sMkAijbxEmqjbqFrmCuSX4Z7mx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 977 - },{ - "name": "bts-cni-robbylea", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bAEkwVe9AxS8GRa77PzxUQpo4dV9Xbf4E9QMUs5rNnhedpx5m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST84pW8D2ZRu8xGNMaEv8NZ6wZWj73gQrf1DPsJPCRX2wWcn7Fxv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-summer88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6daVAnZEdZDzQB1jVYuyXb1BLT2LASAncGTTwmWENfLE9hP4gC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4uB4KP11xYq9Vg338jqpDVKmtw7z3tZ7P2qBS2PqFtMn2DzSNb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-jamesb67", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AFo8tyf33NGYiGs7cgJi6N8bZq8WR75gEu946PBE12cgRaBdU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kMjsHAJBHiPeP73Q2nLRogDcU8hmfdAaSoNyaBTeEpHxaDFW7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1727 - },{ - "name": "bts-cni-l8dyd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST84HayG8vyQXjZfXn9tDYmCvysriwqhii9yvBShCnBsAL8KqUfH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7LSG7SkLMEncA2dvNpaSHJTLDXZQsuWpSBsHo4TX3cwGSK8SCT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-die-function", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5orFVuXm7ZQeSTHmKhZ3NJGj8HzVcSfZoRtsSh4FokremKueeY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RrtCgQed2ZogzGXmCJkgxpt6AXYny1Lk8uubANf9Ya2ohXmCk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-will-provide", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KiyanfdixLwbe2hoskgm3kxNbRM5WAnG8f6JmTjAbqhe28yKs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7SK98Sr9kQ5gboYJjv7BXtjdmLRKyVoVWQy7FzgSgjbqeuN1ea", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-debbien2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ckrr4rfsLpzqWUHRc3ahcSsQNx4hedyGm6fa8186fjfDUUa1s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST57qDuNjtzudLsAKfKSnaBFH3SA2wzP5tcAz3FBXFDqc55x26qP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 71 - },{ - "name": "bts-kc069", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TAHWjjmwmoSnooJKKzwJP54FVE62yhy2sXcfDgF9SwjpUkhW8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zRzuKJ8CSKPrdRYoxA7GQw7dWRWftQPiZdaoeGi8NEXfPZS7g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10302 - },{ - "name": "bts-cni-cstl", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Hkj1koesHokYr1AjdLfSVg8uPRfRCEgne9XSoKdV1fmNzNLd2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4zWwd3KhV63VhfCF7svMhhgBmp1tvkFwJCJKcXGTCFfGVkPoLW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-crypted-xypher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5v4VhWeQGjSurHH46fwh3TQJMrT73UrWM5SAu85V26UTYLuJzy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST867VX8sVWX7AQaN5brVNjvbJBo2E4J5GPbgodyNxMgUM9hdRvf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11278 - },{ - "name": "bts-cni-crice", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Fw1pHhzKedVgWNyjEHPjpotCdY5VULRraspmdRnew4DCz3F5e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5BH1jvqygVwR8HoLXjKEZUpjFx4WYV8JAXtwSQNwSfAimi27Bg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-elguapo4twenty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NpLfQ28MdGg2mDsmN3DaAdX34sv7WEfYm9DxSC44EtJtBSKQk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H4oT9LfRmUHYVxK3ozvSFw4Pr2eHdNEokh8LZ5A5AQn6ZBhzb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 914509 - },{ - "name": "bts-cni-jkagua", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7C7K2trtceip4JAtBuhhKaY9PgZDxKb6AXHCZotPUyubz27BBL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Dsd27nYgjxLmbvR7WrAL3UL6z68jNFP3xDwtxnjogzAjpswsd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-king777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zNBrpTsxtWxtKKSwsY5WBJ3j9Gjn3MH5QSjkhEwUbLaCJAqvM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5dujumB6gDXkLez64oJWy9nyNNxnqikJ419hrXCYeAxULZ6W53", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-jmwangi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Muuj6vwNfKndfn1zpC7VGGa2kX52PredCWLxtdNc9bZzFFRLp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7qB6D78poJTJvpRbL3jp72tvDS4AwdiupGJ27efgudbAw11SVx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-jtegeler100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88AV4DgcwLJEWC7eSNSMiDSfSzpLcxN785ziAi3sprGoNursYu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8L3qh62mZfpREb2pSR1NmtwMjBt8uXoi8KNHaCyKUnJYmpccYt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-mercyk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jG8Y1JU6QSGapgpwzqrxhzSW2k2UtZ5yxCQD6geK9Kv9HQNCo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Ws86rcBzGbhneFzLnz6W65HroqEVfc42MZXym2miP97LVAq3f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-konastore", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VBhvFH6H966byWpdvy5wiTZQRYgUWHhYKLMmUMhnUYBGUNL1Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7snjwqQd8aaqG3KosZjd7n6tP3P7jzmArtZBLTDkuYARetNQxz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-skuterek1928", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HgH5MBBREg9zugUBHmycK49Wr9eP1dxpDQrzj45eot1w47gnF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7CLw9F1UjZz6AEuyLW7B6PXWSRhNLbKH8A8vvHv6UfJqoPWRko", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-patac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HwQx4TzwXB5gbWptKgvmX93HJmnB1LoY27Lr6vjPnteWGkjTG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5hVGNk5JrAu3oZYMBhnMbsnJSo2VpUp3XirGuwt9ccCs9GtQsD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-clp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y1PSTi3nqAbUMYvrJVTWdX6by6AkjjjCXqBmoyX81LiqZEpCT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ys93SSwQzXD4ZCykhLb1RuRWMjCk53STggXtVPzgzh8hF8g1o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-rjskin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mY4H5ZCUz3xZibMMktN1izQ7ehCwxWHfeWxagZ8KxSMKZV3o6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jdU4Hcj6GU3iQoP7pjvkZDUWaXLBkXf3vJBpa4LJBjLEWdJHz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-greeleygal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j3sWkNBBpuj8JwwJpo3umgrK9Z6miC7MbdTPWGJfURCFWjcjn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7KimQKYxEpyrBF6WcwWox1C5cpjBMpEY5N2hpiZVihucxWNMuv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-smskin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8TAeAS9ZtcKRtvkEEcuvH5vs4iNmJhtJPAq4yrj6MNCXMvZrv8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89y5Sq7CNVenDqXyAfbKuET5Z5LrkkzRf3cGKgD9HosDQjq6rD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-lynch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TjRmDwy9JFTTPafVDJg8j2SKgr8n5NZjiGVX63XxqYtcsKpyt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5DPrdSzsPjXiazHHFk5qW1KVpuMD2FjdSgTGeDxgU1er71tohQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-cni-bobsbiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81nsg8JmRsBVDmb4qNV43UT57YSaqphLyCVzBazkppzJLUdDbg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5aiEeQQzgzNevUtQLDFrnHoHsEMH4n6YWd7f5Rzm9yg8PsmDyZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-tom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7M9XtcRDpRSNCXftF9hMLsBpF6UqzMsdpaz5nET83pTpcbXy3e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5pnzfMpWJRB2Dcdyt6R3m7xBDLNwn7XeLHyRpzKN73cpbkRvjQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-cni-ann", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZmgYs6Qq5UPvxU3oPDu6GMdcWJz7iay6oYdmyAhbMu8AKuzX5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Mc543v5CzCgC9hxm4QxCdTDwQ9tpK9ontZi2QjanKdWh8u1wM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-firemonkey-iu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54qK92HVKg9BNh242eBfMiyznH7dW4Hg4na5dMT5ifBMehYdtF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X4qzShqvofsndRmXUN6Xuga6DhJV6CdicyD2m8JUpPqRCxroM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 259 - },{ - "name": "bts-fernandomuniz1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uANmiXa8VbmthvGHSzRNxurHy6S7dwfSH4C6oy2wEDHtz2FST", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73kWsmwBH8NqRSaFkafPc6td95cFK4yLLy7i6PATWfJgK5hLwy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1252 - },{ - "name": "bts-cni-racecar80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PEFzyKEjWyzXJxyZZwCX1KLtg8YpGcKZcnp9DXuwMS6qtCfis", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7p1DGtVJfe6kjwhSgxnuzQjyiEuuJaY6RnME8hYhHnbzM43wu5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-jb2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87AmcKhf8LYXgLPKj6W31dzYXBqYn9Mwb6ma7y7Vs1cfNPTJsb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5dmJfFDCYmVWbg2opg1LxkozwYwceFaszWdRSrwd9QjzxgD8Yr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-cni-matia2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j2T1DG7UZLs4qiW51EXf6RyjLVbs4fYpznSfsDc48vTb4JFUC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8kJoCyvxju8i6UpTHsBxYwpbKjYFw66zAfmRRr645EaWWsBms7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-scipioaccount1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rSXSHxMuAXeou7DzKHPFju3Yqgmh3PnMTh4cYjXitAcGybrFX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PpXUX2EHPm9QF8qgeUKsHaqPQjXqEeQz9KEn2vVVUXrSCp65b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 251506 - },{ - "name": "bts-cni-analizaa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69z7k6sgrbw75iDyyv1cWumoWwtcCgH3briuXWWGV59Wy3W8v2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7BE75UUU64NmQLHkNLW23Eh6w8mQpx9nsSV2WFeD2HsiCQhUsM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 355 - },{ - "name": "bts-crypto-giraffe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73JQ2hPhKFRzgp9BhsWgn6gfku4ML2wz19sRmSB8CrHYFJmULk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h7dEFXtaJ8DLSesrGLGrscZEzbpzBX6Szuog7rgyPcRET8g9c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7811 - },{ - "name": "bts-partially-red", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53sSnmUNzTSmpZd24gtiZ9Mov8Y5GTxz3oHPSwj1S9FnWvAbcA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mx9shVNAtW9DLeQWppdAw1NBEkFooRM9W3JpPG3XpiH74G7ri", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3725 - },{ - "name": "bts-cni-torq1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SZkJob32jefdMMuPmLE7mBTpn4qw5Ca76WcwiDUbF3QmuwfiT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56s14KLc5tKAdWcd3LnxyDj7PosuQpMTDcbbvKoBkCGFA15F9M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-bjj1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4whpB3cnrEu1NiQU4mJKHwN1q1Ti5CYw5hmHbq7jEF4f315B6q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST67ArEgT9M3bhXKBr5e2mDDHcrbaJGHZwF8EtyQipMTdLvkEoBu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-cni-emtaft57783", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zySGw1sA6cNuoBofNzLvKcFvYB1CM3aR57GM8n17xS6nvnXKZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5kWFGEsQ3HQvffNDEuFdf1mBpBwyAggkMiYmzQzQjvGqGh5Kbs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-ilikefish-main", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6A1uJWEqfHvXCzNwBWaazTUaGnyryqQirU9P76bn5uskMxTT1M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST698Lm37T7UaHsX9vTNwnsb2gwDtzTMWe9cbDtkHgRumj6J7NY4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-trstdsctsmn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xPxfWqfUF47oo6G8dBU1Q6QyNRpraNDW1mvdtcCAWwZ14cAnc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6aJ7LEPHhWQJufFY3jVia3DzmaRvTRMrgcmz3rfDhyKZ62FNLP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-maxlife", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uAhrRXF6yeFr4iVGHhaReFtgi2YFmZ78Wc1ruBkfVJgqpthmT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5CeYZYkqFsHnUeXGVvWwcF6pmWALn9tL2kuHHJUWFBJe5sLzav", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-sunflower57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bienpu5qeqWhTAE2Vy6kV9PKx4oxQ7xTRnMzbrcM5XKXs5A6v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5axcGnzE51eMi44MyBtZ3L7TwmfuTP2rxUzNSHvVWahv6mHz9C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-hellobts1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jiaCTcy1gMRWFsvpG4bef8LWx1unGJziaZ1uXWcuJJ3j2nZ34", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oU3DNap8fudw5Pinkohqpoe7gioL44biDjgrfhDPiQCE1jyMT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 327 - },{ - "name": "bts-sophyegirl2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QGeuUUR8hcWB5QuD8HMfCfuC1JvsqpvMTZYBxpM3W1wb7NDQc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6FTbUjsuSYc1AwWDhqi5aazjS7NKtAqQv9VfFp91u2dn3PvnkS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-rani1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56wFJSGCXw4qVHJd4jyMGLhjemQvFVTG81dJc6p73ycmarg4Xe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6TdKPEaenKaNWMtDrS62cDR5S3hqRrJULXojJyyXWfumvQyoXm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 402 - },{ - "name": "bts-cni-owenk321", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eYudKAsLQzyTw2LMgyJyCEWxZ9DY1LPqNmchGgHET5HfuBszs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5hQXrbfXVfCxCZqrERrhxuTZtYQuHNKEudcbEzCo5ZcZzimsqV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-clapper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RGhCsbcpmRSNSzRdv6Q2L4JfxwAfSqrK6vZbdZ6EKhJeJBCn9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST621MAzFTviW7oBSgt4w5RL6gEWkidchUbmB8kyUDFWfn6LdTjU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-han-feng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fFdHjDfU5xtaivAAd1gTnyeaLpRHTWr99N3qtwzeK5sLLdCr3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nMCyrDBeWbiqrmUQKxKevSjSaLKN6VPvXs7NBANneRBe75Ujh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3915214 - },{ - "name": "bts-oo7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LfQTWk2pk87e7jQCQD6yT7YxBGzsX9N12VH5vk6VqFjzwadxK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8C5N4oBXKgnge3dU7oATXymNqCm4CrcHQeUBrNEKYnGF8G6931", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2946396 - },{ - "name": "bts-champion1036", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76iEzYKg3XSMtcYmWTRqieyTBeXqNCcVFBRvrpN8QDjkriULf4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sHyTwdCC1KYxKQ1kYoGCNL5CBAAM48ewCHNci13JCWYhtdEkT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-cni-coolguy1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jqmchNLFQUrqFRvo4S5qqEWVCWTwxFVDrimVQd7yxb1UzL3JP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8cByxruNPk4VY7Wb91ZxLtLXSVEweKJawTitHZcGxCXMNgfFuj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 402 - },{ - "name": "bts-tinker-bit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EGBhC7K2FV9PFt7xE3N6eubCtETA2ELmGwTir78MVpT5DAwk3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71c4Dgs8aR9J2xhugDq8b9p8EjqLhaaBeVtcRSpKmKGVoCBkEq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49 - },{ - "name": "bts-whxyswb2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g4WNChqeXbRr4BfiyNsboAifnoomBTReh29e3EXE93cCjhjPy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wKAEtiiW8Wj7SzGsRSSLEHaie9z5bGupbqWPKpNUZpD3zPHAw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 843186 - },{ - "name": "bts-cni-kglester", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST835NHTrqpw7cauqB3sdy51xh6yNw6QrPxdYUNQUt84QYbcpzw3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4y6DCssXhad3jCxbhLEKgoGKnoLfaHHrv7XW7QGSKwW3bBwv1X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-shaddai1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uMq43jB3uG6XSHp78J6XfZenhtShmQvJgdveHLR5viB2nuqRD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST76mD3VpR8yXMDmUUHPd4G19oEPcaYYWBCkvMyGtxqSgVdyAobT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-champion1035", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85mh5eEN3nsZojwt985CdeHNYV6dFwBbjtNu1f323oVqomaaCj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7jkw4kr2Ja7jHpnuJ2NN5mQzuJgXkiis3wUGF2Xs6xPwYBC2eN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-filemaker", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qPPRiV7XQvWG6Cx4KBJyW72TbamzKhfXXRuxnu5rb4tkzcMb2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST53Ne4t2YdrutwUX7Qq5epW3DUpepvcyw7ZwSHk5HuEU1rZPWV6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-woochou0413", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-woochou1", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-woochou1", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 185 - },{ - "name": "bts-guster-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L3sfx397PY3rCioLjPafoJSbmkfGiEpDTPthKc9dGy3wZqTds", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST785z8RmQzfdMG12c4cybbApU6UipK5TJkToxQh7uiYbY3HV8Yg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-klm-22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HRGxTXUgMVajn1wDUsEoT98wfkKo4puh37Z72ioca2EpzQvjz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST73CKjyHrDWCC9udPYmnUvuhUk8vC5mos25NyLTz4271T5He44C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-bill1950", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y8dk7oUeKhZVXEpVyWUetYda5yNihhmgrM1g5MuUF9iazXS7p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FvCjKWnARUjf2TfjFet9vmdW9xYm1V6V6fRi2Aezrcc3PLBhE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-disco-tsubasa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8igKCMFMrxasyVKsW5Pf1PjtdcQ4HS4R2HgadoiAtfRY7Ksyhj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uk17tUzWLT87zHJsfH4CuNeTAJguwH933JxqVfpzyZ1gwpxaW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2014 - },{ - "name": "bts-ilirkl1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FSSTjY8y7CcDjEY9nHht5qs6xdMHoiNWy3LPH2mU6HZVYjxW5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zjbCy7duf9f8MqxsRDRXRvYv9GYoGCVx9RDsb2pxuWjgncnPn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-jmsh2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cf6GSn4kfFtPGAL19NWoNn7GyAjDPEpStPj1HF5PPZDGGTbVB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST564upG45LGRxVQa8F3JDKgndT6h2UkRHkwYu5ene9EHjPGLGpf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-casey1a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tuPYnjK6jbCaTisc8YZydopqTaraBqc7AM7D9ZkGeuEaoBZzc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4vozU5XrktP5MMasYTNpxAxWaknKJhG4Qp3LbMmuVNyY53cWdh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-cni-pad1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gRTaca3KSxncRHK6CxnfTeLSanGJ3FVr4Evxz5QXJPoGUczLC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST741c6YzPK1N4tsA2c55bbQBUqquJbomCrs8xAiEKp2P51hsc7M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-cni-clp1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bZbCA9VkgYVbefdMBcorXxAwCHKMMLyREhF1LHzAyG2JMpbyJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST559dyg4v5i1yjZdMAGg9EwifEbZY3i7HiZVcruaCTkDEfGFvMg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-babje00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cqXAJpnPt5VYJPts6uWU6SmVx26wvPfSi72KWVCiBkdBhpkxT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XwoYRW68zWooszhNsFsAVGa59mLggUWJkW7i7x7csaH3TxXE3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4109 - },{ - "name": "bts-i-aesopspots", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cBZvF9uNSfdJhiaSdiyhbGQhYAd14vEhmcUVRid9yVKBx5rw2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54UKXo3vq5sh83SSTPMLTbFTqzeykVuK2XXUeUJcAvbPm7ZosB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 544 - },{ - "name": "bts-cni-friendlylady", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58CxzEsWgMbA8Mq6TiyBHBxuXGngR9RhC4sDRqE1ekkKTGxbWN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST61ZqKT1UgQiEAwzGpjkoVfEqHv9NrDWTZAGrzymmvoZMu7zNRc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-shenley10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5o1U3mcDW9C9TELtx38zztRErV4CFb6ALVKyroBXvHGYN4h9KU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7qJDcC7rSRbrE1QDdRmGsZeYFbJHkKsXkfjMkMX8n37tT7wyAg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-lance2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TZwZiCiVLJNra6hN54Ekj4ghvUdcTdin2kn1F3Dus3vdWR8Hj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST55iAA56w39xE8m44TrfzsRd8jY5NNBh5yVdRSHjBLkPeEnH6qG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-malkluv2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CaKx6sWdQGDouzUkWx6MBe7FkRsdnSKHcn9PJqeNSjjpfpACF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6SPzR4KVnuzCMNQ3TYq4zAxAvZg8ASYX7KiT9ADYPyqQVUFW1c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-tara16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85bhbeT2vUw1b8VryPfQk3xMWEY6fEtrLKKvY1Y3562nxWXhJL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Ff6qE1dZ3FhATPJp6Xkmy47FMw8BMnPgF3iYCYpMNrKbWCRCM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1198 - },{ - "name": "bts-cni-kita2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AHsEkS99awRjDEuXMUmVGCv49zwtTP2UrfhmyoKujg2BWmAY4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8HkHo2h2eTuvp4KbSVksSByVVnwRjaFLWfgv3RSzzWFwZwnSSK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-justin2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5k3zbAV2duXFXLQwbmHm9pzewBgNLhji8udUYiWHxVogFhQkPS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5A4Xc3fz3jZZCLeXVx45AVfyRyUKTB87ayvSpAGgrB5Kij6Se5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bigdaddy2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nAHWyu2TCdKNB1VexMMmAsrmySaifVjkRqf8WrrZvq8o8xcYw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Q6Mbu5hXMEKgw6USEmksYi6pcGLV85uY4pbb419sir6XgwFaG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-trae2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JGvZovpiCDGvv7UUG4RiPMEpskfsMF4kmgRrjPr9N9EJVAFMd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6HCyor9Y4TpVXWq5Fwq8un1b595RfCrcEkSaS2teiFZxMvuZ6H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3004 - },{ - "name": "bts-thedaytona1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uJEp5w6JkgVKAyZthncWJk18jUtvNqri9qA39xhWchWADJJsb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55txuETb18ainntkhe4bf1ks4FVSEzFSmA79HDAXL3RJUK9qjd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97 - },{ - "name": "bts-cni-buffalos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74Hv4v4QJ73EKp8vEKjHfwrMm576MGrKX3NfwLhsjwPS5k7qoQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Ko2gtzJYLE7gbB8MiaD6XPtg7iUVTiQqc6WqjbLX8XSGUySAQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-treeoflife15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iAmdDD4HYCwKeontv7uLSbjGa53o3UMBBCViSdGUYZJaR6QNa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST62SjLAQSVBmFYSc8cCGTzpi6Z3uSw1LFWzGFwR16YCuUNFpuNq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-emarfund877", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tmb5ABRSRK9XoXjWnAC2QmViN9M7F1FBkHCxutBsfkdZ1Xh6t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56gv8bSL7pRHYUHTyGHY1qwkZjT8gqfepmBeU1LKGaC8vf7kGJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 914 - },{ - "name": "bts-bitcash-ll", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SA4T2Zp8wyqonisJ9GxNBDKXUUBfr6DAeoUydCfmm6RaXxmt8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5U7pdYdPixv367rgbfo4PrU5FjWGDmYFuuSWfLXjX87q4eec4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37625 - },{ - "name": "bts-lpss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HuzP39q72KvznBSZR1PnEqs1gnA1YAS8ytXMZjEjgsUtV2J8D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UHN12w9euso5Uh6ouKPNNPGyndGhEgxpkV5ruqa5NHo3Sh43F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 712983 - },{ - "name": "bts-corrie-peters", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LuxbKzdDngmQYj18rDPQ5XvfmofwwAF7BzZWyCPnrPqYTYiTX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TGGpQBAhMCEfXAVCwuR7ZnDiL1ZQZUDeefgQknbPtvUvHPKPv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-kimbasler1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QtZRDnnZWD6emX4Bv5qWQDmSzND8eYjdodWGsyjk2jeHgkgnx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8gyR29TWNcauU6ZarLpfZDfUZFQNYDnndPTCvK48H9KbsxxfNC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-fillbox", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qRhuoqgDV3A1bcMY8LZp5ePGc8L8uaawjTLwvBr3oWSKPrxPt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8BjNHK52i5RYQ4YS8j1H86ZbZo966fw7aFgKHM1gAkQmxJ5Ti9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-cni-poppopcraig", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6raRrd5jhpyoZPRJemAnD48J8mNTTFY3fScFMmBXxwBi8TQ3Fe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6F3J4gu5MYjfAdoz7vHyiKGTMcoK7JSXsy2d1kVdjeGF6TfcoT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-lepnlily", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UT2TxnJehdfQM6vTS8o44VWgDKxijhtSoJzK5uvihZyzz8HAR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5wWSGhjBFd7Nr2dC2p6HQ6fTV4YtGDVd6jzJJYwUAyjQgU3wSW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-ketchinglai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yyfjZ7rbZk6LfVjNixaDghhYygm6WMX7kR9tWpNXaaTJgCaoM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6LBJj7QhScL9QFzwfKX8Kku2qFiX7g8FxbnxVT8wVUdR2ZxUv7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-moonstone101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mgWSFHM78xSrWsd1HBnpPSkxjhUHj3LxkKunsgDoUT1ejx8C6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dbQuRSSStHwDSLD3WtEgesAQdKkj2hL6KorrwXq9EdHg9Fr5J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-cni-infinityplus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vm6BW61Yyk9NVmFPfECbh4WVMKS2oDjzJkqfekMNPRrFFfHsX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FL1CxCsoSL2rL1gQTnmarT9QaPVzjFexA5QefnBaGLDAVLWZm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-jankonow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HQzX5Pqa9yMQh4Wck2NcoMChVdK9CxQaoHcEZEDxttEadBoqG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7xG9Brwt3UXSjHbw13xBpK7ibAmroaaHKWxuAGGZXW6tVTt4TC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21 - },{ - "name": "bts-cni-freespender", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LhSF1XqG3BcsTEMt4Q5VXepJAXPrxHRwpGB4mxETAhpd355SP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7rvfbZ3YoF56nr6ufQnSUi2oW5UrEVW5Mfijtz33gfibxPxRMi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-ffleur", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f9G5MWE2B3SH7GjzRVrU8QKu9EQmUFR3aN139HhDju2wWsRUa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8gYe4MCAVY7dFZG4D1akRi6FVgh41rAe5vAF9F5ouofMjENiS6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 166 - },{ - "name": "bts-cni-wairagu1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F752FCzTT4dT9bK1d2Fnr5rRRwcofiRFv9PgqNX6UEc56kBpv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5DN7VuH1qbdEzuR96mbtiupL4QeUF3GQ2z2a1R6X1XGzH9cmzs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-joshmemaw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bZa3Z94T1FWeSucK89gQAE1Jeacex6thDrAFKmGnB879YC9BL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5hQetwud5k9JwikX4mRSzaUXXiKQV2H2mTJB91EPPWqiiurJQU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-frz-me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kG4gnRvnw7oHKm1TSy2h2pSCxAi6LuMWHR6iwXU5zJoDGwWpb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VH4ppqxizrCHme8wotPMgbg3rgZjtdin4iJfpuSYFjMp9NUWD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 410380 - },{ - "name": "bts-cni-aottand", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VpfjfJ3c3453HEr9MFZjjDuWpQTWijvsRsczqgrgiaGcka74K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7YC67Dd5SEgLiuX8uryeSSJ9Vamqmixipb9oBxwmB5omjjoHjk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-cni-gohguangoh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XafjKJkNHe6dKdapbxPkCpHmhRdP5iMxEKRFfHVXrNSRETLzU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5MGtUkXBx2shjEHvxukJUieftRHL6aMfWXjoibkfj62fzMUSQy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-as-df-gh-jk-l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74ZJwAxZteooa3JifGzEdVp7qez7cMDSnQdrsucy78vXBEXoae", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h27aJCUNf4zHE2mhmt526k2gb2KDfgAd2QtELU3KdvubAohAF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7348 - },{ - "name": "bts-ccedk-hot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YBGnL8kC3j52553yp3pH3jmG8Ns3kxPhb1Z4abWjpmc6nEMru", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PcJWAH6umkXtaoffaitUubwy8m6LYwARoYVazEd9fz3NfKTL9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 168 - },{ - "name": "bts-cni-evergrateful", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81mFY7x6TT8bC6NXeCR5JQ3a1ynTQiT6Lte3WdVFej2yK3XK6N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55DbwhVmuCLu5aUw3p99pLd4oJqm1ebZkM2JoHpnjSNXNBrcQn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-satoshi-pie-redeem", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oPkDytPp62ZYW36WjeFCrAtD2wtdkES33GoNSZE91d2QZ3pLs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST559JfyhjUvS4SLGKsE7qfYs3C86g17WN8QDb9CgDEVKL7NwWQ6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 158 - },{ - "name": "bts-cni-subzero010", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hHcJh6mN3u3hdXdEcaXSTgTJYHzwJ65eMTSTEHgT8886ofkYJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST87M7ymtX67KPUF5y6JD38VnUEiBCm4iP2xESnox5K1moGPCSnt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5843 - },{ - "name": "bts-cni-nubian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TUs2AJsdc38dx8C3EcXDBcL2FKVTm8UWnZBqgLMpEkBqH2qxU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7KozhKJU7jR74Fc8gjsbxuqYY29f5zENSxrdUeP7o2KLFXcmY7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-trader1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZGR4k5LKTtSrvuiHHejb71chhMU4rQFw7ckkYnKyGF8pGY6WY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5UbuNrAs7bFQYqkwR9s6XJP4HokMggicbcsD8G9MBYp5Rb7BpW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cnii-tonylac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AcQiq5vjeojQFJ38PCMuMqzZB975tSa8BejmgrXFoKCcPg91x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZA8S3nkN3ukJSVPfXKe2BBZ9DNWg3QgsjX4iPLeAjjXRcAeDH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 751 - },{ - "name": "bts-cni-marcart2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65JSHTCzzXiiU9PRSQw2XzqJf4upQv5cvUb5Ge5GmpT7aQNGQd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7CvdMRPHSLQf9qiNxfTYk2UF5ixqivLc1Ydt82V4Uxzv84coPS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-blst1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TAG9rRqT767hbLhNhQtWwyzMkXUVRB2sccoTGUCDzgWKsmmfM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST89Ei7gmwwNqXnwn48B3QE7oA2SQTPpmd1R3pzwdh8CxdfA2syV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-cni-parisio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75U3Z3fBrLDGi2Lp7vfWS9U5ARjUcsMxe6Q711VJttyru7swfy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4v4wYk8sqZ1VB5poBPhq9rXcVALDdjE16ToTWjnyDdRyUsuEnF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-jangel", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aLJ7MWQKqe4s7QUtNDRLFXQ4Cs78RRtoyRUCDeiQEbEveEUd1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-trade-ceeds", - 4 - ] - ], - "key_auths": [[ - "TEST6vbPYGHwyR1ggCePD9TQGE9HiuVZRVi5rxXzXK4oKZ5pWDryCY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7113 - },{ - "name": "bts-cni-buffy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SP6WUgjNpxtZb6LdMCVvxxxT3MyY5HuPq1MdhjX1CTijLQxP8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tbCrFqsMeQ4gXwM8v7FMNBayXo52G8vmWkArNGJKP8MLLaxey", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-tarahutto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wwtWrGua1gzVsAFjLvQSWcy5kFmo6nXfTvfAMLDHE62brfrcF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Ecm3n8PpTtPZEgESXvMR5HrVqBV4fbRPCJ44qPh9VYV6QvV9W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-fun-casino", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51zagEaJe5iFqo8uJDr58JyJ149nVrSsKLFwQ8ZPeWt17FHN3N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zk3N2zfpR9gxRDzpU3uPRYsPXHQdQL4vyKF4Eo5bsyhZUN95d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 165 - },{ - "name": "bts-cni-gift2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BhG3JAN3EMYkGZ4XryEe7GYgEgP4rTeT6DMAptcxGw4jnSn8K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7kDeZMxzJw1UwJeAKa6kP9ACTkX54GTPcgQ4dSXwGVLNSBG5Zd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-vollum-c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mTPomofHucVX7Cao4b4qKPyREDgxV75kQPWRy4WQgegxAdSGF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eWsFRUZJbfv6VGrHLYySqhyLRwygzWKVfANmKfukX6Eg3mSZ2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3538697 - },{ - "name": "bts-cni-farmboy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Yq9uRB5H24ispeMFwZ2Mgw6sMEwQnNYf1yeAkjr2FkymmCMDF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6AvpzG8dzDqo46ea1TnZM9JzHbynVdFreSePAtJ3PGRKwgSboF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-freebird10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QXxKxp2n1fZPLov1zCfCr5uDJv1GW6jF53vAVhZpbAk7E8VK8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5xKAiB54VR3Dqu8ENkAc4iWUHDr1Zurz5Rgmptjmx231Xet9Gk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-usucceed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NyheRrjqxZFTMMQqLpa4KyA7wrdCtn5GaAdcbS3ptdEWg5mxz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7pA2cnUWhNGqiPYz49W3YYDhDbxQMUvyCqEwhxdJVQbMfWAFuV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-ge0rge", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ey6RHAqDCuKZxHjdt7dpd7b5EKxCpjFKXa9bj8tzvUKP42kuk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JYs2qqh3JRAtAvg1eGFSpzUZ5oAa2T6kZcAbK8Uk56fxkLJmE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-kensacct", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6F78KTCWQmBrgLVGiRpPDqvWxLhB659xRBNxJ9oFsDUmWLSDC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST83dRPtvUXXew7TsuKjyY843yRLSnRWibXdmLfT5HsLaAN8MWkF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-imp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zNiFgpQfeMbBqwvRxTnHUg5gThs9f5KP9MDjgJCoE7Rnjy1Nj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tfdMY4oFTMMhP3k7Wgixo6R1NhRGkxe2St98Ncd5S6c5rgxfm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 166 - },{ - "name": "bts-qasim-memon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GJ6KUGhQLFb8LuF5Rdu3dt3uFw1X3S93TKi4ca3BSh9mpvTHi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GJ6KUGhQLFb8LuF5Rdu3dt3uFw1X3S93TKi4ca3BSh9mpvTHi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-future4now", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jAfcjdZQQnbZyzcczbcjAVbJiKAYkoBCRzWxxV19g8ACBp2nV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rtvfnEgJWzos4GxE4CD1eUuRith3MvpoSvxawTmZio5HHw1A6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 88843 - },{ - "name": "bts-h919h919", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aUaaShQHquZvPuXvLsAw83iaLuQdKWkrbo3rXer98wknRzLnL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66QRcsjJzVMyc3LnYfLvKCmjpFjPzbrUrsAKhVE8rY4FhTUw44", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-sm-bilanovic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y66sQSSE4auHEtrvn1szqL8XQUYK2Kuy7vhivpahoTa9jPiFE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xdGVfXYnKdAyNgXYu2oJnDKhjxRG66SafWdrDSXNRRBnoxdoY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9430 - },{ - "name": "bts-qngshn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gjS79EoX5aDxS3MF23prHZyXhUnNovESbxBid6iY4BLHvMkp8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NiPfXdmaMGw43j1UhXoBSYEmPGCAYSb5XYj7LR2VKt5z7Rgkz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2402680 - },{ - "name": "bts-ccb1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xy5JJKHubtso6ENx7QFZnRbmG94egQMq6xHoGd1GgbBH4PRyV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TLV5QXFjiLcb3kJNRvMNdbmvnwfTaEFwCnXV4MfD9RSM9Y4Q6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1987 - },{ - "name": "bts-anette55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5S2CE7LoMsjz1hmrthCHGAhhShHPSZ77nCbGRs2Z1seVGGm8Vw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8eqdPE9kgXdCnTz9XjqPjdrMVZ5midvhJ8ua49b1P46bZigumg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-cni-power777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oQdrFBk1AFECXGUwSNadAX2khuvrq543Be2UoMdg3Enpj92fK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ceqwnJuk1pwTupgQAhKGukenUX2iSCmbVT5a6kBiW7vU1c4mQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-freespirit15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75QQoKt9ZPSgT4Cdqrj4hGAFbnAYuJbEmdyNv5DsLubn7uwqP4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7FYizdFzubrTA5hh4JdrRHHNP3TpEwg1QBcZemfDbdv9jYzwQP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-coin-enthusiast", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MmCcJzzp6SjMC944suTNQQpYrTULWWHRszGNKRoWtJTUg2epY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JSMnhXqtjdU54PRE9C5LAHYMFroTc7Dwuu6GRspKEAUtqmDaE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 193 - },{ - "name": "bts-cni-power7777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tCjfm4sL26DJ5B2MmxPkCsWeNEmxsBZJBBmKberWqqGxjuZm7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7LmUVaApiU9jrDJXRZaWeHApWkZ1z3rLp7FJE7AF8wyYsBqtti", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-pamelajean", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sXiAWzfTZPLa3XaGgK6XM8CKWxvsSCguF9ujnJFXg36HPdEmW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8YhX58gLeLat98yC4juULexHVeVZzz3L9eLSwH18UzU1tXawgt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-jamesyucker1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X79Qi9Y1wghd6KW1h2Rv5v28z72YJHwWdueByyEmQnJaoX9DG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cQj3KBqyj8gTgNae17qxeH7XWEmXHXrMTtLmPXTxJdJwW3DfG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-dominican", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ycTsob7aEoBozF464LrJVYKFLTpazf3HMRcULxP9Kxypsp1mE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6spLYqouJcf8ERRa8NZNCA5kChaE8uaE9XYKvzfsrgZHGPqQY4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-otto52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RmUjBYw9nGMRUCdvoxHZLjZLQupaMHBSSmYMA2gJTKA3cXiLo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7PEzTa78Aa3wqcdTrePZe1SYp6mdALYbqa9JjmjTiyou8bfDw2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-flippyfloppy555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uzP1VvTdKJk6Jg5sd5oeJJRpzER4GLy8SJVSUG2t9s3b5CS6s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dZdHKLUsV6WEeHkDJ34rZqj52EqvWNLvSiyz5s1UfsbT4XPsj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 199287 - },{ - "name": "bts-bits00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XuVWrg6VA9RGCJMC9GdqoGR3a1gSsEho91WJDtA4U3Nt1iBqz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nzaMN6fnULDVDvp2oSr5nXerLgKHzCWFjSwpnVXxv6pYEcWog", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92521 - },{ - "name": "bts-yl-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ne8RmnJMRHDTW9M3bF9i8JWTKfQamdZMdWdBeqUQyrj96Ps6N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fupHoGeQv7Ds6zPbJSjjjpa259pxXQnW2S9cCrPJKfZkM2L8G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-dai-168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rjsefqy2RKFz9QKhQMkeTbqhQ5G8ihgXuFu2ER4E6JJPcTh6R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uV47Lat1rKAbE6EU3weimLAX2heReDeW6cvQHnR1dwcDjgiEk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-abit.distributed.number1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TdadYb33tzMn6AyWcWV2wpsyFcYx9z9HX2Yq4YutL5u6PdQpH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TwKc13jHw87CHqWNWvhx7eg9ydhH36x4xcwmLsqo5vRyhKJAf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33865 - },{ - "name": "bts-maximo-kde", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uenmWaNuduLYaKj8Ne1iVXHopp2S8cqm4Jf5RCfRduTWwH9FQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XHRCZsGHRhJVwkteqdyGWcN6ArXLZZqEWDF1y4rkVrEEcYrbF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 152487 - },{ - "name": "bts-cni-daddyblue", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST516DuARWHKTJgtieGqsBXVzySPtKjF22zjmhZW3ns9RszagAdj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69ED4YW66g14MbRRqpkx43FrDUdMyTGgGEZn3i67EDK6etAzsr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-cni-heather6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MaEJkijH2NNPAyQh1321x2cryLJQsDugxMdmWa9gD6gUqq9ZL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST75kjZH527FcSWXZGbzFEwk8NzUFoFRUBLq4LFcti9aB2yRgGES", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-farm-wife48", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RMJzoD9rA24p52BqcPaWCzKtYQPRFH7xoT7gvgiKAHPTP8z84", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6kmvbfxHr3CwjoikeD6XnqmgEZ3t8sth5b27GHhmtpjqrR3h5b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-de27june2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iYT4Zn7kdt1TWYX77Mj57zLM8cP9Tpr3RmA6aRv9RvdJQLs3R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iSAtcProemQNpTtRfcoXhHkjcvdkF2Rg5gKyx9SMA51ogiiEh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18729 - },{ - "name": "bts-cni-carver", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WNKsp8r2TNEkN7jiK6b2Vu235qzfLTqA7KSACBekyDofW3X2e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5nEkDgWXHr3EAcdTf3xeTpcVa1mxdRqyKAjCYXbbGyJ35HkD3M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-canofarmor56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gugf8ybBULoXZwJJe6cjzxdsSKw7ygnr6abLDRX7qqwvT5jEC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XciARVntTGJTR7DWWidWWcXfoGVA7s3JdWtswo6Hb41VJ5uRb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-mazainderan-7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T91fpYx8uzPsfqCtQNVg4rNaZaKGXbHgz7XcHQPNb39nceNqD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51XszxUq9QxWmRkL6Qjuk4xYoSjySyRaG1oRNX5n2hUjjw2iuM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-ico.openledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CJDbRv1mrp7zUsWiP6cWiajyPbwQ2qFTrUxDiE4VZB9ximQW5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KnTNsh3v8Yret7McCSnX9eEeZ2qyurGLT2DCyuctWGBXJEWgs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41346 - },{ - "name": "bts-baoisme01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cK9MRZnrmgGS5T5thoCjaGHVDJngAS3APhbwdkdWZvbtXuv7H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SVgEk5WA5mqeeVzMfpwbaVdYEQsvGpNJQs4P4UguHZ914Yb2A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-mgbkth-d354-kmn3150p-876-x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oUnW6qiPmL1pkPQs4yLpaTVoyHo1SiC1N1caPDe3i4MVxF6f6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WFRHHmYPUokWXoKnDVCKsrc9887KR8emtEuibihVfxX7584Jy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 302133 - },{ - "name": "bts-xgregax.cx3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sL72Hrdfr2iz84hu1T3aM2RCNsCp9rjGvWzz3JtDJqr5wTAKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dha7KpskpDHwsLgHKfyREsPzXc1pY3d9KD6kNaPMkQry6a5fd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376289 - },{ - "name": "bts-edona1988", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QB2ojvHnSmzBzEBwNrqV6p7fy4GgAHkWxpWgykh1eYkJ6thtx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aRXAUU8UWkDZrxbjYtwj5fmMVNdbS9g4R3Dazn2BQ9zjf3w4f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-edonatoqilla0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ShCeRwxVcAi9emsvc3ke2862yKrmmL88zqNW2VhHXgbgxa6pQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nY25mhAdGiAY2ytnsniVHTsn7hpJhCLZPoaxcev2soMvyx7v4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177 - },{ - "name": "bts-miamarcus757", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST572jeQxGusYrj97xCfFNRxR3dQPNVfkEU6wy7rEm1KsWWeVrsz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7rVHFgv3xe9SUUn4ENVdJ2DymehS9Yu1SeYG7TE62vkCfEDMoP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-deloris", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52w4FSJyb7YcYaRc6ewMRWHEct2YbntdKgvDPXJ2VQG9Y6bXLT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST81v2eUg6qw12r9L5ahVBGnbtaRbhca8XGrUHsaDb2iS8N1QiKb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-moonstone117", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81MJvAGJJoN2gHzpAtCmjbmjiB3kmkUJLcXmJav95DmCkxtqsk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ByZ31skHK1Sh7ZrgFhnXjTUF6hv2X2ZEEP9GUXeH7pumipmEK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-cni-justdooit1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ep5a87xXNtGUVLRd5pDbmsgbp49R54Ee6yFuinWXt9cvHG3YV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7LdgFB5wMSexT27ahCqXExfF7v12o9jSXVWaBEvHWyhxhTk8DS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-raheem972", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WC97yKi2MR29owQFm7QbgaNLdHqVi9Ah11JLgM5xs115Y6ddf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FMWbZpYU3qTGd56ZmU9qdBvZg4ioWfUtX3tvHbJ8qfQoh8ZvX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-rg33m43ffaeqdrnk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FJJVK9qL6izFpNr9CCSKsSFWzPCattMwUvJkUop6uvPKgRWtL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dmbciqvNAR7CGDJc9YL7mcfNKEwQx9cHtj47E5RCXosUeD2np", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3119135 - },{ - "name": "bts-raeuih2016-05-27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85s4JdmV5t3pSSCsCzwcMYeaoX7XL39Zs7h95CSEPhJLArDF4f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VqKMWGBbTmhP3aLeM4r2z3q3LWWWna5v9hZufAZF2pJQEpi8N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56376 - },{ - "name": "bts-edona028", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HzrUM3y4o242Db6x4u34xV7A1GhekGTx2cvhEBauGzyueVQcp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h1uYFrjM8bgxCp4mKdaiFbnqU5bfVge1CqXwSYHFuZZ7a8XPN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59 - },{ - "name": "bts-edonatoqilla28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HWwsXCAr5rYrj8DGurBQQPiggW1mXDuWAfLjWnQzpU3WiGS45", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qxurCJCznKXHmGVnt2uKdHM5JRcij5qX57VwuUu1cvYh6aJN9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 143 - },{ - "name": "bts-o5pe65n6le37d45ge7es9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86pUSZsUUxV7FLE3fpCyzXjFAbEBRwajbDEYnZkst8bqPKZvzN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iZTc9Edwo3yhBMBNNN3rajdPTDCNpTAsqnQp9M9PpZvYBmZkY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17826 - },{ - "name": "bts-fihtre5-334257", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TJiTpQjVd8Y38p5NZAic86TVAYrWyPfUHhbakSvhfwYB9g6st", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FFiYnM74R6sEiG5hXkjLKseqHomvDHLMZFLSBrcAxzHrd39jE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169358 - },{ - "name": "bts-omarojasmolina-19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CHGPEBHdBTacwWqEyeWHHEMKo2T7SC1qTnFSdezxv2TSEMoLH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FUqKPjWKo4EF72h1dDx8DbwA5MXntx9Yw1x6mcDvytm2T4ZkQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 232 - },{ - "name": "bts-cni-texasnana2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tZ55YbGHqSRAVfrFyuUnj4Vn47q3K3nXjFYaisXRJXVWZV1ww", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST85yzc87Jr1voWNgCySg8nxtJa4b37ATABMKGfLRxH6RhWhm2Pf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 383 - },{ - "name": "bts-cni-lejen3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7coNzfkh8XwAxeZXdNHSN35MYY6oXyKU5LLdbvgJmia15SN7TC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST75KwQjFjbRsknSLzEMAFspzrZwTQbVqoyNaKbE1ZpKj5Yfk8dB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-ssnchasteen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PpW4eg4jopKZiY1amQbUME2oYKsoampY3XNNWPA1Ahs8QVrGn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4wcaqipN3W4WY7P9ZaSqAEUAty1e5ZYjrcB8gfdx3ysaq1Waje", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-firescout2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61d2kPAGtkZpFCpnDmv6PyyLs4YxXDcgbmhzm3pnac1dNqQ9jm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7kArPrBYhSqA9ncFAtg4FNvdWnYpvteLASteAcMBWZGSmLGPQo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-kobalt13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57j4CXLkSBrQdbtnKbFGR5HzHsx1mKxbbTQneJRcj9Pui7DXGJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ca2i5RYmtohRqCHJr7Xeirvma1CxqeBBNidqYeSm3UArcYe9y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 425617 - },{ - "name": "bts-cni-lutricia1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TTzMMM6SDf8shfax8ggRPoKtGgjJ7NVdN1m8SjodfpuhThzR8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5gca39CFDVMF6So5kmu3EZe51xbjMdtnnFbrAfFZ7krZs4Q1Rg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-sandyesc1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mCMfyi19GHaHJnQKNo3phRKYGKZFkxvXmnG3qMhELhrPUSZwg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8cq96n51H4j2hi13Q3mz9vRHMFKEunjuP9guyA6nyFfT5JqZi9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-easyed1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aFJGdphkLpA3SLF3NrAVmjXRE7kXLnzsrNX5MrntauiT21Mq9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6D3BS7sjpVrdMUvWkmahGtGEjLpFufxSsa7V6moFToXdyvCBUc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-topflight", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZEQWqSP7qTJYdLgSoTaX8aYWtpzULYCuxSTdvLXHMd8f8sUJN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Q9qvgtnAVLJMmnoz4rYikpTHuF1eBLCpdzam1cosuxDGyaNmL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-m-gaumer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST534pySYBqJLKgCWJXgfHY7Mtpu17v856hZ8Q3AecVNEq46tRdZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E4PSJ1VqbxMxm8VKs8Xpak9Bhn8dbs1pxTRAh45R7GHhTcDfp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-zzf457", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64KvTstinFzVxp7QPFPZMg1o9CvBUnJPQj697LrATdPuw21jvj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zxdU8wUhJPYKp99gTZnr5X986bKcQ9XFTRrKeHDHL5zNF894f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-chris4210-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Bgg2dbwEyimS7g9aAVUXZ8MuBphnx2xJd77DRJFTJxa5XrTQW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Bgg2dbwEyimS7g9aAVUXZ8MuBphnx2xJd77DRJFTJxa5XrTQW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36663 - },{ - "name": "bts-edona029", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86EJ2VLPZDJZJYvbn1BkKoMJF93hgM5SjD5LBR6FrDyCHQ7wxL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68euwyrBVtcpL9sTSsYhYnRTvH4nULuxCWfyrHYM6ho7TCh6Fw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-cni-derzaya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HfjQ4ArizLaQhrpypr8uh2xDrNezXFZYQStHbx7EVcoTjnFm3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST54ojA7UmVDBYKAZ13k575e2QcK3xy7SGictedEuzRr5Nm3SpUP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-kprell26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P8zfqUXbvSLc9Q5qtJvbt47TWExKFfT2kyosCU825moFCxwdW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DMWUYJFFzJe3XYfVqpxGxRymgyCWbWZ3FhPDd7X663AdjCBhK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-cni-mugure", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8f1A9Nr2td6QZySXiDxAL1x9G47PMz7gokQcHXpF593b2vucQV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5C5zRJWUTdVXn6Z2dm7tGzXaH4wEJS7WLKeGrkBV4ECi8buCfV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-cemugure1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qmucMJGhUWFCrhUubWAWtye5HZyvw7i9YmGeQdpwk3Wz8kNi6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8cBBR3Ezf4Q5wUeBK8aBJ4CJ6dDioiC7Hm8U2Q4d37RMTg2RWq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-success4me1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST545sC6JDwAuMaY2NtgzdAtfePf92pgsSKsCD3Du9SnfeXKMm1m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5s4uusaPgL6oh1dUWGF6mNgG7XmfR8L3Aeu8B8a5eq5ifUsfkA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-ablegod", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79DYFSTr4yDR5RKpvwP3e3TvpEaNB9oShGDrhHrbn2eNMXALP3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6EX9aSMv76GkKxvMwUZPBxmCAPzeV7eneozExRevroS9YjUZWw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-corrie-peters1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5k4iLaE2Vt4LG9uRfYjqYrCAHm1dtr9vxZrmufWiNc5j2VQm9D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6vx7k6EQaX7y769FiLq6BnYTwBMSqz9SaNRTebKtS3P96EN1Af", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 748 - },{ - "name": "bts-cni-lovingcare-learningcenter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KtzSBUYigBxJmLEzWc8VjmsnLqYhyKG5oHTgjQUDMjz9j7RRo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6MBDYydCgg6aY5Mn4VHtDjUjVmMgKPCD4eXGrh4EDCEiUv411F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-cni-faithful63", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L9ij1XotgFNb7NEunfn8UgXfPYvkgavm7vkKivJpaRrKy7wSb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8jJbHduz7iCPpPops7AgCqdMEeX1E4MwerSuEKDo2SSnXJZMSq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-alice2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6en1ayM19o9YTJQPTvRHHfph7aCHYA1QufXawsvPWsaocCoMU1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KGC5tXSTNNgyDs5Wk9fJve38EmJFnTiqXtbrsh69GDkMgKsGv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18813 - },{ - "name": "bts-cni-rms", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QjJgMBBCo6Y3KuoxGMz275hBsHjp17gnKhURXv9npzLa7kE6A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zFi3JocWxnAnf6CbSiUaQT25YfMTZ2vwZEfEBBdqqPat5Ay3r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-selectshelley", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D4frf9Uooxbejm8N4nRYWRmkDkYobCiaY3uBy8tZf8sfD9fKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5W86x1NojCKTYHz98j6TVgVQC2MwxKgP1f4yJ9xeZ7JDyWpinj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 677 - },{ - "name": "bts-keh-tech-2905", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PwqokBesWj7QDUJ1CXUjYB8MJY5QZcL2MtkFm5HDHQXinZ6zR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65Ea5oAzKp6rjgfRZe2Zv5BYPVxyu6ZWojZrP2vfAPihDMmxNS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 939 - },{ - "name": "bts-cni-shelah62", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xsowTYSBTbYHAy2uiwxZpEKsuB3Q4HVciKKcPTxmasX9dP9rR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7NfMzE9K7b9HP1BAJFMfcC9TxA9x3p3s7jbGb9yV7eHdeZFMME", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-no-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-to-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-btsww", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LnupJ3ab8RiJwRwNv5PBwpLTgUJN1t91w78ykEp1cftdvb2dP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VgqVqT8ePVQGPm4vHCbhb3jtdVmRabY7sgxgxpwyi21qhc3Eg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9231 - },{ - "name": "bts-ukc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jYCctGHqbJxTeMXDZFTJXGwxyPsS8QaHGBS6apLteyS1EEbdr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fYckcTr9kz9RHeUYrEc2dwoTvSMXqqFR7X4ZxWCz2SEt4ur51", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-cni-jakehmac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xQ6Z2426G2e4YW1EuhN4NwmK55iaNMiJxoFjqbXvNgRmHtgGK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8HjJ2G7fzjwQuz632u3tNtBNMpmMLtpH9MhkDRHAHRqk1dg62g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 92 - },{ - "name": "bts-gratzie2177", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JtxqBe7cZsHryVQpPUk7xK9JVTwfWQyk9B9KD9tsyUxbnMkot", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6G1yWGNMALPCKx5A2B6sHqaWacHE97gFuvCvY7HBHD1fGGYycF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-fimk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yxuxDivmLefk6CoaLz6KFxJCczpbpi56t1Ma6vhrLbbQK7iDa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iZErfyFCL63BJBn4TcVyYXVuDcPjUXko4bafiWNGd1Cu9nTr8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2007 - },{ - "name": "bts-coj-coj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74Gx2PNLgKxwzzyJo97mPBreifujUdpDR9nmtHyBmjBG3wHXGN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JqpZbwB7y9DzMNkR8WcaxRkjXXvzx9VXXWZRsw8PoLMwbBGPz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-whoseesme12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TfDC27GJhAUCF57SWTmcCSuMG5acvkpx4jvmZM6QW929xp7d5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7exjaKtnFZZz5zQoKKgofq3KwGM7isJwPQihmz1H9FmPbKxMmR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-bt-s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-b-ts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a-n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a-m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-d-o", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-h-i", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-s-o", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-bill1950", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MP3hqjBfmtQuYy9HZb8sAWZ1mm2cJtLJp7LfsmVctTHJJvnrK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST64d9gCBVd2ZJWVVRcxxCXcStre2EsQvQPM1XrCLTNSzd5pqsHo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 325 - },{ - "name": "bts-moonstone3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qv6Xnso1ufwZwh2Wr6nXmCDFf6X47rGSCGkigq6n321yE4GfL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DnEKqq9byuF7KVakxUAwsqyKoJ7jDxXuEsDrqa2YEquKj9jzv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-edona08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59kEsByumPTXdcSjE3LhyZEaRQJApyX2zL78eHG8oGB5UHFvRe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PHNYdH3LMGDdtYZ3uq9QM8T4Bs8wWn5CMY9gBYn39V6ME94iW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-edonatoqilla1988", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SBfRcTrbDgiiSP4Ygxxp8fyKATJKtuEtj5uEZ5nhvQVqAUZyS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qQoDWbw1Yex3uGLW68n8HiBQANjct6GuX6Nf1YnAbRcwpPx9E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-lsa777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51fre7ePNPdJY7K8S2oSujMcatHYPdLaDnAJg1dXzinsJShL4E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7D9D3DwVVb94YaKFfAkP7SzTDmNXbKGku8FuGXxxj876t5wJmD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5437 - },{ - "name": "bts-k0t3kx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UtxGCaSHtxVUnA55aDJ8uEEyewnWm7DrHbJkzdERrFNCzkyPb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xUNR96cpJQFYohjvwp2zYorxGBJoJMC2oM85UqUNQ416SqbkC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1932 - },{ - "name": "bts-gratzie2148", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vEnb8fnTHC33SnJt8dvqHnmGEYootemUj3jVoeND68Yd7RJke", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kGyGRUy4iLevfeFr6hVZtW3nsytSiS9FUFfTVfh6HE7F3gTab", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-nelbom", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57xyzVZVMXhVPHt8oEX6Rccc381PTbFkxM9sRmcUD8m5x6pM5W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST83YfDEMVKoFCC4GxXepojQjhhYy1Xws54bMNu9kZ8Kq7ywRCBB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-moonstone12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vsnSq3udhmHUhcZpUP2HqvxdUhz2Umt4msLsPZr9UHejV5ApC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68vSKnh6cgpifki9bf5uqv75GVsLURHqNNraTqKqSFHbCrtm32", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-qwerty62", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M1EmSbJZrGUeEfbXoo948Ds72d64hXFxdeBJGuEgLZesmPTu4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jZUGw7M3361ewqfGzd7cRnNu55oVbmHn5J6j6LouquVXmFWcL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1113 - },{ - "name": "bts-cni-toni013104", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8H1SuRhpWLvVSjxoHGdte2LmhLCkwVLSUpWGBmDnn7feKgVYHN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Vkcjrcr6adZ6BfxNiqzsQCP6b44TjJjxjtwJxALamJJZuMs5f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-moonstone16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65HxheW6QTSza3yZwdSTA2zY44FL9jTPr2RmhLosJF6XYMdFk6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NBehgH4N5GcCqN4WDtjdiUkoqkQpz3PLNzAVBp1oq6o56Mxri", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1022 - },{ - "name": "bts-cni-livingrock", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bHDhnHRoSm6aqdBCW4dM76EB2YxcZz98LCCazckMPpe9FBvsv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7pzAqcRthueGioXPDPagWTpinLjV4onjHExHDrvK5CESnpNyjL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4100 - },{ - "name": "bts-cni-katytbug3212", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D9dd8vVHUPP1C2VguDbVk1WkaxCZRhBLxhquzS2f6rcLkuaHZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST88whxueZL6rso4vnEoUtjLpWcD3MDfU7m5ae5APDv1uDqg5jDG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-jamaleyu65", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qahLqjBzXoAR9wQtgWeE8TofPcCKHAnBaUZSzjajLe58WxXTo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5a1P3iDL5Q91Uvk1xMaFc7Ds4R4ztDuFoT6fEN5xbc46m1CG6b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-charlie7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST817fu6QzejCYcN89SS4yW6k6wmhrKueUqWp5H526oJbYjjBBgp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST758VtZFH7CHziX8cWDUngPBDz4SY8RsmX1DvFrfoad6vytWwxF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-i666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ousHm59dGFkaUGHQPpHmy7REJLsTUvRSymQYU3BqHJmEa6vSX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dNsmRd8sEVe4GbumgyedgAmVwB7LQqSBVB1YBT4zuSHJFdXuq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-jonnybitcoin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51RHxu2AkT6J1TuEpRMW3Ckugsf7AuDm18oUYtRLBcsUg6MMTo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xdjsws6Dxxuq5Mfy6t5ZPkEcT8QG9v82wYcJH2EKz1razaXeY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gypsy10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JYLbTXHG53v2Dv5RvacB8KbZMgV62oiJvKcNofadsVcxzFd8Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Rz4FfygCarvBbeyxaQ7bhXYf2QUpH2P2wCE8N3iBhV5QeRW4v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-kruys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7w6SAa73HvCW2H6A4E5znN6icX2VpLzJJ7i9DDcPfZZZUtXS9R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST78vBj638HTGuZkampgfV4SdhVQbcFn2XwZkC7T6iPLCsu6gbhK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-cni-jcauffman1969", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75F6Tt8BYRHned5r7qE7LrKLDeVTaoRUPW6cTDQ8zTTeDXt3i6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5yTubC1Np5HBnYMDE1VnraNuT4vgbuLsj8269dwhtEyY2oUXjp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1504 - },{ - "name": "bts-cmedman57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wwd7E87caEVjLYpqKdteLsCocrXF2YwHM93V9pgP3XZqTxDP7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jgTNq8F9cBK8TS2uqt6sq5mARrqaHxMXjeaL9KiwtvT736WQZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 187 - },{ - "name": "bts-tomhome123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DzAunmH5MW9Z4mThsmma2drLUTEy8enDZpugME86NM4dQ6bqA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ruzXVdeVozLan4LV666fNuijZvjDaQoszradBsfwgYfBjBDAM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-vitzma16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BGZ3bAq18q1PTS1hL5rJsk7qLf2krfWDbuv5rgJBD3qSHDgCu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aFyeFk85QShaUtXJy8eKRsRpYDB56f4ZJBXJATNAVuAhxCCJX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10573 - },{ - "name": "bts-hldr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HbSVV2UeQMVEuVfuM92TubVJkGFQx3T9T8Ug4qyBN43QZJ4VG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5n9fC9VRZ7KJwu34w3JuWeXwf43dxTqH9xpToXEsKsG9MLMwco", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1076 - },{ - "name": "bts-cni-profits4all", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mztracbu9o9dKuj9xxwj5rX2MN6y9fACfCJZXWMjNGmtiWJwg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8FXJaC7rD7mK8A7JXhfz383fE8TUHout88sWP5cH5JtSibWfz7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 776 - },{ - "name": "bts-mzxws", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84p4z561BTtYKc4mStPcN8YeaHDJjNWUnpD329QV4s28LFRRPv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zas8iTxiPk3wnLPCvfZURj5WPR8YoeCYsiY2oo4AhpkBsW8zM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14576569 - },{ - "name": "bts-soeinfachistdas1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7faji8z2xiVKjeX7TuErwudQ14EQeYXRkspa4FxwXyYNLXXFy9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5be3EFE3Kc6nbMY8fHiYARLScVUaMEkGH9BZXyH19wuiuQcjah", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-pts-ags-import-yangzi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QX1sN9LQxf5tMNHVwFBnvYRkUrxLhxGi9Z6PrPZriD4eywVVF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PoFmVLRfpNeNar3ZNwE3m2mj8EhXFWXEAmYCAE2LLdL5AoaFi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 446241 - },{ - "name": "bts-transwiser.test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vzuthwxt2pc9jSxCCdMUi3YMj1nD4mUGwuHVGf55yXBWsT7i4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vzuthwxt2pc9jSxCCdMUi3YMj1nD4mUGwuHVGf55yXBWsT7i4", - 2 - ],[ - "TEST77vybjCURTCWcktsDRg1Qx3o4WT9aocj9rrz8fQn2USLJJcQSb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 493040 - },{ - "name": "bts-woochou1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63YfXD8xFRTKAjMxmvAyConzbido9GVbnYqy7fWMYQMSad5YvD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XN37JTFToZaaP5XdGiUgVKsK2byLnPoGKA9JpDUktV5E8hEu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31506759 - },{ - "name": "bts-arthur-gibson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h18zS1vpdXxF3C7Zbi1GGnvEjEfPxHzqsTLELZ9H9XCGXbqo7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XNx9RSLFMgDDydGwtfcWeG4MuqxvLRiDzcKAcFJZqvSgKWdz6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13577 - },{ - "name": "bts-sunshiney12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56kqG94xi1CrGXCH9KnWs3xBtZcjqodNrCZLsdF86Mkesx8Nxe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST61zQZJW8V9r6f9C3T1nHhtitXaCvvoBxawPBURuPcBeG843BJJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-wasabi2003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aUJFukCydhacuZCREwyV9mAXxrs3WEpLi3qJCD6oS8injE869", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yE9sQdPUC7oYawqJNDHxLcZWE5YDYmCawMeEMMftZoEeAR8Ls", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11008 - },{ - "name": "bts-bts-montrealstar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75MHkPfuHBHGLnyGpMAoHgXC1bj9bbqrMtHnpBYmbJ1L1oMzPd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6s7fGfbZZByKKNmJvrCMaBvAYM6mErmUqMz6qUZRkj4tA3TUFv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75133 - },{ - "name": "bts-rbrks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DcLeYoMCk1xqqp2rRGWeFYccJq47HDkQtvFAccPrgyY2Shy2U", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Mt4Vm8LyxgAnTgfbVaMDSEPmif4eYi7ScfWS2HDwWtfamt1kY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1032 - },{ - "name": "bts-xixokz2517", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VuNQewRQsfGUggVfWbiXo7zrZEuN3Rh8czAPV463uV7hmuEy7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VBzSsVeCaRDYCKrCgQP2Qb6W754d4uqUuXHjKAFXzkumBe4mm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 399 - },{ - "name": "bts-michaelpair19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73yYHpz2e1gtUkgnmg9E7fNRv9c2PhL5PDFm3ATUVyNwnLHDUR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eeoBR5xSJByRufr1bxmYVk15DAv25eUcxCPejueqCuMZjmyTN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2078 - },{ - "name": "bts-jfdb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kUQzT1ASYDchq86EFsb6dUHhBSiLJ9pDteix8sE77REQ7P3B3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ujMoapaN87Xyv5yU6ucAoW98jNXM8Ad4QrSTxkxqKjDu7X3ev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 129 - },{ - "name": "bts-maurice-mikkers", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JiS5WJPJjR1QFq8yoSWgj9KeJQCY6fWaKSutfEEk9SNURJqc5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qrfdGVqXQ3LwH2EiezkziZCRUtJuGem2TCxocHDVm152rfusF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-rr89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TQcUwGQNV6bUvp26ghnCG7p6832wQNKgvCGruZQJpCwrMLRmL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nHugH2HUWFqtEKFbdvAM92qjnkDCi679TvVRpSaJ49saXckgB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-chaosakos001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5d2HGmimDJ8gsK32MmLaTrq8posh3wsA8pDZsqQD2pKEuQsb6T", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SjHqLJ3YKNWP5tMGhZP7UEqz6SwLZU5apePXDwdz2z99N2Yb9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1338 - },{ - "name": "bts-cni-yuss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uj4g6aKefJY7bRmdgdsnErFMaGfu2sCeZyv3dhWMzG2JTuU1R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7gqNVS5PrjsoqvhrHjcwJ7iEqKGa5JiXJhqh9yNdnM11j3yQR5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 100 - },{ - "name": "bts-ysws198", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tx9AaCGA7njdiBcSuNLhboDyPdXhi9HXPMNaS4kpGvtPkNgSr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Sa4gEnQcGR9gxYXs1gmLdHsN2AjTHvHP6NuVmUx8cDYx6Ws7z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-kena80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HqPu5aqTHG8Sp8reYibBpEq1sp27QD7U7dss5b5wGR4c8BsJV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pHyBRLrQtw7LLvRAHkkJBtTUThJs4aVCEq3gfSzkUawFkxX5E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149995 - },{ - "name": "bts-bill-martin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8a44xHaj82Nz3edLp2nnxiuNd4Hnvu5uDraD1XNT8xG8wLhocN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST581H5hTnMey2sqUp3snEVHb1YV4s1vGSsCSZ3QbjgScCPXzq3X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42784 - },{ - "name": "bts-forrestwillie1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SLxwHzfA7XSs42U69CzPWumDMejFBKPq52z8LFcS9WPWWUPnc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CTqKMUVunRCiHuUgXg3E5LvNhPPnUKskU6PxZvujiEUXkTCLc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 176 - },{ - "name": "bts-cni-globys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zwzTb9vCfjGx1uoM2bfuqdFE6ygxQXxLo435XftfVCLZWtHcx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ozM1tqA1idquKugUR8fd2VMYXnM7BRK6HBNhSRum6pWLDCyYV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49 - },{ - "name": "bts-perryjw1969", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LjpAohtFaDyEZu1oNX7hzAsupnXVNPJ2SaQ9Dwnso64Dq979f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86Az2b58Ea42dPurvnRf2oBqmnCAFDVi1f5B3BYYt7q8hijX6U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18285 - },{ - "name": "bts-a113", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tzxVR5mqbwMv8KLMyJdhHBWo7GZbYf7HrGLBkbGqjXreXcwv8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Wf5XKedE2cEMCH4WN7RtmNBQPLxYpApdvp2mpwGUWXJ4JbHYM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6164 - },{ - "name": "bts-the-jza", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rprJ6XDDayqjd82tuPyu9LW57tit3vo3jPezTpLM2Bn4iBgBV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JofPmKTf63tYDRVG47Y5VNH5LVS387WnVZjZgM5CQJQGtEyed", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9460 - },{ - "name": "bts-xnc-coin-developer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WiJxKWtuDLiUySZiULrGKshAFVCJmkr32GkpGGPv26dxQndXK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZAbneM5iz96qQS8yPzzYBz2sJZHbwV276Ehjmsfsdd3SYrS8o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28005 - },{ - "name": "bts-b1n1glb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8V8QrJXxTqpSD12pRKMJrLvkJHKUcsbZzcXHzY6Xk7F8rmjfjq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52oNzgfVYxqCYuqefQmgvs5w7T8hU5XdBrv1VSUEfFSUqocfEQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8441 - },{ - "name": "bts-ballkurv101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54vVfi7PPEqwwccL95A1MemYKr54AvySnjZ1YmRrUTL9xT56SE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7umCsGGRPNvWoJvp3T8gpVpMtMR4n8un1LK7MfGLoJs2ttU9hS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cni-yourwealth", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c3iUhPRjxpnAYjr4GD7o9hMr4ZEnxaBQ2JWSh2BfmbvqCr1dG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8msdwrRRgB8JyXdVjo7wwW2uNU4HPU5ng93yc1H9x6b5tAimtY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-sairji77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tP925xefUPQCyvYY5RvA68quF9V2Y9fquPd6nfVYDybMjXS2E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89ZJpnxCGhBvcg1MLbRyw4DamMwNESJyhNGz79hmup9xWvDrDX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 152 - },{ - "name": "bts-loweryjl4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r995M1Kty57ngqqazzPZFdabxmp9BV3XUD1H8TMY7Xp7Fy19Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fgrtpwvNz914rLk7mCyyzL6oXivJYL7oxCZ2DCNKWKpDorUL2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7745 - },{ - "name": "bts-fedorasuitntie76744", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Unj6Kn6GHUoxoD31Xi7qbWqXHbc6qUSnnzHyGduyHQrxAZMnX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kncSvmQStrpt4YcjUx7eW6ftfmrgddeX3mwptvrAte5xP5y3a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9124 - },{ - "name": "bts-cni-av-almere", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FEU1UKe6AqJQXUAv9JKKkneVTqxtnJ5EYXkqFFftKkTiutGMn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8UkPEAJX6mKxmH4Bmw4WMaKB54oCRVpzr36kx3Pyp7Sjysc8AL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 838 - },{ - "name": "bts-gb3334864789", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Q6Aps8hwnCvSDH7yGkQ6aedmvXAciQwL8gkC2SWirt6xZt35W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wKpJ9itjsMTzdVaYyijzKzspmDvpxt4z43qnXdX5txUGFnn8B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2755 - },{ - "name": "bts-chance-the-harper0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yzKq6cQPaP69jZLwurCRXNmdsmTVGKCbE8LVWUr9Z6sn22yPc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fvx3m8hpS1aySLiiiew7cjoCAg1rXKSdXejVrvxd8c3C9vQ47", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 207 - },{ - "name": "bts-cr4nk-sinatra", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qr8DCp3RmdrjgrgmoFD9HF4Q1WpWd7VekHpcaCiq4QYmtsJPF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Pi8vnyB1PMcrQDTBPKFzcrPuu8zhTpcVCGfoiwXK4tjy4B6iU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 102256 - },{ - "name": "bts-fckths", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ftidMzmun9exoxn1AMr4Tn8MimGQ2kdymwiWo3F5jXMWg43DE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NFMQF75H41uwib4iJf1EiiAApuit8cKrfdstiriCffGxr7c8P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-hijilog5654", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TkG6KD7p8fUpgkHLPRCffzBcAomZU3iWL8bDnRTNSWe5TJRxD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5roQyKDGpWfAjxhMBJyK5JHPXZGfTJ88Prq16w9QLuRwLEPF5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-aboveonlysky116", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VB9J4TEYCRrboQdfNcpNFjYsVvM4ahHZYYWPCGpZ3EpBbNGo5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8baK2ykCfBCgd7ksp7Kr6Di9k7LMrZXKhV7fpznHntoWvnEkna", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 538 - },{ - "name": "bts-simul-taneous", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82JKRngA26TTQmifLowib1BanxfSNpxk2ne4Zoa6nEyVdXrm9o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82JKRngA26TTQmifLowib1BanxfSNpxk2ne4Zoa6nEyVdXrm9o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-cni-rene1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TrJFsVCNmB7AgcKgpQBPENegEmpLL4Nu8L1acKgt76a6oz6i2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7D9BvJMWSonW5R3hKbKngfy8jGcUPdChEFy2gjdAFMdCW9mM17", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 457 - },{ - "name": "bts-yrm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-da99er-aet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PcziVMFNarW1bLDPhTjTuvaNegLYzztnvXMpHAJ51BKWfYTv8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GAofgYm6TcdgkkeUjakkJvDkKtQNNinMni81ZYppxwnopFdpq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3756 - },{ - "name": "bts-finance-student", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jb2QbMynQQGL61qrjeoP1zpSSVeEeNpyjHHANFgw9Hb1RcHor", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yNzVAKcB1qjCuT6M4E6YaXrWp9jJBhHFCpoUwJuvJDLJpWgML", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11659 - },{ - "name": "bts-cni-dreabrook1236", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST739cgjSJs73GPYVZfakTuFUT2dXEDiRqpvVQtYJPzwzVjnx6b1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5hk64JpNHS7y6LeboZEWDRS7daVpV5yQAzuYk3VNYq8gbhw8eM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-pfaria2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oCmHxLrUUVrtrh1xAEaerEoH74XXT52gqoUp4CjoV7PvZs2mk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67M8S6eVLg1RQPykmMWEXyXzEFPSSuP2fpW4dq4Buk6HBrWAyC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2592 - },{ - "name": "bts-mab6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DPqKoodeqCqaigy6XteHp8hVbmht3BR6W5EEQsuNM1LqeEVjj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yGQLdZcfiv4VfZANHLr1cRUGiHc6Jxj5mBqmymtZ5Yk5ceaqo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9110 - },{ - "name": "bts-michael843", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ciwZQJDQduyxZdS79ZhkE9PrQnMFFD3VNi8Tjhb2VPLdqX9Ro", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qWmLRj1dhCszyR53NHvJeqXohPBYsH1i7Jt6vdv1KVDqwrmGE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 860 - },{ - "name": "bts-cni-gratzie2177", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TfA6SKygWBoXbC1DDDnK5LVEn6FiDfgf2j68wANDcGkWMVvAA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8aQVcknxDSoebFeRXmJwZzLwsvaVV21TZKzrZCU9FjBHrn7DZq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-mazainderan-9", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-mazainderan-2", - 50 - ] - ], - "key_auths": [[ - "TEST71vLmBYEUiuTxFxpSKNhgdrB6JDkM8Y1GevKVGgwpRUxHrwSdN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55rVEfsUVbNYygHn8hsKFMHzRTvP5VEmNTozX4PdQJdxY9QpbH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 113 - },{ - "name": "bts-bnd7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cQ2a3fTk4PFzprUpKDCdfBoiNgSpBGkxnZzyt71F5Ausau9DA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Yz1Cpkm8PLWFd3FrjWrjeuzjkxxdBCmkuK584ZNtdZe1NUkL3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49 - },{ - "name": "bts-ardor", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wiJhDG9CuyNt84qBKKxjcsfPavtE2Rr5FoUnbvDJCLeJtXVVL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CSewWeWUNL7PGVhXLxmWSLxjm3iSkP1B9JKULL6hWmtUxaNfC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1990 - },{ - "name": "bts-esteban.ruiz1983", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zSzNF78a1QFzyqYeGBsFuqhx2FGL14HJ45ztY3m8mTVw1vgaq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cLxJjrGZaiEsqzEbgnTKffBvVM9xqzvXrb8vpKz9x9Kc9yQfE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-trans.bot", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-bitcrab", - 2 - ],[ - "bts-transwiser", - 1 - ] - ], - "key_auths": [[ - "TEST7dA4qgzR72d9uHu2ctUyXabBCwqE6tbAKPyCsFeuRMK2czKp9a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52YAiLL9kRYkeKTLcXQmUrDJUF5RP95CJP7XDmiFZMBdwCdY5t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8950144 - },{ - "name": "bts-pr1modiaprile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gQVm6AeeMBEnXR5KrHy8W1F16CVE7MP6Vdn3UvJ1fTpU5Eea2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jc9khmdpfCfLyvkPWhdK5rs8hzfyDLKu2GxXTJ5ZFExfYB4ie", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37628735 - },{ - "name": "bts-longdv-2018", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HnqJ796EhTFNQDuHtEqMtivZrBuq4PFksfwFygH8ZAjTQMTx7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BjTebJimbj6uaZD59Q67yDC9BHgA9APc79UTuFXxCHLnmxkx7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 331 - },{ - "name": "bts-simal-taneous", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ojg4s3oVfAgTogKGQ8eFpgoZG8iFuUjh6YLJXVeTJjD5uWse3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ojg4s3oVfAgTogKGQ8eFpgoZG8iFuUjh6YLJXVeTJjD5uWse3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 150 - },{ - "name": "bts-maemontest-322", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TbAuK8DLbFyEommC8H2UBBqHZW53M8RDJbgqYHtZuR51C68sn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TbAuK8DLbFyEommC8H2UBBqHZW53M8RDJbgqYHtZuR51C68sn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 435 - },{ - "name": "bts-maemon-personal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VLDLG3VuHxRzTUdQo8Hm6phTnxtEmrTXke9VsR49MLfvfcbgR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ipskvB6vbm2C4F3BTihitZEjSkGEU645Pevdf67Fkjfq53VrE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34251267 - },{ - "name": "bts-ai4me", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7F3TB43UrAa6nZMpBXUfUw5tSiAZBNFuYH5y3bu7RqN4zoBerj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QvCdcBrRF96mwDjsV2x7UapZkETmeUKgzvwe2NyXgvXin1zHJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-cni-godsmercy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m29GWZPHuH1o9WbaPm3Hv9taaSrTHqGj3Va4MbWgWwHafDiqX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4yxLnWh6NmmNgQzAkuTtMjtnK5eGAqJeg52FAYbVDfAVBVRc9t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-glorytogod", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QgwrHX5gyjazyjm7ZLmk9AkkjVjbyaekNR7B8mAzG1HoeBxfH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST71gznf2LU7Yx9xgDS8E5dW3juViHYEfAPU7zHjyp3E6cZK4div", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-amazingrace", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LJLNsg19ayMYnt1rPNwh5Gssk5AXU5yZbFwUMuoL2XDCkmNAy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6eGzGktVisqfSkqye7To69kMWBEjPS5Zux2wHSWDA8G4VXDqzq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-prise", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65Zt6NmWkiFKtNTK6jSqcw9Sgxc181DWRGnhS6ygtz2FLYRHr6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5QsBa7PgjrDEvKfkABp3avih2LdVAT7ACiXjob1B9Y8rkaFNuD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-tryjesus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Pw2fiREmSwUEqoupktC6NHe8mKn8ySqRUaqpWbLNxaaBfyEdy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST55zPvLnuELy2UNVuJ912fq454caAc31xGdXMaMcQGTo2XuE68y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-fruitfull", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xNehXxZajcmeF5bxjXQSzEKeDqnia1Sjhccj8S8PRrCcAChmF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7K4P3roPpiRL3EvuZd55zdVKHym1zpCpZuGRGcwZbTLBUsUHgM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-blessings80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kThx2sBGcmDxezksZPukrHjeEW3hebevWyqnaDHceF5J5qheX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8DEHGidrzn7Y8ipm7ijfmQtroQ8rdNhvY3rVPrSPhh6E3rghX8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-makebelieve", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qj6gBZvEzxpWbaaNenKCQUn4RW1kuKGuCQEjjZd88UUhzbeeG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5TFjUKPYniUkSdQVQnK5HYEVm2cQaHa2FcT1W5DiEXCmNi2Ntb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-pscd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Khk4HUCqNsgwUu6cAFuFEuAZoYnqDNd5JWce74BcqpREyHUZJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V6WgFCihv9iTeyaYiAZKKcMsMHoVqFL2gpedj7EqPq6zMVVkq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9124 - },{ - "name": "bts-hbeale14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KgVGmVweDSBZks7AA8zBjWV368jVoSn3fjNotdDJ4y5rbisAC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sgmiLnNCgvKkgaYzbQPbELzcwkJ78fGA12hMh7HEuiZUiUPz9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9124 - },{ - "name": "bts-n98gvgtb55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TYGDRkUDEk1R1K6Zfq8u5TT84JmjWzAamExbxVFaYRUytZfta", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pjJeHP5eXwtcfuc9vjwSBa8KSWeh7FiP738gfvAA7b4F7hHtn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-snoopy8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tXsAdBPpqnk5JvxevZCagibDvsXUHo45uSvLZaLsxNLeeVBYP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jw24pPGHPYuVVcE7RL7w9CQwTcXMHw25fRCsTCXKJtLo6ubtq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1426095 - },{ - "name": "bts-entropy-js", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7W6cQFBXXMZ5DwYLpJR7TRTYUqp5UWqN2HbM5spxcbDqi3Q57h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZbHbehVJ4JcSPgDiBHKGA3crovFGuDPKbBLBXBmnRCf822PzG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-cni-gracious", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61m5uwEa7TT5WEiiomsXj7CxNnhVW1CTjKS1rMF9VHuLMwPL5z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Dz5sCy6dx5ZWhXPzqP37JDyR32cycGvE7ejuyizhMGUZJ5wbE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-grace4us", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tzLMiZEHGrQxdMxHj2hRc6VYeVVsRc3E9Y7UyBorvHD7G8pUq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tijztp3sj1G59CictmsaQHNK4Nq54dHVyVkzGBni1A1P76paw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-faithfulness", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61Rr3XhrVu1H93mcpkpwWJUf3S7TrgAmCp2em38sksbksJrCfc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5ze3rD5ZTEAYQL2tZsdHvk5Sv9RZwATmQ5Yjmpau3tado3gLCo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-gratzie2148", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fUm24eWEG25th9f9tQ8KdmjF4cHWRyeCin82J37XxQAMour2m", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6mDbPkf4DXBjcUr7PUrDs566ghaxfLn5ErCScstqNZ4rsFeGuT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-gershman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oV6XCAZ5LZp9ScLDcKv7BtbV2vQcXAgMTCKHm9VFWTnn7CzdH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST51ZE2BDoBF1854YqxsuesZuatzM2xLaDieGuthqjTfyhe3oYYn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-miner9r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ExnAMW4XTkizrxzQC1vQtwxBVj6NfumSbv3xwBfG682BJfc2h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DE2VcPEwWavQB6cLoZfYZackjiNp2zUmyw1qaU5wWJzh4NRt7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 132666 - },{ - "name": "bts-finpunk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sracDnFp9bQZdQiEB8Hr7rxZR8yNL4HgQ7WPaN7jECRboxhqM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y6Qc64tVH9nr5VpFtNjzu2CM9a3ooi9HE7cWSf958fCjie2nj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3729 - },{ - "name": "bts-enigma-7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ikCLRUPQDuj3hejiu6vXpqSpD4VhSGHzm1FJ6V717nSmHnuf5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Grkfz4SSdoKaAVbopwP97K9iHywQuTqaZQk5CaA6jPwFfFTE8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-cni-wesbrook1236", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FaFnBimUwKnb2ctU72nCXCE5GPbqP9pJ8hXLuuEpZG454EZmT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Vauy9vG295DMk7saBiYanmBwtpaV1oQyCX2LVsHZydVZRgZEN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-teresamal", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N1QCJD1d3djhcehfajxMB3mbjPUpjJKYD7iWTBqUqP3JoHtQe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7vqukWaBKjgz7Ew5KaHqqp7QBMoYDhKjCwKGxNfEAQueuszQwC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cremalavanille0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WE4njNPYL3GNsfv97XV8558RV6LTWt1BZLFXWU8K6xXwA5Gr2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZMk6dtYbA3mrxEqSb6KrM5Jf5UFxvRKouBv5xFLRwhcckFpK2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2090728 - },{ - "name": "bts-cvrs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pNihprTF4nRc9W3q3gCQ1UcNB6w8XBcF3qLwFM7NbHFh7eBQW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZnNyUgEkDuENxVdhPcBB99ehrB4aKVba2bjWiWpAkVBbk9Q9M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 582 - },{ - "name": "bts-cni-robinwebs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cVn8u1Nhbti9X5c2NQ58HouDPM3eTnvmTS9WLhKFHgzp9yfdm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QFYyaHqRxbPysg5tWf4vx6DeiHNhjJ4i71SP2c4dRMZPwA7t1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-butterflyykiss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5keMBBA8Cdv4V5Ldo9ojoPu11Fg8q2d7dy3FUvxKDHZPo8sniH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4vQ9XWEPUdhEysL6HYj1pVpit4CCfidJSQLzkKFnAksN8J7DNr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-robinwebs1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LpY9SZ7uNZVQCG49YWoCb1Y9Xyq2sF4SeZLgw5a13nL5yR7Ci", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86MPYbh19T72X7ryu6pUXrrmwbHGgj1os2VZPSckXoLATrWa5U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-mazainderan-c1", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-mazainderan-2", - 50 - ] - ], - "key_auths": [[ - "TEST67399zBjZbv2jBRF3Qma8sHzTHwC5hu18GmaQgBbC1vb7U6no7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZgPecGFA4jttso3PYjVJmpYekqMAAZgobL4EmubgAKEWjPtmD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66 - },{ - "name": "bts-bitshares1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o7PJ6SevEZWyrnToqAQM9M7UgzCgoRwQjWhgULZaeJE92pYKv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8daqgdLsuj4491kjvagCBVvqcFAGB12p5tJHdaiHtkWZSLDQAi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-btsabc-obright", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h6iQBNAZmPwg1G224mNmTTM1hCruMQHxfT6c3tKaJqD5w55N4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QHfWYEhdNcqhizeHGByLJSAZwS1qDRGNVPCE2uJq5UWMJtkis", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1999172 - },{ - "name": "bts-stephan-dup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HbGzerHxpMp9wiomPVSMdLhxsbje7CdWMb9E328MDLxqVmdXt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HbGzerHxpMp9wiomPVSMdLhxsbje7CdWMb9E328MDLxqVmdXt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-bitktn-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bBu7fMLXFNaWbYaoM3bbERcQGQNRgiu5cTjtTA7S7fEeq7WYP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bBu7fMLXFNaWbYaoM3bbERcQGQNRgiu5cTjtTA7S7fEeq7WYP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 178 - },{ - "name": "bts-cni-bigmackattack", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7p8376mCHcjdxWjiJiXSiHEeptukc7pbj2QVdQzRG2gvTKxCoD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8gcPYnYzsW1vEFMP9Bfjo1xS4b44mAm34Gso54Bg96y9YYHcrA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-ol-tim", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87DbQWtMjStNMof1cf9KM4U5TJr24JWj6zhWTPqjJ76AYsfbfc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tYTCEMztycoDBhD6b2rYZrPob94PrE1S7hDmgN2PEWCRNqamT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75008 - },{ - "name": "bts-lu7890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dbJqWdAMeeEdcKgiXfbiRtzs92eQPd9KB3VPs64Z5ZmZr8FgK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74P7uWm5vsJfUNQdoGpDm51Ei7JS4o3HND89ooULrAzvGuJaqm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-kipschas1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82sAfeGX1DjiX2Woyh8b5AF2kC9jTGKkEUahvyaJioJGwb3H4g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VwQzaS144A5ojdwJCD48wh6TiHcj2K8gSmNutMzRHNUouSfRg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1888 - },{ - "name": "bts-snup-p1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UTWhBLzybATxDt66nTJap6DbrrweWrggY6zcrikk97NBiCgKT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tka8h2UBs9UEBmRvrunP5zgCKDd3BCpB8nT4KHYjXpphePVNU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-steemgirls", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V2DJrFo9ApHdv48MGGr4DtpdwEJT7oFoQb8r3TmX4VfL8riDZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6n5DbXrKPQ74VAz7cERVxn4hyyJUViTcwBeskFmGzkrVodnwGj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 177 - },{ - "name": "bts-luke-stokes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78WeAYkErcC3L6s3t5mk2D7zJcioJfPaSnY3xknviH3Q7wKxXb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a88g1QUtHbuJAPuAp9jZzaE7fLTTz1uunLxGk33SDrHzZPRDe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-daphreak-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78G5hc2ukv88pt5rGkTG5EUAXibCkKXTBEi8US6UirxpxPMoy3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rTKKbBeQYkm7Kntepw8wPMnfpXkgm3B2qsRPVu5AYgJJxM8uZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9362 - },{ - "name": "bts-yrc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 471 - },{ - "name": "bts-kiznjk06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pvkXsBVEpELkK2M9TnSJZynYhPjucfmCCCL3pF9LBGnU27XYE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iPRKEDKoVDa57swpzBrS5mMLjMJG2yt2tkc9zLUn67ZngCoxh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-zhang-jian-jun-8559987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wSPkQJVNJQ1woEudtRU1FQgSYZXo5gjseNL9Zh9airHSHTTet", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dVVTVjXZzcQAPKzFtLBU9PS4bbh8DY4mJ9oNVQV4VsuArdKPM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-testing00164", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RRHd4Cw3jb2axaQS4YuEf6WhrC5jiUH4xcQ1zVrWAkkSpfwES", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wofKuD4GxhisPSiotAsTndGTjNB9HR9RHQamdq5tUAbKod4GA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-jsilva7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NGqZoVdosnYpyeE1fjXj7QANHRavNruwfvKhHDmtvQPFfbane", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CZi9KPrC6jNEnUxc9iaazjVQUiDx7j4R59WuXutpopdgQ46DW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6658 - },{ - "name": "bts-brows2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74FVmnyJUdpmT39RWQYg6NiwKGfGfj5aawRrYWUvUswUN3Sh5j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aeVMacAx9nn7AHtJjcRZpoeUcVYnvn1CpN5tXn1NMNEWodUuT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 490542 - },{ - "name": "bts-fl0mess", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5A9HUhKA5CdRhvssZoWUkhjEjDSyfH5rTN1QdRUyw9fGjXFXHU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HNN3HXQcCG4k1BRDAUp8Xy7vh9PAAAjMbPRQEawKMbV47fVmk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-r0ma1n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6a498AQw7rJgpZEFN3wLf7TBGKKwc7Lvto1nt4vefFrvmR7SE9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ro9x3mxmDBxnxYyC5QRJJfifiR4ALjoWhRKqhwYYhhCwQuNfZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 786968 - },{ - "name": "bts-max-moon13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WndnsUB827StBAnW3dfSdDcCdYSaFeTXGjSU8FhRUWyMmTVT4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZZDc14vrqTUYj13qBYwsgkHZV4qHw8mmng2TJCYm9wiFN5ScV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7914 - },{ - "name": "bts-rg3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7a4L7gH9aZH9VV1mUuFB4UCyP73hoNqXXVHxjqEQnxdXyFZmU7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JWhYN6nBVcp6Hocp48kMScBa4jM66nvdhLzuHse7YhTEmqvc8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21447 - },{ - "name": "bts-scott-jordan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84C3p28TmRHGLG9Wkpf5wgq5ouY7UT4AGwXYr3CXScmwUwm25M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75ePcGoGijKEREgYpZcc7MVgoQGq8y4GTgi2hqFX4DCkSyL4Yk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-miester-fez", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HVxmKi7M8SzoxS8Chp9oi8ZupvM3SK7jAVZ9acsq7q2FPVcey", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Y4vkaAvJ71XBvMyzy9yiTiKPTag9i4P7JSvoaFZ6h1J8mQCGC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3777 - },{ - "name": "bts-tmagee56", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y7bbK6QYJvY5WrCVy66CXhZHX2NnXN8N39SZNH6KCpEw1u8oj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tXpM78PhUTzCtbKFfhdDWFSeFD8fCKJ1xAHo6QuKoTwHTrKVe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-u0000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Qdxu69Etwn8LL1gYSPkZyVudb1qDVpJxoHoZTuNArG1MEzE6n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oeZbjSkHqmzNLq4NsckZpPCVGq4ALSZGwbtkpNJNb5LHGCgAz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6423 - },{ - "name": "bts-coin-run", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kGswFo7iER9b5M1P4qRE8v3HoJRbNeuBfnLcBMMWXxhLEXFji", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VNUnm1DvBcAekR9PTnzVDESPEPoCLNx4EcTcHN4qCGCvkPwEz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-xiaodeng-1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7V3G7AyX1xXLsz6z7wFQLqQToGjJUbzEfxVbiwV5t74scuHbhA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r37kZNVs9x4VNqeAxv1DYH8Dq82giQAiGi2YgBcDpsbyNbzLW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-g-ohm-co-t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ayLFLrNSs7EJQZgUUgmZWrUrEvMwJGFA7dr4UPt1ysFeuoAPG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST877teq7J3ihV1MNi5mbzaQW3qzDm31RkBbEWiYJM2YTK6ub6cv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-jason9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65gJNkHhk6i2KyewztGswBCDvVo8gsR9ZyxVNA6qHa5b5SGoAW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X6PRamQ6ujP4Nrkz8d7XmE6aFYgpXbdkt4mk65oTSeV7i3Hae", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1089365 - },{ - "name": "bts-pablo-x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62qPtPd6tysisx866TXcWTcp5ghqHp3oKDPjjxTsZWqmqjgeMS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5skb9dAsPhZPEJ8XdKQnMSivjvWgNhh59ctYAcQGdwapyemo7C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 978 - },{ - "name": "bts-mbb888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86wPJp2KmSSiG2kchDMJapvUPdbFVBatTaoHrqsGPaGYrPPiq7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aD2WpAwGc6imGgA3v4Fvdjk92FtYnQJDdz553rVha83zBbAUx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-alexsee.ii5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ePUQvzXU64AErsy7mC8PAzmiJKe8Dyrxk18zizKNwwagbhiWP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yaqLD3vAWVshChATmkGHA4JAaJtNLjD6SP4z7eThWMB7quY3f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112 - },{ - "name": "bts-coubwallet1982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jQQetfJXYB4qUJEQ2pbVW4YW1X4nvRAyXWJxBvKTESqAu28Vk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JatV4TqH7uHnXVsvX35faQCSFtCgGyapUju4G7iGXDJh9eFK3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 42586 - },{ - "name": "bts-bitshares-munich-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qr9BpBh4HkfSNojU8JCKnENJjg4aapptDdDiXoL1AkS7Uquvm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PwN6vcQ7BqMJds4gx2cmZhjbfeQQXkaa7ZsVrxAmL6JXnbMjK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30086 - },{ - "name": "bts-gy1666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52n4abeHbNHxoxjBgWmNLcav4o7AiuMqW522PspPjsCVCWpXJu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U2jBqfJ29C8tcv1uAXrQAgbVfRobmNr7tfit5iAFtihehwGaz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 801 - },{ - "name": "bts-bmmmmmm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CtrnTQKHmRVk47pNfBJdbTA3azqtVqWZNDUSiwoP9L5U1h5Cw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DKcjf6BkCjZDx77hrfvUMiKVw2j8DnQV8R4xebY9JiVzTSk3K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33 - },{ - "name": "bts-rautataivas112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FdKxF3hYhr9X4SKvhAnrqFAQNgFLzjfM4WQDorMm6bpD4V8jt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xVLHP2KoxWBQbcjrjzbGHGpoSz3pX1qpvW9e7E4scMNcm1eB7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 275242 - },{ - "name": "bts-shapor8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ahsexns7ANgfTGhWtv1w3uRW2U6bb55AmfxvsujMTkcrZyCEg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xabntpbKyZnS6rZyPBXsbMUiRVUfKcAGPjtt41JkmHu3M4jGS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5322 - },{ - "name": "bts-maemon1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8E3tKdhd5EYoWCXmHSwnSDPGLQ6oQXn8xrifdeEwGrrFEp78mk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tpFhPDPzkbMp4jC2U4m6gpx1xFYD8e6MMYKq5x59SSSeP2pSh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-reno-hq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u3fRVxxEknWNjTtKqM14QMvvp4CgFoCY2Q7ej1BLfkwwKM4P1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72b5WSUqtGdb5PaYUBZLDy78GLmnDZbqTfLVR9zb97BEWFZ9N8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1886687 - },{ - "name": "bts-li-yunan", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cgVbPoMZV6GBDZyhFRryAryYTFrLCwUDYzZAQFVW95vp5Mk1W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6D2M2YRXKGMmZaYt69FxxcXDnoBkgSTYexWcqjuMRJ2TcDmobf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-oriental-shop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jsmnX5a1rytQyUsfw8QGkL1yb5Xz3XGMBYZ6SyWWGTePVf19X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YCYEV3xZjyCCiqHfyDyWeTaiePjGZgM5XDnwTPRaYUR5NWyF2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-ed120963", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EEErZ7abQkNCQhnCYZyddbNsHvJhbQgGvdaiJajGoeMcpGog3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RXHDTRs2vw4wrnzE4BT78U7fRBY2sJpyTMBMw7uZKuhSbp8WP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-simen2000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RieppA9L23STRL2dHBwbUfYTXZJVvAbHpBUtJ7aXStVwrDuqi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vLQdkFig86Nq2QGPeHUzGRfbsL7DJB16HoA6ja7EBG2CozzxL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-gd2398", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b5EWhEf4CUqWpqp2z8NeUx9qYGmyHoDWtW88fKYnyvnFrHMby", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EhheFozP5F2VGeMq8CFGMdUbiYEcC9pwDS3jKesweXoL9ZFJc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 806368 - },{ - "name": "bts-bitshres1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6g4uHJTQCATFuQLg8pWqoiTt7X59nVaSbhdZb3UxNCEgTpgr8R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rSNBx4XEyFMYabWXnzCQo1EwH75ztHW1zS9E11jycYuACozZ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38207 - },{ - "name": "bts-mandro-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LEdS7AQbjrXjD8inNmTxLckWxz1xEABydYZ9ZJ5vZW4UWe17J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LEdS7AQbjrXjD8inNmTxLckWxz1xEABydYZ9ZJ5vZW4UWe17J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-robinwebs2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o9n5HVKYDGr9z3sFgJBBcbt7dfe2TDt5AxfRzVfUcdFwBwmod", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6D5zWbUNeCAUjwtJfn7M8zMqduw129y36w1yzZCa4d2fVK6zJu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-sylv3se", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NeULMV6xMr4f2r1MqVpKbKfAbXpmG7rKETm98zaVxM2hFpCRp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5atvzuUztYQAhXjEEee9jxojHzKXQbyDuMNMa8r4d5EWYkwH7B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-bts-li", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zSuPPSzCZMHj89buQnQ6rCcEbmdP6DYJ2bCDm9L23nxv8NzND", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5s86MikYzjWrsX8VcjJvdiTVkjMqBizuEcfWfwbZYW2BCFFWnj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7618150 - },{ - "name": "bts-blooms05", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pE5rN31ugsLLvdqekW8rJCDW8cRgErxT1dsPnea4sASSjymPM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WcCR3WjRhzdJ6GdgHnzsTBkkR8AsZQqYmTEVvp8TsD5zjG7zU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17660 - },{ - "name": "bts-fjjs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YoaUBsqDtU7HoKXCuFmGZymyZBHJ5W9cvtUfai8hJMNgqVyD4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fnGHnLUXmtnVrqjibfzobpwNWcQLKZvXx57dZJ83aWd7KWqNT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3373 - },{ - "name": "bts-f0rk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5568NY9mRJnAf8ZYrCJ6txLmYLsD8Zxzg3xKr3q1pwbzTEwjgV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r5mvKBupFE3jb5Q6ieNcJF5Vh3dn7YpeWYogq4955XA2Y8oUD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-gretabrinas-01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nuL3GoUvZ76sFSzijivxUoURTavKCRY2mDQifHGBVeyTDqSSn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kiA3QSpWGWHmSNRBMt6QDVr7GrHGf7vbw2TpKC8s2oXUstk7V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94061 - },{ - "name": "bts-imyao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76BhWj6cMNKK6nwinUWdtDMrDZ5sjd5368Ybg8R8NWerDHb1m3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HesBMEhwT1SHDmbgBDH3ytHW2FhUZEwpBozDqbrqmQxzPVXsj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1046 - },{ - "name": "bts-total-chomper", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8keP477Hsgkj1JSisvKLXc5W9RPJWA6wDiB1AkVii71ZsVfqqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xKGcYvJ9PNecZvFShiGuvPEsN8zo9UGEXn4EKBLFrjeKygLbM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-king-arthur4wins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MJDTUMzMRQkmSkFvyqjXJSmdx6QqHk4L1huegPfq9vEXRkPdj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83XmsKcK736YC5oybz31mPBo8zbuH7f2BrmySdmL2LEpsEYv2A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11 - },{ - "name": "bts-nexus-dev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vpVskrfoiKa5jK1LT25itodVdAaasMZFkBH4UeGWWtGHW9npK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L4JoF5nLZd9v4u6VSf7GC1n9pBArm4rNxgjpBkDKgFE3Rtk36", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2070 - },{ - "name": "bts-cni-gechi94", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JAk3H5LFUmVkBJzT8x13vv4ycbjHXHtGeHv1tqNM253AwovDg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST74k5MNcQgdcsQ1i7AFgCnLTCcLDK7SbDA5Erjj6FWavXHpYitx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-rvdm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EJ1ocVKHGj4WwoPSj7MFfL9i1E9k5Z6vdEqnByzUEiWzYeeek", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iGCFfBxcCFU3VCMsvvG3wLZBViHxQXpz9o6U3Aco9pXaxR3je", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-jearson1212", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7exxyC5Pq3BgjbHN6QLQyYUgHPfEGfesUE3kyF24pXzQAPPbqR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BLrR45LB5PS4zWoyEAdwTFcSo9mPUgtsvFcS5oG5u19SevotR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50 - },{ - "name": "bts-walko1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yeWM4LGEB4iA44hcWYaeSPtyQcwtteVLuQ7cY4LGoDCQoGm84", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UYBHpgqsdVmRaGsn3VBacMg9vWxfqv5e4ucM4EbmxBtjxJF1V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 146 - },{ - "name": "bts-endo-katsuto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ujGKXAAFx6jQHj5QyHifi2NMumtsnZCLNeRR8u6rhR8tNo6Xa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FN7nTqaxADmHvLeRgnwArk2tKetpetd4iimswE4Y1DqTn77hm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31975 - },{ - "name": "bts-a13x", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oKbUZ9LFS3r17BPzHWwuP4emhw2ZvdpFpbvKt3JVBwA2DYM1z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5byEdEmnJYq9ERmETQh8WuRPJrDxjF5SgVcoDHrB31yihNmcve", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36456 - },{ - "name": "bts-dennisbuist23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oHobMmPNqDYBpcenmGybZrNzEWtTXvvESZiSdX4Zzga1nk2gH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yHDESJxBgrHbZzxj9TdguHjNR6K5Qzuxg5j6AfAhyWpik3d9f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 285 - },{ - "name": "bts-johnathan004", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gMBGykPrYUuFKpFE3NBs79Fkp28exZ8vrjgpYV1KM2VKpiQEM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83ue5jMCoQhjp3A83QU9Cz1toDVpBznwmsPqonrtfLbUoxHoX1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1933 - },{ - "name": "bts-rohan-tatia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cDU1tJZ4icaK1ZD2HnQhA9FD4FE5AB91Uic8Eqnrv3nV2GrQW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yqcep2ERXEi1SRdYaaDS279DSD2iA6iykDSGhRRVsovA27auR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3112 - },{ - "name": "bts-mixail9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UNapof9LwXhu1gDPRhVv7bkd2SkVcuQyx6cwSkBCP7kBEwsCX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JqXm4FTsUg3jc9qcsc5qL72hsfNyJAqi9RGtkUZa6ZfTdqK72", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-nrg0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GV87WKaBb5Gi74fxeCdNPZiB7SxVTS6ccdxfC9ZdNJae7QPsH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RKxcqcofXejy5LfvD6y89SkbUjHEnunKWbdr7UEB9iudJgAo7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-joywon", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QrEzLrNKw2YKvrMrZ8UJf8v7KqPw5vB8Sh99rAq79yHYSeFg7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NLZ46ViWQVknD9d6GLc5AKvHDKwR35hF5GZyyp5WjBcxgUWPM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-puremilk007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89ctpNwAkt4c4tNvifoyYMWsdA8NjidnC2sxL5pmuDZ7oyCU7X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bgdF37z8MZsL7fC7wznhjD2fMQM4kCE8kYCwsawHfqxbfiXYQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ml8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72DnxM2oKqdAZfyw542sAZ9or7ArqjASKmTDgQUr6Zqgk4nAca", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B3STWzWsRpe8MwCfmjtXh393u8QvFFRLT72AV85yCkhoWFUj9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-shoraibit1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oiyF2Mj3ncppjy3CU3QiGuRTRtzCu88YecJT7czzENJ3uqusa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bsWmHmgXBjDjPzwgJTuB2MrsfZXarchbW4JmSMxX18iubjPDd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-btc3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5y9fyMs5cFMKqj5rVf3ywgLxgSmFHX1FAmYmkDFQa3oRZoAaWQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82nE5MEavYDqMgiUbBxVMURF4hWY9ZTjFb66ZgnXopniFzb6TX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 321 - },{ - "name": "bts-v-ip", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YWFxqRrhvW7tWmA3R5GwFFMmQAoVMMmDP9V3D3XNXYgUH1iMJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Xp2GnZuGFJP1zbQ4VJpPiNzr6hLYZr2UTVBjzgnfef113YgYm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13387032 - },{ - "name": "bts-danieleder1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5R4qAWRm7sahx7dqbiih6BmCpmveDVLMgKykk4kyMQpY8QueeG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dWrK3sWNihrMhfEaJ5pr2FYxs7hVYVRe2kvbND8oBonKFo1JQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18437 - },{ - "name": "bts-masterviggo-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xptQ1sPnytemQDEh3sBWbkXipzx627FPkHKKn98rcY3fsnZgS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FwHYHapU2jqQ9iPemSWxBKt3AD6iiJvLP6iuqPnPWZATSgDyk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-nathan1m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LXM6vqknBqauK27C35oFQVmA7LEL8qbqyAZwFukwmD7pcmQCd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZM6HG66QRWQPEkjQgYsBBZqHn5CVgzKs7FuABbfXZFMz5h1du", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1275 - },{ - "name": "bts-chenyuchen1993", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8A6KDC572FLr2maEJFkFqgN6Mepkkng9VJDhoiFcxcHXmg78b4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84aEKXRbdSzdK1LxGv1GcRiKNshbEvCG8FpBgQsGvu9yDhx58s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-btsli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6igJeaV9dzFgPkh5xjzxvrnboRWNWJ5f3SjGMkEaSYqQ5Xm7KC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RGKtQdfzbCmjWF25gawLPaZ8iLaK6fXChKUexy3WTpk3mXxSw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-h0r0s73", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dFaw2zQWLfX39U46pdxF1R7Vj64rsqLsyefx45TwrQDa4sNLS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GyVqUgSU7nDAkyUrcM1Mfva7QMFePcmJxhMsg5yeHi2ta1q2r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 170 - },{ - "name": "bts-msnutrition1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rtgLuWuzDCXrTwTZKUQSznTcWkPsNZpeRMG5iMsnXVVLD7uX7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7r3b7J9okKAWVrnABbiVAssHrNvhk2qzN6c2Pdr6ZWZmva3uto", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-r4fken", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jp4WPJaVerGJbNC4scaoHSdY7wSemAcdg6HikhNQqvegxYyyM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wPKvv8zNBFWZmBQqPfW5Df9sfBvyS2c24MmJ1mkHjZCaowHNx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 278739 - },{ - "name": "bts-cni-stand", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yyqrEYxTK6USf9izeLEX1emYGkkzBABfWhbubucCL6Da2RohH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8LSrL4cxk21VTgyEmvhAS2Q4Kp5174iAQyr9pHFKFcp5EEKU39", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-coyote504", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Zo9enpTJhijSfeNH8raV6xQSf1kgJTwzzN3ELN4wdRwwmpG7q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CAut9JG8Bj6EoWS3zMjx9MeaLgzGpYnHSojV4h32kww9d3n3J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 278670 - },{ - "name": "bts-dak-digital", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zy1vndg4UvE1pTuPYerEPPWcZxDDcEe5Xg1ka8PvApxiSrwbf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74aeNJhTykwn7saSQt7JX4VGe866FZem2sSpnZZEy1QyeFgvds", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37795 - },{ - "name": "bts-orange-dac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6by7C1cWszX3McwhnLCKsh9dZXySVr6d7cc8YCFG3mXiaECrwz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qFZLbw773xSyczjCoqBHBENZhaWvtjHmwnfHNEKPgrhxHmNhA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-a-b-c-1-2-3-m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sJUHuQZsLfmtuGGR1GAqZwKfo3QEwr9VARFYBv5t5eqwYD9uY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CH9dLy9ZZLpvhjaXhHsE6wo5mxS8EzbQu3Ryi31TAjiTbw1Ty", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-coin-forum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7228UPJt6PYgP9StNbrLjDL63F8GXcFe9zJS96oAQpBrWCzSBL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ci3zcUscd4uFkKwdn9fSy3v3Pm2DDkP4d6WSR7wJgAKAd1Pdj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 103194 - },{ - "name": "bts-thebear1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B7Py4i8SSjmtgdf3ExLP66WH4aQW6EyssDaRg24aPPc65KvUA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Hx1xBW8YSSy4nt8CxTq621SASyXdvkjF28nReTQyUNr43fJej", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3763051 - },{ - "name": "bts-btsqq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LnupJ3ab8RiJwRwNv5PBwpLTgUJN1t91w78ykEp1cftdvb2dP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VgqVqT8ePVQGPm4vHCbhb3jtdVmRabY7sgxgxpwyi21qhc3Eg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-edona0028", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57dG586VSsNqx1Aef5jQHWF57rTbBqw5XT2wbCAHvC2aECeLza", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gCFePbQuXs7wiLgQjzJVohzYNcs3QuMbdY6RsR699NAd2AE2P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-f3d0n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E6cUZa445dLiAsPhaeLfmumno7w1yh8rTBCZkQxYW9G92TMtn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bqLxNS7p29hTRjPxo1Shzp3wCSkaYKvwztF6YYXKrNj4GMMYY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 413016 - },{ - "name": "bts-elmundo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Zv1BZdVhPLaJAu5KVVpnoQbg48iv3FyQZ4h7nzDFNSB9qX9xq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZswnkvNENNd9HDQ41NQApJiwhcJsTUQbMyRrU4mJAfFTisDJE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 893655 - },{ - "name": "bts-chenzhou1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7newycmWSVcpj4dbNUPwQXem7NrrWVCyuJkh5BAb4KMAnRbgSr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54tqKEagn87c4y6PFrfPY8FQ1gQfpKXYoTZqiekgshCyTkjZPY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 100 - },{ - "name": "bts-coindupcryptobrothers2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WTrg8L4kVn6d5Ajnwx9x9nUFPCYBioHSn774dM3Nb8DU9ZyFt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87HYBHwUu5oRdiLbVc8H51B7MpzHN8Ys9KmYapoR367AAJuiNw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1839 - },{ - "name": "bts-pakis-btc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7muBCM5ntXVWwxToJw9ZCrJEAMwd8KKoVVpfnYahYPVnD18uBR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b1RqV4CE9Emfx3nbeZtxLtiAZ1f9pNyqXHexwi6SLcgJcy3MU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1589 - },{ - "name": "bts-edona0801", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PWUJz6ZmPSUuHKGJXRZpmSgao7WNtCoEzKvNR7ogi3r7hDwv1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p8JrBZLSjcmsngzDZB1w7ruuEHrEqqi9wj953UJ1svXv2LVUK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-myp2132", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TdE2JZrsbehwo1G28ZHc3MQLmsdLkvNzEbj63ddmfMuVVoEx4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TA7uZykQgGpnHcJz3wb6R4YHtYzNPddn3rEnMDjqaPKm7Q6HC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-g4zm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LrVEsRL8ixr5eLWBZH2DseJBJ2n6kZdwVGtBhgcnVuEcpP3ee", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aDpBiR7qAQMbdgsVkNwqkce2NboMZqXX7Cpkc3cPviJzGQc4c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-transition23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yM3fxLEyYM7qHYjb8g8kW13yun1MxfWoR835YcjGTSzEn9Y6w", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76ZAgweAQfrnz1ErKNu7C1GCZzkq9kKoGtYzJyXeEMRW2PkPL7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13427 - },{ - "name": "bts-agent1971", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GkUMYmPv551q6KoEmsTcb7rnyuoHdwJnq9vf5qHi1dzWbhKBA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rLL2sAgsorc3h4kd2FdxqZBqHjAUzwmovgMSQeUa9qA7t857M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-stepahin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d7MebpZNXJekoG1NrxLGTBgfbzEagLCp72VaaGSVLfH99ydfn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Yd9fybKK1TmXnYsmSxeA5MzDa3XcTyPmKpPYRcK45etWAGJ1m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-condra1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85ppBF3pr9mwKmZT7oDQSYKL7srMvA4s7XeKWjxp863pWb4hoN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DgPdZW5Af7JnDMSHQ54axDT8hdSSLQJX2yztFUfbAdK3S9fXp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 44097 - },{ - "name": "bts-thedaytona0331", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FhGbQ5FhHD5j9JC88UMnXGRpnudGiHoUw9DRgEjua6C4FPPyt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iFEuGYAStE6QPfq5r7tgMLAVUwbdt9ipfX72WANEdTbZ97DAL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 154879 - },{ - "name": "bts-enot-potaskun", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ycG9FUnQnjrXhgik17LNJdJDessm665a3ATcbYPCRSRqaFNRV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BtPfY8dWD9hT9K5PPtaMtqtYE56BQYZCDQhNPt6TTKbSgLC7W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2247 - },{ - "name": "bts-guf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HX7XvMy6GA3iNGasLYhfPsiAMCsVb941wUSZgG668rN3uadhF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Q1BYsfa4nydy3hdXQCkSM4WM3dz1rEeEKUpGULSNqtDWFkuym", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-ckdghks1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MTtttEiYnyJjuHb8DJt7mrykTuxELumrdbuyAnKFW5w4eSBqa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75eoim3tDPFbcfDH12aq7Dxe76Ckn7xNk5HQs5ztrQm2WkNtJP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 248 - },{ - "name": "bts-greeniceman1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fT5EeWMKtBjuzsFtaHkQSJbYC4ZymyBmgfE9M66zrtjuJzCxW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cwvVa4TRhfpTFrcbdmqLNg2Tf19JMMApy52zhrkH52P26FqLs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-dextercoin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oFBpW8MFiEGrC9D93rbC97GTUjxPijTb3tRu1aciXxaSFmetL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7g4R6TTfou6SoiT9oWB2n9tqzy1xa5rSusqfL6HrF22xEsoVu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55445 - },{ - "name": "bts-zakalwe69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HyXBJSRYNCDENTXPPCpSspiwEoHXXGzsgR4uht7MXBZ3NFEBV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HsB8BPD7NCqLkSb7BpfYDme3UnS9UKu12KBfuUjdMqBvCibVA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1335408 - },{ - "name": "bts-jack-11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mQw2pSLBLtEuNhDoXafgoYaNkKd7xQus1CkAo4dk5w1aS1SaM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5estvCURtFLNDtiXTMcndWSr4F2EXX2VtZrHDSvwYnNXTt4xLX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 358 - },{ - "name": "bts-moonstone21", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kJsmq5Zr2TCE2C24frtckZkNoRNTvRXrkBQK9xz9qPpTJq1jz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FYmWKrPGE6TaS4tespbxHzw9ayNPdyNAxcj7iPw8d7FYmK1Ky", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-zhou-jie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nbXz1bEeiCo4X3sugLFDT9QKXFitG7ivKXDi3vtZDoKyvr6ef", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Lhd2JnanAPgWMBuAYCadMc8U9wno6Gie7abQB2RqtnEowYAjo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 255 - },{ - "name": "bts-test-9528", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66owYa3KDJvV7vYGMhya8nfP33FAnKrxzG7aLupgPrwQjFtPqE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66owYa3KDJvV7vYGMhya8nfP33FAnKrxzG7aLupgPrwQjFtPqE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-agnihotri-anish", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71DozNchSBpSpbq3qg6GxvGABXn687aU6BszCqKE5t1AMq6Uir", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5f4TP6tzL4o3YQ9XvRHMBK9kPWz99RPESfTGWRomqfFgxkAXqn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28 - },{ - "name": "bts-helloworldtt-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hdZLrt2M34HRPcVsYPddv84aoJrsZwN1o7dv4xcFKuLoRFHV1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hdZLrt2M34HRPcVsYPddv84aoJrsZwN1o7dv4xcFKuLoRFHV1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 235 - },{ - "name": "bts-pigsooie55", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KmLvozAP3Qm6Skg3WRwNy6dyQZyoPnyHyCbq2T6qYhFbZ7cGv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68NyJrbR394YzYjXXGu6fWcfjMcs5bmkP9g9nF4wTsFtP2vY5W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-steem-17", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pENQhh1y7buiMwNAsLGov1o9qhRtnFwAEgUX671u9BvPoMTx2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pENQhh1y7buiMwNAsLGov1o9qhRtnFwAEgUX671u9BvPoMTx2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 535 - },{ - "name": "bts-svetlin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AitKtqAWnJq7yaBPJV43MoSue47SKEqE8AFpmbmWQVsfm9vYz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73AziRudhEv3fU9Ja7eXpdLoJa2wkEmMD1YzTQsyWxHXAPvtvo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8879 - },{ - "name": "bts-polka-bit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87qu6WjtNxKawqqWW8fHCpS2nMGBJBNLN7prjvTsdwPTWZTpn7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QaVv55aW7D62MTmdsx2Mgk1c2WuY2f2ninvryopYi4hAESv4r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 183 - },{ - "name": "bts-perus-world", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fthfPeTibrpSHc3mxsEdmHnBWZfLK74gVq1GwiNVQcCUD1rxs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qPvUTzgkWGmRQ13oSXqKWi1pfPGVdz5nnRBBXzhpC7mekE4Bc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 299172 - },{ - "name": "bts-rima1135", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tVk9Rw13nuEYXc2VQoSPvHEtCd6Fjkyd3Q3wkD98pno7Ah1sT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UEQJxKxc32MdRK3jFgf2L5tzV2tjFQX22gukPTBdWkL72LDBj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 314422 - },{ - "name": "bts-c1a", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59z5xS7gR2ZBW5uXKP5KfKaYpTUTGXxZyeKTk56r5KM1pKqy6L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fu7EFQFvHDa63dE7D9Zx1Z5jezijtG3PUzmAb5m9YkZNyJcxM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-lillepuu16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VBqHmKgK2FmB9Kce2ZtXcRC5ofCjinUAKzP6Euug88stbw8p5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YRUkYSJL4uxG4EiuVxinfrrJfztGY31UZ3Fv6KQcPedAek5T5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5644 - },{ - "name": "bts-moonstone26", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cnxgNEL5YooHy9LfzZeQCB1S19LoA8GRsQVPNxiLHR3zwKGSZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tKu1ij9cpLPGEiCjzyP7onSeaPjqFTDARrFRXoqa4szk3kYdo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-micheallawal357", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mMeFqMHXRbG4GogQDa8oLxsE8JpKrkTYQpWgmC2ZD8oxLu4Bb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XJHikRpezN9nRoR4QnzD9d2YX6sEKBhhTTUMSMaRPZcCqp5a2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13615 - },{ - "name": "bts-mkng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gm9oJGWc4VGaKkKLfvsf7nbLCK97QjhJify7ugHcLCwGh4ntj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ef3Pph59xxAFRhfqpQNtgD62zcV39tViRBL4Vv8EqxhYHFJM8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5484 - },{ - "name": "bts-btsx500t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qQFWvVtB216FzJHP8TE9ps5g7KFtiuMdRSPsTbnnbFhp29EDc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6arca9ZF7ViYULTbpz6ujy1fkntEiDKPF6jpgneYKmc4FehQp1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-mooming77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Zq1V9eYCAjbJA6JqJyeoYw18x1RDbFcQhVdGzs4rg6KvuXrji", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5g7T3nHdhLEqtX9pgqLhiAjwb6mJ7JQS222wsuJbX7QL1TKaFw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3165 - },{ - "name": "bts-chenhao-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xLnh7ADZF32pRdbxhw2tNk6K91BC3RaDGMb9HZVApKYQyMSi3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dibnopAbKYwDn1iSPMenQHdoH5tQCy6cz4tMc2QuXA5A1UCLj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-skill-in-action", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4v1YgSueHdRVFtXNH4o7K9vrMpNiv5ty3u3AGhyeejm6Xgc6BU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BUAJNteG3wufvNfqbwt33DKZ8KCRqUguzHVJTjuyqXuUXKXwG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379061 - },{ - "name": "bts-kjaiswal7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vD6mU8LDpFFz2fvnFimrbxEhVBePtcE3Ap7U9frXicD7Sufg4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ex9GreLNz3zn4SUejHCv9gw8evsLEZVDqiR7wwXvWaZAdP2Zj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-maxcloudbts-01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nhvsHHNHZjSF4FF3BE8H6aV1MpHLRNt4c26GReCNCGSPjvJZd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5brHEbYyBFYXbNuJNM7Eh1BWAouKJBXMjbAF4hVHdXuRTwzQtD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 116 - },{ - "name": "bts-suavecity6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Un3KPkEppDMtgmCpYo4ZchHdEmE5z3VT9Twmdo8iqHJHV65eK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HYnjWq1o716ZuYCtVq3agys5LsMjL32RKCM78VLSRRGHphQLg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-cryptokid101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JsbhRYdjudokR79RH2gx6fWkw9FzNghefSYaSr685sccvXEQp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85MqZZQTnfuYJEJZEwRrioHATPpm3BPMrG3P1PpBbdkvNCj3Fh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1017 - },{ - "name": "bts-yxb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Qy5gimHxBPhLKAUQgz2ZZPghyra2HgNG5mnmznD6Ebso4pE9N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LP2U9tqkpaRdyM5wuzrhDUbngHLRwghqyVhMcA6wToPwzVFEH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4460 - },{ - "name": "bts-dllx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hbu7nYrXst6XQppa2jeAdDEZMybPpQxXCSuQA6BFLPe4JuErZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FJbgdLKTdESyL44vS5EGvzfcum78CRrmrhTPC94jR7mf3GYiN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59 - },{ - "name": "bts-cni-ccdffs62514", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UZ31Ad8mgTGRr7LjgakFPrYnK7n3vZPTjFGEJ599CdtkYv8uq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5EzvqeUiuShatPfbRc6Mkfgd8G2sgR8Apdi23EVhSfJXeaxevQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-ulcaman-42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BVAHW83N2iahr3tQmMJqUCQTZK2Wf5aHWikeqvSMuLyzztiMv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62ZMpaE9q8pKCbhTrGPpku3n3TAWMvimEnR1VEBsqtSAPwnmav", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48671 - },{ - "name": "bts-frizer727", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tNpb9EpxyEeVbfYrvgVfB3CcksZKQUvqYpP6LBrxePDiHPz6h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST778oBmEUeBxbNHRdNhv4ar6nqiqeuJhRSvkLnxNAnq4dXwwYex", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1128 - },{ - "name": "bts-the-gent", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gxYXdQPVA2qXA64TAnzbpmxvXa5dZsnCkUK3mErG629dZUzXe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ReGpGA4ZkVi1bfL6BhFa9bJMNVhnsVjt4tQe47H372K2AvdVV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 301028 - },{ - "name": "bts-xiaoxiaosasa2004", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gusvBHq4CAywcSQsXfbra5qBHawABm7eK2qdvoxsexCaZNmMt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71L6UuYUcAVKZZPMjZnTyFZwTzRKMTtYsFDNrTs9npLtyn3XU3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-natth3nat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B7SMuK9o3dGSnirCg2FCSxUdPPenYXR4LMtPzesPozmAAK8y8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SjBsxTmjZAaSmYoQbSXPf3Mi2m2bAXx2Pn2qYjbX295wLHGUU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3761 - },{ - "name": "bts-exyle84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5E7Lf9pvdveATeVdiDfXBS46MXfMA9farFhdhb7SNZBFBodxhE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bu3eVAmh5U4JDAzn9Qou7dBNM5RgzEiWaH7FQhNgv5drAgqbe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 245311 - },{ - "name": "bts-maxcloud3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nCot4iftkfhrq4qYEtZnFARhFTViEZahSwn8djPnD3AQvxVXh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bzvmAr7ujHpJgWFGs5LGM9Dxa7Khsn7DXewwjme2iemL5xMR8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-maxcloudbts03", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6rbxMCcJztrSUow2PEFQ3SrHNq9fYPguAf5Ra9GdNDffs78ZVm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UeyukPX69PZJQceM9AKNt4uRctE1hiLJpXZcLrpgVD4dhUef9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 260 - },{ - "name": "bts-evolution8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jqARsBvefHhdMUGjGFt4Vdo14Qrr4KYcFPvZn6KAnGbkuCJ4p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nJc7kgibhaYTyfCCaxXZNxGTmQdaEyAW83fXJac1pKFBgxYHN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376249 - },{ - "name": "bts-soybruce-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MhJn2mwowD6cu3nEypJabRMW6a5hXns824BnKDn7NCAtqA84u", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VHurXh78btcz4BqAsMbN8T69vdeTd6rHQYvJE5Ztv9Y73DkyG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-ani22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dRj4DMxS1csHy8JCkiYNzost5VGwMr8ySKWYrDuhr9G5diD1L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EZSCbzMRPB6BR3bKvgx3jrffFQDTH593BWVgxtjzbhwzbFGVg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-satoshi-market", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NWxbi1E281CdsXKVDS57hozq3nHnSEuPXcPNC1FuGMBFYZqy7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ] - ], - "key_auths": [[ - "TEST7JcpaHdY7KKu4CwDJKAEhGngq3PEbiKzWMFP4mTY5FmAjk3KN1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1880 - },{ - "name": "bts-kwonjs88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST748qNThBaXqGx5kLm3knFUQb5r4vUsnXfKRFj35eWK6Pt95P1Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ATf2zgFbTNtBAhzwBgAEgK9Wdj1jvLJ4iZkqW6Ei5LLsUQGex", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-bnbn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MLpANa5p8Rgmz4P2wFdVbuKYYu1jS4oxdFDoJcm4LVsnsgv8d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dNhpP1fpGz6RLQKXEXYZ2q6CykMKHyEsBofxRQ4hSZyMK7tui", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8267705 - },{ - "name": "bts-conda-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7drW51yUzzkzecqKJ9uuZvzYaV9tJyogzfCxHTt6iCsWj3RCey", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8knMF83kEw6XumvLw8EoCSNPQFX94N8XR456iaB92EmvdiTwDb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1194035 - },{ - "name": "bts-uniglobe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5N9ekS1dtt8SmiX4RYAZgg8VLiQQNegpKWyh1o3nJoVapjC1J5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kouSn2jfLPa2CnSVDQYpRAzUcTiZ39u283stXZzYjLTbHdfUG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 407 - },{ - "name": "bts-vade74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q38LyECwqwEA4k9isrcrpWdxd6iLzTt5vo9FuMDK7shL7xdeE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FLjk7FgDofFJzkpisnQx12c4sAKn5RrPGog5XvP6eLuATqbs6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-mpmpmp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KyTpb9TyHzY2DhBn7w4aQb7yoioUbwzkJpA1MpBzrzLiDTHWT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JGGxCiW4ACa1oJpLS8xCtiEjBoPi1y1AaUKJebAhy3eGRo1Z9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-nolispui91", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AaPyAUkXjAyBcSMkkJK1HwqWbLCeSM5zk4znmEWmh8saT6QZA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69c2oQE9MmXnQf7VeudnG8374y2BDN8WFez3Zs9V16NM59GK2B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-avocad1t0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y3srS4Qm7m9bxqZCmjqnqpBucbSxbWXWNcx14c9kEpvLSnVMx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8d4aWcF7Wbp4qrT2wX6qGCkqs2Pqd94j9riCKBVsghvqFVuofv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3463994 - },{ - "name": "bts-tomaso88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m1HsGe5o4r9X8d5URKFyHYkygdEPBbSXPCGCRTn71HkLmRa47", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S76fvPhGuAzWfsag8peAu3pU64soCwrSuGuqT2EumFtgF2fUJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-rick-contour", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST819nAeY5pMUTTKjwJD2huJDKCKZEq8fX4GE4Lmsx7cXfeSJmzi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8caBWrCi9vVUqem3p5hfuF2uzRPHDw8BExnB44nduhQYyU3Pin", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3825961 - },{ - "name": "bts-cslss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aUYDm1B81YN6Q5sH7NjoAv3PRvq8797pYkohCNHKSwsSzPtk8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xomhAcsfSriG6ejtSGFuaEuy56BEJgGM5jvJzUgiQXRvMLofq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 108970 - },{ - "name": "bts-scn77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81LSHxhSK3Npo9uBmLTf9YawYHxa2ttEwVXb34FUzGgoEK6h4c", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87T2u4yPohrmcDotDd6jwhSSTs4j6aChy23MmmtbvYDuBPqn5t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-gh0styeti", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Gs4TrD9xwbiMyK9RsT1y1xnid565GGWfZmzV5Qpa3SUZXttS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5P3G7vTZt8hDMDWuvuWfwK893ptWPNCA7t1EWBrTC89CKW2nwA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7500 - },{ - "name": "bts-b4n", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vWoXGVDQwYh14MfiCepxPimDiuRto96wJxPH67oCZhEbqr2Z1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MimL795EZsQT9nPutFGvW9fhk6qMmng9KUtA7e4yPCQUfurez", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 987186 - },{ - "name": "bts-drunkemaster1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4y2Rioxkc5JdUH52S6qEYK7W3V3ujfVYGa6RSAp9KU9QJnQ7FG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kXxKfMYPrmU3XGG4Yh86zk8uYCeuh1TE1LqpPiDt3v8NFx4SU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-matt19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cDunm1sj1XRMqR4igSCcMuL16Rm1LC3QXzDcs8PF1J6yLkQDg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z1AumB5tg1kHZaiy9G3YZ3JgHBbJG4BrMj9WKrZYXU1CdgnsR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-faiz-sheikh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54cxSPn9RsaKHrEYPdsXLQVGpQX3JMAChZThb6V99PWu3pWaXy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XzzvUS9pht8waB5QAdKMRb8Zh6eP4iJgLsVoWkbJuVabFWT9S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 502 - },{ - "name": "bts-robertlucas1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wxe2cXTJq1ZkY8kfnjbjqVg6HopX7CH7wWaPhyBFPRdw9VB3d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GsVjTZWxHw8TdmBhwqcXBN2UaVNkDv86oDu3Zcg7qyRazZUtL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17913 - },{ - "name": "bts-ku-ku", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SPcT3ytE4VdfgDxgsxn6RzbyeVtitHCfK7QGSYKUc7eGVnWSp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST755uYCsk3DzgKXyZPM2C8ZZ2jC78KmBSLG55BLM5VsZEKDSR92", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-cni-talltexas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KXGnpZ65E12MxoPXKybjypXmB1M5ddcJdmgTkquHNJcvQyeee", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5KGbWzR14StrZ1yDBCGnKuCyn7CpkibpNYHJhsyMLkbHRT3j9a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-jrfantasmag3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Gmpaq6DTPaqkwsKRxG8uW1j1a94J3wiVDJS5UAn3YPMEPjvyW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dWLyFdRKredo6tdnbZHBqQtXLkxaGitwaMqmJExAV6tMTAVtM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378895 - },{ - "name": "bts-bts42", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qRe9Ri9f2MeTBkUM6S3UvfQ1R3ojYb3fDcYFXQELqruFx6WEH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79nHSnX1qD6tU56ZtpCAnTVCLHznYf4duZ1MDeN6wXTkrUwBgd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1176 - },{ - "name": "bts-kareemaudi1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CbnPjibHDFfzWJSSj5QYoDV5VRiAyTeEa7KGm3pVWsAL2Zu6Z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vHrtexTYVe6uDT1EXc9mo5i365KtNi2zdoJLtDiFomPENUaH2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-vishnu-ttd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VzCbdZkQC2QsmT6axD4LL1F3ZtWH3rijFqFVFUnFUsS6UzPHu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LSRVsAb228jMMN3cJdtXj6ALfycVQWPjNm1Frr6N7spMm4x7G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1408177 - },{ - "name": "bts-manipuflated69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fsLPUTNwzJdBPvi68mLonchKsc8ybhbCFek6SBBrjD3wcYwrP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ye6ATdmwMPRePNM9fogiLCeq7UiX7nrF7wG15eopjHtCjbj82", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-maemon-yoga", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tREowroAB5CKgATngM9krTDP43RahqZixG1KRux4BcFgRzG2V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tREowroAB5CKgATngM9krTDP43RahqZixG1KRux4BcFgRzG2V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 552 - },{ - "name": "bts-xptx1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JyPstvWKDbPmrCDZWUA6KiapJezJwzaUDSvQN82TwpPTq8e9X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k7yzDuraLoUnNdHKqs6aRGfgGBUr1uCwN7egJyXvCuavCKGsu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 686570 - },{ - "name": "bts-cni-pbalow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g9SxQPfCJWjBWcLVJAt38f6ZSajSY1fCPwxpPq9ELoBCudNy6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6mffK9zLgiVkdGVcDr13At6Y2ZWYVdPMKLrkT2khYX1KRhy8FE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-jalow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KSRWc4oGcSXZKHJQ3mvWR8yPpibjutuimzCNURntpmVQpuDr2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST565JRjEw2kTndmYMRENGPa7LUSj3ihD83HTfUcPwKDAKddMkRT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-jun-zhang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5k7tgMQzvzUXejxzFTFhhp3FbTYteD9bWLbSg1RqW3cdKuL8m2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kpiWzcvW4UKD7M2r64VZNVv4JJXvj6Fp1E78o1SXRMWboAoAr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 161 - },{ - "name": "bts-lin369258", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kHk6R1zguQaYYQsRKhbH73VE4KoCp2DcncgcPSXz5xXY7na8z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6edbrhg9EhyCegKB5A1QwR3FgtaCwyFnDnKmdTkCq9FCGYhU6L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 149829 - },{ - "name": "bts-k8gb4920", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AkBJEmAaifcw464idn7hNuWeJTFjfshQTQ8wzMGs5BPQaPiV3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6McieR8wTuNpz2SuyPUVnHbiB6zsqk8Y2K3a45513QDJPBh8Gs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128519 - },{ - "name": "bts-ravachol70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qK1y8UDVYeQqPSzuEN1qMHAq1yqR9LBMreUSJE8kCW5TUatPz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CvrDiibiAbPaEbfK8dwMiVGuZb42ZVpKZEy6mjG1nVcraN6re", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-rules-169", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qsxCuUNuKusywW7xzSGuXkSHmefqSDjAS53pjEHaqkSMwPk4P", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qsxCuUNuKusywW7xzSGuXkSHmefqSDjAS53pjEHaqkSMwPk4P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-gaitan-steemit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6waTSnFCeDJLBFu6q9oTnxSxHG4YD6yQMJkGtFGSRp2Tpq2F7H", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6waTSnFCeDJLBFu6q9oTnxSxHG4YD6yQMJkGtFGSRp2Tpq2F7H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-starmoney16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uboGuoTMkak7CcfN4ZJ78KfH3YgP8o4mZdPGM6i7Em8kVGR95", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LAPGKWnUgxSbrYtbW6zAXgsvvjbRWyT4CN2iDGcd29noQbvGf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-thelavicellar1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ecxgzTvZ6UxnGRZuBX66cdu6XDywMQCEqT1RAcSKVH3pAn3jX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GFpdhdSKMm2e1kuaQYUxnprb376BVoQMaTqA5khZoTHmDmNRx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 117667 - },{ - "name": "bts-smart-mranderson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55F5Db5r3FBV5ndqAnhPjnTCeXDQvXF7i7o6XK98iifBSK7fVu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55F5Db5r3FBV5ndqAnhPjnTCeXDQvXF7i7o6XK98iifBSK7fVu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-sevenseas-890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bridn54zSZukhDCvcTLfpAnwQxVLPqUuzq6o2bhmKT7pdLdVc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84a68DGmBPVoehnoKiPtp9ZbxRvVb41exoRBhWPquRPC9pBGuc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 688617 - },{ - "name": "bts-cni-psalms23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87wePjeTA1nM8xABmGR1EYsKQfpbnbGxqr9kq6SggSWAzWbDoc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5EaSqrGvu5wk2P1nvneqqVBYrutxLCcs3RoFkLXNgiZ9X2kFyW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-hope4us", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69Cvqc7EY3DrDje6f8cREKQXohUdz4jhrGbuwLZAawAyA44gN5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7s1rDTPiAAQpBn2ACNpG8NLN7D9gjJfBM1ap44sLCaTbpppfe8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-favour2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vpByTJHurnJMCmGdDqwj7a2WbBU9SSmvoeFwjufMkfu5kpFLg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5MC6k9pPFurcNB66ZWUtcKnqDQvT9AwNHZbaFbBknxUhtx6i7v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-godsfavour", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UVSzkMXamdSPaZE2azref5ADMaN6qJVwPMPYtZgFpCxmTXNGq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5gwkerbPJwzFQRDWV6RsGWYwC5st8hPXEtgwXXjMB3pb3PAoGs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-airgonomike-9087", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83Mdih2MTyd2Un1U6Ato7j6qjFY7JjtVSXkzCJJfZhwxdRs7rH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55caGUSkeiWDmYbYdSgG56qgXRhhkz2LRPFvcqajrNd6GaXuvn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-faithfull", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FhZqM7w36EwmpamLPENr6iuUttL3fjiSdco2NpKGerrGgUwNV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8P1fKT8PBwNsCKAwuvtzS6oDtZHe3gnQxQhMrEnPuLidzJM9ou", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-ibelieve", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kCtaXNYTiANtG1tafRBz5aBHjJjjBZ2ZZ776NQ7BuBdUJEo3v", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Sz5v8WwMy1GTCDeh4rZ3rsbezmWpbWvY292FTKNyq1Y6ce7Tm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-divinehour", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T4pgbLJVbvJh69556AizqC5z3AUwLAQJqSU3U6EwEZSjDHqRY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST65wev1wxWdNz8eEirLkVMgCGfMvrkBizF77AfmRJhZt9feT32G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-smart-safe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8J4jzveqXX4ktpVQcNmabRJvQkmP9FAtu5LGDxEeAs4bJn3trC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8J4jzveqXX4ktpVQcNmabRJvQkmP9FAtu5LGDxEeAs4bJn3trC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-konatrader1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PTKosYwQrton2ng23eCcGRrVbDbdvMEASMxiHUncNaPfjm1QP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LhV246GVZWDpdr8wCTCMEs8BkzNxEjAvasRoe5kPqDVE19tvR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4775559 - },{ - "name": "bts-blu3bit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BiYeKnNRetnQLNvEF9XQS9DDaZgi6r3iq3ek6D2ax31jo7j61", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sW3nFU9oyVHSa8hdYNrcd5HkaYxoC8qrVArh8QVkxjoDm8M7M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1324962 - },{ - "name": "bts-gundle-bum", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zkJsnAdfkJPfQ1Rc7nvFEBWgfTK5C8oYUgWWhZCSKsXWswQ3k", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zkJsnAdfkJPfQ1Rc7nvFEBWgfTK5C8oYUgWWhZCSKsXWswQ3k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 145 - },{ - "name": "bts-moleygunn1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6McxPRo8eyve3JRreiMtcYmxgxzTF7jV7AvLBNPptTWDXxwt7E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z2f2mrszgypMk9vvf8RuXWCh2Vjg2iAjpTDzd3bnwtCG2T8VU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46197 - },{ - "name": "bts-lander-ops", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fV1kHY1orUYq7GCSfqSSvLpYrXdVNADZeeWh5kRiiQEyQAGbR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L1abtspS3GY3MLid5GhZaQtRySy1bayb8fC2d99ACyeehjobK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 194 - },{ - "name": "bts-hog-wartz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YXq2vSDEpfF8hWWC5cyqxpoDX1X6b8tQ5yZ4W7DemQSq1SXbb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ixPmLAUv5boZmpY8pppHMLUMxFkdpgbAHyeoLFWRbQ5FMDPja", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 411 - },{ - "name": "bts-coinplanet123456", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DmvrtBpqD5EHBNLsRjS5Cga9Xd1Nwo6rLGVjer8TY2zMEWdNv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bG9J2mzYnH3Gc8fooVFS8MMYJvKZ6tcFfm1qMvjRn2J6RW4FQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-testing00171", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JqJDX8vrXLXs2X73bh1tWMhqxRkEJwdwdDJYJU3DdP6AMsY2B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fDd1wZYGwViy3hECxu9memUQEiNsQ6D5b6BSiuDnYdc7iAmpt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 159 - },{ - "name": "bts-proto1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WbbyirFidvvFgYKBkbNbkkPWMVJT9bfH6Wzxx8G32a5AWjd8o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HVEh2ShPt4CJzsAL86KjowB3E67iWh9U6spjEQqF4ZfMQBGVc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-babenko-nickolay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aHcTMLhiUZdt1YSzgopKWPcBBjEDvwdec5xFMkBCss6LN7uSS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Mg5h8RSFzkbud4wWMQNn5n8pG8m2yHr7BvyiFAF12XXVY2CLD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1344 - },{ - "name": "bts-cni-holyland", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BB49JZMjNq7dB5a3TxMM5Y9wTG6u3oxfH4pSejjfda581iaNQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5XCr76HhaMLAeUHX6HJXpNo4nxSBpTPe3MsXiyN5yCiRGkjnuS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-pioneer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yfFPmoYX323t2RUwevbRtrfcFEXULtbFEZhVrqiS4tjfMPMzT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5K9hUrjEVQomZmLchDUrGND2R7xBvPsW8naiF4vmvmWbb8JM37", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-spiry-xbt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NfmWe3DesLFQyf3qrLEWM86cait2vwLrmfswsFGngtQvjxndg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KX2KVtTmYxmXLfXFhWXNxcPiw474tPi7kKSE9FrYP4DLRke4T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11437 - },{ - "name": "bts-cni-danhorvath00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xmY7WagThrJz8TSAQJEJCHsS5eoLn6EkKim8Lre2nYxJhb2bw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ns9gm5oXewQMQthjmCq52BWVpD9BtcHs1aztKZ4EZAiCZm5xK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 353 - },{ - "name": "bts-ugly-elf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KVkaorfRei7C54AqYgYKiWf515BaPiFQ1kPtos6VXjs58inYZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jpedZnuAHH3h5xAkzTYv6yx1mbkymT6Z1zdCayUVYoPX2XhVG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-nori3sasaki", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eVhNsYSZNMsF2cbd186HRrDAvu5ro7pBRuo9LDmuYKTnRDkJQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6amyQkreoXDaXpcd2KfRa7uPb8vyBos91eRQzQDvHEnCihezpX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-test-imyao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TyRVCEtiCgNDBCTJzEatjAH6qjb6zj38ZgSaFmDzF42DKtcHq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GWrQzfBbaPQQsdLEh6wGjbT45b1NU3j4dV9hEAzpmBB8zWuaG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-leceo8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AsYQ3mfAktMBabxA2tJKYyHwH1zdQmq2imRi1Rd3Yg2nnSZHt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WLEFuRfyDJGPgJruJ9CrV9ELg4dB2bXaRjybfZnFziep2CmQ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20 - },{ - "name": "bts-tsuratsura-3557", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cy2wXE3CEB6fd3pcq2imq9tUMH1SAxfc8YQCCFf6Wdx9uiMCT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sHKoDZKX8BnbrpnMJJa8srZPWMdQUB6FQVkGxfveY21z8gguy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7419148 - },{ - "name": "bts-raido-caym", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66nGBRpVS2VZ6J9rdJ27LTpcmn4E8jphUx6NtjdAgdTXfgmnx5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mVNjKS6B3UWc9oTZ8VeScaE2Y3JrVv2T9YuikaujYwf9r3ZVg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 469016 - },{ - "name": "bts-jesuscoins776", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YBYitUr2jLzdposnUiRCzueTeWpyXGds8sBU6LBTmCZPHhgVV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BXVPkH3cBvquvuTBrMTY2k5fc4ANWvGY8JB9Aeyoe3KZAjLv4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-sandherr-412", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UJmiXZrYmiUPLAB84EiAbCimAP8pAuWx9puUmcSZJ2FKxGgqr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jy1TRjBA31Sq5vD5TF7V7FjLV2xEc3ofg5beYN12iMgMp8ML8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-galah8ae", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QymENi3joKYKFTgBAK9mRZ67UmsKzqBggRnGkzgqMP3ndcXEB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST556FK8Pz4EdfRm3ahfBHLGXZT66AfVZZqMfwSne4ShTd4yEWxc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-tester-imyao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eACJ5z9QxtjeXUZ2TvyePJT9BHMAUivQnFmpwUX73sNd8QD5S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eACJ5z9QxtjeXUZ2TvyePJT9BHMAUivQnFmpwUX73sNd8QD5S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 173 - },{ - "name": "bts-cni-cinbeck", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SSbsbTvfM7Sp9rHhZxDqhGeRsGMDNu6jQLNTctXdR9qNsBVq2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FPCha9SP2nQ46KPrFX7xXXPfnx1WN9VYbgoB7rY2LXxvw4266", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 111 - },{ - "name": "bts-brndn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST845LZ4Vw6nW3fBmE95sbusckaju9oFvSsowFyr1k5Zv62Bf6h7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NCxvpFTuQtLZgiaryh5Bx3e3NWVTgxsnyB3sGGUJsgJqBfdtd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2095290 - },{ - "name": "bts-bts12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UMFSroNRw5UMRJ8fqw6dD3L3noQfwh7CtBA51E65jgT45D4Br", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GG5Ww4svFLN8xUg5NnkCXcDN714fsfJukjmVnBowyBnNvi4uf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9622 - },{ - "name": "bts-cni-mahorv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y2FdLSafRMnSdoFDfZoqsDjgxBbSUsCxmYnoHoSSiZTxqD45X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tBiyuVMuDFekjNQh72yXAKpDUyGUEoh8awGc6Ry6k4j6WbawD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3042 - },{ - "name": "bts-bits4dniner", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RLE8h4JGQxnq8Ysm53gFYEyC4ktvVbtNBaEHy8GDbntbPe2fc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CAzojizWD1qPNKYXPxSnNTcVGkCfrRWRCGoFmZm1XQzJntCfo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 196622 - },{ - "name": "bts-hxy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76JeXcXTYZwWkzkWbcbAYGKCJxR2RSC3W1shrPnzut7jKBakaL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76JeXcXTYZwWkzkWbcbAYGKCJxR2RSC3W1shrPnzut7jKBakaL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bbpingji", - "owner_authority": { - "weight_threshold": 7, - "account_auths": [[ - "bts-bts-li", - 1 - ],[ - "bts-ebit", - 1 - ],[ - "bts-etbtc2016", - 3 - ],[ - "bts-hxy", - 3 - ],[ - "bts-kingslanding", - 1 - ],[ - "bts-lyfeng2", - 1 - ],[ - "bts-yao", - 1 - ],[ - "bts-yuli7376", - 1 - ],[ - "bts-zy360", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 7, - "account_auths": [[ - "bts-bts-li", - 1 - ],[ - "bts-ebit", - 1 - ],[ - "bts-etbtc2016", - 3 - ],[ - "bts-hxy", - 3 - ],[ - "bts-kingslanding", - 1 - ],[ - "bts-lyfeng2", - 1 - ],[ - "bts-yao", - 1 - ],[ - "bts-yuli7376", - 1 - ],[ - "bts-zy360", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-s4sp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7krFUwoUbjG8XPexvAcxGGde2vQKNevNR1SxQUMzgrwFA78qGp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7L7yDf7gvBoHVhM4Ehq3aPvEkSdaYj2iYeaRhU1V3qf2oXGgxx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 189 - },{ - "name": "bts-moonstone118", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8AJPJuq1AuAnnAL7KYPM49rBVq26SHu2Rbc3pybi4KzwERK5Sh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zmpyoT8X8xJCNAiZW3S5x6X9MbyUDk42jBVPo8ZUH54ZMfq3F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 76 - },{ - "name": "bts-sandherr412", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GocFTq1xxGnJjucf9SEEYM6Z6pd3FvrgxgtSXyxi74oELeELJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6s6PR4gWEiqWcx6BBne89jhpTUyej767ATSpUFZUzgfGJ3rYX6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 215 - },{ - "name": "bts-naok77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87nHTZk1MMV8jXxhTpfFMjwozU9ZL6JQynooh4Bu23HeiSoUbD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53oD9RGQ5Mq4SUAX11Jw1tTu43KwCs9uBRov9mxmfkuvLFKuAN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 639698 - },{ - "name": "bts-cni-kimbijsterbosch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64kdH2Qrp8Bhtq9HCsDpGtuHPEvEvK3GexK2rowmhLt5D38YVN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8Fsg7unEaZpp9b6LtJg8X7LEq2d9yWo3huFJaS3ZUHsXPbVaZ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-cni-hutchtech", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gfuMT7vYsntefpW5XhGydvWGckXcRiT3snhUvsxze4CWUAicf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6WSYc8mdNKsLy71oUhcWvz8w6ruziVVikDp4FBdnZjHJNB1M34", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-open-eric", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UcmXBMCsRP9eHHXVFZafpnFrvid3h2FnoTQgUnB7sLvDnfnAq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62msms2zMKSHPW5DwKAhuTeFXpHK48PjPirBhUncLdKuMxgb8N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8786 - },{ - "name": "bts-cni-jodi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ghL5DH4TnRjAnW62fMYmj8oMDssxFtXEc42oQz32gfHwTWjjP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4wznpebsKB4aoQkxQWryHrCcGq5uVp1VFGDdmnYvRdcoYmRWeE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 374 - },{ - "name": "bts-cni-mogul", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5eTdW1x9tykzuqk5ZG1RLwpS9cEDxnPYQhubXjZEE74YdqHdsT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ],[ - "bts-ronmur2016", - 1 - ] - ], - "key_auths": [[ - "TEST66Dc28qknQBtjWRSeLXuPaeHaJAY3D6TDFAoyjNH4BjSvFPdsA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 404 - },{ - "name": "bts-osama-scwall", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T6KvcfWKCiBbNjryu4m3WPUm3uewkYh24WL9Xrn4oXiUxCRPS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5T6KvcfWKCiBbNjryu4m3WPUm3uewkYh24WL9Xrn4oXiUxCRPS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-ckdghks11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ha4v5sjkGAhbFCdXrAdNH8rNpCohn1a1TMqcdedAGjzpDsfNX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iDWXiW97fXvfJdApy1Zxcnerq9vduYbepX43zhciC2Wg9G6Qp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 129 - },{ - "name": "bts-mmx0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w1Q8LVqBjTfyPrMF3kvKXH1M7Kn6nePPriVRowgHzWX2JTPVx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yLyU94VhH8jPsCmH9U2fnU1axKvqbtoqed8v5SBtCj5pAV4Us", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8205 - },{ - "name": "bts-edonatoqilla111111111111", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XHDHJTaiqej9mniuErkeUxE4z1LQPN77toLJAvcfBgQJ7VoMX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dNVZepGoNE1t9koK4ihkUyNTQcvNe1vYJPYPYT9kbGgjX6DRL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-study-btc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sZKzqjfudKgWX6mCyLzHuDFKuABKxpMFRR5fmoXsdXaisbQV8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uJt6odJeirZ3QfvkrDA6qNLwob9tGwn2gwLbNTvexp5yByY8h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 308182 - },{ - "name": "bts-cni-texmate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NEsXCRB1NoMuTWvfnPHqPgqbs7bkpg2PxCAXttV1yFoNU4neZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Eb1ibby8DVcZbsMwbjePbPCxGSFm6jcFQqPJaYAVpw2CzsqPF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-shadow", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Gz3JfnVdA8yQoS8owfctxeKdaBEoCHYja7SsG6qzidTDoAJWF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZtFDrfREtdksZFjknRcu3L2a2nTSjvJPK2AiQvpyQnCdRBKxS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-willy-wiz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FmSKtx7g7V8zGCEtcyHDkvegSJj7As7ACtoaEVHRArM9SExjG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65ujvvBScRWJ1YGsDroziJwnF24fMK19r8J1sM4axKxC1MfBy3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 325029 - },{ - "name": "bts-cni-bevp", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MqfZnC4ZaTdNu1QwUkkQR4TPbiPp6ciu3BUwq6wHiQuxpMk6x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7fjv9vAuyvLqsqgs2oR1LKW4DvpRLCaQtRne1as392ryNRnEe8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-justincharlton", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CZHcAP64KP16ko2erj1pCGS1nXnRoxPrc7gtNok9kroG62fEo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST51ySumjfjwJsh9xPJZN35dKj7Ht4PXBVNZv4R4UhZVG68GB87G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-d-hui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST649ec8xkJ5ESCtVhE1KEA2eXZYKYpUYY1Sw6cJrUaR8SzZEgfU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST757xkzM8KAn6efikgi932Qy3K9dZbFoMnBLsQr5LtkyjjRfDwi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-liqingv123456", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d1wKJUW6mWYMhn41yiiAXHowMSE2z5d2DWC2i6eCPsuhW6iDf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52hF2DpTsPsR7xGhU2hLsCacpgYtDkg2wdgGti2p91GeBiq9JV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-b00b5lbs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FCrG6eh8779k9ik5JmYqkQTMUanh66nEf6b75pkowZu6D5HGY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LTi47a2SaZPx1nMQC2CRCmzXELVSJ8fiAxJnrM7Fq3RJjipu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376662 - },{ - "name": "bts-cni-clpennau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R8veK3jYwSiK338Wdv35WTah9kfozVtQL7XGGdw9JqNPGBmCm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7fW2w5j1JYFo2C6v9kfsPrvoMSbFVmP6re29HeqMQX17QGFRSN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-dhui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST649ec8xkJ5ESCtVhE1KEA2eXZYKYpUYY1Sw6cJrUaR8SzZEgfU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST757xkzM8KAn6efikgi932Qy3K9dZbFoMnBLsQr5LtkyjjRfDwi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-kids-college", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BNt6dXHEHwhvhUsAsXzNngSdh7NA2nZza7izpZz6s5xAo4bp1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H37HW7ZaeybCFtPfpr46quKkiQ88RtmVMemWzHDYgMnCfe183", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-steemgateway1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ea14F2JTaWUTMhGjWkzbA5UmNQ7r23WZfqquzoGodRefFMzvF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6sA7MuhYMuVogXukNxdpgrpP4W9MBG9S5AvsxWPfycqucAnGXy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 845 - },{ - "name": "bts-brxstr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65v48zyTfETKdmnBx4GiS4tCYxMPhF8wkunDN92xhZQHTVeXi7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST792wR3fP9SNmYVfHKD8YiiEjFxm72zvSFiDntZ3QBVA2qehyVJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-yunlong1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JSzNvcAGRJEsh3nD4AMHi3yN6h9jL89DprYJQZFE41LxUT5fZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DitahDkCgaoytfmFTxoZSZvUNw4g67oGUjKFnF6Yw8w4C7wJr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 97119 - },{ - "name": "bts-cni-abpennau", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iSVaZ7BbCMwRUqWaBUAJVcNKEGo8P6NRTmhg2u1UHuh46iuLc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5YHdniAHo98Az7dAHob39UoFRkmgyV39KjF5ZvqCKQHp81PJsT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-wjbriggs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S812Kqbt5mN8zMMhuXaPjJfmneBoLAn1NLWf8K6PHFZ9mfdue", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST68BZDjwkRwGzSw2KPHAf5HrjHVDKJGCyS3YWn3wYv9knCNgoHa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-bhbriggs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7n3VCMxSzdBQEWnggPMWUxipb3BsSpuxu3kcegyeTLiMX9XntX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST613mzeMf8qQLsmtyxqAHwZgwK9dT6bFwg6nAYcVLnifPB9ThhF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-wald", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N4TtD7pGRYHAdWBx9Gye4insCz88njtveuP9mtgteACRXBjjJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8cudiQ6WbCxmW8aM8VEGcNFV4KAiXKs73eiFiXPDuBv6YyY3Gj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cryptodude99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7WrxakCWzs33yoSmFhdThuVbKU6BR6Z5LHixAkUiXHVii2VC9h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vYBYRnTrfywJoCthEAws6oziDkY1aYZJFT7DiqpWT47LqgHad", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 721 - },{ - "name": "bts-cni-dale", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hmmdY8k19fGS5MiJKZFxKCa6w8hQGzbpZcTNDdvqVtSQYP2TD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5pzJe1jPa82tAhBkrhuoDk3Bf29PG3ferD5uPATT2WBx8XNbPG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-nikerr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52xcx9i35nfbUzTXSKt275tAdetABxyyyhiyLFRF1qfMSNa7hN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8KigPgEc5QRVb9CBNgXbDf12GGsJX4NsSCKs6t4QoM1beg7gtQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-on247", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tXBbQxKZWUPXxLRMUgJqXxuTQTkRRzin3VEC4TDp7gpEovVZW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X8HzDPxV3KNBL9fzmUKnYQZxjwjbwuceG4kwgLdDo2wEm4efJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-bizmate", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T49wadkViVKdbaM1NxRgDaonCLj4jih2i6Azejpdetp1ymNmG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6SEV6WoMybdcnR1KeJV7M7R8sYX7DTMmHuTms8oSG6emz2PTrQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-halobender13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xeo2kZZVRAYgUUW2o4amVxQPDhGhCRpdPEPrUPzFTwJ7sntnf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78DvPRRw5PVi1o11kTnmYzpRchF5pemayGqdS4NThKmHz9WEus", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-deos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JECEBEJjB5WyHwYGXmUSskPdtd4ok1rKQPaHWsELSVhDKy757", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4ujX9YYm9WzfhvrV4GRhWphdJYHtaXJH9fPsaXKzJMvBacnRvS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-q3-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ueWqkaSYzKwFvSpryodk1Ld4tLCz5v79fzBu5XriBE68nm6Nc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gsBrhEX8wQmpvbpvPCJXLYCsmHwKYneYeFn95Y8BYSPiRYmQL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3760972 - },{ - "name": "bts-drk-ghosty", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81NwzSCtjUggvzmW8H7T2kHA5He96ygAgQF6k5ZXAZeFuK1JsC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wksoFmM4Hrp2kvevLNBKchmkZVvmcfgQXyPBU6ZbumWqFgzj8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1503036 - },{ - "name": "bts-cni-rscull1963", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZNexsNcNdQwkt79fKfaqPVGAXjRSjXkW6EFg3zgioziKBVrPG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5tcq5gKaABsNAXkP9ZYwtDp1ujp7P6xzYSANE575LqoD7aWRAc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 722 - },{ - "name": "bts-ceni-sandracharlton", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5nzCUKbrZmyNj7JePTGtpe7Adv8BU166eZGaLfCnuNTw3VPFae", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8bhPrjoSUwjG4ZtQ9D17tKszFGonESZZhYrV5UYybKVNaf2PQV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-get-free", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82p6bStNeWbwFx9UVfby5ghGpAjjVRMq992dcrQGg7ifKnUtmx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82p6bStNeWbwFx9UVfby5ghGpAjjVRMq992dcrQGg7ifKnUtmx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-cni-alohaalani", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uJJZrR8nPZWjK92mbvXb791aTw1bcNuT1aJnrjZqM3x5F9sPS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6PNohERSta7qDSe55MyVgLUPU8dGqvRuA69pHwgVjwbKiiyHd2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-grooviak-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w4LCeSQWSEudw2MZBMbS4jZ142zxCqoHuS76fiyUg5Yw7AwUd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CpSTMV8qpAvbpZhAkoL4uSUU3Rpo6j1nbYoPZCQ5XMkqYywJj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7788 - },{ - "name": "bts-g-ghfh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UkpsvQG9X4yUEpsrY1aKaHsws65fCeZKiLjNmQ9ikoL8rWARE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UkpsvQG9X4yUEpsrY1aKaHsws65fCeZKiLjNmQ9ikoL8rWARE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-poltergeist1987", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65hddk5nK6uSCijq1zqhxA6B2XD4GeX1SnZsqdkn4qC8a1kmhP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DsivFoTKheiMGMR3f4JrWEc72LaN3Qh8H8Rx4etXVTomtkH3x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 367656 - },{ - "name": "bts-thisvsthis84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NLQSHcFT3yNykLTV6RadzRvZhb5u4t8GTUSaoomMMYPqKCB2R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GE1oWG9qE4i8y5EZ8XyN2XFfHuqnSC21vfH3gX6wMoiRY1NEC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4187794 - },{ - "name": "bts-ono", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cni-jrh1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67mEEtxhpupHj93CM1vTnsRnhAWwoqgRee4k4CRcaouEMgdn76", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6L81nLhMxE7yjcoHoGmK8Yua13cDETY3paVUzwDheeZZ896fXu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-blarneystone2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f5ooVkZ7VcFjgEa45dqsi7NV386wSqhRXATiFHkg8iwQvSpwA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7tkbnmj1gKWjzTw9PAnMgP5nQ4PpxmLBSChRTvt8LXH9eeMAij", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-cni-javelina", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5L5qg5VLHbeLE283tuU4SW4w4VCwrdBdXf3vyBe718CyDUGbGM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7cTGebUEvL2Q37wdmhw6TSpQBrhbnHFBZ6b2e1mYPR54gHcFmB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-blarneystone4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gV1qKpqdqQLMC8hSepykZCNdJnTGYWP9B1dbPNDF98byhHCRQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7iAPRAEZkaeyLS9fP4HXp4bak5guRxnAma3ALp3TUyZXwgf58V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-cni-fecarter2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75FMzM6iRFVvG5dtsNv235CE4JAqMKKT6FV8Sw5XywdCJJeayG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mvXE6zho4P8TUNrxxD59GZz5bxT5ZAV7QGWeB2KJENa6KV3YD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-s0litah", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D7izHLnua41A3uKAW8CDFoEx8PfxYM2AV3yHYJru5rJiT1AaB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WPC6w3pUsYURkJgiQ7hPnUhRpC5bUQKQVmZ3APzQpMdsRvhWf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-yladvocat1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cf2PxqyZoAqzur6Kk2TfeWSvj93McMqNtbhsVfCLoyZnLtHf5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6feEwXMBxid7ChUp5tnDwZKgiiPyhd3sTBSZf98SJBS7He7Syw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-seerauber-666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KdFouKqFURHYAzjfYFzwsSaKtEgcvuHgG8pQU3AS6h9iRsFBs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8USk6mtYZkSwmMAG97XCDTfS3LkF8swowTv7SyD8ijfb5HZicU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-pinkmoose-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NGUEVmpTX1G87UxgkTR3PM8hU9objpG6MjuZgkpobZa5hJ3zP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pY99m65D3NfSApwoj8sr3wEh13sS1GaTWe2DZrcCqejp31coB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46553 - },{ - "name": "bts-woochou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63YfXD8xFRTKAjMxmvAyConzbido9GVbnYqy7fWMYQMSad5YvD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XN37JTFToZaaP5XdGiUgVKsK2byLnPoGKA9JpDUktV5E8hEu2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 203 - },{ - "name": "bts-zhw900427", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UN8qezHWi4dozn3TYA2V4p1UUvyv48Wrkh55Z6dLGBC7bZewo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RQ3k4RNXmdoQDHEnmpq2NfndmUJajZgJwaY3fAmLs8ntwLBmf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 136 - },{ - "name": "bts-kimziv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST73pHZYfHowzjp3zfuAPk8C6rGKZWMWjL6rfE5csERbdhPKnwDD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UYprU9LXHzC1i683NAhHsgQqSiq7JFHc3YLxMmHmN1mpyuDno", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-recovery-uzuoolcd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gtKXY3Rt2WWGBTvzaTDjuMVmt7jyxxVP7V45z873HHS3AXWBz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VsRobdjaB5D1pfgsqmRp25frxEewuT3pwAReHukFb15tJd1ah", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43453 - },{ - "name": "bts-jokefree7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Lr3tEBYtLa1ehRbTdqqRGM2HcsgDemHPkpFk31LHtWkcAerjW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fg8cR22bCEfhuKzy4VMWgujm6eha1hXUYRxzekUHvm2brJVer", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37811 - },{ - "name": "bts-cni-maxprofits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6i923FTHmVsCyF7gKWQjBaY7qNAosE1WXu5Zotm2DsmechY7Wy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-goldprofits", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4zqR62rYLLnxEyGyFMUt859nnc8PeY9u8Qum8JjWsDZqxkV31s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-aleco-vortex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q8bqny25bm51gqPTmXPKE94QkyBdiB5VALcc16U1o4uNxdXnn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y9ufMorwBBodwJzewUMA2WzPhEuAD34bUpiBsYNuYa8Gjq5XC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 811 - },{ - "name": "bts-cy-jambo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FhAXjVeLixm5okHd2CnrRSCAzrGT4aR9rADfeNReKXqHixgw2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jrpPAGprotxQAyp9vfz2mmXi2F3Z2g6ZfRaF3Dm39qRW9LczB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 132006 - },{ - "name": "bts-xrpbtc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tJGtarp5F93uT2LNDmkEkbVa1HY35mszuYJXkwJfNRnnbhv5g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Fn6J1Y1Sfzw24zeACXDwkNawRJ1GzMB6DHTW3JMEhaHo1b7tV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27846 - },{ - "name": "bts-emperor-mollusk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mpqndf2jywCc9vSbwoJcBZmrJJmPNY7X3rMzcjVdVgZMABTa5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77bnZ3AQYzzYLyr8Eyp9QVyJvqq8n4doKr1R7LVetMqkpJY6EF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 276796 - },{ - "name": "bts-cni-jillaroo1955", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kk6TLBRSupfDWuLxacwK4kZ59B8n6icjeMNvL6xa6WCMbWZuy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6tGBwwUv8dTn6AKPPgH9tYn8Byn3kxhPXRiTsYVmtyrBMdHBWz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-deep-synergy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VFUXct2vyBSsD5tcu7ZjxZw89vRwGqiq8yzQyGvSfDmgrdBRZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dz3YY5e9eJZLsjVHnxBQ69jGtsaFqAZ37ovP5j8pKKBE8wYUi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376270 - },{ - "name": "bts-arch-er", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mCAWDRWinhCm18HToqEVmbV92JmJRokBszjTzN8dJPf4yADYB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8donDuNokKwg2amRAoQU1mE9LUsFU4qVkWrufzrk1ZGmaexZQQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 418 - },{ - "name": "bts-cni-meltbana75", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71ASFjgZ8M1KhTRAq2oWazjNkEy8Rq9us53gCAEbAW8Q4KveBX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4zN94CindicsKL5iyAj7oPNv42wADmqPMkZ8rJb5wq67Y2hFth", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-ver-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WYnHuMinKwMsr6v6zqS4B51dgqdqZA862zLbn4iri4XKnAUhY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x6hqy6hYb9WoYR7i8t4ck7FQyfcN5J8818azY9S9DKsRnhcSF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-cni-vineyard", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mngKLWS58sgzdvL3Q51Su5encm1QYP42JeY3No3jpVwTXvmU2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST52YHxcC2jdcZYFGNN6pdBvLbG6mqhauc2TkZaEAXN3QqSuHH3B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-ewangui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pWUiGbL1NkVpAiUYHX5DJjYPXrh8yWJYuy6JxZVeqFgoDdmCE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6gsM322KyGWRBddFhp1PhPr2NbkwdXDfBJ7R8swc5tQMCoHBJ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-roywestbrook", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U6BpwQi41HHGeyWXdnPVA4wGbgjeuCB937NhUuz314yez7u63", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST52f46BVsw9T1yzCwvGU7Sa44F2ER98jDRTVkqYshety47VBqJT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-hoangsmja", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QBofhjY52f8riqrNyKkpbXf83pgCijjuSag9y3dv8KRXYHvkT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7QBofhjY52f8riqrNyKkpbXf83pgCijjuSag9y3dv8KRXYHvkT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-cni-lisawestbrook", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cSDRybiykywy5uUt1ZGy5bTjnqaAC4m66uASuMxko95Xv9Wiu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5AaFK8koqe1jVLwNGS54gm4HDCj7tZCgGiEhdGdkG1CRhNb6rr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-phamusn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Hc9G52hMdnZFsjrh8NqjtceUSJ7e7mC73HqgCXn3S67FNnPkr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8isqzmWYkn25RNTmpAC3vtznNyYZMFg6HmdGnZb5X3SLgtqJoT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 406 - },{ - "name": "bts-cni-kimcuc5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HJuwckGwiAAzWUuRi5m84JH4qcDePLf24pSNXTJ4j8FjgdbqP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6dtbJDC7e6WbDCg4wAHrvKQUhD3XA5apsZ9G5GS3ERaZmzkHQP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-foma19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cXgxFRLWt8hMquhr18yw5jte5nw1WyJBr88oYTtsp2TJVGMh2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76VdAAscrATws5Vgf49gGX4pBmdmPnwpt9fnPdZSYavjsnHsdv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38868 - },{ - "name": "bts-cni-paysyou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EKhcFkSRKES9wLVgp2DDXYNFD1eAwrSodU9eBgyp3AK2nAasd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST88AkC9XeEVtyNzidgreonXkF1XQNR8PXgpZ3sgVJd2Has6rgqD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-green-vector", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MAhFFie1tivgD1M8bVW8nQc1mojdyjcteX9zJJowUVRvJPaf7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6u5sidzMFD2MVm5asV2o2wjednaf6pWhNDVzdo2b73kCCf9Vco", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378 - },{ - "name": "bts-cni-s43spennau2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TFFPmPqhZuE1wXqGZ2A5JQbyWYL6XcU4pxYdQkALGaAYEPF3C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ePsruRSLfGLDspKJPiiqP6Nc3TSrtYthm4j8ynoMbEtNSaj2n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-bitshares00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SAzxNp93C3LDPsv1GseWvzcR5G3B9SsPxB4ZpFWUW9FHwAo1x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xtaZTrS4N3YbRvX11LaTjXHU3gB6NLWZFHG1hf1T7KrFyqat1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 239 - },{ - "name": "bts-cni-ritagill2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SBaKtzaMLsRNQxwr9TXpZqija3AnQ84hgxccQ7cU6MUCb7T6x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8kJUV5ucBjTt3ViVJS1iEVF5PAN5nt4XLxdpFHtcM28jcBcFVP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-taffy44", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o2YZofD5aPVVcUT2e1gF7HD7Dpzm7fn4uUStCAtJymWniEfAA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7s4eDvdyyLwwDzkA7P7EHf7arpMU9wvZR4GDybUEr2Z4yypv9f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-cni-bohorvath", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76N3j3hstkx44otpnR5S7zQjk9ZUJkL1Nbw8kTLarFJ8CsGiZC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7bWXhuY83EMQFNHvmCNPeKAY7RwJf4DnEHYVvMS72jhL7J6i3V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4520 - },{ - "name": "bts-bw39", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89Bdn7c1DBT1sE4g42EPM7AQSJSQcpG2VKeXA5WV7LDaVLskWn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7SJAZsvVNfGykVwfCn2q38Cnr1CZvAByXqU2qF6PqvVqTujnXz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45 - },{ - "name": "bts-yzh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aRpvZxeJoq8QCkXN3wi1nuESWWp61vSu5FCcfDdDKwxKyDLCY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7d41dtQCY2ZgD3ZppqeVZ8wGAJ24ZMdoRoQt4j1vN8tfvNrxQY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-j-1337", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gEkwNDUZSS7dfJP8wgzvgEh9hGe46n5xew1hn7Ux2qX1eB3S9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86rAWp5z4KmGQb3WYyBocRLe1ZmANBJmHYnEXadTehcXEkTJT6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3065267 - },{ - "name": "bts-cni-suggie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qET3SQwb4kVo1MMbU3XRaKotB9ADP22MeQns1fbf1NpjF78Fe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7maTUB8Fbr2q8jdjomGHYnZBM2yGekW3F87kkEfrbfpuZvvD5H", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-vv-svn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NcrqRJnFsRx9dXeYcgXpHfbpKCmR2tBiPw4Lq4fcJmgzSQf7r", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MDhqorL22HsJ1H94Se1cfZQ3LYt4n9wwuLwEpgFGsV6aWKGHy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-wells83", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YjnzHrQyUqJwk5JHqdqKEDb9vdVX4WsQQDn4c1Wf9vzCLVpUR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6HwNNQHxSrNMYNVMAwk77wVpjHAgY6uXNxSXT3UU9FyDuXkkXE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-faddat1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53W1FmYEPpqHRHwS5nzu5n4FYm3wx2VdZzKfviAJjy1AJhfGz4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Pkgq65w4vAzArJZRtamDA9dt4vo53jaPrdoaNQYuv9LH6GYsB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18795 - },{ - "name": "bts-cni-glenny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cwQ2ZAsCjdrvfkBGZz4YLnSuUfSgpe4Tv4QiNZbC33ThJdrkF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5MhV6fZVU7hqEsU4hXKcbUCp45uw6QsDhx6LeWjeWGKCbaVCVK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-tmk1982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LGS6PGNSn4ogBWutrEbjgokNjxiEBNRpQwAHVYV6nYKz3x5pB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56GGyeAxgGJ2CjAKtA2ckiwFLFo4QHiHddooHkcuFtHpzgNHLV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-jaco808", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TBnYXY6P97MJrrqkiYCuVdJn9cKagy95NCyTPGfWVK7kT6v6a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8icn96CCpiPtVbC6WP54LZaH4LHVsnpJfBj2qeLZFRR6GbFkfE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 184 - },{ - "name": "bts-bts-byfbyf123321", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5A9mSnZyKC6njXq2kbSBRxhyW8E4nfbMszmr5sR4AVyLgMYFNA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST816KobHB9TSdo3dkdRYixKrQXEaqNM44iFyWmhvfHEKm6f4v1h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 33543 - },{ - "name": "bts-oop", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h6iQBNAZmPwg1G224mNmTTM1hCruMQHxfT6c3tKaJqD5w55N4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QHfWYEhdNcqhizeHGByLJSAZwS1qDRGNVPCE2uJq5UWMJtkis", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3733283 - },{ - "name": "bts-neleonele.o13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P7ncVGSJpcD3zxX3V2ySS6uHRQqdnQN8PEL46KQHLo5snsBQD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eg6FkjnUfrcY5KfnDhCr9VMVY1FNhtNEcxuaUHYgXAy96iCJ1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1461 - },{ - "name": "bts-sipecusa.mg2015l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZSjQA7k6j16xz8Tz1ipBLkRveHrPr1sURr61ZPvcW2rPaHKxa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5A4PG4PCFRcPPwNN7YEwxt7ZEJHNX2NDaaETioS4s7xskrpi2t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1705 - },{ - "name": "bts-krssssb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ShY7Cr9GkAJc6MY1PPALDG3AnG3eJ5xWqf9w9yhvebtTbbnNP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wD9wAuRs1uwYGXGswTNv8nKKf6awaEFvHZhH9qJdLCmMR8cXt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8147 - },{ - "name": "bts-cni-littlemac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6xun663zFR6D5vznZeoWj1SwqTckCoGR5UZijqBfvqT8jBewoB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8F2bsmLaHsEkpc2cjPdNN6hAn6MQAE6RKkYmy7egaeZLrQVtd4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46 - },{ - "name": "bts-cni-tuttle2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P1ysq4vG4otBHjbqu2M3nDVhbHbbEyTUf8KueKg11ou1qx6H6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5NZ8zMj4yg3GLFe1WYfYFncU7wX9qFukNkPbmcXYe1qmANPK9b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-jeff-david68", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54m8RchQLr3CjmNanzyx2bix8uxnZJhx4Y5Knx5JdzJxKHf9nD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6BoCqiaLQJjVnM1US6ENmQi2ADzupXstevSc1aw3Drgna4tWZT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-fast1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qeMzp1YJeXRMiVRsbp7S3zuv1pVNiv3p7Z8ZvScotNAimsxrg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8YYHViVifymzHsnngLymahe21FVVCuDoHxSTmK5pUib3nVizKL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-t-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RawT7YSq3eZBhVLC3wdXYaVgjLcjjFw1hMd42p8pYYWX186aH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST81nCDjBWpYnWRpd7Ct2Aon5V2knxJYXGGLwR9HsYMaAvRxaMJ7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-cni-geketa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ywkQTTyrNpjbBStEQXd1ft5qCPqhsKRFMeaeEPZ4Nd81WnNHd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5GBEAeeKaiTGzs6MZGDH2YQY7JEJtzWSaV9aKRp3PPp5sGtW6D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-etbtc2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ijhV2BDS8eo6cgwHZT3qxedCBVHZfgV5bv4MT2XDD7UBo8hnM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JkSkrnfHkc8fGWEq2N9aYaCrZCUJnYCDFYNF8iSiVG4qkn46i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 153 - },{ - "name": "bts-cni-chthorn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58R5HtvNnAefEXKNDCNNNuB3WLtqvo9yq4Pegmmd4UumUAe5wc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6ozytAwdurWkhsspG3bGK8A4Rqnzuiyz5WiPFhAw3ka8uTegTX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 791 - },{ - "name": "bts-bts-666888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EtzmyFhEkM1aZgWVwU8scMXwAXWwjDDBdaPXZaSPfs9oaz9p6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63dDV5nqmLqq7XoCQn2pKV3wSh82XTs1REoYGwwwj4BW1LDnvE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-ming-zhou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zaxpk4Ga39zcQgcko5aEfgcr9U8LsuRWMfcmsf5fkYRT5of7d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mahwf3oVZgXE2nrHH45MVpbAbUWDHgAPL9VVSU2CASoP9Cuni", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19369 - },{ - "name": "bts-cni-speedracer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST83vt1qENvQnj7sCttFS18VnJcGG9vwk6KbdhAqe7AJnMbKykZs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7zmbfwrKV9g8kD7FKWmC171PoXUpsArSxCoZ6KiNTRAxtmV58n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 450 - },{ - "name": "bts-cni-coloradobluesky", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UPMckY75JLoZEFqS6d9yigLEsXh5y8SKfVuMZ92FgxBqpbw4d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7HmJEZhN7aKTGYxNNYJb4oGQZriC9UQnYkynpAi7NnnGgbyDpn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-arrowhead", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rozkma4xiJYxDYHBeADp7GiDWaFpy8nLqToAQK4xvwBj2j3Ud", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST72RSnDWBPWUfi2KbvUzu6FxkymNxnU7dDJgWmZT8AxCVMiGfow", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-one46", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZKmB7JU4vT1S9WTbQroCGFq49njMwjJRjsbzXGWpEnCyPopL9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cKq1M8F3j4f2ZzuPnvWEKaTZHLxsbHbb5XJWFCKXbvkiVEpjc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-keith-1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wSRJjaYfscdMKuwfSU6WQBjMLovxLmQ2HiPPgj2613Y1y4nfw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iFe7wFCjsRERZ8XS6vzYRQydpotkKZVdygxm2hSf9UiMQkcbg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3758 - },{ - "name": "bts-cni-dawny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qM3T4hJfFBJyaSdBLdaKSpDzkrTkKnD3x4SSDvMBWefBfjp14", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST79RS4Z1Tzi9agq68TUpD5t3fU4EUrpsBW4Y1jgFsMQ4btbQEys", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-lbr1m0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hnseF6xh5kkD4AuS5j6bRmuwAqesi9rMLqhCCGB3VTsJ7R9Yx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST67EeCdUacqcrq5fbX7zASjo2cz7XqAZUdaSDDbNB8jvTxxFJev", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 335748 - },{ - "name": "bts-cni-troytroy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gdX9yyLsJNBz1tqfeBmZnpuUWoi8kK4vU6y9gHfBPvb4V7ggt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST4xGzk2EqryPxTcWXbasur8qfBKBcdoDJSYaNqP1n4ZLde3i2hk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-et-coin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fucxKL7ibqR1YmjjNqKMz4ZkwBopvEBfmzBv1ehKJW9nRw5Dq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZMfvKTSCbGAxSQ4y1zjTfhVJ6g7jBmaCL8PMipw6MKeLU6PkZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4040 - },{ - "name": "bts-bitshares-munich-faucet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xVnW9mFegyL4bhwN6QUJgmMQ1i11TAmPrgXZ97Swgj4ecJcDX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66d2r3svqmQXt5v24iSM91APQs5GnV8wqPA14YiPeS5JwWgR2E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 204585 - },{ - "name": "bts-bts-888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nBoM2v71T1Rnbu857FCEUBotEsmMfhFdxtEAMiH1WedEqXX8f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54Yekkac5HeR2srPBVEMpTL1US21yU3rVPkDgHCBtk9W91Zh7M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 323 - },{ - "name": "bts-vortac2bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZJREszGqie6Ce3Vk2vkg8DGKtrGT1cPdR9TEshjbm68M7cdxX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VDrZrDCosF3F9m7oYc5UWUq398p5T29dqd5vAq3bHL5gfqRsp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3790459 - },{ - "name": "bts-jody-jansen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5of2dFtvnCmsTFdrrdwzf4C49BHpNDfkjsUpYfjJHtGWHJApBC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NueMh3FemXYeezGPDettQHjRzSmMsKG6qs75tX4PuVrKBjyiF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357 - },{ - "name": "bts-yukinobumatsumura0408", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R8rCCAWe9sEijJtdC34en83ytoLg1e53RcLQdufT8uyuGVqP9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7w5P87x5o7Rkk22cjA5nPwjAAZCY5avbuzgm67wLC4L1z1SSRu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6463 - },{ - "name": "bts-schlafkaetzle7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64r7Zhpjyxjm9NAuD5nFXrKFsYMt6py7TSqqdrZctJ9HJk3njU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZoQH9wskSXKCVw4bxcsfbPxf4WNMftbeNFaX5C1SBhDcHDVzt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2923 - },{ - "name": "bts-cni-beloved9681", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c8zur7ATkp1TVwbd6WuNyt6aVhnDRVwSsP7NP2Y1YNcMyhhcQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-beloved9681", - 4 - ] - ], - "key_auths": [[ - "TEST8ErSP9w8XSAHCgLQfzNBRaYdQX6nJh2LAHmSjC22m2BZR6r8VY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 200 - },{ - "name": "bts-satoshi-pie-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ] - ], - "key_auths": [[ - "TEST79jeMfp8impchPDMJmoXWYf1tQWbemiNTcJB6tcPnx1FoddLVs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ] - ], - "key_auths": [[ - "TEST6kuPicspbrqLh7Jc6DCdY4crfjLAn8DBfreaucTtMra3uqtoA2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 726 - },{ - "name": "bts-cni-rudlar2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cnWAyGjzY7V3W1EwZpcXNdbZgmZDzB9Ub1cYiyWW4uvnydU7p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7sJonp4GvQwJ8ZfZq2mezbCYCPSqLzcUNJrqWkRx7eat147i5x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-what3v3ryousayman", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Jiz7T4uvVoRdGV8atoAdmhsDDhPiiUS1KbrCANv8xvZDcdQdo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Gq1Xv4cgAuXF5uiSwTYKRUiwfXQH2gan6Dn3JdBq8t8xFFkiG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-kmds1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jvVWPY5eB3mpU23gZ8rCfVSbMdHE1pRjLtt9nfqz12cCR5253", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7n6UkhPYCRcDiwbUujHnta13x6UxG213F4bJ2er4PsYaFaW8ih", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7599 - },{ - "name": "bts-satoshi-pie-issuance", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [[ - "TEST6Q7SynX3KvQ7iFx76KX2ZGMY4QiS1tbmKarb1s2H5n3rsA9mLL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-cybermonetarist", - 1 - ],[ - "bts-hipster", - 1 - ],[ - "bts-k0nstantin", - 1 - ] - ], - "key_auths": [[ - "TEST7fk1qKX9sx59vTjFWmgwRYWrdYN8UKPqQZW3GRcBhCaKpCaM5F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-cni-vellan2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ajATKmS5xTBEGD2reQKWtRtfGhJMjmisQre1VEC5GpueTuDt4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST65TnRMC371CXvG9X7hc1ncpQEkoxBoLpBsyyQj8a5QQV6XLa4n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-songha7125-openledger", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yswVDJiQP9x5Um7Gx2rekziYyvG4eLz3RrwZZxrkdmcEZkGzK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST683M66WLNksjFdPvKpFAbQ8EbzZFfu1NH7xsFky4491dBTW7gR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 379 - },{ - "name": "bts-bts-altcoinlover", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Lpx3eabZGKDoffTe7XGtF8JUgCnCVHGCHiibh5PQvuC9z52Ea", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fZi5VNYaKgcigztXj8nJpLhvt5wznJiMccPYi8fwwuy9DUHmJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 46471 - },{ - "name": "bts-cni-pacisle", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wvQ72XuPE9XyEimF99GcCS1F4oJEKjM5NyGA4bZsbTDo4uoND", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5uyfTWWoNYJkp5KFr6PmKD7oSfhADvzY7xNN23NZ4ji4Av8eNR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-cni-devan77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ke7P9rFJPCLXWaqts3o9ZvGXdPTDjwZ3fbKRTjYRs6F46QLPu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7JWNdzcroBHovRBT3TfRqHWuucjXzftufKptTFGpY1yoLFa3Kp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-khristinemc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LgZbxbK9rbpRdvM4znqjDuD8KtFUsPZuVzRR78kZZmn2pTX1L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5jokVpkMgEV3jV1YVeLoTWRmrB3P8r2pN6S1HYT3Yi8ZEqMsEk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-fastmoney", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cQHkmtuwdVZcaRPZgAGVveTBYZMvXfoqntM2FCdwJtJe2nmaW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST69qzEm8dVASYaod3UZex3dk55FJpFfMsxHqncy7LwHKyga9ExL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-morrtep-account1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UsmxkTT5J4nhSpht49hC8FCZqy34sHMsbvk6avoGUEbgLzWvs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59eDjoXNQp3WPTH3Hp2PhupCTjKQrVZgkE8WT9WQA2iBzfe2Ee", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-xcode-18", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6762JBTuZwwA5TsLKv2LQSnYvD63XzKH62PVw2b3fUQcYs8R3o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6762JBTuZwwA5TsLKv2LQSnYvD63XzKH62PVw2b3fUQcYs8R3o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-cni-louchs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7s6DD5gUxEif4ToZzx1kMKZ4sbw75d3Ae1Dt3BCaQwfbAkJBR3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5Po4BraQ4wQzNLRHiH7KyjJwThXKArJm5uSMrp5nyCtHtGKjAY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-ustas-krichalko", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52mdhyWwTeWFRtNgGDA7L2Mv984uERNHyfcsRfcZiPGDd72MBs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52mdhyWwTeWFRtNgGDA7L2Mv984uERNHyfcsRfcZiPGDd72MBs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-yaz-c9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VctiJr8cC4ujsmddzvXvhwdFJsU5GgN3w6mKKsJuQgvvXNBSe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VctiJr8cC4ujsmddzvXvhwdFJsU5GgN3w6mKKsJuQgvvXNBSe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347 - },{ - "name": "bts-mad-madiev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ATBUX7PGKhY4P6aiQyLQCQPiPnnzQoMAfHgeVY4ruWeYRKLnd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ATBUX7PGKhY4P6aiQyLQCQPiPnnzQoMAfHgeVY4ruWeYRKLnd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-magnumorocks-989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HK96sEXDzNe1DW3YecoW2grzfY9HJi8X2fnnFt5oazUdB7A3S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HK96sEXDzNe1DW3YecoW2grzfY9HJi8X2fnnFt5oazUdB7A3S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-hob-87", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nw7jcHXKvMdUeoAgZXVm3fN3cy6zFh424WN8wabrvW5FAtGeM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nw7jcHXKvMdUeoAgZXVm3fN3cy6zFh424WN8wabrvW5FAtGeM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bdavid-1980", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST729rcCQg9s6weioWi9oWCHSxd5b7x5Cz9BMijqufNMR1atQXU3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST729rcCQg9s6weioWi9oWCHSxd5b7x5Cz9BMijqufNMR1atQXU3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 322 - },{ - "name": "bts-kell234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4utfgqNFTPGxRLNCc9XPCyzEFJkaXazhebR8dScJJY1vfyu5mf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87vqyNTrBqXAoYLoymNbmgoDucC332VXCu5NocGK7bjpkFLYJH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ihave10milliondollar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P7FLLPknA7rFFtk5mWwjQ7QZqQDyNz8rSND3bxsaMcfnFHnR5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79b4yf31mrLgdjmgiKHzCCzprLikHPktt4NhWQ152n5fE4JYPp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 82262 - },{ - "name": "bts-coinz-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59Qn6Uu1zYzPHai7FmkJjhXUQBbKMqF73nXzDD4yRiwN68G2bS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59Qn6Uu1zYzPHai7FmkJjhXUQBbKMqF73nXzDD4yRiwN68G2bS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-pieter-s", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tWsEk3fCwAcmKRkKvaGySRChUuEBWRwXsWR2g21RTHQLraou6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tWsEk3fCwAcmKRkKvaGySRChUuEBWRwXsWR2g21RTHQLraou6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-jkmiller-78", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L4YfYsxEE1o3YoEebqY4P7m54K3n5nJo582ncMYK9vWcm2mjQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8L4YfYsxEE1o3YoEebqY4P7m54K3n5nJo582ncMYK9vWcm2mjQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-angusleung-100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KAAtQrjw6Ca7VjVBG9xQqX92FX9qprJX33Q9m1fVxSo2AgMxN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KAAtQrjw6Ca7VjVBG9xQqX92FX9qprJX33Q9m1fVxSo2AgMxN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-ratel-89", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5riPbxizGxmNtpyT8Xnipgkx3YySY6vpbctvAHJGhKYcrUhQce", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5riPbxizGxmNtpyT8Xnipgkx3YySY6vpbctvAHJGhKYcrUhQce", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-bendjmiller-222", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7krBdxGZ8c34G9uLfkB3Jq6et3BjJqCK7VM36dUGyHAzy5iWkk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7krBdxGZ8c34G9uLfkB3Jq6et3BjJqCK7VM36dUGyHAzy5iWkk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ulis-29k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xhUxHaadt2Wm3Gc8UR2sGcMoJY18gZnAXKPxp8VkJdqKZL9mN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xhUxHaadt2Wm3Gc8UR2sGcMoJY18gZnAXKPxp8VkJdqKZL9mN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2240 - },{ - "name": "bts-ole1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nRqzaXrPvW3ufCZ9RNB1Q54yFsimhaJNZHW4V293g1udmg9KS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ewD6ks2XGDqgYLGBMFEigzxZDB5HEwXcw7U42D1bbxeqHD4qE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-r3born", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59XU4NrcQL65khnzCdn8x68xXTwLZDP79vfXGbLjp2frQCeJi8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iAzogTRBiz7piKQQiMdPY1pNiWYY6reNXxVP4Un66CUPKyVUt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169327 - },{ - "name": "bts-neluceban28", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ef8VnmrXvacBTTF863k7SP4fhgVbyM12GsMR86FRxHzTyQpLL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jUPt8BpjeRjvMzsRoAGZXnJKNP7wgseTNkGBfuNr2xUXxQdKN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1882 - },{ - "name": "bts-ama-nia", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aPsa4rZNmH5H8BXBksuo38wJu6qCE7sdCfjN4FeJHaGR87qc8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aPsa4rZNmH5H8BXBksuo38wJu6qCE7sdCfjN4FeJHaGR87qc8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-spiz0r-777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84bU3FcJ6dbS9YP5MEwJ8B7PgJpmGKbX26iGKdtGC9cMUEGzHR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84bU3FcJ6dbS9YP5MEwJ8B7PgJpmGKbX26iGKdtGC9cMUEGzHR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13 - },{ - "name": "bts-pink-lee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uGbZcGnrz1SxT69cy6pAuG3wUCPXQk5pTGbXia9C2aGSxrx5N", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uGbZcGnrz1SxT69cy6pAuG3wUCPXQk5pTGbXia9C2aGSxrx5N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-zubairzia0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WqJC29xFLXDf8KXrjBkwrGY5PhjrXuTeZQAhdHDfBviak3oS7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ezyeKK16KieuAm4HrUjfANuQTRDhATKyHmLxf5yR4iUZeWMCK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 63 - },{ - "name": "bts-jj-chic", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q48JCXLyxrQEY8w2S1KeYUtyb5y9HmkxWre3LzpmM11dEbtoY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q48JCXLyxrQEY8w2S1KeYUtyb5y9HmkxWre3LzpmM11dEbtoY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-ydm-6669", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hyqYvF55m3VLWwhs7zUU5ZDK47jHw7iAcszCHzKcQQYwenoPJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hyqYvF55m3VLWwhs7zUU5ZDK47jHw7iAcszCHzKcQQYwenoPJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-phen-om", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kwXFBwwMNsySoshSnLKEimY7YEyDyWLGryVGkiNgjEKom5RXi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kwXFBwwMNsySoshSnLKEimY7YEyDyWLGryVGkiNgjEKom5RXi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 358 - },{ - "name": "bts-smartwall-mac", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6crnoCrXEuAh2iX3emccyjYeYxCjLJNzsfP2vf3KS2ocStKfkv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6crnoCrXEuAh2iX3emccyjYeYxCjLJNzsfP2vf3KS2ocStKfkv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 291 - },{ - "name": "bts-cni-sinas", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Gksj7kwW5r34beDJy8KKSo2x81zL9qasAhp3fgj8hAWeVd5gp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ck2arrcn9UhVSV3Kpfazv77FrEvhYNpfYTDXSgcF9HRyR6dU2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-toms", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6g5J4SDcacDB1jZnKyDd6ZDsPJysJQW36aEaRRqGZ2RxNZNfSj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST59gYgb1Yhzi9SgsS3HeCbxEdV29JgXuHbLN9bq4fYYnmqToYz4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-cni-edwinpliefaard", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST764Huurjyp9YuUorezg1c7ba9fNy2LDv7jvhhvkFbm6dVvXVSY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MyCNM3gmC5MQjy2Wt4uVwBPXerVCSz3hUmMTufSETws62QNmT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41 - },{ - "name": "bts-chest", - "owner_authority": { - "weight_threshold": 50, - "account_auths": [[ - "bts-chest", - 40 - ],[ - "bts-dex-a-bot", - 40 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 50, - "account_auths": [[ - "bts-chest", - 40 - ],[ - "bts-dex-a-bot", - 40 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 373 - },{ - "name": "bts-cni-hayley0722", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pQ8JwsyxngDUE5oNuQ3n1QMynQwBo8WBCAPoccLLWS8Sy5Hor", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST77uiZZA4QDBky9SiZE1AU5yNinNky2PnEkjx1JmNBdEA7vJRPR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-robgar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WU955WSg34uN6WmcYo4fFnBxFxexRywLCjunYFFXEDDDsUU8e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST57Nx1N72BVPg4RGGD7b1ba7vvn8F6cqnupZYSonBB8daNEUDV5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-pixie-l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MU6DkkJvU9RBkFny5HaEuHGtgNprZahMAQUrZVHZqae7NfKyu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MU6DkkJvU9RBkFny5HaEuHGtgNprZahMAQUrZVHZqae7NfKyu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-irrigator-012", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Wg2Y89Xxd6aAerMvJAHXECzMZsfsDX6zW5daBVGs5TGGX6v1W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Wg2Y89Xxd6aAerMvJAHXECzMZsfsDX6zW5daBVGs5TGGX6v1W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-testarossa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wjMXkUYYPc5eeCuiVRHLrqiLoifwSzRCDNV7rhh1QRkDztzLo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7csfXfYVZAwHRJnkXTfgvxCpebrhXvuwo6hjWrMHdtPguLZHB2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 128 - },{ - "name": "bts-fireballofd00m", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5i2QW53t3wLaVCcFuHwecGKT1ZtLC6HwwhdaQedcVHW7jCbSMS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aq81qXJVMHJrNCkNynFEzRYdWFC1LS2zJnnd17io2wKvAH3rC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22112 - },{ - "name": "bts-a-bot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YuDJx22Z3PP8e9ipmXGJbGvHoS43FBDm3UPLyNvAjvo5eX67n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JMrSHrcbS6cpXmND1a9knt3B48wFYVF6sqqtj7GCijxGhbVNu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60275 - },{ - "name": "bts-john-23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W6jCYBdbBpUBUkRzqMdKPyvra2nHusDh1Mu7S5cjp7Z5DaRB4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u3rbM2QPnVnXGD38uDUq6DJhMRjT11cwNQQq8DaxwNpr3qdn6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7815 - },{ - "name": "bts-bitett", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PNd8NRrJqLvy8jffBk7iBkpnqHrFY2Ycc4kSLsQMeedzFPaEU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SXTpjkSqdrvQaigAeGKoHcTEmQHu9wmLEWeH913eU5sdVM81k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11854 - },{ - "name": "bts-anduweb-anduweb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u9Mj9AydXm6ExJkqdX9xjwr5PcaNPPeE1DTDhXiTVmNThnrzm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NsCSX5zgnpCWyc78mJbgWAtmYEZ7fhMCcdjJycufTo49vAvSV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39151 - },{ - "name": "bts-vericrypto-reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XqayKrXeN8LWLKtUcoMSMQWzxpi8K3rxcNQxmE3hwan72FL94", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U3aj94922C5cEFTzw7VFsXDQSwKH56w91UrwaB1GpvwzFhTLy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 903 - },{ - "name": "bts-drjs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h9mZjvjQ4AaAbneSHQcghm8APnqjK1eaCbpP5quAYuTZeaMz1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JxvkbDCMUzBAKRMiQGXv97MfDcV6g9jgqjtjm3ztg1jHZxR3M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74670 - },{ - "name": "bts-cni-ameliehud", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bPWSYg25nGspiPtZG3eCGNpmWGz2gpG4c5ohDGt1TrvuFUjqi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7NKG18xFDCMJoWVqd4LBpLm5noheKtZFMv1MJr36c4jseCXVcv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-dansco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KuKFqWNyodhEsj6mwJG7pQQV4GVqqhKZhaM3sxxK3FDLk1s3g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8iBRUzPsL8FvfU8Mx1LHzkMGttXpJS7LyWALsAd4WgHF2UjWG2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-maemon-mobile", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87uuAeE9beu7YweEEtn1Whpxb4PU7kNsiPXL6YPu8D8UrjMrS2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87uuAeE9beu7YweEEtn1Whpxb4PU7kNsiPXL6YPu8D8UrjMrS2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 345 - },{ - "name": "bts-cni-olieb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bwDub31zkdZm2bdEUELZ2isGNXanUHHRPHfFrYa2QuhkW6ZST", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6UP3bs81vbGxBfjUpubVwD5ZGz6KZQaZ7m4iYrzvX39VcySxTa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-cajunoutlaw34", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST62yWHWuN291nkYiBgZwSPAVoSZm2xWpWSAsUyRHbwmDzqVLm9f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8gjiheehNUFZc5tTqWpgPG31PD7SW9uy1rcuCy1xS17HHhAtUH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-ccbaudoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66eNS5fPuQMNeX3PW3P7oFWsYiwKprBZmTuXjSFrwKs3FkSbPN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7Vo5ySoxYjRturcG8PpeHkRKktaeVeB9kmM9WDn8hNMYLAYvZo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-babes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qD5EYRH9nevwXoxK9FQYhEQ7WK7jxsUGW7UMtoNXS5uhZiRqp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5FVQciQJiY5jXu811RbKjt5BZ2wBGFaFZ7KiKa8BKhXwC9ynuj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-pedrodiaz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63EYamhMABzoVEM5zceLETWJn14T2og9R4di1a191rsAAXCWDn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6kV6Bd7w638DN9FFb8RLJVkhpj8jQeuWNtyos2SbkBkH1utmQw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 90 - },{ - "name": "bts-cmtz-co", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NNuqjMR2fueMuZ9BGAcqXTaZ2yKMFEis5TovoaGPPq2vwrsmc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6NNuqjMR2fueMuZ9BGAcqXTaZ2yKMFEis5TovoaGPPq2vwrsmc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-seahorse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6y61Aot8Gqef7aDYbS87hRp2tr64iheeXYWQq1C8Sx3WgJk3Fm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6pTmYh5fBYtoqyz2WuyzwC1jwUT7M1ysg7HxGXrssSD8c82BZe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-marttole1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uPUyWWhewzLCxctgTqsG8o6onc3DtXG1tXXqFq1j3pzTSbPL3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6E4mo2wRG9gdrVKcm1stkYb4KeGAUxCnj9mtBMLwi6NgfmNXff", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17 - },{ - "name": "bts-wanbin2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5asssnRfbkin6ep3QdVBs3mDpuXGh4zLcQefduFHfj2eXSPnyH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yewp4Hw69UYYidTv64MwZjjqbN13DLmc1NFNd5AoduiWBekoq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-cni-waimea43", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WJA4zr3JvcJbDSXGi9fKkpG9hUTpZVkr7sfTzcR6FBVQRHv4V", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6bh3Tsz3znbWwunjLDUQwrpu3qsfAH4MmLL4KdoSwzJyZBsSzy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-v4k4n0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5X6VAUnaCtJqcJtHatXK6qJ4LxXyWUE5DY4jeAs6hbxejxDxNy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TprRTDFqmndAWSbqdYG4NMs5QLCbdw8wZCtQ2i9doRRvv3vKW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1987 - },{ - "name": "bts-huan-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nsh6RMdBFPdh8AP9FdDqiwDVKHVrMKY87zEzDKbHmfmvBP4iw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aCKvKaY9h6TP3bt2p4MHGa9wzJB4G3sLfGxh2yxaVB3GzWbyM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4371995 - },{ - "name": "bts-xxxxxxxxxxxx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5V8AVPaH7tJGrXfr4Jm3djLiPYKGoKjdNeZxqKyYezRsxxFwbX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jMYUy1ieqDSmabf98vVaziDTz36sgz7CZGAinAF1EMiMvDVV7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-incomemonthly1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Y4yxSrjh5ELAEdMVW6XZp66zF6YqrYb6DrE9nFLdrU9mednwC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56e4vggEVS2XfoCi9wDHoDKfhPv8EJ6R5BdjYH5kvX1jJUhM65", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 139041 - },{ - "name": "bts-qinglong0825", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pNvsyLU2p4zPoURKRZrbpug3r9g1oSSa7NWhKLyjheLbNz9Ju", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FHWPG5J1e4FmCdBGDXJg5bKtJjCyCBPZzp8VjakZwcoUXh2GU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-rolik-2001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h1zvNMd1iUtK4CngP6PTSM4rsbFTRPAD2akXWkd3mEEzsqp1M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5h1zvNMd1iUtK4CngP6PTSM4rsbFTRPAD2akXWkd3mEEzsqp1M", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-moe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7y72B2wCboQevUDLNvyy9jXriT1W56QNwnWtdiaVesQ3tCfxwA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6RFLzHHYmQRwwkz2wZ1uTsBQGbavSqT5XNsgZL6FXFFrzQhzqF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-alyssa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76BSuKC1goFRt7CvBSJjWz1QyYnFGzBgdKo5gmPGmxscjA3XuB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST67QYfmYvwaihrUbE8hXjRtTrVur2NPttG7uPxYnpqzk1ep73JQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-orb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65bw4DG7Vib8oJ1M9Q8TkepkvUAgEuq1FF2qM4yDNS3oJvXYsp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PMjKpLRvVBKZeBzg8HBUP8rGqCaBzTLDYXCM6JwvdnC9jaE6W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 363 - },{ - "name": "bts-x-bot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58sR41xWFEbUmkExk2DvrLu6VXursjtgtj373buYRHrDj6Mpxx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QFjLjBTEBvd2KZCyxy5Tei7NzECQdoBYW3eLwb1kYvH81o455", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 38945 - },{ - "name": "bts-cni-uiwy2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VuiGvT4VrrfFKbQsCq47xsRJJivqTN5iwNFZMmLgJ87Ei2iGL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7ZbPYeQAjVERkFw3JTD4j5eGeZmr8apdpGTA6Ms5Je81jXHyqC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-neomoment8878", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MhAV8T38VzXBFxGRVAKB9Kw3g8vwM5ybE9ZwafjAj6N9uYTsR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84yWmpQBQVZgtLH2aMGrPDep3CSu8eZTUX2hgnrptc4FSBa72K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 388648 - },{ - "name": "bts-raa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hXF2yvpUyiK1b7Lq7AQ4Z8oB7kgs3mocYwZCeRmF7UFfCgwj1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hXF2yvpUyiK1b7Lq7AQ4Z8oB7kgs3mocYwZCeRmF7UFfCgwj1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-eaa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hXF2yvpUyiK1b7Lq7AQ4Z8oB7kgs3mocYwZCeRmF7UFfCgwj1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hXF2yvpUyiK1b7Lq7AQ4Z8oB7kgs3mocYwZCeRmF7UFfCgwj1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1899497 - },{ - "name": "bts-xin-liang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TyJERFHvefFWwkWBmhr9r1EaBUwBzWffvccT7QK6SzFtTCgJi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M71pqc4EoB67xkAaTdQuLDL79ru5ajWj9y7DoXM7QSVwnCLaB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-juanmiguel1978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q9b54m5QuvuxkPrGptwpsUXe7uaefiVA51wWc6aVuoNyRrh3o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rCney5A364WaUqcSmFNghE9UPnX54Q8uJe8rjPSWi9Us8YBtC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45142 - },{ - "name": "bts-mmmlino84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RNXZY1m7yxbk5S57JpZuanvmcP1Ku5WNUmAN1p8JXyuxnyq81", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7KYdYybrbQvAGNeW5FaLBgLLjfaofyPQaHyqM6c4WXzkBt58ik", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-pp123456", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JU1rswKFAswTynzx8wQKUzcG4z9GMgZbZjcR36XZGdbA1ErDv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71c96WiiWp2KzVUAaK3V31iuYCMuTmmFUZPsCUmH6ViGPdk5s1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 367 - },{ - "name": "bts-akagi69", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BN2uyj3SRTMRCgGn9FdE7RXQpuEF3tVm85kp53dXifnGCaMvu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WfPdJfuy5k9ZBzRG9AwWjcnef9CCnr61ChaHEouVLt2WCK6of", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-mdnght", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LW9qRoXNSrQULtLiQoWfR22ga2mXjgmwRa9r3Ek9L6B3eKorj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mcdrgPrAUjE7gcmGHWh3C4bRTepgJBvHKFwcWRSsC7uXJDxYH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13043 - },{ - "name": "bts-thinkngrow33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M1ePBF6SBK9AfQAHaW27gvpBYQ2jK1rJsfpdrrF5QJHDjKSjV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KhYr8S4zu8NL48SjkpKchwJ1HtKXUZPeEywayNYLpu3y9YvYt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 163852 - },{ - "name": "bts-cryptokiwi-nz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ajt1rUBu7Ft9qBAMc5uPFaqq4zXGtP6Pt3hDA8qaSWheqC3yK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56G8DvCo4EGWLvS9oxRB4nYxMXw7AJDTkLRSLuvfDsKzZQCYGm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 206564 - },{ - "name": "bts-cni-nuevalos", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fkaMSrAs19bcbsYWHcQ3EugTdfqxLcVU6KA58RjazP8wHjZGy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST64aVMebqDK9x2zSyrhQkL6xEuwn4zGdiKbX7Av9rDLJmrgzaPY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-elis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QrYNPGPGzxDCPRLMBRthqbEn765oVbmF89n2jcGMVr2RyHH4j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6JZPVGMvj4xq42k9AKsMxRxwFmAnfCygTg9FHZeyQHfAbuxmoV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-maila", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SAb73umZaEzeiQkAgKeEYqsPaKdi7nHQemH35fAD45QoctFhs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7d7AeKuh1sxA6ZRbTC86AFXi7aA3caxKRudbE5mW6JkRbX1cTv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-cni-ochoa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KDj4rEsmbS9vpMuHQVHvy6vagUdi1ZWf99bzeEW7JHK2iA8iY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7sB9qMrUCzkSXnaUAP2hB4EmUytsWGvGZZwozo2FTS6KPHHuao", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-mz23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LRLCvNQuBd8m2CrSvJuaCuCTCW5KkJm2LrRRZttYHPVJFJgn3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TnudeRny2GtoLnMJiQsHoEfsc9Eb5LBV6s9TZELhbWEanheJz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1461 - },{ - "name": "bts-iou.wtx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vUdWWiTEEY9Gq11eHghBNh1H7mjtj6WzLfRQgxyqd1UM76pjv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uxvexfykBJPT8gvwKE4KG2Qv6tkCEe4gTVfPwa1mrcRPc33wE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-br-real", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hd1d9jJJMcMvLmGXNec14BqsMa4XDgmciAtDzhp58V6kWB93o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q4K5DUWN3WTnkGVbBpvNj5kawSx6QZN4uNEpXnBqNaoVSooy9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-zzzx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-c-style", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-c-style", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-fuckysy123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FBXW3VWC1A2TXNa8Qz2gdTyRAEEqxWRMd899BtCrfLC9gw8eN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aBQYQSMuD3daEs2UWPxWNgbkrB3xX5HwgK6fo8hRm7kVNzt97", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3721 - },{ - "name": "bts-mr-dedalus", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61Wmn8rsqitUrcYo4MsDvvgHvaZUF5jqxg3sz6xGPXoaxXa9jV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AKPKDvgQyiasFVyrhFfugaT4wc5pz9j5UTSyQH5Mtccxpw2kv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-mr-locke", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vzhQDFGR1G1unkUSqkZh2cFFkLzs4CbWqnLR44pvrdhh18V8S", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CSMje8rcexNE74qzQ2b3VdqoydUanzkUKy5yXeQKigXz1gvTh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3762 - },{ - "name": "bts-jesta-account", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64x9359x1buAqcTDRBeSCSG7nqYEPaF4BhQuTXPsGomjLPb2hA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SmtzvpCX7reTEVtcfa71ow7ga4As97bPa3XkKi9nZ7awTpDzN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30769 - },{ - "name": "bts-athena-zen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kdng3JUwwVRn8uk4xQyCyoSBP21R7ZnbjgQn6vvbY84G3bjwv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51zjBwDHoKHYLas95RmKVnoM4N7E89SFefe2tiJfgnN8VdXSuV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1505146 - },{ - "name": "bts-cni-jrpb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HfyZzExpaM5h3xTs1RHsCj6MGhBA4Kt8quK9LnEDREHbwFz7K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7kQaR8jgz26n9qfiiewdL5KMw6SVJhgHCj9cBaespTrJzucd88", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-bitcoin3d-proxy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZUmz7KiYD5E8vhpMK2yurWMYeS2BiR4bne9AZomuaxbZ9akA5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZUmz7KiYD5E8vhpMK2yurWMYeS2BiR4bne9AZomuaxbZ9akA5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 365 - },{ - "name": "bts-gpdsx8ng", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5PMqpT1QEo79mZTyEYKAwkpYq6kgnpLK8e6NH51pe14DpaYE4F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7axY4sdTtAeBaYE17y4hoikKpi6U8opiVwcWS4ciWZhK91bKeu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37891 - },{ - "name": "bts-cni-tex5511", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sFbSqMv5CvZevDf371VEqDYSqisptczs8ZK3LX4tDKkqKtpeT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6GR19BZQdzAk453CwgCbLbEkjS9u8jRd3rrHAfqGSrF6eug53x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-rock89444", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7f8S9H7vEdCoEvwF31sXiZAYeGEQGV9xtwNfPkgvti8sQ5rXHZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5dokGFmxqVYWRyWarLxBCovMr653W64miurmmSe7Fpx6skGiAN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-smash391", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zvwvy8CxEz1iHTWt5CZJXAY1asq1dZJcr97q9sKNKhDHjhGzP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Pu98ykkYmTKAMc51XifYP1w8qGh2DyefficYFNKXaSAf9Q6Sz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-mr-altilis", - "owner_authority": { - "weight_threshold": 100, - "account_auths": [[ - "bts-mr-altilis", - 50 - ],[ - "bts-mr-gasipaes", - 50 - ] - ], - "key_auths": [[ - "TEST6Mb4FyEqCtRxAZd5ihHTC1NZJn4AsTrZv3aD4uucUQJ33W5Lku", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64hCxiD34egngzTHzTgCxpD5eazcQWxJEXoxGvrrag88epi2YD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4797514 - },{ - "name": "bts-bitgy8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST72a9FeNQyzUAeJHetBCK9B2AZ9Dks1KsbhPMQpsL7ZZtkDV1aQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bM4Q63WSTWY6tiXkM1wG94dbFvUQEbLUsBb9EeTdKNiddwZBP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3173 - },{ - "name": "bts-cni-cazza", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6coiu25g7v86C7Avd62b4ePudqoh8TSLrm4qYoMkiBShbE8z1G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8afZcBRwsHskcCyA8v4mY31UWKs2x2LzetGUjsxgpHZuGLte6o", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 412 - },{ - "name": "bts-ico.blockpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GcFBnok9q6Dj93LCknZ1bWfY8Zo1HgEJV16tnTNWqNbmMjmZw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Exf5CHzirc8dwZMnzLv1QpjCm3XEXsSqQvtAv4uTLaqCYr7qn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58234157 - },{ - "name": "bts-ico.bitland", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6d9iyoNMH9uYZm2wxFENiiZFQroSkpMRrfWpqQWHTnLoJRLRAf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZWU5rMaDZRTsy56RyvdAdpMAgdbr2wt2j8aJgNSbZ8nE1v8ML", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 790191 - },{ - "name": "bts-cni-rafitter", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Lf3LJ7UiaGDGyozU9eMpzJNVdTe7aD4G9XRExudNo3VF2kbmK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5g41jDAk72MzhkYoEirorqqoaiaQWBYLvD4C4xpE2j6GEqxhu7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2039 - },{ - "name": "bts-mom-dad", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81cT3deDgRRiqmHvHZpJyCbFtRpJcYNWPK2ZuX5XmwRtyE73y1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eHyQ4nG8CkgxMUh9yix4FUY362YVkVWMtm1yt4XBPNALb1nks", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3992679 - },{ - "name": "bts-xset16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST677mhBjdhQHTRd6sgY9U4CQqydWH7Dw5HGV2Zr9PY3Qdy4aqZQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RMoodygMnkdjkGRMyxj2Vu64ejTTcQG2Qa3VrPePJAgfofMve", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-svt-lvv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RDNd866q8ZoVMnbUuata6dWfviysRDguaTigBjDihJGZUVqmq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PqFibaHW9DrPtMLLTTnHaZYoaDr3HcRHYLzKe6dUc9pF2WCUB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cn-honda", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8j2jXmUTWTJmDZ7WbHhb5vkijuGheWarmWpsfVz7LkrjMzsZKH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST65pGy7eVSNBkkk5EXbaiZjYms1oJnETy4ykoVg9KmFnNJqhAn5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-mr-gasipaes", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hTebUq8Qm8Zy8ktXoJWQyXxi1D2pfPaz7w9afa7hj468kTC8B", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8iCjUGpRbrQZnG673YzZpCN1hCTZp9RZFtvrzgKCoGZyJR2M5e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1782 - },{ - "name": "bts-missing-ps", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Az7tiNqwqnu2KdXMAvNFo3QpW6wHeedmqmKJn6mQ3XFNp5pEC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qhd5QHMGL9o5ASNKj2qNhSHxeeKHZjFhLctPjKSYCAfvCFERv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14675 - },{ - "name": "bts-b02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4463 - },{ - "name": "bts-bs1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-menkaur0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U73yxHhseXa57TbX6AdfXRBzEoPoYNAfwCohaTbUyczECQiJM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wdUsCSBZKWtGWzUdHEw6ub9U9uUvenQXRhcUUYK5oHpYBRWXF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 431661 - },{ - "name": "bts-btsabc.reg", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fq9HiBgttrdi19rMEi1qoHSCTcXnnMzVmCD57nJWDpmdmz9c4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5pTjzLBYeRyM6uQufEUuLDQJV43kmgy67mvvniG9BAuQWoiArB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59626 - },{ - "name": "bts-ime", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-dme", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-inf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-btsabc-hb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vWeLt6nuVXrsboDnBWMXRaTcsy45N91RJ3mkr2hiLjndgi6gq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yK48etSkC4agBoAWh9gB9pQGRR7naeLvmVS8JFmA6YX7TGeRK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3732 - },{ - "name": "bts-cni-pattydiaz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PLZgEkibDg3Y1Ud3JWCqcYp9UVhhqVTr3rfRWAgQxEj71eyuN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5qhgdbAKTGtdmk8Fcxeaj73X5AEXQd7qYt1rR4C79ZQ4yrNN7J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 442 - },{ - "name": "bts-devie-dev", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UWnzH4iHxtwLqpsSiNDavQoBMx4FSqaaMrCu9kPvG1KuiJXcg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NobJot8pKdcd6QvEwGF8qWtLHKkeJku3pUXhdWgAagD6oBayB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12945 - },{ - "name": "bts-cni-iblive", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85yzXBZA9KobUvacZH5AqXVsT5k7fUHdujUpojCpXDWWLs8Kni", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6MjcCaJp7Sf75RV151S8sWXUy3kTgas3BfhoUahCe8Qrei5oue", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3480 - },{ - "name": "bts-furion-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QjYhURQDUpiQKb2cgGErGQRJ7QpRuaj2MV8Upk6eGBKwMfrXN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B1rfSTsEizSddGwo2Cj5eub6RxDcNEcVXB2L7SHcdnRJ23rgC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 296437 - },{ - "name": "bts-cni-singerlala1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52TVSQZWwRUVJXJ77g6bxGbUrNe8zUMaQ2DcFff6Fn8Y2Winum", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mvZFLCt15pfqruYrvEk8rDmP6iMjf6ZGVwc18vPEAEFpwoonq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3480 - },{ - "name": "bts-jasonlee3000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Poo6myMpuMSDxrpDYBXeMQ5QCfHFswHRGgJbQQdVtpMrLBPzQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5H9nYTysjCVLunnGFgi95uxbJed91h33Sn5EnQP4eyKo44MfSY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6752345 - },{ - "name": "bts-cnhk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-okbtc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DKgVF5sSv6GPyUzd48fSZJcw3DK2FLDwe46fSj8Usqbj8ehKU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y6s2LU2XurjTNpUTFc49xCjiJZQY5qrctUmF8eQjgBoMptAbb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 125190 - },{ - "name": "bts-bts-morning", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68dMqix8bMFS4HexFTPXfPABqiQVTYcKUR3pdB9pfffwsSvnVV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ph39DoAFQX39Zf9CGcTVLaSesHwyqjGZAH4uEBBZkbsSjiY2i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2950005 - },{ - "name": "bts-cni-jrh2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZwjVYJBaHd3WAS1xqXUVwrWVDGuqr2XtEwh1qTURksJDQK9o2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6uvhP7KacE9PxYRtV78J4LwqRAcTFaWJPawvPTWMFazqS7sDqP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-mobile-t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Je3VzELJGHJgUHtFUU89MJRapeUEpurULU7DcPZFBXeEMfS9C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Je3VzELJGHJgUHtFUU89MJRapeUEpurULU7DcPZFBXeEMfS9C", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45211 - },{ - "name": "bts-stranger-array", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54RFyVMQnq5wecXdqSUhWFpPr8nbyF2RCqMVFc4fnxa5JgmXtV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54RFyVMQnq5wecXdqSUhWFpPr8nbyF2RCqMVFc4fnxa5JgmXtV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cad-wallet-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KRk8stJHjTFUVHYVPg5Ny5eHBEQDuSJ1qDsx6BGPbXvPFDRqR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KRk8stJHjTFUVHYVPg5Ny5eHBEQDuSJ1qDsx6BGPbXvPFDRqR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-haz150", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VmqBSjkkMwL9viZkLyyTTaPE7PahYDsKeLCW6MmXzo4yDftwr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7h4WXRe4ec3VMmHmeeTRsoTN9xxXxU4eirWc6R5DLYyBtp6b3Y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-wireshark-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6u14iiGpEESKCfTS24RxoryCjSVVfqFTiQixdWhVztpyBxP7kx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6u14iiGpEESKCfTS24RxoryCjSVVfqFTiQixdWhVztpyBxP7kx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-fkinglag0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58sGGiZV9Z28ke56zu6e6XQMgLxTygif9QhqzNeyMiyVuzUmGW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76dtzHyfUjvmRPdD4cPeJ9GF1gSERDLZLgdcvnsQTwLk4rYVVS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 99 - },{ - "name": "bts-miti33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Dsfq3pdgV5xifcwUyWBz8HEzKwsqJSVYBgsvtgpfDSH7jhWKa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QM7NPLPLSAzn5uzdFVvKBGoESFYMz1JkQ32nLSkfr25M7CCad", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16 - },{ - "name": "bts-the-crypto-drive", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65sEHgLsCw2qy9uh5ZwfLjQsB8KHLWsdnM64EbWWSyjifXEbAh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST748iUxyPuqahDbHHXwyHv2yQyWTNTbJ2B4LLZUnkXqpbhx5it5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 49205 - },{ - "name": "bts-she-joy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4yudr3TJEWvu3owg16pRzywSmU6U7KbQZxuJPw2udfsfDNrTah", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7njb5d2wcZpsbgegP5hfZwxY2isvCvBBMJAfuvhiqhjakszZ6n", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 86 - },{ - "name": "bts-peacekeeper1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7864Wy5sHF2uqmvC4Q9n7Wut2j66THEpWegDRSCgDqBYY8vnQn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST77jrGx9J2UgAN1nsQe4DiDyuy1FTrXq2YR9hCpN9ABS7YUB3PE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-rxhector2k5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66iRhcScRWh6B6SAY1Vz1GSpeN5Lu5GDBa4L2U5qJnBp1n49tj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ovCUJr81QaetmmKMgJwA24y4H8GYWBor9oK67ZuBGss2xYBLr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48060 - },{ - "name": "bts-venator2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gwwC8fxUwaFajX5MisAjhnggCtA9TQqsmXtdTiu2Wxb3nCBqQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82TyvDDh9PFhptq8KL72KxLYsJZqrXXuYTXCJA3MeF8M7HWd3V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5497836 - },{ - "name": "bts-mazainderan-10", - "owner_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-mazainderan-2", - 50 - ] - ], - "key_auths": [[ - "TEST7bHRDeji2MrAFaFyXN5P4NCmbJnr3JgRYPWNW4myqqVCMpqzD7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SxDoscKgBbLf26vinwGiJwWmEzryV5mJMAdNtsz1GH5241Ytv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-imau-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NJaU29x9F2Myo4it9mrCLkB8V1CwsDpEb5f7p9xsFZ2njRUgt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Tgfhorhtfozcr2W3Md9SHq7PRNcU6fn6c8jzXRdhxkB4eQHrC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3717 - },{ - "name": "bts-fyrstikken-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6nqBz9wSkTmRLWRjQ7G3j4kPgsmdytCHywhaecRgjxEyPHk7UJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PNG92S2F8Xj2YjuN6DPf2DSM1tVAURiJx9qeGcPiWvSMXsCmD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4330541 - },{ - "name": "bts-wen-dao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jGwCuoBD26TfXYkMogv8rSPWJoZvNapm446V9YVwyGBWJguLu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HBkcLpZR8FomaqQZkYZUuY3rqf6U1qDKGRKrAf3UA47xtmLMX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-bit-hu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oc9AsrbPGkrkPDM2JVnt2oQy9oiVvaFyoTq6Gja5Ni1HdCZhi", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75U9etKxtpfw1MAy7mQ5PvgzyvXqAdv3xbPDxE1Svhdg9ESMvd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3725932 - },{ - "name": "bts-jb13586273511", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85sBhmAJSzFrZ52iZtJ9VxPFgKP7oeFSQwpLZACMB9KCrG6zp1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VJTZkdoVr2e2hHNgZeLSrQq4Dp3sExU1FjqVZiXehXYEwps5v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-neowenyuan27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KmAM32mtVkdJk1uac9jxu7nDHX4qyEtcpTn61MYBRqkrfig2W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DSbpRH6W5pCHUr8RF8bSpwGS2YiRAFwzZZ5MC5m8rdCfEdYEY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9562740 - },{ - "name": "bts-lee-lee", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wuB4ixUZ74aJp7j4JZDWnfWUH7sKm2B8fDBLhYGoS5qEwSFds", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wuB4ixUZ74aJp7j4JZDWnfWUH7sKm2B8fDBLhYGoS5qEwSFds", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-hien-tran", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VEYo5N7crZ8bAzzk78ndfBmN3cuQpD5vparBobKdiTdN7XUxQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7675EGLAZby8FfiAhceUbd1gqfVoxYMhx5ZBuKb7MH8hxqDcYY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-kendie-biao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FLdpNxk57fMJrFEfTp6cWJzRDAtR5bTmoGoDwPAqJoFUbd1LZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FLdpNxk57fMJrFEfTp6cWJzRDAtR5bTmoGoDwPAqJoFUbd1LZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-cnhb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cngd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cngx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnsd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnsx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnhn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnbj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnqd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnsh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-hbtv", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cctv10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cctv11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cctv12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cctv13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cctv14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cctv15", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnzj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnjs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnfj", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-cnxz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-b03", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-b04", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-b06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-b07", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-b08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a05", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a07", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-a09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-the-xaxx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EAa46hExCqUpQQ2SR3r9byCVERLcHnG4iZVXdFBRtS2Hb8MQr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5V2dfUyeB9F91GF37kghSJtJTTXvTgx2zBBreJejpSFGi6Li3h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-jekon80", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kFqq6fHdKR2gvMi8phEt6eJd7duZaHxopNWindP8DQFRvc2zx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZNRonbxQbqtSsTVwHH5v2DgV1rzCRKf8nbKFAyNWvx5Nr4j1h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 101 - },{ - "name": "bts-zed555", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59Yn1Y5pGV2Lt4RX4XqCakzewKTRMYuLV2bv1eqexewhULPU2s", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81vHaokzfwmTNeghNTpjb3cQrnEHkWudSjXLUfrZvzuFoRvvnk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36988 - },{ - "name": "bts-anonym7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZgHH8CmbC8LNHcZDMr4QrDvJNXUFxHrNJDhYJJLtetLX91iYM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eteT7R1Ah1FLxgEVn83yYgzQHw7qpUPLKNWPDAcmq7uhdiUgf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11186962 - },{ - "name": "bts-btser911", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9812574 - },{ - "name": "bts-cyd13842419114", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8H8JfYv3HKhS2gHuR82b9ZpWEoPZtmGpNXYYU665ZJm7yhfdRK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8YwYb8GVihqiRQSxs2GMpAkkozB3HpWMBB6kdWUDTMv6fnhJb1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-sebas.tiziano1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wPd1DkABE4dtuSrLRUdegd6zJm1MNXtXo46jHq71RnwPi5nb4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wc9EDX2b4AXq3xCfKh6jkbvd63CWBHaDFquRtcVyJrWXCo2PF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 147693 - },{ - "name": "bts-lvyonghua33", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QyLm1ffkN13Ayt5rb63y6Hf7MhistAmRF1v5djite4HNhthGy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yo9zmw1N11rpUC7wVGnrunvaVLeyoR1tUtRNqZ4PiPmzFy9jX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 287795 - },{ - "name": "bts-xie123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8c23ZRTDaSfphrQQCD9LabdnCLojqW3Ebj33L5mab5ajy2dLJx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wGJmHMZrDeKB22154xRQii6oLe2sM1KWmBmHjVdsGuC7hXieG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 190837 - },{ - "name": "bts-btsnap7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fnm2fdG2Bf5aVGZifK4bp3GH5X2q1vUAbrEZxi289hW33YQi6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UNufV3zLrcK95GwAfspPABfbiLQdkbHJsKXvB6HmgJ2e4UgRF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2673625 - },{ - "name": "bts-chenlihua-101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t4ZD5JdseS4y1UyAaf2hki4XpsAtE5Sir7ho8H5ejygTE9q6p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZX9SpBgBT5azGGdN9NgQzDzPoThAQQqK4DL5arnjY96aEHwm6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 743774 - },{ - "name": "bts-peter1989", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tJza1MYA5oYzQVft4u1Ek5nis7rtAhNdsR2vjT3yPsJyx4xGR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QRCH5gWoB6DGiXww7AgdbuBUBfS3f1ReNFpnkX4jAvPJ2TjSz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 249878 - },{ - "name": "bts-bts308831759", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zMxVYrrSmDyZTNKxLJRKmoGadGCiGhYjrcgwzYzT5SoHPpfuC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kp1effNUdCjn9uAk5Y9jJ2ea1MKvBVJLUmu1TLEG9BEryKpXb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5382129 - },{ - "name": "bts-c1lin12g121415", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MFNTFBPYbo8BzWPQArgwme5WZcAshfhLh8KRhXjgUkEB42BvW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5MFNTFBPYbo8BzWPQArgwme5WZcAshfhLh8KRhXjgUkEB42BvW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 167 - },{ - "name": "bts-all-of-us", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST889jBEf9LUgtwWAVao7UrL4PXoWuFZ75dFmuFdUrKd9N1FVVxr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7e9puN4f9uo2eaf9jE5Gx5fKFCKtipH5iXSvcHnXcavhWMunAb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 505120 - },{ - "name": "bts-lin-6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-as9", - 1 - ],[ - "bts-lin-6", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-as9", - 1 - ],[ - "bts-lin-6", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-bagder-ian", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54VQVJ9cXbhjbhL8rDoCPSW6qgNp9mn44iq1Wz65krtQhAhmHA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5QYsVaMrvuAX38jLc5UnYSVTUrTJVMTM6kF3VP7wKNQ7NFUih2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3978 - },{ - "name": "bts-buran3000", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8g46WfM3RUt32Usebvo1qNsaicgRXTWfT6hZ8yqbnjqqu2FR6W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BiHpvzPFTFPQvXfJvx15mDnnXec2QVAcUaqMmUXYKXnxT1UYS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1614260 - },{ - "name": "bts-joo5t", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7eYB1GyqmRtrSjyTtQzNqiY8vZgEB71ZLe87fjHuijcjFeMgfW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Z8PTEkDaWDLS9kr2StMffFhbQpzt2jCepVx6KGyAYLjfup7wa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376391 - },{ - "name": "bts-g-dubs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6J7nxZWLCaVfCpQBdwJ4YEMGJGiHZibnEdFEsjkey2kfvPvT8j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rEFxU946wW7G1UucJm47cFDCbMx16oWSqXhBT7Mn4HfHtxPD2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188380 - },{ - "name": "bts-timelapse-r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RHsXgBqRGBArWubJESghTKUQQEfeJYjCQ5xzisGsn5XnXjjKM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cePuAwJA8yscgzkLHvLUWy5e2ES98ADNncfHwNumWt5x7uStn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9098 - },{ - "name": "bts-oldtimer1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59oTSiqEu1wVjbtJbcv3b4Pe4SAxAy14iYMMJxm6ZMRyqLKFRt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yeM3xZvhfAKMPkwZXnN1TEDjfR3THCGP5cfxuVsBMBo4Qdwdm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 303 - },{ - "name": "bts-top-bitcoiner", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST669BwV17yrtBJ4jqg8qZDEkoBZmUduggeH2aGxt7TZ3XsURLUL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7teDyMCE95yAPMovsPE8ZwmsrBG2tm5WHy1smJ5pETwm2xkZwC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 837 - },{ - "name": "bts-jjzzdd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mGKYoj3euXj3GSNeedjqT212PjaR2YRAacz5vW1ihzUQU9sXU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84KoPpdkPmoAmFqLDSotwFxadE98uzyTV5ayp371p9JtFerier", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4504 - },{ - "name": "bts-georgeinsilver1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST71QjWRGYFsoUsVCsM3qFZacdWCuBmeNxqaf7bostrgLZxQyRA7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dmSBhgxhGzeh7XLo776EEMpxq5GBs7dGhryqSLJ5tvnemvkeV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3246057 - },{ - "name": "bts-duan-shui-liu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KbNoakRee2wm41NJwrHjjkJXxVtFXb5xA97g9nDPMuEDJMgEj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KbNoakRee2wm41NJwrHjjkJXxVtFXb5xA97g9nDPMuEDJMgEj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 287829 - },{ - "name": "bts-james-919", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6d5wdGvQ9i32jp2RSvUt2m3EWYhXM9bgcWc4NCqFNwjMThqEo5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kBnkzYk6mTBrewkSdH2xWPJ6jVSQghXP47gwykv815JToQEAr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-dcqm", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 3 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h7CfaF5DhxoBoE8kgWL985ywTf6zGFew1Sh3MsjAcjaz8Aegz", - 3 - ] - ], - "address_auths": [] - }, - "core_balance": 142 - },{ - "name": "bts-aa3625144", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KMWGynVaFGZjJTiyHm7HgG1G96ApsBmDS1jRH3q8Js8ekaCLe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PqGWLN1eK768E18664PoUGRExD32vLEB85FJ4rsoab6HZAd6q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 284247 - },{ - "name": "bts-cni-doctorron2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84kZy4cTFCKkjepXmBqGp6k3tuKwa5R6uGqUw5wZsfEghiopXp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cNka9iCXeJ2oPKwBGZqTUmfUs2QzvdUQpxHHXYe3QyaukMVPV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-mmjj003", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c4mKy2a6xpt82LChs1ADrUynAW7TuQL8DBbB1VoVNZ2ZHeuNy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69JGpGY6qg2j1Fy55oR9jn53LH7Tjx6cwsnKUpmxGnXhytHNWn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-bitlion", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TDMyMqr9PvUme66vvEMFyvqWGNapt1TjYBF7kkURhDT1eKAx1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eUjsM8fUx68umJhzZ5EES4Jz2VPYCpmWYubTuKGqaxLT8K2af", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1253 - },{ - "name": "bts-y-y-j", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rJg77UX1BknSCDokPu3HW4FUvUhNxAgeYhmViDZX4XLTj2eMz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XwqLmX3gkjdJgvm5M694GjHHyxtYWBT7LyjEpKs16vi32KKcD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 412151 - },{ - "name": "bts-mybitshares2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tkdBptxNHNcjYMPjENCpppyHKmhLakrZvPhvxETpSEkTenmz7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6f9jycFpuG3cCh2gvQWf3feD5fcLzrbqWaTD29JL9qBBGwuvah", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 45224 - },{ - "name": "bts-li76168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5p5cvbaMGrxsnSoNNqpgEyd7D9ypBUQcLsZcFZpCFFmDQUogvD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RWeYfgU1tg5QJXGPqKKM4RCEJbZPQnUoESMxMB1baeySnYuwC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 866354 - },{ - "name": "bts-iwi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ZDDzCtFBfXgRjdktG199z6LM6HjAkTe66ReHtUCmat8pfDBpb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DZ8KLTPSSrF58iFZrEqhWyAAPJUbBwJ4QST9RxwJPMZGH31hh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67441 - },{ - "name": "bts-caifu-baobao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mDMd4Ve4d9rRXgzL8PLMP6effN4Kf6ywk2GHSgyhr56jAj5ea", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mDMd4Ve4d9rRXgzL8PLMP6effN4Kf6ywk2GHSgyhr56jAj5ea", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-pim-van-prooijen", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kLeee7BVV4vHCbNLXY54pvPMJEXd2CiFbSZoBiEMDw1EFgh2W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kLeee7BVV4vHCbNLXY54pvPMJEXd2CiFbSZoBiEMDw1EFgh2W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 431497 - },{ - "name": "bts-alpha-crab", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wueiq4x2EmdLoCtEVuMczx4SE5kzp9CPMVXTEBZKYLjK5DMgN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wueiq4x2EmdLoCtEVuMczx4SE5kzp9CPMVXTEBZKYLjK5DMgN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 307 - },{ - "name": "bts-cni-sheri777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yZbcE3RaWqynSbfuAbBfGimaE7TCjm5cpzy6E7Bu6RTAY37KN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-dool777", - 4 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6CzqSg6Lumj2T5uCzHPdgvMq9dx9YtL6mcm3aiB8hRMjXca963", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-huwa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-ljj28", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-ljj28", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 173 - },{ - "name": "bts-grnhttr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mLxSJhAPpWCM43uR183nogSYqz45zmpmGCWbgr6sQKwffuVej", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ekUEskysQ4bEfYXwy7KEspTKEaP8syL731BBdB3EgyZfbM1Xb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-flyingmind2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53uoNQpwMSDjqSiLWrFGuJaZev2jdx1kVRz5Z3z87cVyMh4oHj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X7qmxthZqpAH5obJGeNWCuKKGh7rqVKS9bqEdqbdE1ryeWpt5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2640056 - },{ - "name": "bts-crypt09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5G2cvndcAGAbp2na7fC3JJi2fHzReAEer5DxgFKTrqaLvHLTjK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hX6pKaoDkzafR3V6BSjn6Qk2Kev3hpf2BtZ5b84oAHPd4n9vg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-btsgo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ekZcvrYk9diHQpC8Em8DyYYEnsFqefZ5nT6fFNFhM232s7Cs8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q9PSjwtNNyW1b14iCWNDU3g9D7g5HRhq853y169Z9Q6Vcfzk5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1008045 - },{ - "name": "bts-johnbts-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iCgzVvYfxBv9R2JZ7a4MWtfZHvPQH6yx1d16VUeGmJGHPtTEM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xXXUuPMWcgh2zZWxwNXgjhdTwiXE23rTgxDuGucAxQEq3PyfZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26641 - },{ - "name": "bts-deep-synergy-smartcoins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Cp5ykQmpTrVfXPqwE1VSo3Te112Ms1WLQoVFZKRZqNcKhwYu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85Cp5ykQmpTrVfXPqwE1VSo3Te112Ms1WLQoVFZKRZqNcKhwYu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 246 - },{ - "name": "bts-cni-kezza", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79ZZRBNZdrzGSvJ9ttVKqSQ68NrFRupoRP8Q3x5QzHgb8DF75F", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GF6okvKsgsbh1yqDnBx7Sr3qzQtHgKnh649zZmJZ758A4fA2y", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376 - },{ - "name": "bts-cni-stevenparisio", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-amparis68", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8mWSbFmwHuk94mg9tXHj9ZRVP61k76mhGow7wkcMbgLxwvNxZT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-ez-techwin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kYrAYspVTReebw4qJ4BdCCgarJxFee8JahN87Vj1mWiqMmZSs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jPfJYsz5hg89Lbb4AWpqzCsveZi43jmMUwf5eoU7da3ncPNpA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gnix22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EtXB2hL9H6duBnvCVCu3y3dj6HPrbAEcrnwLhZoR6g4JCsMVM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jE9uKYctP2Sf71hACCEZh9M835vpjM5GA5mf2bZuk9y8mHF3A", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-thnk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6R8B4rrv47eMRWjcMzkpJ27DisAKtwwwTZdffvMmzYfvLu5P8M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6PxosUiGzKMHBzbrEqoHyABK5Cbk3ubrz3NWckJumiu5JYtj2J", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58357 - },{ - "name": "bts-razorsforex1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Yz3Z6SJjLw7qa7dSsjqqpBke5HkB38a5wCoU6ohX2q3Lr5UkP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GK12XheHg34nv2b8rRnnvtqH5kQbdZaBnpVZRdMXjEye9JWz3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-kztest0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b2jGh6qiNGQuDFRThEYSc9od1mS5ggtmpoPiFeW1yMkD9peQK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rAgNRJMZLhNHbEx6AGVWKARBkoC3ArxoszXMjmwfLXNgyRvNn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-kz-test", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wnfGuzrr6PS4T3YzsoreheLohkMBBogwaM1KpL2SsQ7hDAvgA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wnfGuzrr6PS4T3YzsoreheLohkMBBogwaM1KpL2SsQ7hDAvgA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-kenobi88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68NwoDfQqszoE1tpBvxDFoCjqwcvzXEyi7GcQAJKR5qgvf5K6o", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89ETp7EceeQ9eF9w9e2gBMvV466HxLizm239Htz37TRWJpTe5t", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-oof", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7obARwodhSZL41BDJBNf6YdsYFSRNyfQLozA14PMWK7wDmFYSV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7obARwodhSZL41BDJBNf6YdsYFSRNyfQLozA14PMWK7wDmFYSV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 74 - },{ - "name": "bts-xomtux-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TQfWCqEHG9UA6bLejYmmoQGzkUTms3Z8DoMnW67CiZEqE5hvW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6r17pFcQsg6NWUfmXAFkoZjDRCPjStb81Qzby4nXnrg8YXZxLD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-xomtux", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MVS3U9oYUkSssqzhyJ7mFUmwb6qjd4s5zRuZvd766PWhRE9aN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qxNTKw3mBtbcySC7X2sAXbT7cU7FuSDH3mFtnTYeymZmg26cX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 155893 - },{ - "name": "bts-baomihua-87", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fMRtUDDfdmYXBBUHJY4XY7rwN4FoAR4LD7XymB4KTjHndKfg9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LiV3x8rE8LeFa76cZueZU9Mnstug9SKzg75iwkGwWYS3zpXa3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 491170 - },{ - "name": "bts-dude-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UkL7qmzCkQTvkfFWvaoVnRz9zJJo5FYKxcq9hm4bXNxMV5xfG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TxFVypNFEXHXkQKCnrLmWF37YvAoWeQtaP3F1fZA6ED4jnvUK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 444306 - },{ - "name": "bts-nk8601", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TreRinqxSkv4QXdFFuVZ5ZWhUgc452MUT9eJjfFFidAfCheeD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8T3TvHrE98uN55pUZJr95rFCN36hDcqmBMoftHYWaeDMDx2Fdm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 309524 - },{ - "name": "bts-clear-testing", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST64e57hBJAYN6pjW3vSZRHyy3vUGvXyrN5HZT66y6di2wzCN38i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST775QRvfH9oyuy672GdFeygjsr4kFoULcAC4Yq8V56VHH96Hw7V", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 104 - },{ - "name": "bts-soup-a-loop6686", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5GrkPzzfBJ9HPpXTaci3w9mY4cQ8xvtTwocdnXXSrKrSKwx572", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xdXi2G28BboqLDDBhUPcvctEX6PYgF6m8LLfziFM7NhBjN1Nf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 985186 - },{ - "name": "bts-babyface13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GM1KcQ8B8v87GJ6ja3WxcrRFa9Y2sxtdFmWvH6toyatg8XvWf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MH7HWo2Tucj8sQm5pdHYUUFYDf9umGXuT1qBiwLGULRoNkNxq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2096787 - },{ - "name": "bts-wasabi2006", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78ri98raFV7NDfYfDbboWu2mCBQVRgMWPR9F3gDYN7cQeDuYKZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST574ob46NDNs7aSATSd3bQMrmymVmNR9UZ3HXBPyiyMoPRiBdk2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26859 - },{ - "name": "bts-mbn294", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LEV57S2qpMqQxPb67qDbgPMkZVC43KUdweFgrF2wRs43yXHAP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8N7W7V9uaLj9m9RmhwmX4JtxT7mb6S1QtKx27XTRyBw5LhUdfk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 391379 - },{ - "name": "bts-chernolesov888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7teTTwiYNe5g69WZNBWSj6TUojP7bUBo8uL4bQNdj3AxarVGgD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wBcNSkby15ru3X9QWE6UiUtZYyMH6tnSSXYpcVwvuEkZ11Wtf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3537844 - },{ - "name": "bts-as9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-sm9", - 1 - ] - ], - "key_auths": [[ - "TEST791dN2uAm2sJCWkmHCK6mPeRZ4qfG8ndoGNVBV2KVDdvNMDSpu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-sm9", - 1 - ] - ], - "key_auths": [[ - "TEST7XZ4kFoveQ31EdvhAJbzyu3RFASCgLCoMa1m6nfDVo3TTZL3M7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 62 - },{ - "name": "bts-y-j-y", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Xn9ihoeo57FfQ8CFNhYU43GFSzpHd6BAor7Jx6WdpKeTAuEaB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C9E7RnPJhoM2woVsJ9Bhq8VsdNythAtwJtBvhoF6xgzvj5kvy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-cni-sauerpower", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79EtmfwYuBzHdEEKeTAPChKKwsQ13DQRa4inZj7pjs8B79CGq8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST892RwpY74bR2g5uE6aDbmo1oX5mFrn3LQtB8ipMowW84XiFwQT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 643 - },{ - "name": "bts-btser-1688", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65qPM95YUYariRa2tUwXqHK3s4S5yiVMHTGzDKWgmHe5eQDR6C", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8K4aH6bR3PZgrEy7nirirpJA3P4Wqfp3Bsk1bgEr31zsegJPb9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6894004 - },{ - "name": "bts-coin-instant", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZYr7iUNkAAW298rwormmmW8Lsz93xfSHoxxebV6VzPtJmdx8J", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v49vnFd18CZxnmyDQHUxQzakykRCtrgzQRECeqtngTo9hW9CF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 144507 - },{ - "name": "bts-cni-pacer1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bskkgF4EcYGSvScAsQ1SzZMzwF7LKvpXcf9Pqoxho5KynuLkY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5wFRTQFvK2KmjYakj2jfQ9tvAMThdFsK6mpZkn3eCQfBKHxzUs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-bobo520yatou", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oMsRJ44MKhw8MVPskPaQ2DVNkZcVqoiNY4sMyCacdkynYScTt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gMDjhyGpWCjmD9Tfx7RnAk9LiFWqmBYM6JTgkfwa9rw4zsKJD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23209 - },{ - "name": "bts-semenovsw1988k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5DvCX9e1Kcrnen9KJUeVuovxtghUg9p7mTvAmAz19XyWdv1yxK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CGh7PTxibN9xU9r6ffoedBLB82ZUTbsshFENc4MCwBWtN9eea", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376762 - },{ - "name": "bts-gaokun163", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mKXaHyqXUn4NVvKFab8WDxRXVoiwLVqyUQ9u7uorATLtJTC4y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WxfAcWnN8yHPoMbZCVHmtfcft3WpGuqJPvZQBPjYmcF25q9u3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40300 - },{ - "name": "bts-shuang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i9qY97GDWKGksCJjCuvEaLben4ZeRGJkmJDMnTdCsq9x5AyEw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Bgb2oHzNL66dDVoLyWLCfLqHzrqf2Qo2TyXPwA1SsyqgPFbcG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 58211 - },{ - "name": "bts-khpyun72", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PYTSAy1N6LreFBa9ZNarqCMzfBvQZCr2KoUVivaqkmT9PV8wh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AB2g2sLgZAKHpSNqW9QnVwqzG38KCQjs6eWkf1uGJZjMj9LgM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4101 - },{ - "name": "bts-ljg-120", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89a8YXF9u6bnUpxV5W2tKXjCZdmg2dsExn6DHXv1K7eh2QhCHt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oQJMpoMWbBLAfk5RMSghdhhTp9kzVxrHSBkEWnUpEENvpGigR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2506 - },{ - "name": "bts-aex13", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PZBhAbpBa2rs2XV8jsXT38UYzmJN1QvtM85AKkWv5HbhnSQ2z", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QNttwqcvjQiJak75rL61dgiw6QWGQ1TEoY564nEtyTmRE5JMr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 124 - },{ - "name": "bts-whb-945", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZgHUKzUziGLVXaFmvgyuBu1SU8DtNbBWjDmfuohvr8XYtbZtP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61Y21hsamn6RgnR6WriCNrRGGELPsLDvfuHEJqhefTzrAXjkAA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 302843 - },{ - "name": "bts-b8911537", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LaS9eZpVNpYhLgcdsfZPg1B15kt8joCtCmhhfjZU45AQppZrX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST512c7PcLiudp9cBeWVjj2TdXm2tSJDeWW8PX6iyKQjmKbBPyep", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16010 - },{ - "name": "bts-eyibin-154131", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79nQYvF7PMjXSTxT2xGF1uLjD3432WFnpSb2sqLd97ALQWNSA9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Tvi29e32wj6Sj6fJvb5rDSmbtTxxb1T46VAN9iAaZFAK7ecTG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 514827 - },{ - "name": "bts-cni-stephstanton1452", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8eD2DyeCELhsHGxHnq9JYfgT16bKcHEQShQTncRuWpumEHYkJM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5RUpf5aja5Hnk6rR5iL3FfgmZvx1ZYYedWXeQrUKrrkVK6Faz2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4599 - },{ - "name": "bts-cni-davdcd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ov3rMTGk5VzXxLe24H4xT8XEXnmPq2ZAd8UNVZ7ACscr4yRSU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6K6Q4kECvAvUqW9BpHLfpAqCaYL2W6z8VeP9fSeyyVMkEjW1R5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20862 - },{ - "name": "bts-cni-jacklamb2587", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55BADU7JBbknLpD8WMbW99Wos1q333iS7fTSbDWcJcXeTCbsR1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7F74jULC2y4pykr22NjS7NRQNNyLX951vaKbzwCs4tmV6EZh1k", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2018 - },{ - "name": "bts-cni-jwy2015", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6TorPwvWy5LSqKZuEStk8scHSt5T5eEwcD2cEXwwJerrDidZNg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5gABKE5LS7ugDty2bc1vCxkAidtN19zREJ5Fs5iMVVHGG1F3cg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-minus2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X9y2u6RgYXxrqHu2ELTaRjnxMV3Kwhc9G9i56VE1xhsSByMWm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hfB7RcbkrHAd4zdDPTp45dzT1ZjhZRqNWZ7vW9iXc3BrTM53f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1005803 - },{ - "name": "bts-zzj012301", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST552ayaccHNLJrJtfqvvK1SyBKmcpBhPsBf9gNDMFkwMqD9VB6h", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XScDsMvwGYP4MgFpSCM27TZaHvVLw8zLiutvr8tuVG58tkzTN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10425632 - },{ - "name": "bts-cni-newdreams2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YnYeJ5S4B1hJ1pekcwFRsi1fXtGF2P45HQZ9EteteHehPjhLn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6cxurFtSqJSjgNHKUoc1aGRQ2uTHNjV2oZk8pR9ZqNbfzQkzoH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83 - },{ - "name": "bts-gaofy0512", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6z2y7NCNURTL5j63PZSZkGq1MMJwRX2VeDj7eNyL1nSx6KqBnA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YtWDfyf2s8rBdJkNqpLEanxeJW6avUdUBkztvkByPiHF2mehH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5843623 - },{ - "name": "bts-cni-dakila", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VwDZwCLNNRHRxinELaZtxTaPVDPeUfxWGfvfUVkdA8xyujRXZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6g43P4SnX9LaPDqYnzsG17ioG2SrcrJjNrJZnCsjpH6qSzHomN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 707 - },{ - "name": "bts-bsnss", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST566pAMBsGhHhAKSrgfwu6p9RzdYqjDgoPa7UJydriSMVCS8hET", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cVyPwaqv9rxb25yqSWyWmsGwTPnzUc783A2NRFNNHKP8SQxV3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 139 - },{ - "name": "bts-odeydj1971", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Nizi5wLuQ37TPMNKeWcgu2PwnKobaHrqZNnnDNJ672UfeStxn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76GfaCnC4FJDf2o42kV2cqtPFaNJgD23QYnsdBKskm9RnitHdj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169 - },{ - "name": "bts-dbit-5049", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ELVsUDNfk6VCLHxHdjXD69ZdCQaXKXn4fYKJbcv5rF1j4Cr8X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5N4cwCYCifQ33nauS5FGbEWCPGW85o7UmBQ6mFY6iYaemxb8im", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 333 - },{ - "name": "bts-m1ch43l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eNEgGz6TvcKBSTwkpy1wdxUzUwNWrGRCzcU7ex8uV1iB1DaWz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DmZZA1Zetx6RycyPWg66n4FYd4YBN2jc3szTeX1yTJTeUFywT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-lujunqing7890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LHJHo8uf4rb89d71ro3BBEDxjvgeUqreB5VPuxa3ZvUCktxUZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Rr6moMaoFL41UvQjZCuTj5WpjesR9eXTfyYxct6M2Aee1s4Tu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 56 - },{ - "name": "bts-q1599190010", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FJAxJoRHnmVZcveh7K3SodLrg66ErrT9s2wRqS4sBdqQXBTDb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F4umYXfwALV4pZZYJNXsP5ZcZyXULBg8qdzYGzag1MLhEpVLh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 216 - },{ - "name": "bts-sm9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t6Mb9A6VBcDL6itSzBgVwJ4BqiYda5FJbaAK19jiid5rEMuRf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WBmAi8jELfF4VKeF8KreopybH178Xf6nSGJgct7UAFm8S5TFk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-c-tron", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST817CziAYQmz32KGrxub2xL7DNBASq2Rkdo7YfdngaZ2CXimqtU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Lsop2DbQ5S6UJFAwTWqQ3fYuk3uDwNyq2bBYV8rFhotSinBYz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32940 - },{ - "name": "bts-bitcrusher168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fYeuhePBeLyt6ZtaRUxVJVi9KwQLFgUaesuJUDc9G6DV9gHCq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST844U2JAjSZdd2mhS9fiLe9um77QHjuQ7w9h2QFFHjMvKgN758x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-xin-xing-jie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Y4DceRZxWfnXGNQCrL45Fa44oGnzcrqfMSPb4un1D9Eym28qa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mEM5YH9TQxe4hzH8HGYfob1Z7rDoJVJzVkLjA54bn2wTQSidX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-moz316", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PnyzoGzPqKYaNQLbDnhUmDtFaf6RkTeP7j7CpyTPTE41e2vsB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Jbi4uyDA7GZkse2i8Wa1pevFMhz8GcfpYcVLoJfZbmXEPhHW6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 389419 - },{ - "name": "bts-xiang7890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68WU9t3E687WkS8NJTDW6Lj1U9HyeFTeYmkVncBXCwY1KrAnMG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ib7ni7JGHwXwYoCupqopsf9o15paf1dzcJYffmDVxVMk4j4SK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 60 - },{ - "name": "bts-cni-edroc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ucwuj2hR1aGowirGFpRFwogQRpjetRGY9Sbbapx1QNJnxUunh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6Ac9JjcbCy7kT9xWSW8AB3vXqkzKeKepNYFhBqeUxeFSZeCzYL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 28386 - },{ - "name": "bts-bts7890", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zKu2ispUGK38SGXcRAwe8ZaE4PMZYSHxeWpMVXQK9TdVntp5f", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bd3dBHwPMsYQUbcZ7oQtpYtC8H3VnarLYW7Fyi4vNx73wuShu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-fafnir99", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6whQc1jXzM4qkKC4ANvFMpLCrPwzqZ1vWtBsrsuX2K4ysWLW9X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bAcKYimb7vX1JYo5rhEM8BVYAS4y1bXTvS8Lhnja15JGdihQQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2231 - },{ - "name": "bts-hot-heart", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F4umYXfwALV4pZZYJNXsP5ZcZyXULBg8qdzYGzag1MLhEpVLh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8F4umYXfwALV4pZZYJNXsP5ZcZyXULBg8qdzYGzag1MLhEpVLh", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-kellyyu22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k7emXw8gjPpe1QijBV1MKdnb11Hw1ffDuEQ6wyTGMReBGWtod", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hiwGVMHGag6QJcQCWfP53mD2hFZerp4XFgFikz68fhwuwcmXp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5038140 - },{ - "name": "bts-ee-9657-marti", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yX6KsUb5T4jMJMVPTjmhmGiwvbfNpuxSQrVvUdLmnPHqLugzg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mjFDKua292vrHcj29hZ7KCLgucDzH697ytBbBFjiG7zwebygu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 864138 - },{ - "name": "bts-doubledipbandit57", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rfeXrZbgSMcUtbJHafd5hhdH7UqdwXxxxDKfCpfHQ7xFmYqnD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Szc9tdqRvwZXX8ks4XkPAEafZ2W6CGUTGTMhQadyFm7wi3Ug1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 226598 - },{ - "name": "bts-cni-bevjoy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qJS92Lo7vx3dtTUK8UQZfALeNTqibRc4tvtXXf8vmUV7pem1K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5LH1B4nRGcPXsYojDAUsbr7j1pDaQ2acMDJK674Pom79vZhXhB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 412 - },{ - "name": "bts-cni-coveralls", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6V1APumFWaA8A5BG79EM3FBFEyUFfA8urg4Gw38cYWCWDpBMsm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gz54bprUbSXHNBBH6knBK8Ub86BRwSLFNcKfAkwDAWUCNweQU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 413 - },{ - "name": "bts-black-arrow100", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68KgbPfDTuZFzSk8KHA4HboCdnLv7kmu9PJ6PKgHQCfp2PWSJ3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jCE8qSsm81cuWArckboF1JoSRpEyxEmwiA5RJ5UW1MdbcoWhN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 356 - },{ - "name": "bts-dx8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U6fTaENbekvARRP3d3tbzAHGgNQajGHPGpRXduooAkfZfTHPB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JcxTDJWfuoEZXYtHpJC6fY2Q3ukq3yf19jd3UNrSHVYCrKsjS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-cni-kirklamb14", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7i6witk2gyJbWoJccYd2x13LKNbwz1ajfrmzVBDJYpd1u9ro8i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST52fYQwNqdRXwFVh4YpnbNyLxM36ujZrJgRRLMJzRTzoiXZMLfE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1461 - },{ - "name": "bts-aec93727-71c0-46b3-9a43-de71885cd5d5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qg7vZEPGWyb4x2PyRu65tbeUfTFW8RBt7VTkHNx7tRN8geJDf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST729z7xfYRT2yuPwNPinBLFNgCWhx7rxAwCTFmB9SBPioAajFth", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1881 - },{ - "name": "bts-m1ch34l", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TijZNF7VPRrXxZ8aBkZaHnHgUmZj4huHSMnSkau4MNVXr9vtW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89jRhWTe2CiUEZAVQBzDw1PjKtgxoSsgYhgtMRNdYqpBkUCrTn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81719 - },{ - "name": "bts-dedo-dedo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7b4GzCkFou1aPzuTyMSoNovZvBxBA4nYhbjJCGCDXQE1oKaBsA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Y7LD6BT1igwrtu5oVzpXYXkcNLAnvTkT4knWqrzPtTrt6gyop", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188921 - },{ - "name": "bts-bddh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST79WVBaL3smzpBHTRLLjnev1ahJGdKnVpcJ7U7jcJfdVUervoaB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6idwMY8LmTKwBQ4yF4EkHKgYhEHs6C1V13uU5uGfhKExhDFAvH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-shake-well", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7aGKcqHKCZicTeFsoLsvoN3kywxza8k5Siabag8M8ytUrrxvxn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6M7ZfYJDg7ftZYLYSd1eS4BYEYjB8ZB4y8Pau5mQQjmHfMbkJf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67798 - },{ - "name": "bts-kdt-coins", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8UoVQ5uBLF2ES4VnJQ62acnfchmoGQM9ZvMkRqMJZYh3T8jxkY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7o2fCJSB4Q2UKttnPEVvQYW6dskiprFfnwarYNn4J9PL2ccgeZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 417527 - },{ - "name": "bts-aladdin990620", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wDvk3proQa9REZjHRTv5eP4fb61DuQNLSSwidVcxrFKUk2Rfh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wkFweMy15X6Wcdyh58qmR5BeVoiAq7sxYRsoBy5guNvfpycsd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22569 - },{ - "name": "bts-dys520", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vWCNV9ARCxRt6jy299km8tjoWh8wpmvGBsawbnCDeTbq47JVN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TMBpAxMpwBe5K1bjYsrXxzJPdKa3rVhRJAuNzxmtFXSaqFXW2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2233645 - },{ - "name": "bts-seusnow2020", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8kML5QvUSYuB8XFi4KikVeXpCL9XTsRN2kfuxEc7CdjZEAFPC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QbZe5y12HWpzbrDS1rA8RruACW9e2k63jXfHCYbBjoJdGkWAA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15191547 - },{ - "name": "bts-ico-blockpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RhyF1ahP2ktrXnGxR2HGwLgc4LKob5oNrAon77UnSuGSKQqLf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bXYgK44hycLUTXnsRyVuAZdF7yKFbeT6JsC97s45Zg3QLSuso", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 570375 - },{ - "name": "bts-hotheart-multisig", - "owner_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-newtree", - 1 - ],[ - "bts-q1599190010", - 1 - ],[ - "bts-yao", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-newtree", - 1 - ],[ - "bts-q1599190010", - 1 - ],[ - "bts-yao", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 820 - },{ - "name": "bts-block-pay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88sgiVNk8yGeBBjgks1xNJNgQkwn77mYmRbQbx6vVZv7J5iTjx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CYYJCw89adaZuf8fTBPTNTJs2xYHMg6QdZtETiTabvk8bph9e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-sota-born", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tfCYLsvPrCRkhZtjzFhZbRaR1RCMgvDj9uZEGrB7WFJCsPFhp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tfCYLsvPrCRkhZtjzFhZbRaR1RCMgvDj9uZEGrB7WFJCsPFhp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 228447 - },{ - "name": "bts-hardinero007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nKYc3sR2pt7Km6VuDjS9FyEtbpeDrBkkNLgHhck1rvvZQoKzM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56q6fPR3mYePxfoxY7PUNRaa6S4BNu3c2LY2JyiqejutqP37Dn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 226675 - },{ - "name": "bts-fu-changlin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LcjwnTqTy2F8qus23Gho71noUETvkmNxKQG5Pmr7oEJQhgxCN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6naFk8MPVJjP5fisbauTjaYcczFnFuPJPcGb5ZzZfG87Z9BuwC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 16214722 - },{ - "name": "bts-tkw01201mw37", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6MWDViBM6dWf38imFj4KRAZk6oxppcWqjRFfh4QfGyY3obBWFX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VnPpVVmvAsuVm2UvC7z3RcXfiEr4AznaoJ65s2se2QffkQkfS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 21964 - },{ - "name": "bts-xidada-sb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54PqfhpVjDB8oRiARW3kabacD89Uzzb1TDMsX1krJWkqfbCH42", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vmUzKnABLffZJCbjmHQcsFVfbwrPbExhQwsdUapjzwSJiRBsM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-zbc666", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75Wesngk82WRY9TyHm2hGX31BmUaRrs8Zza1khJbj1P5eFeQQg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gr64iaoXGnvt9CsKiyiP5jtaBaWQpsmC9x6x7koPT2w8CJDyH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-bts-munich", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vLzwFGbQbCkBBKCc7rPQUmZDXCtFJtwgsmU4v7trr2uha7ZhB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ck4i8HJtoAUXfiQNzGCeWH7GNpP3ZNCqZnrbL5CYXMuBTTvSY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-share3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tv7pJhxuDZ4iDw9wfc1ujyUzvjoCaTrCRQaDk6gUPfjcxxhBV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5no512LHLL3Bn1MGA2cqtmSDnSqQHzxFkT2QcCyDu2pwUtsnv4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-luxiang2009", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WaGd1t13Ac42J6pyMbto9f7jkjX9xr41LcVJdUP4NVjwvX6iq", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5r5hJYYpevPcniUHyskD8gXE3RZ1YHr9dCpkXCxEwMh7hMNmyk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5437772 - },{ - "name": "bts-g-87", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LiV3os7mjxydmHn4KcqThut2FQTHL11EfEXTWyH7j12sdpk8K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xsRpzthXjN9MaM6kXHMk3NpjdTuKBwqMPtdJuaA1kD5Uo4rFt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37910 - },{ - "name": "bts-tk4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6eoCueMnpKPYJopTCSizz6hhaeB9Zm6ZFF3m3XMTvDemSu283W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8DccjJtTJM6F2g6kHzSkSosEDzdHTiw8UuCknLgr2szumVUUpU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3687 - },{ - "name": "bts-btsabc.memo2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mTDph566JHq9yMhhSFN5ft7BgspbR7QYUFyN9jfcXSVTffTQz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bCLcCQu53ybHEHHM6jqnxA71E6HyzdKbR2Xs63KmSxjccq3Bd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-nih-ao", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bkGpMuy5AiL85JYVjueHLUERL24E4sFivxKvdFKxmRpcPCpze", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52dupJQTqMyUDwD5vFxWs9QiVCPifbfN4CjLyks9cGxRGtDccP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80003 - },{ - "name": "bts-mr-mochi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KzpcWiow79xtrZfWfoYwVAnyhc853prHkg1LUWEhBBzqTyXWV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5LKjWhgaSu1WRX1g979jEp3mqQPSjkgtPDdkb4pSCfeoaNjXWx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-cni-money7all", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Duh281Qbq2MSf61WzSE9Y2Ab8opkR2cv3RbRPYAiT26NQXP6L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST56ZBMp9oBcMosNucEYQfYvyGhe4LC2jWpYfbMH8rmT5Qre4umC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 799 - },{ - "name": "bts-smirk001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6jbmwDNB15HC537ba6AvAQLcB3XCHJyrECmaZndoq59oWwzJhR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Ez9kSv364Ji47pt9bhjKRSQNCaNguvYQFMHAJe6mXSb2Ns5xd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1315849 - },{ - "name": "bts-mamamae410", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cYjZKfnhCWEY6vbHz8Jse2HFTD9P9hyMZMteXzkmmTLbWvsHW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66umvrgNhnYFTM9Am1m3EhEZ3V5BSMUCihTJbgVxxigVj2uxjy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 140494 - },{ - "name": "bts-yt3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-sm9", - 1 - ] - ], - "key_auths": [[ - "TEST5kgUYz4qdtVdZjFnwoycbNYYLpApaMM85zAaYFsFXsrDwMwtyn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-sm9", - 1 - ] - ], - "key_auths": [[ - "TEST8mR9Qdnfh3MRMtvpr7NBbUiHcJKN7uABgdz7QperVNEiPZkXpx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-bddh2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FyYW5Uj3Tdwyqh5iJssdzSqfMBjVh9RfuZyW8rqQyqfcrTzAm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TFGi5MMXYDw8Xj9f2oqmxzodszPF5GqdaGSkCZXs1ZAtEDrXK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-little-johnny-compuceed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-ronmur2016", - 1 - ] - ], - "key_auths": [[ - "TEST8QVZCgRxCVtSgLJhfjVthdmNPcgBbNm6cxnoZsN4AbUjf9Zq2n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7S2PmeEvJk5LYsj7sZ77Q3oFyHvx2ppQp8QTSmirY5YwDv5X9Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 412 - },{ - "name": "bts-bigger-johnny-cryptoceed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5C2p7FMYL2dhmiYWiugRW6F6u1XzyUDAwvTpNyZsnXfhjGyX6X", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST56NghVHPuAut855Mky6b2e7ktPhPQbhsWK2Tc9oZ2Vd5yBcaZ3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 413 - },{ - "name": "bts-peachesgirl2001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CD3p1acBq6ch69rXkbAYGNjdx57nZzfJA4Ha2vtvWQo73k9RR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wNZvUiD89txUi1BemyoKVFjG47tkjbRoPdohZkb1sbf13kwxw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 41210 - },{ - "name": "bts-chnjcks", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dMQxHsLeEsZvswwfdWKUGnpRqPpHW5L3uxZC5eyvLuodfAM7W", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7R2kZHwEsHKmKtKSzd9kBTCwx86khzzXcPZfoU6RUsKZ1v5FR7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11308 - },{ - "name": "bts-gringotts667", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7X6TTo6UfuVBLjxXJQ4kvzHU4iV3KGaYoPUzshWRxwvBnsWUyx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ERwVVYdqbuses4JHKYDVhUQwJKAmjW9dCjK46Tp6HnbFFkUim", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752574 - },{ - "name": "bts-solar-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VJ7KvR75YDXucRqep4mc38qYnEWS9aqxw6Vf3ixz5819dDKGF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8bdYdJT67sJsyhtoM2UTodj1g9qo4NyZcrUBazBjpPAQshAMQs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 755176 - },{ - "name": "bts-zup", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jsSxRkezYK2X6o5TFiC9XLA2UHgL9V36f8bTBuhFsZeDap5V9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7LjLKh7HtcFeqYJrGnC521s9TXLaW4JeC2mk19u8SKJszguv7f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-zuk", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7QQimij6CFW1Uyykhmc5aLZkcd2tV9Umr4dK8EFcx79f8SspvC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wkDpkwCFiuTRD9ASZGNapUzrw9jsZLvWNw2erBtz5M8k46phc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-mi168", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Bz6tKHuSyFoXJt6tmn3huaRCFZeqEtzUL9yTmNdCgvYwd5pWh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zDkqaDFyVHBySY7h6ESWH1Ra5oSa4ha3US6rKXe1u2nrH418K", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-singularity-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88H8TFm5XBZnF28HxnjY4rcGZPZchzfzvSn4JBE6j6PX2RcxTy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VkU8ru1FPYh3qD6R3ppyZFS5yUHyBCG6WDmu11shgWynfnDnJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 477578 - },{ - "name": "bts-bttc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4w9e4b7idvcdgMh8KuujureRUz3ztGoVepG67Xmh3eGq5SbAux", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zyifUyiLJqfPoHR27ZM4WJBFEr3s8cvimuKNj2acP2Y8cgSb1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1582 - },{ - "name": "bts-cni-knockando79", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AETNfgXyR7ufv8PpdmcuCQyKbCR5owURxAUTWEPwB6dG5XtUd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5qUgBPCzuJAtAsvjNq1u1vsRyXumKj2VMdjZRCgfUbzzGXYXFg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-huhuhu-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FhHR7rJu6xG8r9bmvwXyVQJ4majdmqnfy3UvrbbAC56L3PFyX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FhHR7rJu6xG8r9bmvwXyVQJ4majdmqnfy3UvrbbAC56L3PFyX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27 - },{ - "name": "bts-ansh70", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jLvAhNUYt2597TMWYXWKky1kun2fFvtyBZcKKb7cjLPgrZpp6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NArzbQhvhvp9SfiRYBwiTvXu9EPN37qJfoMqAFwuDaPtL9VbC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 677 - },{ - "name": "bts-bts-ok", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tWiLcnnoSJmkDdoVVP9CD8UM1Fhvit4w1eVDVFQMPDqpu7xuD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ftAYbnzLmNhEuvck2Ud5bH3ku9L5QuGMKd3vcRsXpZd75TqiE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 451 - },{ - "name": "bts-angel-o", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ncY8mUU71HW63LuyLKXqszrcT5YjQH6oCTSULihRMByahDKu5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r8x6BbUB9TFEnTiSsBevPHcc4j8hLu1KqvvkBAL7zq2nc1iRC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-sal-musiq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JUE8kWiaYGutd4WxSECMbv5z5rkPBeZXAytyUm8JVEn3CCXcs", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dx8dDE6B1VZDtSZ992ew7AUXXaqGBDa5M9xewLSszremuqEEK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37632 - },{ - "name": "bts-potato1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84noCVDTR4hjoj4iYBGchjvvhw7CGGqh6zssM9mLmnC3sgRzZA", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zGzEuqpdkdAUQZAvNJcupzgWpGqFWjuzdshYyLbaia6dRhgTe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7774994 - },{ - "name": "bts-btsabcme1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bSLqWZfGovYxJT9kfLjV3ZmZ38N51DGuWMThRtHuudEWtfkZg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5UxfP1RbnX1qUU2fDe3jEY9BjXtYupVX1pFsEHYiSFqQgY4T71", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-cni-spcory", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iozmArqq8tNBodThun4wZjWgApggfpYPYUjbzAVk9zLp4q2Zy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST68f9rguD1wacXEyBiA5csBoe5EJUV7NWyKETprnProuVbCgVw6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cni-malkluv3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7JJ5emaKcarjastznExmXyyxaKXhmhgYWh4HCi9cqsXVPeYDVL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7BN2TxJpdkAEYN4CmdMVExGYyHXbH9rVre3devYZ3VoqHTVzDa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8 - },{ - "name": "bts-pvhf", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8NrELsmkxZsC6EJr2YnJfj1SFWDeMoCLCbmpbyFzgvrLrCSsRc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87jrKrHg5A1UGJwKRkz3DbAguqBJAb8GRsfN6eCDiWPbL7AJ2f", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 564 - },{ - "name": "bts-key-bit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89iuUntxNQtFiPRkFD8XQ8qSwdwZZbhhV95g3kMXp78MTaQbzp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6K3SnNzMQUCq33rNDuNyyw6pFgtrVPopE7djhNGGpfp7hWjJzT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3197575 - },{ - "name": "bts-bts4wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4z9BbxafrwcgJT1EC3ns8ru3534uNJLQDTSFDLmyHcZmQGFBzj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6epoALyMvzTrmj12t5gHi1oveScRJj2caXZ4NpwcZMRqH7KXqn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-bts1234", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Ytb7eUhLFZHkXrQbry8DdWatojJ6k3PVCmYtvxen88iKNqRjw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7K5so75kNwe4JFoB9rpkfCEVkWk3stjvUhh5etKdHAuQh8CvkP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 753 - },{ - "name": "bts-dan-tr77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bXesmDqiH6d33HiEZSkW5eJNWb5T3kBtzkG42bjtGqZwEFLD1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8esWrfvs9phhbLtFDo28dEeeH1sqxDTnm7LGyjZqkywJnq3mgs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 50651 - },{ - "name": "bts-carl-g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZAA3dYZyd3tGAVLUB6NRYqK7w6MHCAddASXRSaNP9P4oecfUF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mttggsqB8e9j3o7B5MGbXa4KiFYrVnL5vjo7q36z3JzvXaPmX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94034 - },{ - "name": "bts-a8234119", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jSTtanJ5f58XhD64UzHM8m7iExnAH1rSHHXgbpLrDWyn8wWia", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5rzjjzyze2gqEe8dzTg3zdMHdwccGR5fkFZMiNUtZUpypWnpyB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 286568 - },{ - "name": "bts-zzq01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7x4DVLJiqPbDMzJ2a8USY7b8wzmLZc5JcFHADw2Lwhu6tGu35j", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5CsYwejqdgqj4uQRsxAbhBJtmQP38wd66da2cE6QbeyHYiPDAz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752975 - },{ - "name": "bts-uuuuu", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6QxNbHTfmYFn2s2r7A4jTvyPMAbgBGPopUJpRqWsddqhbAGLFt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FFXtVxKkhs1Ani1PLXoPt2Cj5JjZKDuRusZyYmPs7uGMF6Av2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1815163 - },{ - "name": "bts-isharci-03", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bAu37b9Ec6ZMykqR8xCycSurz6WDyCmzDU2Uygxj7YHhXvuqY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ZG3agQ9zEwLD9vhHZxkqW6RVtpWomGb4P7Wbzxqi1gbLfndcn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-dead-horse", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88UyGgptg2Rn8H9kJBnJ6yoavNtjKxEaxrg6mAWeevjWnuMKYS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YXQaEBj6Hc3LgBaQTpG4ycXKNiW7riYidW3YvQoEieLgpEDi6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67764 - },{ - "name": "bts-cdubend0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Vf4yGuJmrN5DXpUuSaZK3e63bkZTVpxFtr2UhUD5EVPchFCbH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Nk4YYtxMSuEuppD8RF1xRJeEVdubHXXuKmKYkwfZV5qVyWNSU", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 715873 - },{ - "name": "bts-jlsr4clg8f", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rMw4XGawmbvSqoopGB8R33qSH224wUxL4DXYamsKErxfj7h3Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HHPxJn6gmei7EtzE2TZwe7mG3anMMbgaAin1zAzTfnvxex6mW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4810 - },{ - "name": "bts-cni-tikita2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P4gVpKk2BEeeVUDXxu1RQZ3rLn8ehjjFqsXSsqSuHxqAYZye7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6pZhkEk5wMUT863R6J7KipAEQjFfsMjpwasXt66SUTRGzGT4dc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-pilot816", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BJdcGqw2oua3HiPq32yAbSeoy7SQAHifobromJ6XhEPwrvZCG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7js5U2H2wcGGVmxRQ2yqcX9HeabsqqUkzH789BpBa5bq5zYftk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 347268 - },{ - "name": "bts-texas-plat", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST549xWRTG2A636kxe1KRXUGBhcPhPGJdmUJMLtbUvi54LWBeqcU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KZ3pacTK1dG3rCwToXSRhgLMHtac6xKEZMoEUZSHY4c6pkZYN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2073 - },{ - "name": "bts-guage215", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EeSfkDG8wgVysMGWA1MAWNDxuLLLpWpJNmnqrcpy35TXobzEU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75teBELf3jjZjhqDSzt9FUAWzy4xmjw6M9fkSxcgGpZsH41jNz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-silly-goose", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qJPgLPtP7PGwcxQNP4oK6s2sTFt1xgFmdhaoGR3a2GnD2CuXv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ea6FvBmNaLg8PVvDRDgRxuoswL7dMD9ohALZ8XdJDRFU3cTgi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3077 - },{ - "name": "bts-mx-3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zFz9esReNQwUMg5fdyQBxAdsJb4rAyPupCskWsipJT1gtLsdN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84p3mur5U2chrNznLBZzegxx7iDGHqA1o9Ekw6Q1Yg5crrBeND", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4648 - },{ - "name": "bts-m1landofcrypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7kJSUsCUEm4Jpis8sg6zXJRMjLfr4R8Ypwm9DPbEZGxWydfwsG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mXdWL1ksZYmFvDE3GUaF3C76zAfzJghFQbL3mDhvci5QMfU7F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 773490 - },{ - "name": "bts-bts3888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CTXrZbu3do7s49jRwHmdZgHyb5w9Zn9ddSHmDaz1dWyNw5VKk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FEzTQk2ZAhjA1zTNTHsgpYsdu2Badcp6MyQejTbiDguYCVA59", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1040555 - },{ - "name": "bts-m2landofcrypto", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GNMa85AcygVrxYYrWKrSnHJ5Yogn94E5CXu3Z7b1uEMgjfoEB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59nfdGMU77Qy1Jr8hvyftxePsbVghXaojQjZ3wSj86ncop3mKN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-btsabc.org.a002", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zwmR1zS7t9dQ24nPcy5vnSjyANMTqEbMVGBzC6MsPNMfdcHHF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xVPwCdwFi2yXmTmJkUwGKxbTo82ASuGVUo7JponqNVZZxuddc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-artemisa52", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Uavyo9q9GDAEEBY4aeUG4zFeKD4cYUb1TX8rjgBiLZBpRaz4A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7otqcySfTWiV1eZQACyRjKnJsPH4txh8eNkERLjzqwk5JjeV2r", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3613594 - },{ - "name": "bts-da-dui", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fyMV3epCct8NpfJLSHDw3uykGY1NzJqb4UBfNYGE9fSeC4Hmp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mnzR4ZhDY5Xew2FdF4Rh5mrFAq1avJMDo8XGVYHMEXA54XQCL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 370012 - },{ - "name": "bts-leguanxin30kbts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dMPbPD9m3v9mX7XtAWmrk1NUnpwQ3bidaRRbrttezx7tQoggd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yYqRbdbbJo2PijTbaKTCRaxN9sD4oUbbGbvQRbzASjsx482Ss", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1466242 - },{ - "name": "bts-roundface92", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST51zjMyA95g8tM6Jwvu5PYCU5XpLDjUuQFtsZWuqFgSa7sd7srd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EDZJDjbzV6DaY4tareRaM94fXDzLRwxprquJ7WxBpHgD3jDWL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 466081 - },{ - "name": "bts-gyspy0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HDvxo31mignCxCy6ip1SsZiD5f4QHtpZSLRp1Lp4hwBrA2J9Q", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6siTAAbrjuc4CqnurL38WhVrTqpTf9so2cqW8aWpDVZ9oiN2iT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 30 - },{ - "name": "bts-revel-st", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dx8qxL5eMJtwZUK4pjTtWDjbrn2yfNfDgktbD4Pg5iCGw34cy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8BdUNEYWy4jiquLFQweEHcWmXLqxd9awJdX3JSFu8Cz5LPM53q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752573 - },{ - "name": "bts-ff-block", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ArFXfXRaiZyV8a4D1ZgrVKV6HLx7Yn2ytdQ9ckZBfmmdyMw1L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Z6SJrb3SByz6mcuY9qiyArScANGCy7H4fAbcEZpdgrnXqpzLu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-cdubend1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D3VBRBfYyqAjxDDYwQNuD1kRcX7bCZLP6PQzCBPhNU7JoLsEu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vSrDu9rM1C1c8fhUD7dAhA5MBAMtG5TJ9robeHUjSTWpZ4PKJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-b-nniecahy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KPB1pk93qiZ8M5hA3pqrQrLYdGDaSBQcuanDWnxBC6FbpkW5p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fTuaNmbpkG4yCSheBLDSdj1b7PczbQdVCGHFJVf3yyn7ngGRo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-jscn1982", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vwtvvgz2UU3hv2eRsD58ZVxYn7SVV7LGCbispRtsiZvjQieN5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6mzXbfkCXVe51gPDf4o4iFvzCWwzQnYTxF87mdEv1D7sNvT9KL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-block.one", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HSD1Ujrue5BGKmsWd4PKrPnCJRdWCz7EAfim6GTFM8nZeZGEV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KFsU5SuimMab9iqRmDu8hChhrEdPpjFa2Z1zY9KoMLsqmrGka", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 57 - },{ - "name": "bts-psy-binary", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55YgcE2YbDJ2jUuopfnB16KjHhVCE7Pqjx8SZ85eohp52UKaaW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vyhP1NWaY6wgfBwfN6m6fhqUw31xdF8LzYHPHYyXepNSQzZWM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3711 - },{ - "name": "bts-bts183311", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vybyzivqhkcbPXUrd4AR69EqeBoeBkNMhqfwBevvHo6e7R5QZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6WCK5FWNWKaT4JDHAj3s8WgN36CreYCxhMe6iGLXzxfv3qB5Q8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1129 - },{ - "name": "bts-bob29", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AR7ofaZDMqwfKEoo71ghb71m14oR2XY2N2HJjmV15qB1dyNRV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Kt6xfMhBAZBRdnGmfv9b75u72GVGQXEiV9ombPNq5jyTDxhCC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-allo-allo", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ca3VMjpGWj4cLzWwmbaGkbYLiEYLFwbgySZo5nJSxUhb3dAh7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6KrZvW1MyHazt3f5bdTH87USrCgT3H7WSrvp4HFv9pZX5SSCx4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1186 - },{ - "name": "bts-yun-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5uGCEtg1Fp2Wf1xeptFjDHZpQJTqTFTZ5N2zBwStTx5Ay2XEcP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74WA9qaU6ZLsiZ48xUNJEDB5LdtSWxzhemWP3tFe3JJAnVPtwq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75 - },{ - "name": "bts-abcabc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RfZBWYPxh8hBKJoWyu7MLTiXs1AeGAt5SXVmqFv6tRnoVAMVC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RMczWgVUS277Scd5x5xYqUG3nqsgfq6KBSFw4xBW6eGJf4Qbj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6773 - },{ - "name": "bts-he1998", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gierFZf4Mqa8enktDDiWocUxw8MAQ2WRNbtxiYD8TsUb767qF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 2, - "account_auths": [[ - "bts-bts007", - 2 - ] - ], - "key_auths": [[ - "TEST6B7Rm6DnE7d44NeS8eTYhuGHDdvaMJL6wHk38u9D7rYGXFei2e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 751 - },{ - "name": "bts-radent77", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WKv6NausZ5CYKvf67QHoMjsJ3EeZifEo5A4cqt7KoMS94qhKF", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52PFfJXmfEiu4zAjb4BfjYEbRNgEay6cNxGRKWBYiLvrBgxa9a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 234 - },{ - "name": "bts-appalachia-bound", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PE5HhwNqYjcJ2BnMYC4eUksbFhCM2Ndre3eFePE6tmLBa6xzS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PE5HhwNqYjcJ2BnMYC4eUksbFhCM2Ndre3eFePE6tmLBa6xzS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-bijiashang-101", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Sxi55BnhsJ7dJgoxoHnnCioLVtWtcsSHEFHQjYhWSyEMNowpu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fYqTSZmXroZqHkZNmDi4D7c8B3ckYrw4x6RoyJejR9LJQhhkS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 54 - },{ - "name": "bts-dy5656", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Um14dJwUNeQhU4bD1TXPbkJrFFhSYsDnbtWRnjU63d19ACpio", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zEMLvaifCnRdZLq358zaB6GQjowmaPG2tBDaLV4bc8owri6Ar", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-christoph3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uaPa7iuhuHZ3Yp5XSHemR8FcYfZcTmehL3GVEZ2U6Ag1dki6L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xYTEoadMMFHkHwLvC8JkNZBbQPweoKh228iG7CYY9YxeQz1GS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 155136 - },{ - "name": "bts-tree660708", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST662V5mFdtsAQ6QMc8KfgLwFV8pTnPwDASf2My7yv3PgmPpb8P5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6dZE4HsYSSrFRzFB93rbMh9vPhj2groKbGu5LuiDPhwAEaBcnL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10675656 - },{ - "name": "bts-bloom5hit", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RLVVDq94N4YXsArztBspEEAnuWGD5WZEWT7r34knvQcmYn8QL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59TwJS8wnqGdNCjW1FkdWTVxN5xZPoXHzPoLXujy5dPd6K4CvW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 308305 - },{ - "name": "bts-always-cool", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CYi326sFbv8wxASK2WzDNqQJFGQSyHEusYezWoq26DBLPbNtn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DhVyx6HtPbBgfKmsiEkL7idDgVmuJqUcvaCQ5fJ88yrEcvaAF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 31 - },{ - "name": "bts-vlitvin9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7iH5M1mEQwGRGDV7czZFCMtB7n3F1Nz9aQZdSiaQc8LfxUFECa", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6owcypTRFc29ZvfreTGCPsSzePzWneKuYyLGEoSXhjVFd8bLpM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 752 - },{ - "name": "bts-spiz0r", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5W1cy1yakPcp82aSijiR5cNxMzw8o25NRyfGv2cyGxy4cb4CfH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8X5icKip5JdZ8uWvx7r5HCLmMncmZWnqLXbYqDRCK2H1m8SFFQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34622 - },{ - "name": "bts-haitao19830011", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8CA93iQ8BjEHgJ4sXsyejQuDHGSVYL5zodpsCSH2ox5adMyrsr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ZLnGKgww4fdhCfhKS9bbj8Q49DCa3k8JaBRho4HPW9j4wtUrp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 25 - },{ - "name": "bts-syrenity1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jkFbJsoVMt4we5mp3Qp8kuS7F71PHEPfbvXUULmea6RfGChYZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zhAucb2KQG1fzMQujQM29Ui4pzMWQFJMC6vjizR1jJbLEAWCN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-krichalk-o", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FQ95ua1TvzEeeQGe1b3hs1AV8mbPfzMgRuG2k6gVQXkwsLK58", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7FQ95ua1TvzEeeQGe1b3hs1AV8mbPfzMgRuG2k6gVQXkwsLK58", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-prschlrbch", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7exKsDYDx17enbVE9qvWwo7CjTs55bMaB8x6kTYfLYxn8WbtfS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gexXEYBJoNcaKxB4Dq22EBx8aEG1R2R1uynMw8mPwznD289W9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1086507 - },{ - "name": "bts-ad-74", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HudpxA9rB51ZSabRoSNNMMVhDEaveWChkjwVY8aJc8j4Ej5W2", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TjrtYFbYK9zdo4xy3JMa3U5hMMuTEWZKx2uF5s3Y2wa4p2zUf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36206 - },{ - "name": "bts-zzz0330", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58zifxpm8MD9VXCCZtXwQahWpGZphaJTAMUooB8CHBQenXEBgP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5dDMMLAQucBg4VV3Jj6LqKfCax6xqZUxj5xQyfKhXKfwTzK28b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2343252 - },{ - "name": "bts-cect16", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aFYPhmdMYn5bVekZWXVufsE5VhczJEFGRSjYkpuhQKJY1R1pU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6FXey6YmNTLyMkj6dw7PxdbsKppwXSFTDmme7Hw9aH4rfq4GqT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3758 - },{ - "name": "bts-tester122", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89bhJHtZ3neErfogYiT9jVgxGak8WW6c1qAWNLcjD5DntKyrYN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KXRFQfYhcxoyyToNWG24DSotVeF3DofNz1Hq2U9E84sjA1bSC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-ransu1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8FRPnceeaugonUWGcFUQpGXbB9KcLrtASEL6L9RJhRxweEXaEY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65k9GG3r9zxEcctp6gb8PH7tmcGPcTbac8tZEfesoq2ABMKzCJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-atph-2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Uo8SjgzjFh1tZJoJrpHApRjR7RZSCC7nAzfaUgs6UXKbd9EqN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pA322PNsY7bdNmw3rwsbcvtfGQBacKjxcG4ihZXXj2AYTGBWY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 861470 - },{ - "name": "bts-testing00123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ja4DnvcP45z3thAbQB4ywYNKzZPsTxVni6hCauyRmNNaGadWJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6o9XkSm1MZK9DzVzFvTGzDuvfw8h3FB8AZ54z3K6epQpAU7CkA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188 - },{ - "name": "bts-haoxd1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j4VB4vabkCMuoA9zL5P7PiH4aSqvWKqwccADUrHSggcDmayxo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54ZYZkhwT5Nb2FXYitKXeiFt2hWWwztivdG6eQVAB9jU2zcfke", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10315 - },{ - "name": "bts-michiel1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Vk5yGy4U8ENQj2HYHQUpY4vbGeFz45q8GqhpSpHo1MiwcrPX9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58VYm7NrgRt9XX6F9sQy4fLAwYTrBzKHbHyTxF3DoUruVPpLwr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27509 - },{ - "name": "bts-baoxian-com", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7oEKF64sPzy5NtZTxx5bAPJ2kKBVh3kBJWtHXqr2r2fAot8ZZy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61ruH93J6YV4HNb97aW51G9hRxuqLfxd3Q7Gqrtz1fASGoR8Dp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 838171 - },{ - "name": "bts-cni-golferiamnew", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kjBSqAAJrE4Udq3phwm9JGuJ5KEwLkRfgp6NoH7ZCQ6h3SnZv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST718Ytr2MEs6EEaiV4NYZEDptrr3AKvZXsrZxGx3KCs9WqdBuk9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3682 - },{ - "name": "bts-daniel-bodnar", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7P7EgwLUKLjSfVs8xHXaYEEb2t1ag4FJdB8L6xhA78VrPNDWWr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78NDnfEHu5hye4G3T6r6rmwqbdHf7Sr32rwpPtbDZPGeJcbQqw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-jack49", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6X1oUVBgXo2o19XRGiHJVM1fZrMVQgwFgqfRMEFfLDUg93p3K6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6c2qRJ9wkfNdZwBKfr36Daq4t7onVPLmXGMb8ZnjCawnzqDrKN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 480137 - },{ - "name": "bts-tangle-mind", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Kw8ANZvPrkGKZCrKxzN5V3JvB2spwhR8GdQu5i2cWMHJceo3e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7NqbauPAijwcTw28CQoxxLSwgeUh34s2t2KMPP8zKRfwzB3m4F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1134554 - },{ - "name": "bts-pon1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tpi8U2XvSM6dCg5SN1dYAQ8sfjeK214dSfWc1frAVeBuGgiQV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52iBz3UgoxX1LpvKuubyTD6K9DQMyDAyooY2CM6DDuShVU8czC", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 512649 - },{ - "name": "bts-ut2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hSZzbkTu6fMmdN8vs5LXjVnFPF45sNeDdQWrTPwGVqgcb92BS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RkjEE7C5SH5yhd7AKpxuCVj8ov1T6mHyaB8XLHBHr9uQMbZ5e", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 224958 - },{ - "name": "bts-sender-2k", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5J26HrpHHxxH5Wq9vPREGm4GAq1nfq94EZnsrKL2UktDKfxuKj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68Lep4WV348FrYxdeZ62At4zfsnkpUeVEeW2xmfAmGcEtsJKp9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-transres", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fyDaiGtwMr3yGujCbXZi6FTaXUWGWKxUZwzWrfsfUZJ3LTHr8", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fc48PYQcAf11fNe5zB9bmXGt4Y2JUk2gW3EhZGUcg9dMR19Hp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 162470128 - },{ - "name": "bts-l-87", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m5XMtDJFZP3hZhaAi8XhL3qtVgPkLSfjfBeKVzVKyPAijVSKn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jjfYeHtVWLQARqGRHKM1ugJVP1WHfMYp2PkzngEPRivMeXRjw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1590988 - },{ - "name": "bts-yucayeque1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST687PXULUWq1nuizMiPW3Ss2XqKXZHBh1iHhSsa846c8dxBiJLj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YvF8Ygvk4FCkWWduVZoCKs8gVaBXpPARfuChoJ3ZhmhR2GU9S", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6930 - },{ - "name": "bts-le-eco", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54LRkLvHy3bzy49AVXLJZpMZiLkZvvFR2pZnLZsAnQZvDnasr7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wFzgQxmvzGiJyD6WeUqRauQMMsswfqx6ZxYTZdHxJqrTDLGjd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1594838 - },{ - "name": "bts-ucdos-1988", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ukVj68iXVkUy3EhcZLthgDzqR2a48GKRDQu1QC2kfRYpB7Y8E", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5svfq6K5XXnqjkGNz9es9HtVYEBXJJ3cCsufdEfxroKt9oSPgi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9334768 - },{ - "name": "bts-brtvssr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tEZzePpZrErqinWbuDzsDPafRovptkXWhPP12HKyocdGe8bue", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mLLewJRi66qqoWf9m17KcPrbpUqZbZN4bNjD8rUKYa48YvBuf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-hao8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7r8SEFTFwmnzgVyavFD41wB2WstKyye8mHGpvytd5NJZXsXUMG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hyFZrseXBD9NFPWZ1kjh43iGWKwm6egbdYAmuiqXurkz3cvaz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18554377 - },{ - "name": "bts-block0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84PBegrk8p5smUvhwgoXbyMQtj3pBoGsQnVHAgQtE1LQZjLsSJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fSV6PgRzSip9fhqpkmHv4UW65bKXmv4xNVVJfaDQyWt5gQdk2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 69651 - },{ - "name": "bts-wlfmnblcq-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YsE21YCn2xArwPFNepmD3fmDCLhLSLJ71K6VBL8KoMtqFgU55", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XhCdKakCpJkK8zdxTEKz5NdXgoYQRCac8zMcDjsgKeWs1Ecyr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 12 - },{ - "name": "bts-bitcoin789", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xm5GiUryoTNGS8bkAy5naP8XxbPcMs7LwVbeZYM8GNjjUaotv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78tHur8BFcUzk7jf7WzXbUwtxYFzMtuyDdeKaKEvwnirakmbmG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1279 - },{ - "name": "bts-johnonthetrail-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6gWkkHWkCPMSdV414hT4iMb9iS3GymsmRQEQWNnvVUQa4meKcv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gjbHSWvfMEBQ8g5vnM1MTUHVnmhs29T67HbtLTojo8TRHMNfw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4203164 - },{ - "name": "bts-ak0b", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5unPyNj7jq3sH4q4WGf2Hn7Zo9PaE46DGibfW3H1q4bCLWJb74", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jKojn4rsv3LzJ4Spgb8b2LnxfWLbJw8Gz6YSrzWB8R6PoQ39W", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 470 - },{ - "name": "bts-cni-wish1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4tgoZ1TGN6hoK4cDQvkRR4jCBHNtbnRV6TJJcK2qvFVX5nUUHh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6P4BRpJFMpmv6aPFyNg5Eq4yN3sqs5CgkLDi1DNUuKdmZZCRzn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6 - },{ - "name": "bts-cni-lively1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7v5nb83RmpXafBhZBLzieUYYS1e1ZxoF6styLvdgbWhLuzuSyp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8fJ7HLj2KJsYo3oi6NDLia2dY9mH4fztsnCARbNLToBGnC4NHD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-ashley1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x9harXK9EY1otkip8Zbc8qDkkSH9BiBcve7YcHxm9gHXBFHWd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5mXsCdGhNHXAYKZ3Z26KggbRVBJkFx15M3aqD4a7hkrGQuVfKk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-petermwa1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zb67Z2hGsM2GaasZBMLpEktYb27K5EcYyqdUaLwtRn9m3gjtt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6L2kB6eQx3rNgCJAL7Rxsx7EnkdgDwaWWSqYTH1MsJzGEApYa3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-grateful1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YxfRXNypw2fQYKWnL2q6YfWR6jyy2UxV8qJ7LP2RZKqfWMiLT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST6DeDHucN9DL8WWebqejunwcm4egtbZT6US2XboVXft3UyTKaoQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-cni-angel1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68uLrahsbnWn5Vn8uZUuiXbuA4R5Lg6MxzPhmF42j6dxuRdZrc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5yvJpTbNr4yqzn9jXUHPa8QQFEexs4UDEJAcAG2Y9V2K7pxYVL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-venkat900", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6C7EdVChwbiW73koFpoNn5XpNXUeLXTpD13CwqkR1aS6Z9t4jS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Xm1uTqeR3zH6SN4DTE2brw4FETgsHKXLMkyy4NT8L1Lawd54v", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 81351 - },{ - "name": "bts-cni-mcart12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-ronmur2016", - 1 - ] - ], - "key_auths": [[ - "TEST6h5TxR1GcCeFe2JvUkG8zehwYwAXAAYTHYZYECoCjssvFu46iB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 1 - ] - ], - "key_auths": [[ - "TEST6yXH1pVuVX2aNgoG2heJMfPDwrKmKoNZNTpF21eG76Yb7AE6dB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14 - },{ - "name": "bts-aboveonlysky112", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8k9knTDFihXLfYqHBWB8gya3H8moYTfzT84GsDaiL1VDu4vgKr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7t6M4ySMFR16ScjgwAWVGwffwdg8p8WyAhq6pGYkd8BBLUTP7B", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 68927 - },{ - "name": "bts-quicksilverthor7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5EzWxQV2vDVNDJb1c73ZC1No3nQ56vJ2o1h1yzSBbPHqMKTc8e", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VFcy1GX4BzPopzYgjnvZNC9Lus4P9opf27yxxWQsQwYgLYdw4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67524 - },{ - "name": "bts-hyipmonitor-biz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EH4Xt4MLAos9k1Ap5V3m4P74ywaFPgvPrwyoFC8YyXXAdB2to", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fjXEoJHDiysLXcRhggSVThuhbTHg87G2nyVqBpnLa3oWijziV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19589 - },{ - "name": "bts-cn-ou812gr8t4sure", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RUg1V5Z13zBeoeQWB2sVtrL5sKUVnnWskKUU4pYSKNTbYQxxm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6diTWVe5X9WreaLgiubiabWQVuQKn1QB6ZP5Qk7wpSnTfFMG8m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-h2p", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gmyNrK4TMU95AZHCxnFgYKsMHEb8Ykz7W758h65z4LdeXrZDg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ykZyKWKwauzvLqtbWq7UtG2RjkG2JtWHxvwcFpuVF2tBL2txm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 67856 - },{ - "name": "bts-shenzheng-300", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bD25FUMW3EoD8ouThsKVp1gosDa2odKirn8Qtf9LTWugVSWo9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8mmMgyT61YFFbCTGBiiK3XLPRYqsntjZAsmvJkZRn23AV92wxT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 267 - },{ - "name": "bts-nxb303", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vZgWXXoEsuhhoVTnytWDq9Ej4RgTdARjouGbAMjk23d8EEDxQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jQKWWcVnGS76Qn7s4KRe4KSN3M6NL8FtMRAD6wf4EYBrGvo8d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 509 - },{ - "name": "bts-shaun47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cbVYKzbGLiBtxkpEnWsuVfQCLvuL8cVUwsTyvAPbquePi7ysy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HUazgVcbMXMhjg54Krpb1X7nDxeTnoXBMvJH87yTGMdaJAkLe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 43267 - },{ - "name": "bts-dou-ya", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87Rbr32W3CG7R6dYiDijNWB1Rpv6qnV4ZVi2bMQsAaKirHBEbf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5VC6brTPHFEBjc1nQbJY52zJU3evw7rCuC7QMASGyxfbZ1uPPd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-jacob-cardarelli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SY6G1Yr2Wm1Ld8sfpbpPv46AxdWWcSMejo9wYbFaG9D838Vgk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hA9UckphMYV6i9WUKqQMsfk1qAVV52R6tjpLqTC7mCZpXxPwe", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 936032 - },{ - "name": "bts-cni-kilagfelix", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AHLASvs6koA2Afnx1UG41KG7uAY6zXr4nkKtGpzQZtDD7mvhz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5a7KPfWTQoV2Ze2ZTyYmPuAHHGr3gLHjyvJBc9LpgDH764TBrF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-cni-sharmaine1225", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6RUkzqYuoiuFKN4pj55ammWfexiqZJMv1TPszNQLA6ZBN1BHu7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5jVSYwBy2hGjmsven4yKdUpo78VMGq5hztuggyTKuGS2SB4T2T", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 23 - },{ - "name": "bts-jifi-jifi", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8SeGhQ87jw8HC8ZNGcRWqNdxsZUovEauU4Tju12NrM37HAejPc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST769tWRvA8UF3iGZGFoMs6YMFkL2HUPuG3FC11heMTDywrk4Qnm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 73 - },{ - "name": "bts-yun27897-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST82skNVDYMnWYPuYdWPr5nwGihm5Gjoz9BeLJ8XHh252XM6Ex7R", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xU2BXNwiTT7cmtJNbbtgYZja7Sw3j2mMdY6EtZw4S9BS5et2c", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-cj-navigato", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4u6BJwS1sLjLuuxSteUSDhn2TPohkY6r91zRSfT7qqayRQNKH7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6T4xLrZnL6zYKaBH3QwxzM7bCuLfHk7PzDyGvT36qzcwhEaaPv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376108 - },{ - "name": "bts-horse1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tFgMtyjAB3cfCR4HKbg7MaDEs9CMuDmpUWBsTSNLFmzLWojMS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65s5xuLPkUnpbDvLdo4Tm9uphGZQmXBKTtd19CZoh52htzqWUF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19190 - },{ - "name": "bts-c-open", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HAyKNNqaKx3NG6K9Ru4p5nb9Q1ZAYBSYMVS8uKuQabmUnBzD1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7XWWPj7KSKCrjePGmHL63q3Y3FADLxbXXmuWwEfCmnDrQHAiYt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36745 - },{ - "name": "bts-zdbz", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tx9AaCGA7njdiBcSuNLhboDyPdXhi9HXPMNaS4kpGvtPkNgSr", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Sa4gEnQcGR9gxYXs1gmLdHsN2AjTHvHP6NuVmUx8cDYx6Ws7z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 39 - },{ - "name": "bts-xnrrn", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6t7WtnpsM3dGZWViaLhBRXLAQWQvxCeY4xHmX3Ly41rJGhZedH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oMNGL5PYaewF9yQNekAQiecz7cz7eVMa5MS2JNG7EATrFbra4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 689 - },{ - "name": "bts-jamie-richards", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gq8BctY5K1ATXiqYCMRkjaU5fwmr39b5sh5i3E34pNKEFGtgg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5xpZdJskFUnKP8y4ntKN5KDTLcwbXjZpWML1YC7uVWqwfmBw9N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80 - },{ - "name": "bts-lucky88", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8VsZKJNEYoDEhj1gu7vWiFfPyixcJupvBgFzokKd5PCbVzrsPD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4uxwZMDZMfihFWJDomEy8k7CvapiJY6h3pzBrcmEd6PiW3CDD2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 300777 - },{ - "name": "bts-techbytes2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5M4pgYgqBZjL1g31b1CnvMepgxyPpGzRvTm5HsG5xdLjzumuCT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66V2Rgk3j6oW8MNzgSUoNHxBW4Bum1GE929ViB8QG3DAFtQon3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3657 - },{ - "name": "bts-ksal00", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST55NfPeUincYT1jFP6TtqL8XsGqaYEdcFNatVenxnXRAdVbrgx5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5evww9hAEErq8bF9yC7Fxn7fkLe4XjqQTkZCXkA8rexKMBjs5i", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1078604 - },{ - "name": "bts-x1111", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST78jyoKp8vJUYuaNFnCpQz5BcANwRw4JnCkzyHCNSPktr8jVMLh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vodC3wHtTSLPMXY37NzVShFTnSGbjaTk1wq8XAXp36jKG9tek", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 188143 - },{ - "name": "bts-zakarie581", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5kU9VU9DijCDFw678LW3ZZWaJ6VEnLVfrhfXM8GATuqHbV4Qry", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86Qw2ep4EgzQxGWQ8QTXHTXmQXGNpebsu3JyS4LjEVFT1HZSES", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 560705 - },{ - "name": "bts-jroddingham-1978", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58fsdNYXMWTGVuYjiG9BeQ7boEj8i5sdu3cbme2bY8X9ee6ttJ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6XSsGGQAvaqtWmaiN17RdmHggQSTcYhQBP5gEpb95HyT6Te7R1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 472217 - },{ - "name": "bts-jackhuynh104", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54xCdziKvgsFwdEbUxrAEfUguCidZShRjmdwS2F2Zsuav1KeHz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST872WqnWWM22Jyn8GskP2Acx4ekxE5FHnH9sg7grkqijRjvA8oy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35303 - },{ - "name": "bts-zhw900403", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RCiFBvmjJu3WjChcmuUGgtABE74dKy4CweyCzMXHmasRW4WtV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sGhyS5fqC3XtqdVGKcM4KBAurerzB34ohPQDxLyieFDk5z4yW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4846368 - },{ - "name": "bts-loli", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-c-style", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-c-style", - 1 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-stefanoreboldi90", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST65MPJQTtGMiUeBJ4Cc2ZHQVHk1oC8Mg9us2Gd85ABdRMT61XNj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nBocWs4ntuEkuQvbjF5E85W4XVrC2FHj7TZs9Z9wcttL9aN5g", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-baox3833", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5isbBt2pdDc2w6M74aEZrfd5BfSUKdEUiQEHdmz3RKGTQKvoLW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7TcUcX9VutY5SyfqufnJiWLapCkpBeph3usdjzMGPfnsRYFsQT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32434 - },{ - "name": "bts-krasi-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DDrjHhbiitd3hUsVYRph8wryfMmFzG9Hgsdem4EbpMzG2pXLR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7as7Cx1HEQRyt4sqY9XGGfYUbx1hKNPPcqYfnvh3nLwpdWYbxz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15435 - },{ - "name": "bts-madhatting888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6trQUoFduAqvpbWc2XQsDjNPXQ5zyjneCeMAbGrbsf3HmeV7fg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8i1TrWa7X74vskPY9kJQNAVzU74wm5YBnqhURUpSe88AZUKYZt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-p-index-2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P9WYmJyWLgoHEAjFuym73eSRtsniALmSxdRA2v6AMh9rtXKrT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66sHdBucob4ifFb9wW7q9gGEGBRvEG8mLmd1vjBMhxMpvfzx9P", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8878 - },{ - "name": "bts-deva-winblood", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HGZSodW9dWVufxmhbV7H8REBNqcAhwsbVp6Bi1MEMFAXmT2n6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6vCoH42uWGzSEvKbne77UovsWUXtaMiYebsEh2bLW8PmzMQY1s", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 17849 - },{ - "name": "bts-bc4hispano", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5j5c5Sss6essNuGQmecyvC965ps3qQmVYhFnD9sfxXuzHygMny", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jrVFT4rYEsvq3EFzKe6EHSHc2NQGcuBkT5TGuE4QEsHLoQVhu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32 - },{ - "name": "bts-serial700", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jPw5y1p7GytZ9zLSQvNjRobFGmXMGwccBgNq4GWdgiuJKaTA6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YuGUsNSbWhHRdWkMPDq2r8RrVVb3Kz6jjnYa1Zc4Aj93nzveN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 367821 - },{ - "name": "bts-bc-godpay", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8btnqzSSRzVVcjbi1QCF8Jc8mXDNtHVtqByxzK2fxjKWFs5hDt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST875HXQn34CpmSnbmtoN153qhDVjb4q7rFLqTD1wmFH8Jp6Uk6F", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29589083 - },{ - "name": "bts-yoshiaki-asai", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5b4gZDnk8T84uMSJYdTjx8vGMTJ4BNax85VrPvmBjxo8uz1XL6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61ANriJwY2YSKGmJbsJRSGRDs3w1QLMzUtQEd67ZcxSFS53KUi", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 242062 - },{ - "name": "bts-seiziol27", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6JL2e1DfiPdLRWrWrhTGjRLiDmCrFPb6iRKzo8QDqxc4Z4gome", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hBQQADkMAVMLLPC183a4W6fdL1gYK3Q8nMfcijMKRkRCB9QKm", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1231 - },{ - "name": "bts-zen-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zx45NECuG2hjUuJic7wJRzQUCtq5cdcmR1gRfQKS2oFY2aKcy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7bpumNVfaqT8uiZqo92kDpVukwqTXttDcYC4FAVoakwJ8ESo6N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2349072 - },{ - "name": "bts-tao2017", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LybCqApeciCiWdraMtFy2WiufUjJLz7jSbqJqfyVWwB6cftwP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Wqe18WXfqJtUNTSCd1Tq1DBaGgquwS5gXEDRLbHzVeGPNvDJQ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 29 - },{ - "name": "bts-zazz-001", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RiibXVoGkv7Rcv8vPtKiyms1eRM1aLny41be39jmYA15APKie", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XhSkDX3MEfe21SZpRQPDuGwyxxxBXSeC4LVJNJ5DegiQM4Ypb", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 357 - },{ - "name": "bts-mark2011", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ogsqxdzZtFUPNUDgzPj4ujvey1TtCpBgXzFVV8RXDdbg4bkt7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RMCGDM7fkPtsRAqaLAronWb52631oXFTKY37k5q2Hnkb28sGu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8857 - },{ - "name": "bts-yycg2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST86AonY83tpPYUz3tD3Rh8Xc6K7ekpWA1g2f4JnervDzGqJWSa9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Kv7mBDaP4EnHNtv8qXLzU1dWF2Z6WmrWwbFDcyKcYUDopCxAD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1 - },{ - "name": "bts-krll", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6YVSebbN4zeQN7TWsBDmrajTrkqWvCKox4vrwBvJ5oyHqaiSyZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VaiL6SpmxDYjcnrJJUHEwJSuoVTRZatSJzhHrytsEZvEWC2yv", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 22558 - },{ - "name": "bts-vadimusnews2016", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ph85HwizjT7fScCKU4jb7rCBhJoUo9R1iwzGth7AJb3eZVC74", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7DtBvP6QDFtmJj4GqBCbTnbY65p3EN5rArc67foZgUcfczh1GT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1253504 - },{ - "name": "bts-kandibober1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST813SFhNJFsdPs2nZK5HVFAhAhRuGrDFCSAbLg6v2hqdH59jTBR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6j6jaBsJZfqYduLHgPjT4si24PjjUEN87UkyCq23jSs8YB7pvF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1674 - },{ - "name": "bts-aku-4760", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7yAs1ZkqBadoLiydYYinrdQDHcSy4eVp5Zp6dpf7Jq2CVsrcXC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7v97dkG5pr1WNchep1FQ4TtmZyTWXQ2weKkWJi2fui1NgaBiGu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2092894 - },{ - "name": "bts-kentest-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fgrfgkoctonZCG3iYfAEJLUtg4keZPfuvXscy7vbyDwJDjy3G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8fgrfgkoctonZCG3iYfAEJLUtg4keZPfuvXscy7vbyDwJDjy3G", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1127 - },{ - "name": "bts-farmer123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AhDFgDUS7Y6cjvuVbRPoFzHRy3UiqtZFveCfmVHQSuMWa72kB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7tTRAfBn7cC5gFbbXqHoDDrUr8qNw3jQFtA8Sb1wHJzhZfiVGX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1298655 - },{ - "name": "bts-sony-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68kL4XZFCmQZeK5UMdBJ2XNe34NabE98ykVPoSrt4ZxWPKGs18", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AbkpDTe3icNR2eH7f9NVtNhCF3QQukpt8DGnp3b2FpcLES69Z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1580411 - },{ - "name": "bts-abc-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST58myEU7Qp8yrRNjeW3poCJYuePVZ3nVNEEaqQBNurTqofVTm6K", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HymPVwQ5Ws4FruGT8C43iBZ46y9eXW9D9aDf3FgEhbjRy1tyY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1580415 - },{ - "name": "bts-ltc-bts", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nxVDeaue2AmVe5BoCJaXtKno1zxPC9ApteiSSddNuRDpSzvKv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6fXks3T9XKpgjnEajEY2WvLhqdEiEz7UbSMhxpYzUc9ifS4gN6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1580415 - },{ - "name": "bts-bts-6", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7c64FDJtBG42tmYU62QpbWGsVrqfkFSmRzNESJFU8r4CMakrRj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8hnPGshoU2Dy38Zbu95dPPPKBmmbBgid8LLTJRrjpVkbRcAG8L", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1580415 - },{ - "name": "bts-atif-knysys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PL1DLunQmj1FsqB2Ax6LobhkxT8DwhxZkKrLTcgHPWCAaZfjN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8PL1DLunQmj1FsqB2Ax6LobhkxT8DwhxZkKrLTcgHPWCAaZfjN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7 - },{ - "name": "bts-wskxjtzq", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6k4ywsqEkHx7YnNsKsB8gxwtUsWcHk2uucBYHRRXrh1VkmVXFD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8S9114nAYQoCVnnxbN1YmCDv52aoLmWF1sMGE7aY9KkD6QaGXS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 417602 - },{ - "name": "bts-syed-knysys", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84Vxja8hUjY5HS3iysTtJwtMGDzTYR9FmTd3gYruhqQBebmenc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84Vxja8hUjY5HS3iysTtJwtMGDzTYR9FmTd3gYruhqQBebmenc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9 - },{ - "name": "bts-neo81xxx", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AgidSPUZWHsBk5NS3ZUiYg3yimmfa6SYKVjgQtjhzx3MsMBjB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KBaa3eDDd5dkGD9Eb7TcoiSvuPiHPcK8CPEoqmEa42ggi21es", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 338146 - },{ - "name": "bts-heritz9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7rM7HqccPtrSMo62pMEP9ycRDawVB5nTFxvjaxn79MmDwAdTto", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yW8xQstj9EjV48ed8rDnzE25dHYdRF76TAtGKQepSStfdfzsW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 180700 - },{ - "name": "bts-bitcoinpaul-the-high-priest-of-rekt", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5spCZrZEUKezCwXwDGkHo4VPFCmUW6j1LPNq5SsrczYbgnkA4p", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pznHjNqTMyfLwhSqZU1qwByNzZHzEE87PEbw5DV3EEyZz3UJP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7506 - },{ - "name": "bts-syed-knysys2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BCTGefXagm6eZtQ6NANBCuHAj9DCL8wGtMsEbeD7cT94zh45d", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6BCTGefXagm6eZtQ6NANBCuHAj9DCL8wGtMsEbeD7cT94zh45d", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-h3dgeh0g", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CsLWjV7Xyo6i6juMhCraACu5rAGLHLtDQs22ze3JRuj3CuqRv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88zXb1qEBDCB6rLDe92DAJAZbFN1AuSNkZcLTnGzxSRXKLmMXt", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 59203 - },{ - "name": "bts-dlmaster-123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UnRHXSoNotWSiC6n7RrRtDJJi83eQUYSZgz4AorcL6XzbLHZL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aZccj6NsqFe3xHC4YUp9LTwb2PRQCnm3o2qrKyLKKAtG3HgXc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13170 - },{ - "name": "bts-new-account1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HyBztGRoZsMVrDhT5KzwzjTkAzhYSNpF4auHnTQ5ZkSoCUfgH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8HyBztGRoZsMVrDhT5KzwzjTkAzhYSNpF4auHnTQ5ZkSoCUfgH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 169 - },{ - "name": "bts-bassdayshun-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST61TyNDwGJQFXfAhDNJ1pMg5tU4S6L3qLQBvpPmtTYQxACZGTGt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jn56RpuAQqD7F2subvjWHr77abhQgbZvp6cntZ9535qAMwRUn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 65623 - },{ - "name": "bts-weez-or", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5q38dEFqRgx71S21Nah7kzfZsKY18ur15ciVHonw8PYQXgaxd9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8h1aHrBNhYpL8kV5hwSZpJhmHr4tkmu3fupzPfPMpEJWqkgW6D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 55242 - },{ - "name": "bts-btsabc-erase", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zngPcnDaJSJM6qFwbMpRL326dfcPbC2yoMftqWm5uKAGdZzFT", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MQBckkqyjhhSGPJodwKcVBDVNzR38w6jwvD3Gtw7d3BR9vJRj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19 - },{ - "name": "bts-public68449", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8S3rxQqmJDEWMiWo9a4EYuS5EL5QN8ff7t36SWxnvjF2txDUST", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Ky5jzQkQhC2ZxJY4TbyT6Wcopoe1LRgGEDeP1cRSjRLjFuLaT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 398090 - },{ - "name": "bts-gazz-trade", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8D8i4TC2NvrbtRRaAXTHpMLHXvMrbY4uHq2naWsFoFU4Rhm3SE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST87foJir1YEUThcx8Wfahs3UE65iktTVJuTV9w5y5V3bdYtkiEJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-hnnr8", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4zJCMgzbKHGiJ8PrYgtKAsBA3hypygZCuBR9zHAzs35qouUG4Y", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ioVD5tMwNKAapZf8Pq9c3bmtKcGKhAcCUTcj528M9D78GwWag", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 14487283 - },{ - "name": "bts-rosebud-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cGTQDiJpnKzN88T37HK1bZE8dooFqcqUKmXPvEX4RyYgBH5FR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DJEh6xHHBA8BSd1c2Q9Lt4nKnNXBf8GL7mzsTTreUVJFhtfx4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3813 - },{ - "name": "bts-ly508ly", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xHzMAnRyNqTd8D5ZVBqn7piV6pmmV8vGTavAPs4CsAEcNBU3a", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5611Nq3oqgRiGNNqY4cWKcwJd3m8upnM4FtWbZ4s5S8nhvaFT6", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 18 - },{ - "name": "bts-aku-47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SzMK2iTHfxmB6H8UUrTXeo3Ai4WgWc5vknho91bq9Z8z7cZS7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hojDrmdMBFEUBDWaBMwoycJGjRkoAKsoYdcVrSMquSMDrEHUP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3764 - },{ - "name": "bts-a-bot-spot", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54U6TXX72T4kTro6kQ6GQ9qKiNRkK4mWKpi8u5gb5GiDMwEN36", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hiqzr2c8tRX6AhTdJ1uT8CVYc6AA5k2ASbB5cVADC7KrKx2zL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 821573 - },{ - "name": "bts-itrade1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8WRN4nC1NeSuEfJSWTLgWN7gNKvGvNbhu1QEhxMVqEorPZUE5i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST57ufjgiBZ429P5crkXuZW7iAjiwL7YVRpC7Y3hLRx2NttBRzTw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1615889 - },{ - "name": "bts-rajathrao-621", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8P6f8WAdcNxUXihzb7A9MNet7grN2fdShsD34XxRXmkgXGufNz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88ZhiL2Ese5xtFp6J8jzucqxRBL5HTWtPSh5JaRSw5DaTbvkLc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 105016 - },{ - "name": "bts-nordom7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zjiQgur5N49srg6HjSdQpztv5kQermodGsSYHHCV2eqNi5Ljf", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VAb5q31UtnBd86WE9E9MWnQkS3aUhdh2YErPyp9fdp49k8DtM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 154102 - },{ - "name": "bts-c-h-r-o-n-i-c-a-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TMD8U4mbKjdtFDMpcE5jdhGsP94zMybipuLTJmp1xkr53kkPe", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QcQ34vYVTMirp22gdc88dYD5YnvrMqdErYar8Z92Zj77gPRHN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 27758 - },{ - "name": "bts-ccddd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST81tXhyGLgSrPbCYfMX1Sos5MkRfntpqLkdkHt6e5ZkqRWYFekN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aaZh2zteLvDDTxzVrDrgUnVz4HBDPknei6gv5jQ5Y8Wew2H8q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9915154 - },{ - "name": "bts-enarjord-0", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5WbEcpJtEDcy6LE9Co7Zaxc3ZbSt43ADRAMm3bgtd9i7JwJG7x", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6ajk6ojMuWJXeqLhfAkZ8tRCBGXVoS453F1QnL3t4SVDBjaZi8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 303 - },{ - "name": "bts-noam-chomsky2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xm6ZHP4aDGTUkWYWBF15dTSc17bgWTWHArytMe7EpxkdbgRC9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7M6ZXPt9AmTtv8sGKX2SUwRaByhqQDemTwxVyg2MV9TmVsApEZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 378406 - },{ - "name": "bts-account-name2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66m9n3gLVdfjceCLZYvSvYFNK3UocsDhjKAJv74epEaNFPa1GM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zbxZPwXk9VXkGdyBwNzUWg76b2Gj8SMcduzQ2Ad8qFJ9mRZtc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-m1nerhead", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7jmzX18xKq5KUxh1WKeXQfTXBE7axx7zAFoHvmQ1pBTbcRmf1t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7qECQhKsvPKKdD8UQtjHBjVEBpKjBRHWqx1ZUNXtkYiHvGLaJw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2075951 - },{ - "name": "bts-dr3amcatcher", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BiryAF7CMu3e6q9qdRfdrZQjbHswsosCc1REocesSwepXBg1t", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zGYRaQeMgVWb8eS17MA6DKAmwg2g6JHNSEGPSCPbmkkmoncNZ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 293856 - },{ - "name": "bts-sbdmarh-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6bDMqcWvXoDJxsua7bwWXZR1kemrHReHBMVTvguVr14YY6CGvG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5zhMwmuTvvZfvwum8vHaDVhHGt5CwuiLGFmgaEVQZzrFGVxGwX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 308606 - },{ - "name": "bts-k-1111-23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53x6g996auB7yzf5753Se4Hedibp2YdWHG5YuwT6MKpmbvNgc3", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KpvBYnCFcw9iJQdaLSdsk1ztLB5k4q2mD7gXpyCLzwA3L5tHL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1001400 - },{ - "name": "bts-b-rye", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5qNb8u4DNNmRBeiwuRL13ZTir5Eh93oDhjxvkvrdfB6P1b4pBd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qVEoMWd9ujEERmRtDfrs5b2hWcdKZVtZP2BqQNxHHUXPgtvVP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1070 - },{ - "name": "bts-dnewman86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zpGMGosfkL4Fmm7rLPqTa4RDP1fuvqVdKBq9YCTJLXCjr81S1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59aetFRE3Rz3WJNLyPPq4frBkYehyUBx6hSHSQp2VfhEACBfqJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 135712 - },{ - "name": "bts-freedom5", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UZhJucj9dPq67W9drxGzdM3cgSVQZjvsuYsapJoY55XA1MdhN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8MCTbCcV6mNd4xG5iT6NwK81E9EwEWh5jjFfyec6nzavBi1W4a", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 677439 - },{ - "name": "bts-cni-littledancer", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6VXtT6GKKkNkCEs2oMHHTicWjZC663r1kDQJ67J35vVMJRnsRw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-cni-rkbgold", - 3 - ],[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST7P2F2MjRFixE2HM4Wz3adjCHdYiQj9FvKNBmxrvfArPxktrFbR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 53 - },{ - "name": "bts-fafhrd1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75FeBziYr4MEHEDNdBBuo9GWN1KH1xFx58PtMHCpDEwCEiA3nh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cR2hBWYZzNpp2578cJJbcJjnHRXXaUQTbrp1yEAXu3dUbh7Gg", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 848587 - },{ - "name": "bts-myaccount-7", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GnjupSDiHsXEJbUEoW4593wq8M6cTxnn1KxLCTGGDRTb7hnJu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GnjupSDiHsXEJbUEoW4593wq8M6cTxnn1KxLCTGGDRTb7hnJu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10 - },{ - "name": "bts-bprls", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6CgrGYNP7EGrr9hQ9h24TFvNvkLU9CvFi8a2nyG5PvBtd2mZQz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zhqYkfJ2ePtgUBC81xJ5hhA2xYgbX22Bc782je4rfSQQFDwBo", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1226108 - },{ - "name": "bts-alaskan-malamute", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74VQmWVHMyMGJ9aamgzm81jTzE4Epu7VdpFvJpeiYy9Y9SGhiw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6iEUMe93CRZwDnJEHgr8NRYEFC6TdVPq4oXxUJ5TX9h1q8esCy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3742 - },{ - "name": "bts-anandgadre84", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7sCW3uzBCr6yhJLvPw1itKTmXLpqcrvGGVdDdC7ELCPk4oezCH", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6p7MNkVHoZHFkpjHRVPHJRudsGjysX55mfJ52eoQ1jTUHgbdSH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 372900 - },{ - "name": "bts-low-c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6SgRcDWQdUUoqN5Mq9ZkuWEJC9FVuDxsxviejs1htxaH2LyMYk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7VrsWUNXuF3eXMKxuXv8FSK6c3Bp3dfBpQT8ouKEd7PdFHZG9h", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5849462 - },{ - "name": "bts-nmsr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GtYo8qM5af29sgNQ2j29etssWEry3kusxnShpRyu6xZyj3pZu", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6UqFnUXLyUXdxWhziHyWk2kRLsfP1oizkDKwah6NeUbvwtFY2x", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10071 - },{ - "name": "bts-bittwenty.feed", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8RaSAy8Smz2qKn8MbacXub7Q3nNqVAHH8o75mLy818bZ9cT5qQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5gGHNrxSfAuQRKZG3xzF6MMmLh34XjTuU26zMHcWZy1rSid9Zk", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 495 - },{ - "name": "bts-comanddos1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST53QvFeTFLJxqyAMSydvnFbwnBbFM7qMjvJhqsVDz46qbpjxtuh", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BTPnMACv6wQd9PmtYMjiLHBTcoatXYeCQG7ufkZfHk1yx7LG9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5 - },{ - "name": "bts-btser888", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1479 - },{ - "name": "bts-vetewrha7ortke3c", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5YUs1xJu7hzq2vFQDBqqPpYZYrUthdimPxM6huoVcy7WNuoPKt", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LKKbVQ3N2a6YcA8ba3vLgCuSxrUXnWVYb37qRgiC5WSNXmxfd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2480583 - },{ - "name": "bts-ilbaronenero78", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6wNkqQUX9EoVr8kn4dj1Ec5FVhucwa3497CWTmtPXJxakdqpT1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5msBweym4AboSETE3mkCL14ZSUsiJcp57QnxHqY8bvnjDhwgib", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80518 - },{ - "name": "bts-new-account3", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EcX9Kx55AJCbMgpoUuHBK34H6VA8xCic6MBLknTiS5GgedbEj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7EcX9Kx55AJCbMgpoUuHBK34H6VA8xCic6MBLknTiS5GgedbEj", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 48 - },{ - "name": "bts-mrcccc", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5cc8SJkwErUFwMSWiuhTkz8vLYNk4Xxmv8ah3CQ72jSLZrgewZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST63JGSFWiojuKw3etEx6tBoaeYU7TquiUxVA8LqvRsBXRXQFcCW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5383071 - },{ - "name": "bts-chamme-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GqKPYs7NjGYSU4VMdQfe2BMBa5gzMJnZBmAC3zhQ7k9CPADpR", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6oRbB4bAmR8JRa1UCNeTiuQyyRiMkMfNQpLEfLV7coYEk6Pc4U", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 19182 - },{ - "name": "bts-cyclops-1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hvwTLHR1cyeuNcXhSHpLAkEwyGKRgaFwxb39kZ4dtVzy4jiGk", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5hvdnyWumMGNwNSb82aYQeHJWcx11qyEz8ZCjQNqm9kPUXrWB7", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 9101 - },{ - "name": "bts-paras-kny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pDMsmb1bSdDrJkcmLDankvczq9A6m4Zgkxe6JRNWALRF3Asu4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7pDMsmb1bSdDrJkcmLDankvczq9A6m4Zgkxe6JRNWALRF3Asu4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-gastro1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7RMC8QGG4EPwTHA24GcBg8QqixE4H76u1xF74FeQ5iAqLU9FiG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6w4bSR35yUfkJyPjbdYLVWHyy6MSnquLpQ4q7vQFXmHH3F5YTp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7824 - },{ - "name": "bts-digtop97", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST575obuowhRRwVg5Y929GTbhR1k2wgAGsJ9eD8se4R66uN5PXNj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8JdHjjSttwF4DVMx4L2UVkDqFtWEZqyZ3hCXupsjpKrq1c9njJ", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 70040 - },{ - "name": "bts-cni-trustheson47", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Fdp2MGvw1eytSKnje5xgperwYFbtFCpaMTWef9fMZPHBbJNzK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST8ZWVD6DDNN8xh3yG1xgzKLPrhLnG6xPCcsnjn2Qhfw7aSbc4a2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2 - },{ - "name": "bts-billy-bitcoin", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pSpzpRcMU57rqXqPBGYXk2D3KVaLJJSLkqCp7YiBdyQ6EQ8Nw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8m25ufXPBcjtubhUbPEvPV2RUna9oFWxViyB4JsGYKNeiuZVke", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 463058 - },{ - "name": "bts-jayce-nelson", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aeac8cUgsFEmMCFfujwhZ8n9dpyoHEpjM8einTYDFg8c1wsZW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aeac8cUgsFEmMCFfujwhZ8n9dpyoHEpjM8einTYDFg8c1wsZW", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 168903 - },{ - "name": "bts-cheers51", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8dsdjmtwj6kpj6gLq6bxuTRWCh3wNpU3F8KLNGVRp9BrWyEPyg", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5JP9dTbHVxDsmAZEkyY4ycTXYcvRgykKDSSRMzD2XuQQqccK1N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 413 - },{ - "name": "bts-kushed-sls", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6m633GDUztxntrJnVnyoh9NHDhCu8QdkitW9sSdwyVF2EwdViP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5RjoYaR8cNTY5NNCGeoFSmJrbLuJbg2EFX9xj75Q9ZAuueDKwG", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3489469 - },{ - "name": "bts-arduu75", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7dG7oALhWfVBjDP5ieiZjoKbJHhxn7RknZJWdgxojAUNagD4BV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7BdaPuenEcppCuGo4xSAHXEp4iyKdM4KnZLFB9mNR54zbaG7kq", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 32278 - },{ - "name": "bts-btser01", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72 - },{ - "name": "bts-btser02", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 72 - },{ - "name": "bts-btser03", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-btser04", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24 - },{ - "name": "bts-weiwei313", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5KCGyySRkFwcDBV8Xg1XoV8GJPSeUEzdYpPSHBUVwmgxRm453i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7AQuxZkvk2wy8R5V7DpmJFWmx8xMZUx7UPwaULh4LSXc8wK31E", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1686 - },{ - "name": "bts-btser05", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-nicoservice1985", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ZJkJuK7R2H5uYptxdqTN5BR8vtUzQTDNZCjLdwL8Zthn67sSK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7mHb97RaqNZs8FZVbddeD3ZNCuotybE2SgRgYd3NNdNVTQeUMD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 20489 - },{ - "name": "bts-htf-htc-350", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66R2tYxg7ygeQzRqtjyxNNe18EUWMb2vMPMqPszmikEfRiLuE9", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8TLpYSdamynDhuzyn8nTCqzXic3uowmHjtZJZgh9EvqQZrndo5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1048695 - },{ - "name": "bts-mrbungle1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Vj9A18EkkGDQ6F35UFdr2YnfJARd5zJvYpgfpeXGScrQ8QWaQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5u1ASTBLCp3iLhJZg9q8G5uELeR6iwnj7Lo2LWpBEMwydkNEPs", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 8005 - },{ - "name": "bts-amos-yang", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7vsHBGybMZfxL679mah79JyEMjfTp2DMF2JayVKfuiEqKda2X4", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FQdjSHHsGyDh51YBpcbPpZ8pX8wUyCbixcK1TMthiaF2RCQWR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 302312 - },{ - "name": "bts-emthereu2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7nwL3SYfiaTwai1hbJFFWxgTnRKRvNq2vA2j67GzWwrFh5aXEd", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6GxqtmdyGUbgDeKVhAieBh91vA6QWxzDtMrQSLcj9oYYDXBddc", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 325131 - },{ - "name": "bts-bts0831", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7hH8EXF5T4ZuXJvKWa2BXBQ58Qq5Zjzw6CTSexXfm44CdAjaSL", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST52RNifRioPnb8hxpeS44yuafYftZgS6fyo6N1t5S11FQ2ErUb8", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3250364 - },{ - "name": "bts-livecoin777", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7PFucqYqvkGPrwnGupdhxadkEWDbTSeqBFgBZN6xMAS9PU37rU", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7CPxqEEPFdkNgMktpE8CrHo7Qggcxe6yPdgjQaREfLSx5QceVp", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 497 - },{ - "name": "bts-test-sqa", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zu1e3am4KqQ7rLztZEpv8RQatg2Yp5iFjK8fahmMGfcwZYtCx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Zu1e3am4KqQ7rLztZEpv8RQatg2Yp5iFjK8fahmMGfcwZYtCx", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-h3catonchires", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7udmpPc9fmijBXq8qUpQkaN9femR6Y6wjw2TnjysxADpuotu7D", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6xVLNy1PHw8L5bvadVcujguvx1ys7rsULcqeib3GDLZ7i9cvro", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 264484 - },{ - "name": "bts-m0rte", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8QNactTxiGog9Zo6pZD8xgVTNC5phtnQ2hjQS8faJPnsdPVpXo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6AKPgvSyETZSxiuAhTqhX2pnyR6fHTggsXQzrC8ZM1X2XKNp2b", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36837 - },{ - "name": "bts-omeralp78", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wrpokTKJA33wVkGisChahAAuDSiZ6Tia3gvcqu2QE5EvwaPzW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5naY2CbT7fyUXgFXzhTPotySc4ZP6ZJ81AwKn9HSAwVAmuSFMa", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 125265 - },{ - "name": "bts-btc885", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7ApTwAJ1AP5GP3vmJR9F9xxDxz7RuRpxowZutTVbKktTCG5RdW", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5Adgvw79uruWG31yGpTE3EsGdvTEVDMcgMdQLvNa3DoNgjMkai", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 80 - },{ - "name": "bts-isohit2510", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7U1XuAvE8SVQHHrteP8mtTWkYbQMvzPQ58En1QyTsn1zqFGfmN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ig82SJWwkkmAEZok67U7zZRRtdqHZcDunwWngBpd7uK533E3u", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 5373 - },{ - "name": "bts-djx362", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7cMVn21KY5NtfPbshVx4BCbjfA96moFbaUoHAu9bQgbiFX8a69", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5FYYqvWM2wvTtxjEXZ6FTeQnzJ2ezywgRdfr3LM8C7opQKMb6D", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 680213 - },{ - "name": "bts-cni-queianlei", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST85SsujezG9PJpeuwqJvhyFfZ6cQCLENNrbgd7C7sKyYUywV33i", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-compumatrix1", - 4 - ] - ], - "key_auths": [[ - "TEST5sRsA1d2MJGMpqo1JpnLHC2TKDAjhsgS3nDmWD8Yf219tAoAcD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 15 - },{ - "name": "bts-gengbiao999", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5jVMEQZZPUxYJa4tS8ZHpWwrwVGK9iNXGfzy69sz9Pd7Tsi8Ax", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6kj5E5WWFGKB1d86yrFY1CTBdGKsASzNQ8oj9cUeJsFGJHfECz", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 129589 - },{ - "name": "bts-lanxin258", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DVNNi8uwGdfwY2KRJs3JHAeVUMF27VibChq1FFWnNHdy41uPB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6P41Ajdpe2345yd8oEB1m8yF5LWAQ3fy8oRdHbxDPEMHzCU8Kf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 344242 - },{ - "name": "bts-abc-yxw", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7UR9vToXGCZvDCaqCpvHi4zNkwMRAZUPDcALe8RA1Cr5RUckm1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8B7XdCQ3CTetPhDagiPpqQeCKejEoeb3u1FyTPoGZo3Ch3mfkD", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 83814 - },{ - "name": "bts-zerod1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89wAD2jZR2XGE32F3qWXbjRLcqnSPxS9KmPkwCXsDXXRJf1Sqj", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7GEmVZ7Y2wjvq9uojdDeVvhfdW4GkE6pAeofjRkLys1rS4S28w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 2257776 - },{ - "name": "bts-carlos123", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8Hb7V3Tp6xsJAiddNGKq9vjurUGdYXAcrFj4q5QTLs8JJq2Qi1", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8cYZp4XEdPhGx92y3K1nBvL9rVZ9GjbCfTR6MRLBebxT1JVL3Q", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1775704 - },{ - "name": "bts-fla-mex", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4xD7iqp1RNEvwgjnUf5ZWsJjfhQFS9d1iAVQ8ou8MS8iRpVqTP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6EvzyTHa4rgHZD5jfvhaUAqEEWLbR2Y9zcCrJCPLJDK1SxJSfH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4716142 - },{ - "name": "bts-rteown9", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74LAk8kXBXUGiKK3HNZJnBqAGhpZYtPPVTTwQs7aqW4wLLUYju", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8gqd69h1oiuCGMsH2mTmaKxhAJa7SoXiZtpbzthmvF52CyNFcd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 685586 - },{ - "name": "bts-asus1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5bMnZnfoi3tPt94DpdTwPhjsJdxFm5yubgJYrMpDViLyTwpkmw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iuaBS4a3t4ef85ZMPfpxLoZeDZSYx4kHLCJf6NhPKiSZT9bNF", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 120498 - },{ - "name": "bts-dub-bits", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Wcp42CcndeRAX6wVXWkinygbEdAeBNdy53Fd32bUATnmvoKJz", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mVAejzd9vKzBtpLxSfkJEw1h143ctD9fagT1wUgN9ShDw5z1N", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1405857 - },{ - "name": "bts-baking1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8griZEyjYTi1kZENdbay4kNGYbGkb6YSwU9TMKUwjemSP5uTmP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x9xjFQEy3DDgVz1uFUeRU5TtJdvker8UFUZBo9rbFa5FGpYh3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75823 - },{ - "name": "bts-warl22", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6v2yGLmWJ36Pjc9PD2VRPm6w1ZW4s2jVkrDiF2PA8iYeeUTUh6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5wADTvN9i7PHshEzrPQYxrF667BERPGUnd5ooSevAddaCsE7AH", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 66105 - },{ - "name": "bts-tudor11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST89a5gNHeTz1zP8f7ho3xuCvvPMV8RD1JQG6wtZqX5z9kSbQWNn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5NpJwdHACo4jSLVHdhtfeQpoCBZwzK487F7J6FHGkQdNdikKRf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 37 - },{ - "name": "bts-mlhs", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST54PRH5MoiBkVGpfb4tmqGxb6X6jdugrxg2S6HuEQzdtwuwDMpG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yWkXYsSbHMbQEdEWkUuJurqgRM4oPEhfADMnnKFAyd5JH52xL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 75406 - },{ - "name": "bts-kpuzyzkvb2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pwzHCBHTgi1F25xzXFUtift9myNBMdGqXQGrEcmTb1TyBjBJM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7fCqp494YFst25QWwk8S4w2kGE8dhssLrQAAMh8tFhR51EVKE1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 981881 - },{ - "name": "bts-tudor1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8ELBPXicmGScDBuWSb1caNNnPu9UPSDDtY4Gdb71eHsR5q4ZVp", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8edNLKHwBQ9aCh8Lky9mq8RYj9LYHMvcy3eQa1EsCgksZdjAWN", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 202960 - },{ - "name": "bts-fhdfhr568m0yb", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST59g7zfnL3996rrG4LGAxn9ydiYSMSRyXMYuMnaUwppVJAyFcbb", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7xgwnCyfbEdEXQsTJ5i1uTvRr9z4P8xQRkAxZ4geHRQjoNdGQL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 786183 - },{ - "name": "bts-christocoin1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5F9ZNAAu8hRkiHu8ebo7Pf5kompfKDixJjkRgN3k42vHS3ZUo7", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6tcJPf3Mo1VjLD7MsuoUP4yn736W1RSxnXYbPu8RkJzLFWrTeu", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1207895 - },{ - "name": "bts-ad1erveza", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5yD9rFwS2LU3uu55hbMDHtuF3xYMtePEcowG76AVQf7SgDxLKX", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5mBu2QqDPdB4Vf3ryRe58rnKGnRXrvkoRRC2mJbKTCPgqNiV6m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 400 - },{ - "name": "bts-justtsmile1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5TDKFqd9p4Byth1mknaNZ5RdZSj1vyxqWDcSoUASP134wkmyr6", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5tZZeywr9aaV3y3G7oKQNHFsEQfnQ2XeK5fhvebf4ZwPXPJcQ9", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6091802 - },{ - "name": "bts-operatoraf-411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4x5HxHfjqTce5yHLawCiznW9DiUy53Vn4d9GTeM9Efno1y2R5L", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Ko1ZbPjVruXZsLPXdwDX6mztHGL7T9hWnyAGQHqQ48FqtgMy5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-zfr33m1nd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6pEfUghDJEopYVjsXcYNusN6m4dazZRivqohyhyYejdauGJ9uD", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KYPypC3aSWFbqEYNcQxQnsZKZsQg1b5WpvAMHycMD1tPuJyZ5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 112547 - },{ - "name": "bts-westwind86", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DcyZqiR6V75vLmC4QMpjx5oirnhqoK6AJAeLq5hGorDVyTrAQ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7YL8gU2sPYq7qDLyQU9vQjdvwKYY1PGFK5Uk1FMu8gNGEaZx4m", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 368 - },{ - "name": "bts-chefsweets-411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7N5WVhfi1Zw4nE4qkVCNwNFm3Sk2ukAtU4HGVeRnR9VuoqfuTy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7HvxE1Q1ttksUpeygmoQA4YUGc9Zj3q42SyeCVp6whC5AmeweL", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-vinman-411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST66zLMswcPTe2i9y2pPVdWeGVgqRGDYoTVqSFnqroCKajGDjf5M", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5XSa2U3cRbKXWf7gJLbL3PdE5wSUnUzqYcpZw5spwzU4Jj6QU3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-cuiminglong-0127", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7isavcaXNLdSqvqHwmPmv6PHKFiFDc7pwv52wVjkNXT16AhELc", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST69AfnPTjo5smzK5iBhiaGw9s197HELqzbiLKeT9dypnJ9XUUR4", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1638058 - },{ - "name": "bts-liudeyang-59128857", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8GiqxgmCGhocjmcW9gxMLUYcVeWin2LG2STTcecQHpriJAkzAv", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4wJSWnAo4ieGjJMUVtxp5usSU1sxCajBBqvXQaKSdWz4GhEzaT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1228162 - },{ - "name": "bts-at-kny", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LG6HXayvrCv1oxRf5N36Y6m1wbBJBPWcbH7wPzL49w9i7b1vS", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LG6HXayvrCv1oxRf5N36Y6m1wbBJBPWcbH7wPzL49w9i7b1vS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3 - },{ - "name": "bts-wenteng8.xie", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8aosrvxdyLkHSzRBSBfC4JF12GWNoPFwd5i4HuXEtUKC3Mw4FN", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7zYqXU5iHbWjUAAU7Sa1i1cQUouue8esXLY1sMigCy2tbg9bdy", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 24550558 - },{ - "name": "bts-changyingjie-203512", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LiinJo6XAJnesKWHDnyLRpmE8mjHghBdhswtwZZtce3VFNd79", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7q11KnfecQvYgEnQGrUkSyrATiipMKUKMVvS6xhSAZG8u8uwzE", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 6742709 - },{ - "name": "bts-kwiz-2411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8XH5ih33kUrFShJuuaoTqg3HnPKoNX4MwhXZF5mTBGc229uLRM", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7wMi83bcW4Y2gijSJC668AyzUYR2rYCiVFbV8xukiHVNPa6zaY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 376271 - },{ - "name": "bts-drflgd", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6qWHvtQv3QuYQm1AqTck57U8npAziNNcr6kHc2X7neNtFkTRZo", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST88VpY6hQYiXgADJJDvAJtr87V4GHZvoXZWuVi73phpGrxAQ7Hf", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10119 - },{ - "name": "bts-inferno323", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6b7vWboWx9QFzR2YSWLiZ2cdkMiRykKcjBYdUsQChtz9Yt5qgG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7m2eeDq3AoVUrRtzPSpCpBe2gatxwnSGqTSwwveJjdpVhDuwZS", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 11706 - },{ - "name": "bts-btser07", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 34 - },{ - "name": "bts-btser06", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 35 - },{ - "name": "bts-btser09", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-btser08", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-btser10", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-shuiwuhun1990", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST74WMRn65eprCtZCVuo2fzUJaSgwCLb4p4SWvErFakSnBiw8mJG", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6LAtX3gryAxjXgHCLmKF6kkBzhBZEP3cALD5y3awJjHmjLGHUw", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7767560 - },{ - "name": "bts-fukaiyuan1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6zVdK1dkh99dygAuJyMnTpPi26zSKwgJ4BCLZHEmK3SUH59r3g", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST4vSb5wm5dvhmQTAwFDQcZ3TeXuKRwLwLJ5E43PH4Sq6ZSVKwBK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 3196852 - },{ - "name": "bts-livecoin007", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7Vy58m9fPEw4y7wmZiZPMqDTLM46SDYP1XRcy1yRFHKjTWn3pm", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5oJwJQMtTX12SLq7LSa7gucHXrZHEVLLYfWzv2LhKkiVz6RMuK", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 91 - },{ - "name": "bts-ilya-margulis", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5sziQVGJPEwEXhPvc13cK3dth7dLgRFNfDeUVJqUnaoJ5zQmGx", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8jQDEakCBpCXswXGojJ4z7jehxdPZ1BUghF9VGjzJhFxFVjVTX", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7186 - },{ - "name": "bts-yobit-wallet", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5fgVG6oqTav9Pt6j17HtmFHtHc5TUeB3W4BjgAc9YK2C4ahjEy", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST68H7kmt1q7ba6CWb4emEhPoPzp7ESAbVaT6ovm4nCKhjYSspv1", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 10117 - },{ - "name": "bts-tosch110", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6uneqthiqFEgbk8BdyYMkqoDxkU9HZ4oWjMEEtZAVj9NeemYiw", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8esNVpDpd2bztBLCgoaaTDY968SvDuHtLBpA8fhifMqgykb9TT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 237850 - },{ - "name": "bts-iron-block", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8EqaURKficXZUkSdPFGqKDQFs9gKH5f9jngVHF77Vco42edFze", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST84weEecH2Pm2f5uwzChP32y6jD5DAqYL5egrvNRfkLD3rwfYUR", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 375 - },{ - "name": "bts-kingsrx-411", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8LB1GqVzD32mtS8MXeFXGnHfdMn3Vm1g9fg1ipVfjxA9UMMB4A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6orPPJar7D5tCgkwtokbCwtdmf1edji4zpnm4oYB1u6LS5phcd", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 94 - },{ - "name": "bts-crypto-collider", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7uCbAxajKpiGZX2irbwsM9syiPVWeWj5omzXnJVuGje15nvDtE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST8KvXhJSfpC9cUAwYwHLzU85uCasFJxD67xRFSHPLQGtTQReJbA", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 40111 - },{ - "name": "bts-cad-wallet-4", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BHMJH3w4ENyZetSeehrJjoiqAFhSyA6bRrSHoEcweUojjTLDB", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5BHMJH3w4ENyZetSeehrJjoiqAFhSyA6bRrSHoEcweUojjTLDB", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 110 - },{ - "name": "bts-li23", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5ctB7h2EyKcm75s65GgQGaKRjgfKBmyv55PmiuAZoAazdAHNWZ", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6HiXG9fR9vGtXngUacE1kzFUuLUShdR1Qe1VFwBYjB34zxCziT", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 13188984 - },{ - "name": "bts-tamiza19", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Bvh1wprPws4YnaqBu6JfnF7ToqtSadpSVkddSPkKNJGK1UDMn", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6An2KUMwPoDgKqEuuMr693H8RMgKJbEj6wbUfGBTR6AeoizG82", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 26 - },{ - "name": "bts-btser11", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-func.distribution", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5aXHESfbscnMHcC9nzGL6bo4QiHXYPVJUtXBMS4wUqeBEU5AGK", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 51, - "account_auths": [[ - "bts-fun-casino", - 51 - ] - ], - "key_auths": [[ - "TEST7CUEKWayJfX7TZ1eptiGNKnr4hk3xgijnQffsoV9ruUn1FtqcM", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 1454 - },{ - "name": "bts-btser12", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST791bdjWCh2hSMq9JS9yYMwKAjuizL6VWCaTf9XAvKd5nCHVJ1A", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST76Y3RSeWJJ7twiLFE8QtvgP6M5uub1JWESKVdKjt2SKk4N7wgP", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 36 - },{ - "name": "bts-hi12put", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6hofFtLxK1rfpz117nYvJAy3iieq7eCPa6TZKmhzpVJfZWZTCE", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5iwSpHWNz783y24QmxLM2LzJpU6sDhbQ1mmFvTs4p914adwNx3", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 4 - },{ - "name": "bts-flowless1", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6DMbaKXTLdxexrJHv8NHXhC5fqu2iKFkREp2dw2VCducYy4GEC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6cFP3paykt6NjxKwoeLGwYZ4PaNXGxbANDUZ7xzTRLpiUfu9aV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 7279 - },{ - "name": "bts-committee-account", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 223885, - "account_auths": [[ - "bts-abit", - 44409 - ],[ - "bts-bhuz", - 50018 - ],[ - "bts-bitcrab", - 56754 - ],[ - "bts-bitcube", - 47329 - ],[ - "bts-bunkerchainlabs-com", - 31081 - ],[ - "bts-chris4210", - 30297 - ],[ - "bts-clayop", - 51763 - ],[ - "bts-dele-puppy", - 40323 - ],[ - "bts-ebit", - 34132 - ],[ - "bts-harvey-xts", - 19177 - ],[ - "bts-xeroc", - 42486 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-null-account", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-schuh", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vXWpZymT8RujYjHiKz9MyRYS9MGgZKNsiZajiiPZSAj24ecLY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7gU4pHJ9rTUfVA6q6dEgCxgMGVLmq1YM3HRAKpj1VnTzJhrAn2", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-mjmr", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AhWLTp9DqtdALkr6hnAsW3MsYRCyuV2tPaRWNp2RCJXJChtNY", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5AhWLTp9DqtdALkr6hnAsW3MsYRCyuV2tPaRWNp2RCJXJChtNY", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-johndoe", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75xkQGjRGdN1Dg1oA5iWH7mGRXyA8SeSMpCexmN8YXrCAQ89jV", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST75xkQGjRGdN1Dg1oA5iWH7mGRXyA8SeSMpCexmN8YXrCAQ89jV", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-bts-pay.chris4210", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6Q3r6MLCWKumrnWJPSb1qP2rydNSYHbNLqkH8kebvGBD5qoJ29", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6yRMA2j49ghBit2RTWFHNBfXhNuDzSgVjomxmaqbcvWXcWxg9w", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-o0rbitguy", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-openledger-wallets", - 1 - ] - ], - "key_auths": [[ - "TEST6WCTp3nGgBJmvqD5tvo7Q7bqEVdym35GbJeNfcYDtHXWppHf4n", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [[ - "bts-openledger-wallets", - 1 - ] - ], - "key_auths": [[ - "TEST7tQoMrSvLwKfnqsv2wnmTkKJFkartfuTLcpgDurNeef1xtNC1X", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-lyfeng2", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7igaFb5a5zBq1YQFWKCL2dAg8GqYzCWDmqZ9wVkFEDJvB2QZB5", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5SDXypGaY3zH5Y3nMq6jMaidNBn1nWWLVmfDoJcFTzwQvRcfzn", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-delegate-riverhead", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5HBivD18FSjKstKnAZSi2Fd3KvbvgnV8YPp8PXbKYhcbWJzvsC", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7MxExAgCqeDrnPLVQ8pHVWoqhUJEqVuYhVDMqGPMfAwyBRxB2z", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-lapte7053", - "owner_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST6aizfXpLzYVxZ7mFvtnHNDrm7EbT3P7fVize4SamYvRGjJjf7G", - 1 - ] - ], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST5vG4tsnHDUy6BZuJs6EMJZgMU9m81naRcRF5AHtH2c3dkr7CDr", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 - },{ - "name": "bts-dex-a-bot", - "owner_authority": { - "weight_threshold": 50, - "account_auths": [[ - "bts-chest", - 40 - ],[ - "bts-dex-a-bot", - 40 - ] - ], - "key_auths": [], - "address_auths": [] - }, - "active_authority": { - "weight_threshold": 1, - "account_auths": [], - "key_auths": [[ - "TEST7egWcMr25xjtkRkJ9ES4oHpZFnxYcwRzDdjcMkw88XgfdS2dh5", - 1 - ] - ], - "address_auths": [] - }, - "core_balance": 0 },{ - "name": "bts-ljj28", + "name": "bts-sharedrop", "owner_authority": { "weight_threshold": 1, "account_auths": [], "key_auths": [[ - "TEST6feRFXxXZdnPxMSdT32Kgi4EEhqaTRiKENbqdRgZH1BdVUwEfG", + "TEST8fePLMjBQ2a9o6U9G4cPpLvJwJNrfaziKjEPNmecidcGuxgWAV", 1 ] ], @@ -178679,13 +358,13 @@ "weight_threshold": 1, "account_auths": [], "key_auths": [[ - "TEST5s6jdKi2PsfmcAGgCE5pSH4Qf7zor7WwxBDXta7JBo4txkzc3x", + "TEST8fePLMjBQ2a9o6U9G4cPpLvJwJNrfaziKjEPNmecidcGuxgWAV", 1 ] ], "address_auths": [] }, - "core_balance": 0 + "core_balance": 5000000000 } ], "initial_accounts": [{ From e82ed755b23bc5c5a49ab633f42ce623ade616d6 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Wed, 30 Nov 2016 10:12:45 -0500 Subject: [PATCH 24/31] [DLN] fix non-insurance case to avoid random reveals --- libraries/chain/game_object.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/libraries/chain/game_object.cpp b/libraries/chain/game_object.cpp index ea2ac76a..d7214925 100644 --- a/libraries/chain/game_object.cpp +++ b/libraries/chain/game_object.cpp @@ -451,17 +451,7 @@ namespace graphene { namespace chain { const match_object& match_obj = match_id(db); const tournament_object& tournament_obj = match_obj.tournament_id(db); const rock_paper_scissors_game_options& game_options = tournament_obj.options.game_options.get(); - if (!game_options.insurance_enabled) // no automatic moves - { - struct rock_paper_scissors_throw_reveal reveal; - reveal.nonce2 = 0; - reveal.gesture = (rock_paper_scissors_gesture)db.get_random_bits(game_options.number_of_gestures); - rps_game_details.reveal_moves[0] = - rps_game_details.reveal_moves[1] = reveal; - ilog("Both players failed to commit a move, generating a random move for them: ${gesture}", - ("gesture", reveal.gesture)); - } - else + if (game_options.insurance_enabled) { for (unsigned i = 0; i < 2; ++i) { From ac73f340454c02a84ffc4b224b8ad7b8117eb5eb Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Fri, 2 Dec 2016 12:01:37 +0100 Subject: [PATCH 25/31] little correction for #12 Add tournament rules to prevent a game from lasting too long due to ties --- libraries/chain/game_object.cpp | 22 ++++++---------------- libraries/chain/match_object.cpp | 4 ++-- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/libraries/chain/game_object.cpp b/libraries/chain/game_object.cpp index ea2ac76a..02612a77 100644 --- a/libraries/chain/game_object.cpp +++ b/libraries/chain/game_object.cpp @@ -147,9 +147,9 @@ namespace graphene { namespace chain { { void clear_next_timeout(database& db, game_object& game) { - const match_object& match_obj = game.match_id(db); - const tournament_object& tournament_obj = match_obj.tournament_id(db); - const rock_paper_scissors_game_options& game_options = tournament_obj.options.game_options.get(); + //const match_object& match_obj = game.match_id(db); + //const tournament_object& tournament_obj = match_obj.tournament_id(db); + //const rock_paper_scissors_game_options& game_options = tournament_obj.options.game_options.get(); game.next_timeout = fc::optional(); } void on_entry(const timeout& event, game_state_machine_& fsm) @@ -451,17 +451,8 @@ namespace graphene { namespace chain { const match_object& match_obj = match_id(db); const tournament_object& tournament_obj = match_obj.tournament_id(db); const rock_paper_scissors_game_options& game_options = tournament_obj.options.game_options.get(); - if (!game_options.insurance_enabled) // no automatic moves - { - struct rock_paper_scissors_throw_reveal reveal; - reveal.nonce2 = 0; - reveal.gesture = (rock_paper_scissors_gesture)db.get_random_bits(game_options.number_of_gestures); - rps_game_details.reveal_moves[0] = - rps_game_details.reveal_moves[1] = reveal; - ilog("Both players failed to commit a move, generating a random move for them: ${gesture}", - ("gesture", reveal.gesture)); - } - else + + if (game_options.insurance_enabled) { for (unsigned i = 0; i < 2; ++i) { @@ -514,9 +505,8 @@ namespace graphene { namespace chain { ilog("Player 0 didn't commit or reveal their move, player 1 wins"); winners.insert(players[1]); } - else // if (rps_game_details.reveal_moves[1]) + else { - // should never reach this point ? ilog("Neither player made a move, both players lose"); } } diff --git a/libraries/chain/match_object.cpp b/libraries/chain/match_object.cpp index 235037f5..4f762deb 100644 --- a/libraries/chain/match_object.cpp +++ b/libraries/chain/match_object.cpp @@ -124,8 +124,7 @@ namespace graphene { namespace chain { } else { - unsigned i = event.db.get_random_bits(match.players.size()-1); - match.match_winners.insert(match.players[i]); + match.match_winners.insert(match.players[event.db.get_random_bits(match.players.size())]); } @@ -161,6 +160,7 @@ namespace graphene { namespace chain { if (match_obj->games.size() >= tournament_obj.options.number_of_wins * 4) { + wdump((match_obj->games.size())); return true; } From 8048d1c35ea4661ba80a4e532b7a2e914291d027 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Fri, 2 Dec 2016 21:43:12 +0100 Subject: [PATCH 26/31] quality assessment of get_random_bits randomness --- tests/CMakeLists.txt | 12 ++- tests/random.sh | 18 ++++ tests/random/random_tests.cpp | 154 ++++++++++++++++++++++++++++++++++ tests/random/readme | 10 +++ 4 files changed, 190 insertions(+), 4 deletions(-) create mode 100755 tests/random.sh create mode 100644 tests/random/random_tests.cpp create mode 100644 tests/random/readme diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c1eced4e..c8de1558 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -17,10 +17,6 @@ file(GLOB PERFORMANCE_TESTS "performance/*.cpp") add_executable( performance_test ${PERFORMANCE_TESTS} ${COMMON_SOURCES} ) target_link_libraries( performance_test graphene_chain graphene_app graphene_account_history graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) -file(GLOB TOURNAMENT_TESTS "tournament/*.cpp") -add_executable( tournament_test ${TOURNAMENT_TESTS} ${COMMON_SOURCES} ) -target_link_libraries( tournament_test graphene_chain graphene_app graphene_account_history graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) - file(GLOB BENCH_MARKS "benchmarks/*.cpp") add_executable( chain_bench ${BENCH_MARKS} ${COMMON_SOURCES} ) target_link_libraries( chain_bench graphene_chain graphene_app graphene_account_history graphene_time graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) @@ -33,4 +29,12 @@ file(GLOB INTENSE_SOURCES "intense/*.cpp") add_executable( intense_test ${INTENSE_SOURCES} ${COMMON_SOURCES} ) target_link_libraries( intense_test graphene_chain graphene_app graphene_account_history graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) +file(GLOB TOURNAMENT_TESTS "tournament/*.cpp") +add_executable( tournament_test ${TOURNAMENT_TESTS} ${COMMON_SOURCES} ) +target_link_libraries( tournament_test graphene_chain graphene_app graphene_account_history graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) + +file(GLOB RANDOM_SOURCES "random/*.cpp") +add_executable( random_test ${RANDOM_SOURCES} ${COMMON_SOURCES} ) +target_link_libraries( random_test graphene_chain graphene_app graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) + add_subdirectory( generate_empty_blocks ) diff --git a/tests/random.sh b/tests/random.sh new file mode 100755 index 00000000..fa864eae --- /dev/null +++ b/tests/random.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +i=1 +while [ 0 ]; do + + echo "*** $i `date`" + mv random-2 random-2-last + ./random_test --log_level=message 2> random-2 + echo "*** $i `date`" + echo + if [ "$1" = "-c" ]; then + sleep 2 + else + break + fi + i=$[i + 1] + +done \ No newline at end of file diff --git a/tests/random/random_tests.cpp b/tests/random/random_tests.cpp new file mode 100644 index 00000000..e224439a --- /dev/null +++ b/tests/random/random_tests.cpp @@ -0,0 +1,154 @@ +/* + * Copyright (c) 2015 Cryptonomex, Inc., and contributors. + * + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +#include +//#include +//#include + +#include +#include +#include +#include "../common/database_fixture.hpp" +#include + +#include + +using namespace graphene::chain; + +bool test_standard_rand = false; +bool all_tests = false; +bool game_is_over = false; + +void sig_handler(int signo) +{ + std::cout << "." << std::endl; + game_is_over = true; +} + +BOOST_AUTO_TEST_SUITE(tournament_tests) + +bool one_test(database_fixture& df, int test_nr = 0, int tsamples = 0, int psamples = 0, std::string options = "") +{ + game_is_over = false; + + std::string command = "dieharder -g 200 -d " + std::to_string(test_nr) ; + if (tsamples) + command += " -t " + std::to_string(tsamples); + if (psamples) + command += " -p " + std::to_string(psamples); + if (!options.empty()) + command += " " + options; + + FILE *io = popen(command.c_str(), "w"); + BOOST_CHECK(io); + if(!io) + return false; + + int r; + void *binary_data; + size_t binary_data_length = sizeof(r); + int m = 0; // 0 not generate blocks, > 0 generate block every m generated numbers 100 - 1000 are reasonable + int i = 0; + + while ( !game_is_over && !feof(io) && !ferror(io) ) + { + if (test_standard_rand) { + r = rand(); + } else { + if (i) { + --i; + df.generate_block(); + } else { + i = m; + } + r = df.db.get_random_bits((uint64_t)INT_MAX+1); + } + + binary_data = (void *) &r; + size_t l = + fwrite(binary_data, 1, binary_data_length, io); + if (l != binary_data_length) break; + //fflush(io); + } + + pclose(io); + return true; +} + +BOOST_FIXTURE_TEST_CASE( basic, database_fixture ) +{ + try + { + std::string o(" dieharder "); + o.append(all_tests ? "all" : "selected"). + append(" tests of "). + append(test_standard_rand ? "rand" : "get_random_bits"); + BOOST_TEST_MESSAGE("Hello" + o); + + std::vector selected = {0, 1, 3, 5, 6, 15}; +#if 1 + // trying to randomize starting point + int r = std::rand() % 100; + for(int i = 0; i < r ; ++i) + db.get_random_bits(INT_MAX); +#endif + for (int i = 0; i < 18; ++i) + { + if (!all_tests && std::find(selected.begin(), selected.end(), i) == selected.end()) + continue; + BOOST_TEST_MESSAGE("#" + std::to_string(i)); + if (!one_test(*this, i)) + break; + } + BOOST_TEST_MESSAGE("Bye" + o); + } + catch (fc::exception& e) + { + edump((e.to_detail_string())); + throw; + } +} + +BOOST_AUTO_TEST_SUITE_END() + +//#define BOOST_TEST_MODULE "C++ Unit Tests for Graphene Blockchain Database" +#include +#include +#include + +boost::unit_test::test_suite* init_unit_test_suite(int argc, char* argv[]) { + for (int i=1; i Date: Fri, 2 Dec 2016 22:08:33 +0100 Subject: [PATCH 27/31] correcting conslusion -> conclusion --- tests/random/readme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/random/readme b/tests/random/readme index b348e7c9..bc31698a 100644 --- a/tests/random/readme +++ b/tests/random/readme @@ -3,7 +3,7 @@ options: -R test standard 'rand' instead of 'get_random_bits'; -A run all dieharder tests, default is to run only selected tests. -conslusion: +conclusion: quality of randomness of 'get_random_bits' is comparable with randomness standard 'rand' function, however about an order of magnitude slower than 'rand'; and distinctly weaker compared to e.g. /dev/urandom that is assessed by dieharder as almost perfect. From d9413b878012b6dcd9f6f283303bee21ddeaac48 Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Mon, 5 Dec 2016 11:27:19 +0100 Subject: [PATCH 28/31] enhancing tournaments test --- tests/tournament/tournament_tests.cpp | 74 +++++++++++++++++---------- tests/tournaments.sh | 17 ++++++ 2 files changed, 64 insertions(+), 27 deletions(-) create mode 100755 tests/tournaments.sh diff --git a/tests/tournament/tournament_tests.cpp b/tests/tournament/tournament_tests.cpp index 63f17999..22da9a70 100644 --- a/tests/tournament/tournament_tests.cpp +++ b/tests/tournament/tournament_tests.cpp @@ -25,7 +25,6 @@ #include #include - #include #include #include @@ -289,13 +288,17 @@ public: tx.validate(); tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); df.sign(tx, sig_priv_key); - PUSH_TX(db, tx); + if (game_obj.get_state() == game_state::expecting_commit_moves) // checking again + PUSH_TX(db, tx); } // spaghetti programming // walking through all tournaments, matches and games and throwing random moves - void play_games() + // optionaly skip generting randomly selected moves + void play_games(unsigned skip_some_commits = 0, unsigned skip_some_reveals = 0) { + //try + //{ graphene::chain::database& db = df.db; const chain_parameters& params = db.get_global_properties().parameters; @@ -310,20 +313,25 @@ public: for(const auto& game_id: match.games ) { const game_object& game = game_id(db); + const rock_paper_scissors_game_details& rps_details = game.game_details.get(); if (game.get_state() == game_state::expecting_commit_moves) { for(const auto& player_id: game.players) { - if (players_keys.find(player_id) != players_keys.end()) + if ( players_keys.find(player_id) != players_keys.end()) { - rps_throw(game_id, player_id, (rock_paper_scissors_gesture) (std::rand() % game_options.number_of_gestures), players_keys[player_id]); + if (!skip_some_commits || player_id.instance.value % skip_some_commits != game_id.instance.value % skip_some_commits) + { + auto iter = std::find(game.players.begin(), game.players.end(), player_id); + unsigned player_index = std::distance(game.players.begin(), iter); + if (!rps_details.commit_moves.at(player_index)) + rps_throw(game_id, player_id, (rock_paper_scissors_gesture) (std::rand() % game_options.number_of_gestures), players_keys[player_id]); + } } } } else if (game.get_state() == game_state::expecting_reveal_moves) { - const rock_paper_scissors_game_details& rps_details = game.game_details.get(); - for (unsigned i = 0; i < 2; ++i) { if (rps_details.commit_moves.at(i) && @@ -333,27 +341,32 @@ public: if (players_keys.find(player_id) != players_keys.end()) { { + auto iter = committed_game_moves.find(*rps_details.commit_moves.at(i)); if (iter != committed_game_moves.end()) { - const rock_paper_scissors_throw_reveal& reveal = iter->second; - - game_move_operation move_operation; - move_operation.game_id = game.id; - move_operation.player_account_id = player_id; - move_operation.move = reveal; - - signed_transaction tx; - tx.operations = {move_operation}; - for( auto& op : tx.operations ) + if (!skip_some_reveals || player_id.instance.value % skip_some_reveals != game_id.instance.value % skip_some_reveals) { - asset f = db.current_fee_schedule().set_fee(op); - players_fees[player_id][f.asset_id] -= f.amount; + const rock_paper_scissors_throw_reveal& reveal = iter->second; + + game_move_operation move_operation; + move_operation.game_id = game.id; + move_operation.player_account_id = player_id; + move_operation.move = reveal; + + signed_transaction tx; + tx.operations = {move_operation}; + for( auto& op : tx.operations ) + { + asset f = db.current_fee_schedule().set_fee(op); + players_fees[player_id][f.asset_id] -= f.amount; + } + tx.validate(); + tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); + df.sign(tx, players_keys[player_id]); + if (game.get_state() == game_state::expecting_reveal_moves) // check again + PUSH_TX(db, tx); } - tx.validate(); - tx.set_expiration(db.head_block_time() + fc::seconds( params.block_interval * (params.maintenance_skip_slots + 1) * 3)); - df.sign(tx, players_keys[player_id]); - PUSH_TX(db, tx); } } } @@ -363,6 +376,12 @@ public: } } } + //} + //catch (fc::exception& e) + //{ + // edump((e.to_detail_string())); + // throw; + //} } private: @@ -447,7 +466,7 @@ BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) asset buy_in = asset(12000); tournament_id_type tournament_id; - BOOST_TEST_MESSAGE( "Preparing a tournament" ); + BOOST_TEST_MESSAGE( "Preparing a tournament, insurance disabled" ); tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, TEST1_NR_OF_PLAYERS_NUMBER); BOOST_REQUIRE(tournament_id == tournament_id_type()); @@ -458,9 +477,10 @@ BOOST_FIXTURE_TEST_CASE( simple, database_fixture ) #endif ++tournaments_to_complete; - BOOST_TEST_MESSAGE( "Preparing another one" ); + BOOST_TEST_MESSAGE( "Preparing another one, insurance enabled" ); buy_in = asset(13000); - tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, TEST2_NR_OF_PLAYERS_NUMBER); + tournament_id = tournament_helper.create_tournament (nathan_id, nathan_priv_key, buy_in, TEST2_NR_OF_PLAYERS_NUMBER, + 3, 1, 3, 3600, 3, 3, true); BOOST_REQUIRE(tournament_id == tournament_id_type(1)); tournament_helper.join_tournament(tournament_id, alice_id, alice_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("alice"))), buy_in); tournament_helper.join_tournament(tournament_id, bob_id, bob_id, fc::ecc::private_key::regenerate(fc::sha256::hash(string("bob"))), buy_in); @@ -745,7 +765,7 @@ BOOST_FIXTURE_TEST_CASE( assets, database_fixture ) while(tournaments_to_complete > 0) { generate_block(); - tournament_helper.play_games(); + tournament_helper.play_games(3, 4); for(const auto& tournament_id: tournaments) { const tournament_object& tournament = tournament_id(db); diff --git a/tests/tournaments.sh b/tests/tournaments.sh new file mode 100755 index 00000000..b9e7bb16 --- /dev/null +++ b/tests/tournaments.sh @@ -0,0 +1,17 @@ +#!/bin/bash -e + +i=1 +while [ 0 ]; do + + echo "*** $i `date`" + mv tournament-2 tournament-2-last + ./tournament_test --log_level=message 2> tournament-2 + echo + if [ "$1" = "-c" ]; then + sleep 2 + else + break + fi + i=$[i + 1] + +done \ No newline at end of file From 1018221812ce76ab369a63d9a9ad7118b14afda7 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 3 Jan 2017 16:44:56 -0500 Subject: [PATCH 29/31] quiet signed/unsigned warning --- tests/common/database_fixture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index f4ae577b..125dc5e5 100644 --- a/tests/common/database_fixture.cpp +++ b/tests/common/database_fixture.cpp @@ -82,7 +82,7 @@ database_fixture::database_fixture() genesis_state.initial_timestamp = time_point_sec( GRAPHENE_TESTING_GENESIS_TIMESTAMP ); genesis_state.initial_active_witnesses = 10; - for( int i = 0; i < genesis_state.initial_active_witnesses; ++i ) + for( unsigned i = 0; i < genesis_state.initial_active_witnesses; ++i ) { auto name = "init"+fc::to_string(i); genesis_state.initial_accounts.emplace_back(name, From 2012fe6e90e0b9e1f760d166737db6b92390ad82 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 3 Jan 2017 16:45:14 -0500 Subject: [PATCH 30/31] Allow generate_genesis plugin to quietly do nothing when you don't specify the block number on the witness's command line. --- .../generate_genesis/generate_genesis.cpp | 29 ++++++++++--------- .../generate_genesis_plugin.hpp | 2 +- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/libraries/plugins/generate_genesis/generate_genesis.cpp b/libraries/plugins/generate_genesis/generate_genesis.cpp index e11fc6b0..8f1b20d9 100644 --- a/libraries/plugins/generate_genesis/generate_genesis.cpp +++ b/libraries/plugins/generate_genesis/generate_genesis.cpp @@ -50,7 +50,7 @@ void generate_genesis_plugin::plugin_set_program_options( command_line_options.add_options() ("output-genesis-file,o", bpo::value()->default_value("genesis.json"), "Genesis file to create") ("output-csvlog-file,o", bpo::value()->default_value("log.csv"), "CSV log file to create") - ("snapshot-block-number", bpo::value()->default_value(0), "Block number at which to snapshot balances") + ("snapshot-block-number", bpo::value(), "Block number at which to snapshot balances") ; config_file_options.add(command_line_options); } @@ -67,32 +67,33 @@ void generate_genesis_plugin::plugin_initialize(const boost::program_options::va _genesis_filename = options["output-genesis-file"].as(); _csvlog_filename = options["output-csvlog-file"].as(); - _block_to_snapshot = options["snapshot-block-number"].as(); + if (options.count("snapshot-block-number")) + _block_to_snapshot = options["snapshot-block-number"].as(); database().applied_block.connect([this](const graphene::chain::signed_block& b){ block_applied(b); }); ilog("generate genesis plugin: plugin_initialize() end"); } FC_LOG_AND_RETHROW() } void generate_genesis_plugin::plugin_startup() { try { - ilog("generate genesis plugin: plugin_startup() begin"); chain::database& d = database(); - if (d.head_block_num() == _block_to_snapshot) + if (_block_to_snapshot) { - ilog("generate genesis plugin: already at snapshot block"); - generate_snapshot(); + if (d.head_block_num() == *_block_to_snapshot) + { + ilog("generate genesis plugin: already at snapshot block"); + generate_snapshot(); + } + else if (d.head_block_num() > *_block_to_snapshot) + elog("generate genesis plugin: already passed snapshot block, you must reindex to return to the snapshot state"); + else + elog("generate genesis plugin: waiting for block ${snapshot_block} to generate snapshot, current head is ${head}", + ("snapshot_block", _block_to_snapshot)("head", d.head_block_num())); } - else if (d.head_block_num() > _block_to_snapshot) - elog("generate genesis plugin: already passed snapshot block, you must reindex to return to the snapshot state"); - else - elog("generate genesis plugin: waiting for block ${snapshot_block} to generate snapshot, current head is ${head}", - ("snapshot_block", _block_to_snapshot)("head", d.head_block_num())); - - ilog("generate genesis plugin: plugin_startup() end"); } FC_CAPTURE_AND_RETHROW() } void generate_genesis_plugin::block_applied(const graphene::chain::signed_block& b) { - if (b.block_num() == _block_to_snapshot) + if (_block_to_snapshot && b.block_num() == *_block_to_snapshot) { ilog("generate genesis plugin: snapshot block has arrived"); generate_snapshot(); diff --git a/libraries/plugins/generate_genesis/include/graphene/generate_genesis/generate_genesis_plugin.hpp b/libraries/plugins/generate_genesis/include/graphene/generate_genesis/generate_genesis_plugin.hpp index 16e4f655..c1ffbaff 100644 --- a/libraries/plugins/generate_genesis/include/graphene/generate_genesis/generate_genesis_plugin.hpp +++ b/libraries/plugins/generate_genesis/include/graphene/generate_genesis/generate_genesis_plugin.hpp @@ -52,7 +52,7 @@ private: boost::program_options::variables_map _options; - uint32_t _block_to_snapshot; + fc::optional _block_to_snapshot; std::string _genesis_filename; std::string _csvlog_filename; }; From 66208a2d9ebaf168e67bd9239b3f0d651409c1ca Mon Sep 17 00:00:00 2001 From: Roman Olearski Date: Thu, 6 Apr 2017 09:46:17 +0200 Subject: [PATCH 31/31] I. DEX Task: The Peerplays DEX should only allow UIA and sidechain assets to be paired (traded) with the core token (PPY). --- libraries/chain/market_evaluator.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libraries/chain/market_evaluator.cpp b/libraries/chain/market_evaluator.cpp index 27c31ae4..3cd072f2 100644 --- a/libraries/chain/market_evaluator.cpp +++ b/libraries/chain/market_evaluator.cpp @@ -52,6 +52,11 @@ void_result limit_order_create_evaluator::do_evaluate(const limit_order_create_o if( _sell_asset->options.blacklist_markets.size() ) FC_ASSERT( _sell_asset->options.blacklist_markets.find(_receive_asset->id) == _sell_asset->options.blacklist_markets.end() ); + // I. DEX Task + FC_ASSERT(_receive_asset->id == asset_id_type() || _sell_asset->id == asset_id_type(), + "No asset in the trade is CORE."); + + FC_ASSERT( is_authorized_asset( d, *_seller, *_sell_asset ) ); FC_ASSERT( is_authorized_asset( d, *_seller, *_receive_asset ) );