Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 2mln_blocks_test
  • abw_rshares_experiment
  • bridge_get_account_posts
  • bw_ci_validating_test
  • bw_list_comments_by_permlink_opt_patterns
  • dk-5e6-patterns
  • dk-database-api-tests-001
  • dk-diff-log
  • dk-fix-order-in-some-tests
  • dk-follow-item-overwrite-fix
  • dk-follow-refactor
  • dk-functional-example
  • dk-list-votes-pre24
  • dk-mock-follow-tests
  • dk-mock-follow-tests-2
  • dk-mock-vops-tests
  • dk-pytest-benchmark
  • follow_api_tests
  • get_accounts
  • get_blog_entries
  • get_ranked_posts
  • issue_37_trend_and_hot
  • jsalyers-more-blacklist-updates
  • klesniak-api-tests-pyresttests
  • km_hafah_MR15
  • km_issue_151_revert
  • kmochocki/add-slow-call
  • kmochocki/ci
  • kmochocki/hivemind-testing
  • kudmich/prepare_tavern_tests_to_working_with_postgrest
  • master
  • mi_correct_notif_cache_update
  • mi_mention_date_changed
  • mi_notifications_in_cache
  • mi_test_for_bridge_get_ranked_posts
  • msochacki_tests
  • mt-47
  • mt-find-list-votes
  • mt-further-pids-refactoring
  • mt-further-pids-refactoring-old
  • mt-get-pids-fix
  • mt-get-profile-new-patterns
  • mt-grayed
  • mt-lack-of-post-forces-empty-pattern
  • mt-list-comments-fix
  • mt-main-unit
  • mt-pids-performance-refactoring
  • mz-hivemind-benchmark-parser
  • pczempiel_community
  • pczempiel_date_changes
  • pczempiel_new_tests
  • pmaniora_account_notifications_tests
  • pmaniora_communities_sql
  • pmaniora_community_fixes
  • pmaniora_fullsync_slow_calls
  • pmaniora_new_tests
  • request-execution-time
  • revert-36610d67
  • tmp
59 results

Target

Select target project
  • hive/tests_api
1 result
Select Git revision
  • 2mln_blocks_test
  • abw_rshares_experiment
  • bridge_get_account_posts
  • bw_ci_validating_test
  • bw_list_comments_by_permlink_opt_patterns
  • dk-5e6-patterns
  • dk-database-api-tests-001
  • dk-diff-log
  • dk-fix-order-in-some-tests
  • dk-follow-item-overwrite-fix
  • dk-follow-refactor
  • dk-functional-example
  • dk-list-votes-pre24
  • dk-mock-follow-tests
  • dk-mock-follow-tests-2
  • dk-mock-vops-tests
  • dk-pytest-benchmark
  • follow_api_tests
  • get_accounts
  • get_blog_entries
  • get_ranked_posts
  • issue_37_trend_and_hot
  • jsalyers-more-blacklist-updates
  • klesniak-api-tests-pyresttests
  • km_hafah_MR15
  • km_issue_151_revert
  • kmochocki/add-slow-call
  • kmochocki/ci
  • kmochocki/hivemind-testing
  • kudmich/prepare_tavern_tests_to_working_with_postgrest
  • master
  • mi_correct_notif_cache_update
  • mi_mention_date_changed
  • mi_notifications_in_cache
  • mi_test_for_bridge_get_ranked_posts
  • msochacki_tests
  • mt-47
  • mt-find-list-votes
  • mt-further-pids-refactoring
  • mt-further-pids-refactoring-old
  • mt-get-pids-fix
  • mt-get-profile-new-patterns
  • mt-grayed
  • mt-lack-of-post-forces-empty-pattern
  • mt-list-comments-fix
  • mt-main-unit
  • mt-pids-performance-refactoring
  • mz-hivemind-benchmark-parser
  • pczempiel_community
  • pczempiel_date_changes
  • pczempiel_new_tests
  • pmaniora_account_notifications_tests
  • pmaniora_communities_sql
  • pmaniora_community_fixes
  • pmaniora_fullsync_slow_calls
  • pmaniora_new_tests
  • request-execution-time
  • revert-36610d67
  • tmp
59 results
Show changes
Commits on Source (36)
Showing
with 3679 additions and 959 deletions
......@@ -9,7 +9,6 @@
- get_account_references
- get_account_reputations
- get_account_votes
- get_accounts
- get_active_votes
- get_active_witnesses
- get_block
......@@ -233,16 +232,6 @@ Windows call:
Results:
`"ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change"
#### get_accounts
Linux call:
`python3 get_accounts.py https://api.steem.house https://api.steemit.com ./ steemit alice steempeak
Windows call:
`python get_accounts.py https://api.steemit.com https://api.steem.house ./ steemit alice steempeak
Results:
Works fine.
#### get_active_votes
Linux call:
`python3 get_active_votes.py https://api.steem.house https://api.steemit.com ./ drakos open-letter-to-justin-sun-and-the-steem-community
......
#!/usr/bin/python3
import os
import sys
sys.path.append(os.path.dirname(__file__) + "/../../../")
import json
from testbase import SimpleJsonTest
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("test_node", type = str, help = "IP address of test node")
parser.add_argument("ref_node", type = str, help = "IP address of reference node")
parser.add_argument("work_dir", type = str, help = "Work dir")
parser.add_argument("account", type = str, nargs='+', help = "Account name")
args = parser.parse_args()
tester = SimpleJsonTest(args.test_node, args.ref_node, args.work_dir)
print("Test node: {}".format(args.test_node))
print("Ref node: {}".format(args.ref_node))
print("Work dir: {}".format(args.work_dir))
print("account: {}".format(args.account))
test_args = {
"jsonrpc": "2.0",
"id": 1,
"method": "condenser_api.get_accounts",
"params": [
args.account
]
}
if tester.compare_results(test_args, True):
exit(0)
exit(1)
......@@ -21,10 +21,6 @@ tests = [
"method": "condenser_api.get_trending_tags",
"params": ["", 20]
},
{
"method": "condenser_api.get_accounts",
"params": [["initminer","temp"]]
},
{
"method": "condenser_api.get_active_votes",
"params": ["temp", "test1"]
......
......@@ -175,14 +175,6 @@
- args: '{"author":"steemit","permlink":"firstpost"}'
- <<: *base_test
# Method not found
# - test:
# - name: "get_accounts"
# - variable_binds:
# - method: "get_accounts"
# - args: '[["steemit"]]'
# - <<: *base_test
# No longer supported
# - test:
# - name: "get_account_votes"
......
......@@ -177,14 +177,6 @@
- args: '{"author":"steemit","permlink":"firstpost"}'
- <<: *base_test
# Method not found
# - test:
# - name: "get_accounts"
# - variable_binds:
# - method: "get_accounts"
# - args: '[["steemit"]]'
# - <<: *base_test
# No longer supported
# - test:
# - name: "get_account_votes"
......
......@@ -177,13 +177,6 @@
- args: '{"author":"steemit","permlink":"firstpost"}'
- <<: *base_benchmark
- benchmark:
- name: "get_accounts"
- variable_binds:
- method: "get_accounts"
- args: '[["steemit"]]'
- <<: *base_benchmark
# No longer supported
# - benchmark:
# - name: "get_account_votes"
......
......@@ -189,13 +189,6 @@
- args: '{"author":"steemit","permlink":"firstpost"}'
- <<: *base_test
- test:
- name: "get_accounts"
- variable_binds:
- method: "get_accounts"
- args: '[["steemit"]]'
- <<: *base_test
# No longer supported
# - test:
# - name: "get_account_votes"
......
[
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"balance": "4778859.891 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-03-24T17:00:21",
"curation_rewards": 0,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1458838821
},
"guest_bloggers": [],
"id": 28,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "2016-07-15T13:56:18",
"last_owner_update": "2016-07-15T13:56:18",
"last_post": "2016-03-30T18:30:18",
"last_root_post": "2016-03-30T18:30:18",
"last_vote_time": "1970-01-01T00:00:00",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
"mined": true,
"name": "steemit",
"next_vesting_withdrawal": "2016-09-19T00:37:21",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 0,
"post_count": 1,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 3548,
"proxied_vsf_votes": [
"23077504682",
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": "12944616889",
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "70337.438 HBD",
"sbd_last_interest_payment": "2016-09-12T19:16:48",
"sbd_seconds": "8923940509188",
"sbd_seconds_last_update": "2016-09-14T11:25:21",
"tags_usage": [],
"to_withdraw": "257910734535923078",
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "225671901920.188893 VESTS",
"vesting_withdraw_rate": "2479910908.999260 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 10000,
"last_update_time": 1458838821
},
"voting_power": 10000,
"withdraw_routes": 0,
"withdrawn": "32238841816990380",
"witness_votes": [],
"witnesses_voted_for": 0
}
]
[
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"balance": "4778859.891 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-03-24T17:00:21",
"curation_rewards": 0,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1458838821
},
"guest_bloggers": [],
"id": 28,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "2016-07-15T13:56:18",
"last_owner_update": "2016-07-15T13:56:18",
"last_post": "2016-03-30T18:30:18",
"last_root_post": "2016-03-30T18:30:18",
"last_vote_time": "1970-01-01T00:00:00",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
"mined": true,
"name": "steemit",
"next_vesting_withdrawal": "2016-09-19T00:37:21",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 0,
"post_count": 1,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 3548,
"proxied_vsf_votes": [
"23077504682",
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": "12944616889",
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "70337.438 HBD",
"sbd_last_interest_payment": "2016-09-12T19:16:48",
"sbd_seconds": "8923940509188",
"sbd_seconds_last_update": "2016-09-14T11:25:21",
"tags_usage": [],
"to_withdraw": "257910734535923078",
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "225671901920.188893 VESTS",
"vesting_withdraw_rate": "2479910908.999260 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 10000,
"last_update_time": 1458838821
},
"voting_power": 10000,
"withdraw_routes": 0,
"withdrawn": "32238841816990380",
"witness_votes": [],
"witnesses_voted_for": 0
}
]
[
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"balance": "4778859.891 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-03-24T17:00:21",
"curation_rewards": 0,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1458838821
},
"guest_bloggers": [],
"id": 28,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "2016-07-15T13:56:18",
"last_owner_update": "2016-07-15T13:56:18",
"last_post": "2016-03-30T18:30:18",
"last_root_post": "2016-03-30T18:30:18",
"last_vote_time": "1970-01-01T00:00:00",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
"mined": true,
"name": "steemit",
"next_vesting_withdrawal": "2016-09-19T00:37:21",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 0,
"post_count": 1,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 3548,
"proxied_vsf_votes": [
"23077504682",
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": "12944616889",
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "70337.438 HBD",
"sbd_last_interest_payment": "2016-09-12T19:16:48",
"sbd_seconds": "8923940509188",
"sbd_seconds_last_update": "2016-09-14T11:25:21",
"tags_usage": [],
"to_withdraw": "257910734535923078",
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "225671901920.188893 VESTS",
"vesting_withdraw_rate": "2479910908.999260 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 10000,
"last_update_time": 1458838821
},
"voting_power": 10000,
"withdraw_routes": 0,
"withdrawn": "32238841816990380",
"witness_votes": [],
"witnesses_voted_for": 0
},
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc",
1
]
],
"weight_threshold": 1
},
"balance": "0.000 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-07-12T14:47:00",
"curation_rewards": 20394,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1468334820
},
"guest_bloggers": [],
"id": 17540,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "2016-07-15T05:11:21",
"last_owner_update": "2016-07-15T05:11:21",
"last_post": "2016-09-15T15:07:18",
"last_root_post": "2016-09-14T16:30:24",
"last_vote_time": "2016-09-15T16:00:45",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp",
"mined": false,
"name": "biophil",
"next_vesting_withdrawal": "1969-12-31T23:59:59",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 12171,
"post_count": 752,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM52yaFZPJQMx5wWRZCYgHd69hEE4rkqx7qpq45NyY4Za6w3Jong",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 3729894,
"proxied_vsf_votes": [
0,
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": "10077167197115",
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "902.828 HBD",
"sbd_last_interest_payment": "2016-09-13T12:08:48",
"sbd_seconds": "131701413987",
"sbd_seconds_last_update": "2016-09-15T19:28:54",
"tags_usage": [],
"to_withdraw": 0,
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "8128612.587095 VESTS",
"vesting_withdraw_rate": "0.000000 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 9475,
"last_update_time": 1473955245
},
"voting_power": 9475,
"withdraw_routes": 0,
"withdrawn": 0,
"witness_votes": [
"abit",
"anyx",
"blocktrades",
"boatymcboatface",
"delegate.lafona",
"jesta",
"pharesim",
"roadscape",
"smooth.witness",
"steemed",
"steve-walschot"
],
"witnesses_voted_for": 11
},
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4",
1
]
],
"weight_threshold": 1
},
"balance": "0.000 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-04-28T14:35:57",
"curation_rewards": 0,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1461854157
},
"guest_bloggers": [],
"id": 6566,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "1970-01-01T00:00:00",
"last_owner_update": "1970-01-01T00:00:00",
"last_post": "1970-01-01T00:00:00",
"last_root_post": "1970-01-01T00:00:00",
"last_vote_time": "1970-01-01T00:00:00",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm",
"mined": false,
"name": "test",
"next_vesting_withdrawal": "1969-12-31T23:59:59",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 0,
"post_count": 0,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM5PnVARAgGPTf5PqRnumGUyMJCfV9ti93z72Kct2dAucfLgaMxC",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 0,
"proxied_vsf_votes": [
0,
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": 0,
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "0.001 HBD",
"sbd_last_interest_payment": "1970-01-01T00:00:00",
"sbd_seconds": "0",
"sbd_seconds_last_update": "2016-08-11T10:59:45",
"tags_usage": [],
"to_withdraw": 0,
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "146273.695970 VESTS",
"vesting_withdraw_rate": "0.000000 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 10000,
"last_update_time": 1461854157
},
"voting_power": 10000,
"withdraw_routes": 0,
"withdrawn": 0,
"witness_votes": [],
"witnesses_voted_for": 0
}
]
[
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"balance": "4778859.891 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-03-24T17:00:21",
"curation_rewards": 0,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1458838821
},
"guest_bloggers": [],
"id": 28,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "2016-07-15T13:56:18",
"last_owner_update": "2016-07-15T13:56:18",
"last_post": "2016-03-30T18:30:18",
"last_root_post": "2016-03-30T18:30:18",
"last_vote_time": "1970-01-01T00:00:00",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
"mined": true,
"name": "steemit",
"next_vesting_withdrawal": "2016-09-19T00:37:21",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 0,
"post_count": 1,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 3548,
"proxied_vsf_votes": [
"23077504682",
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": "12944616889",
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "70337.438 HBD",
"sbd_last_interest_payment": "2016-09-12T19:16:48",
"sbd_seconds": "8923940509188",
"sbd_seconds_last_update": "2016-09-14T11:25:21",
"tags_usage": [],
"to_withdraw": "257910734535923078",
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "225671901920.188893 VESTS",
"vesting_withdraw_rate": "2479910908.999260 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 10000,
"last_update_time": 1458838821
},
"voting_power": 10000,
"withdraw_routes": 0,
"withdrawn": "32238841816990380",
"witness_votes": [],
"witnesses_voted_for": 0
},
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc",
1
]
],
"weight_threshold": 1
},
"balance": "0.000 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-07-12T14:47:00",
"curation_rewards": 20394,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1468334820
},
"guest_bloggers": [],
"id": 17540,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "2016-07-15T05:11:21",
"last_owner_update": "2016-07-15T05:11:21",
"last_post": "2016-09-15T15:07:18",
"last_root_post": "2016-09-14T16:30:24",
"last_vote_time": "2016-09-15T16:00:45",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp",
"mined": false,
"name": "biophil",
"next_vesting_withdrawal": "1969-12-31T23:59:59",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 12171,
"post_count": 752,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM52yaFZPJQMx5wWRZCYgHd69hEE4rkqx7qpq45NyY4Za6w3Jong",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 3729894,
"proxied_vsf_votes": [
0,
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": "10077167197115",
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "902.828 HBD",
"sbd_last_interest_payment": "2016-09-13T12:08:48",
"sbd_seconds": "131701413987",
"sbd_seconds_last_update": "2016-09-15T19:28:54",
"tags_usage": [],
"to_withdraw": 0,
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "8128612.587095 VESTS",
"vesting_withdraw_rate": "0.000000 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 9475,
"last_update_time": 1473955245
},
"voting_power": 9475,
"withdraw_routes": 0,
"withdrawn": 0,
"witness_votes": [
"abit",
"anyx",
"blocktrades",
"boatymcboatface",
"delegate.lafona",
"jesta",
"pharesim",
"roadscape",
"smooth.witness",
"steemed",
"steve-walschot"
],
"witnesses_voted_for": 11
},
{
"active": {
"account_auths": [],
"key_auths": [
[
"STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4",
1
]
],
"weight_threshold": 1
},
"balance": "0.000 HIVE",
"can_vote": true,
"comment_count": 0,
"created": "2016-04-28T14:35:57",
"curation_rewards": 0,
"delegated_vesting_shares": "0.000000 VESTS",
"downvote_manabar": {
"current_mana": 0,
"last_update_time": 1461854157
},
"guest_bloggers": [],
"id": 6566,
"json_metadata": "",
"last_account_recovery": "1970-01-01T00:00:00",
"last_account_update": "1970-01-01T00:00:00",
"last_owner_update": "1970-01-01T00:00:00",
"last_post": "1970-01-01T00:00:00",
"last_root_post": "1970-01-01T00:00:00",
"last_vote_time": "1970-01-01T00:00:00",
"lifetime_vote_count": 0,
"market_history": [],
"memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm",
"mined": false,
"name": "test",
"next_vesting_withdrawal": "1969-12-31T23:59:59",
"other_history": [],
"owner": {
"account_auths": [],
"key_auths": [
[
"STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy",
1
]
],
"weight_threshold": 1
},
"pending_claimed_accounts": 0,
"post_bandwidth": 0,
"post_count": 0,
"post_history": [],
"posting": {
"account_auths": [],
"key_auths": [
[
"STM5PnVARAgGPTf5PqRnumGUyMJCfV9ti93z72Kct2dAucfLgaMxC",
1
]
],
"weight_threshold": 1
},
"posting_json_metadata": "",
"posting_rewards": 0,
"proxied_vsf_votes": [
0,
0,
0,
0
],
"proxy": "",
"received_vesting_shares": "0.000000 VESTS",
"recovery_account": "steem",
"reputation": 0,
"reset_account": "null",
"reward_sbd_balance": "0.000 HBD",
"reward_steem_balance": "0.000 HIVE",
"reward_vesting_balance": "0.000000 VESTS",
"reward_vesting_steem": "0.000 HIVE",
"savings_balance": "0.000 HIVE",
"savings_sbd_balance": "0.000 HBD",
"savings_sbd_last_interest_payment": "1970-01-01T00:00:00",
"savings_sbd_seconds": "0",
"savings_sbd_seconds_last_update": "1970-01-01T00:00:00",
"savings_withdraw_requests": 0,
"sbd_balance": "0.001 HBD",
"sbd_last_interest_payment": "1970-01-01T00:00:00",
"sbd_seconds": "0",
"sbd_seconds_last_update": "2016-08-11T10:59:45",
"tags_usage": [],
"to_withdraw": 0,
"transfer_history": [],
"vesting_balance": "0.000 HIVE",
"vesting_shares": "146273.695970 VESTS",
"vesting_withdraw_rate": "0.000000 VESTS",
"vote_history": [],
"voting_manabar": {
"current_mana": 10000,
"last_update_time": 1461854157
},
"voting_power": 10000,
"withdraw_routes": 0,
"withdrawn": 0,
"witness_votes": [],
"witnesses_voted_for": 0
}
]
[]
\ No newline at end of file
[]
\ No newline at end of file
[
{
"active_votes": [
{
"percent": "300",
"reputation": 0,
"rshares": "1294968367268",
"voter": "smooth"
},
{
"percent": "100",
"reputation": 0,
"rshares": "28860902224",
"voter": "anonymous"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "14409605494831",
"voter": "summon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "40261554792719",
"voter": "blocktrades"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3155750963782",
"voter": "lafona-miner"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "377906636658",
"voter": "lafona"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1245475534803",
"voter": "silver"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2875138885044",
"voter": "silversteem"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "992692841277",
"voter": "delegate.lafona"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "948645888607",
"voter": "liondani"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "314602171157",
"voter": "lafona5"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3094244335",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3755939559",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "703615315",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5751660885474",
"voter": "complexring"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1644151280793",
"voter": "steemychicken1"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53261984748",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1658441464",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213555429",
"voter": "moon"
},
{
"percent": "300",
"reputation": 0,
"rshares": "222747002001",
"voter": "smooth.witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "622045496",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "947522117",
"voter": "daniel.pan"
},
{
"percent": "100",
"reputation": 0,
"rshares": "54127411451",
"voter": "donkeypong"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1759901644",
"voter": "nexusdev"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "351517418935",
"voter": "ash"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "282481919881",
"voter": "chitty"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "287957469",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "25822874684",
"voter": "steampunkpowered"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "10283360038",
"voter": "ervin-lemark"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "24290958657",
"voter": "instructor2121"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7456570912",
"voter": "jerome-colley"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "491733834025",
"voter": "kevinwong"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "41463145095",
"voter": "nphacker"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "367830728600",
"voter": "blakemiles84"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "45912096650",
"voter": "ranko-k"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "23227592357",
"voter": "treeleaves"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "63707549495",
"voter": "kanoptx"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "31690086400",
"voter": "drinkzya"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "73022585138",
"voter": "eric-boucher"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "109636482823",
"voter": "kenny-crane"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61288399197",
"voter": "thecryptodrive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "117389810764",
"voter": "bravenewcoin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "449244898326",
"voter": "infovore"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "128017998380",
"voter": "omarb"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "36007650081",
"voter": "cheftony"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "32961119819",
"voter": "cryptoiskey"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "71452016003",
"voter": "discombobulated"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5121130339",
"voter": "expanse"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "25440234426",
"voter": "hitmeasap"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "13382892819",
"voter": "stealthtrader"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "24939158057",
"voter": "tcfxyz"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "103574158909",
"voter": "cdubendo"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7881221000",
"voter": "spiz0r"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "112751020008",
"voter": "jacor"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "14190084617",
"voter": "halo"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "159492592967",
"voter": "jesta"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33597624083",
"voter": "toxonaut"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7028930352",
"voter": "btcupload"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17438618169",
"voter": "anduweb"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "75155947399",
"voter": "demotruk"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3697940497",
"voter": "maximkichev"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "10377897348",
"voter": "nippel66"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7753599028",
"voter": "magz8716"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1388783807",
"voter": "cryptocurrency1"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "115874018",
"voter": "gosha"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "505816971",
"voter": "raymonjohnstone"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "124907433",
"voter": "biternator"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3090635988",
"voter": "willbeonceagain8"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "54497070629",
"voter": "arcurus"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4745090234",
"voter": "bakingengineer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "36689125715",
"voter": "claudiop63"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "16359584188",
"voter": "noodles.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "10399150907",
"voter": "npl77"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "108836213411",
"voter": "steemdrive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11060114610",
"voter": "bergy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2050213474",
"voter": "theprophet0"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "295915630",
"voter": "theprophet"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "38819548773",
"voter": "allasyummyfood"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "461449860",
"voter": "neddykelly"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1579699570",
"voter": "minion"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "77473387847",
"voter": "sirwinchester"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61385527",
"voter": "sijoittaja"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4190219999",
"voter": "tom77"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "125663528",
"voter": "nelkel"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "148930176",
"voter": "letsgo.asino"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "14968711124",
"voter": "hilarski"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "58226150",
"voter": "ajavajive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "253750401751",
"voter": "oldtimer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "57886832",
"voter": "shootetxd"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "191216226",
"voter": "comcentrate"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "13741567322",
"voter": "antoinev"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61289460",
"voter": "jtstreetman"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5100395909",
"voter": "io-io-io"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "54884363",
"voter": "ian89"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50351260",
"voter": "chuckleberry"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "349611227",
"voter": "panther"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "59354601485",
"voter": "tracemayer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51884666",
"voter": "brs"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "130434883",
"voter": "bitcoinparadise"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52571606",
"voter": "bellphorion"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53224648",
"voter": "yanikkoval"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51136429",
"voter": "infotoday"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50977036",
"voter": "tldr"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50797377",
"voter": "bo-ro"
}
],
"author": "smooth",
"author_reputation": 0,
"beneficiaries": [],
"body": "I will sponsor an additional 2000 SBD toward this campaign in addition to my vote on the post, plus any rewards on this comment.",
"body_length": 128,
"cashout_time": "2016-09-24T19:41:42",
"category": "steemit",
"children": 31,
"created": "2016-08-24T16:43:21",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"steemit\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-24T16:43:21",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 77833655363992,
"parent_author": "steemdrive",
"parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream",
"pending_payout_value": "852.555 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z",
"post_id": 733019,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@smooth/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "30296554046147",
"voter": "smooth"
},
{
"percent": "97",
"reputation": 0,
"rshares": "28854877817",
"voter": "anonymous"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "14368089454321",
"voter": "summon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3183112492799",
"voter": "lafona-miner"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "377387227766",
"voter": "lafona"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "790314875205",
"voter": "delegate.lafona"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "314383371770",
"voter": "lafona5"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1851434600",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2247039689",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "425455109",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "31378635899",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "992487616",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "127981753",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "6510505164",
"voter": "sean0010"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5308002434389",
"voter": "smooth.witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "342922310367",
"voter": "officialfuzzy"
},
{
"percent": "9700",
"reputation": 0,
"rshares": "802009404542",
"voter": "cass"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "369247770",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "537460001",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "172530341",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "410778394570",
"voter": "chryspano"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "113345677592",
"voter": "forrestwillie"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5390642912",
"voter": "kingjohal"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "346429583563",
"voter": "blakemiles84"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "46740932510",
"voter": "ranko-k"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "18522231224",
"voter": "allahhh"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "398461524",
"voter": "rafikichi"
},
{
"percent": "9900",
"reputation": 0,
"rshares": "1421853753930",
"voter": "sean-king"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "65040641602",
"voter": "charleshosk"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "739465956",
"voter": "mammasitta"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17651204278",
"voter": "acassity"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "480475374",
"voter": "chamviet"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "239694404",
"voter": "concave"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1386708550",
"voter": "vi1son"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1798938485",
"voter": "gazm"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "19465926763",
"voter": "ausbitbank"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2622666444",
"voter": "egjoshslim"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "6373898691",
"voter": "perwest"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "312475355",
"voter": "lioliomir"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33482946725",
"voter": "alexfortin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5612628842",
"voter": "r33drum"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "24373102947",
"voter": "igster"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51538128557",
"voter": "sephiroth"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5989513477",
"voter": "cryptosi"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "72131208610",
"voter": "ntomaino"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "9493199624",
"voter": "domavila"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "107006946999",
"voter": "bonface"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "12353093513",
"voter": "grolelo"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "32088583721",
"voter": "streetstyle"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "54299398751",
"voter": "demotruk"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "45617820200",
"voter": "arcurus"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "211677715438",
"voter": "johnsmith"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17146066951",
"voter": "team-leibniz"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "22277193587",
"voter": "solidgold"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "143431864",
"voter": "borntowin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "609312338",
"voter": "metaflute"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1125051142",
"voter": "bofadeez"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "100022771",
"voter": "darkstar1o9"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "57276142",
"voter": "pgarcgo"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "328256060",
"voter": "alifton"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "63775214",
"voter": "laissezfairedr"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "66697195",
"voter": "rubenalexander"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7960548410",
"voter": "kyriacos"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "376001676",
"voter": "manicmidnight"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "58682093",
"voter": "tradz"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "58914198",
"voter": "brandon-rosano"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "38710389758",
"voter": "simon-says"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "57980741",
"voter": "alaqrab"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "56436574",
"voter": "saintbitts"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "55261899",
"voter": "shakimclark7"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "75377250",
"voter": "powercouple"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "55618704",
"voter": "jaypillagara"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53912690",
"voter": "shax"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53846159",
"voter": "wulfmeister"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53707619",
"voter": "ct-gurus"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53333238",
"voter": "donzy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53210703",
"voter": "frostwalker"
}
],
"author": "charlieshrem",
"author_reputation": 50375830871208,
"beneficiaries": [],
"body": "I have a series of posts I'm writing now about socioeconomic observations in prison. If the Steemit community likes it, Ill post it here exclusively.",
"body_length": 149,
"cashout_time": "2016-09-16T21:13:42",
"category": "introduceyourself",
"children": 21,
"created": "2016-08-16T18:55:27",
"curator_payout_value": "0.000 HBD",
"depth": 2,
"json_metadata": "{\"tags\":[\"introduceyourself\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-16T18:55:27",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 59091129639172,
"parent_author": "dennygalindo",
"parent_permlink": "re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185037477z",
"pending_payout_value": "545.728 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z",
"post_id": 630864,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Charlie Shrem Is Now On Steemit!",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit#@charlieshrem/re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "29186049220380",
"voter": "berniesanders"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "623996958321",
"voter": "justin"
},
{
"percent": "9900",
"reputation": 0,
"rshares": "5881098331094",
"voter": "abit"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4855865727368",
"voter": "nextgencrypto"
},
{
"percent": "9800",
"reputation": 0,
"rshares": "2454399166148",
"voter": "adm"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2467985030",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2995309863",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "567154894",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "41750226248",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1323006745",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "170612336",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "664278529380",
"voter": "pfunk"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "490800486",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "709305835",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "229997595",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "130506632815",
"voter": "kaylinart"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "106890789634",
"voter": "anyx"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "9971301073",
"voter": "senseiteekay"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "9400027589",
"voter": "shredlord"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61646469732",
"voter": "cheetah"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "219824678620",
"voter": "originate"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "685101796",
"voter": "metaflute"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "394148198",
"voter": "theconnoisseur"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "32404401324",
"voter": "thecurator"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "582451688",
"voter": "alorya"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1059033052",
"voter": "seraph"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "16011014560",
"voter": "someguy123"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "454752565",
"voter": "celestial"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "188226473",
"voter": "andyinspace"
}
],
"author": "adm",
"author_reputation": 0,
"beneficiaries": [],
"body": "This is an article spun to avoid automatic plagiarism detection.\nHere is the source:\nhttp://health.learninginfo.org/muscle-building-tips.htm",
"body_length": 140,
"cashout_time": "2016-09-15T23:59:09",
"category": "workout",
"children": 0,
"created": "2016-08-15T22:50:42",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"workout\"],\"links\":[\"http:\\/\\/health.learninginfo.org\\/muscle-building-tips.htm\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-15T22:50:42",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 44306411360842,
"parent_author": "dopezzz123",
"parent_permlink": "why-muscles-get-sore",
"pending_payout_value": "312.617 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z",
"post_id": 619751,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Why Muscles Get Sore",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/workout/@dopezzz123/why-muscles-get-sore#@adm/re-dopezzz123-why-muscles-get-sore-20160815t225039946z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "40261554792719",
"voter": "blocktrades"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "48124579959",
"voter": "full-steem-ahead"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "282481919881",
"voter": "chitty"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "25822874684",
"voter": "steampunkpowered"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "10283360038",
"voter": "ervin-lemark"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "24290958657",
"voter": "instructor2121"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "62458381858",
"voter": "kanoptx"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "71100938161",
"voter": "eric-boucher"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61288297136",
"voter": "thecryptodrive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "117389810764",
"voter": "bravenewcoin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5121130339",
"voter": "expanse"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7881221000",
"voter": "spiz0r"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "10377897348",
"voter": "nippel66"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "49642777135",
"voter": "thylbom"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "115874018",
"voter": "gosha"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "37453482500",
"voter": "claudiop63"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4096208838",
"voter": "smailer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "8375659361",
"voter": "jamesbrown"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "108836213411",
"voter": "steemdrive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "195118598",
"voter": "comcentrate"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61289460",
"voter": "jtstreetman"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "56939384",
"voter": "dcat"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "130434883",
"voter": "bitcoinparadise"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50468741",
"voter": "bellphorion"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50353356",
"voter": "takemyfive"
}
],
"author": "steemdrive",
"author_reputation": 0,
"beneficiaries": [],
"body": "<center>[![vote-Ohare.jpg](https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg)](http://www.steemit.com/@steemdrive)</center>",
"body_length": 122,
"cashout_time": "2016-09-24T19:41:42",
"category": "steemit",
"children": 0,
"created": "2016-08-24T16:23:00",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"steemit\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/vpowej1g3\\/vote_Ohare.jpg\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-24T16:23:00",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 41197240982229,
"parent_author": "steemdrive",
"parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream",
"pending_payout_value": "249.516 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z",
"post_id": 732832,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@steemdrive/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z"
},
{
"active_votes": [
{
"percent": "5000",
"reputation": 0,
"rshares": "14824916004472",
"voter": "smooth"
},
{
"percent": "100",
"reputation": 0,
"rshares": "28851426273",
"voter": "anonymous"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "14660905118594",
"voter": "summon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5645842591970",
"voter": "kushed"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3085011784",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3744178588",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "708945412",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52221628833",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1653774577",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213265420",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "733758489177",
"voter": "cass"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "613502402",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "888428594",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "287496994",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5519141498",
"voter": "spaninv"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "151618531853",
"voter": "killerstorm"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "13114605961",
"voter": "facer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "137573239907",
"voter": "thedashguy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "586358175",
"voter": "mammasitta"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "128697036640",
"voter": "chhayll"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "269379546",
"voter": "thealexander"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "13452877972",
"voter": "bitshares101"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51529058014",
"voter": "sephiroth"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5729767206",
"voter": "inti"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "14254612849",
"voter": "deanero"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1646059150",
"voter": "belkins"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "116253105",
"voter": "darkstar1o9"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61980222",
"voter": "breastsono"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2359201317",
"voter": "matherly"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "897505702",
"voter": "harand"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17530292877",
"voter": "shenanigator"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4300748049",
"voter": "bitbutter"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "54634677",
"voter": "stephenm"
}
],
"author": "steemapp",
"author_reputation": 0,
"beneficiaries": [],
"body": "Hi, @smooth this is @str11ngfello, the iOS developer on Steemy. \n\nHere's my linked in profile ->\nhttps://www.linkedin.com/in/lynn-duke-097a724\n\n @cyonic here as a followup edit, my linkedin profile here:\nhttps://www.linkedin.com/in/johnelliotwhite\n\nGive me a few moments and I'll add a blurb to my linked in profile that references Steemy. Look for it towards the top. \n\nHere is a quick vid I made of Steemy at the request of many users. \n\nhttps://youtu.be/kHbOHuXQWg4\n\nHere's to hoping we can prove ourselves a bit. STEEM ON!",
"body_length": 529,
"cashout_time": "2016-09-16T04:46:15",
"category": "steemit",
"children": 18,
"created": "2016-08-16T04:52:51",
"curator_payout_value": "0.000 HBD",
"depth": 2,
"json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/youtu.be\\/kHbOHuXQWg4\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-16T14:16:24",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 36507001147810,
"parent_author": "smooth",
"parent_permlink": "re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t042406700z",
"pending_payout_value": "227.842 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z",
"post_id": 622869,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem#@steemapp/re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "17735818038199",
"voter": "itsascam"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2091363547583",
"voter": "steemroller"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17881645967595",
"voter": "steemed"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2473129069",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3001847911",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "562495952",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "42273561181",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1325647967",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "170794809",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "115426377545",
"voter": "stan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "497314258",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "741745834",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "230286157",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17452286451",
"voter": "marklyford"
},
{
"percent": "-10000",
"reputation": 0,
"rshares": "-118201007",
"voter": "cyonic"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1259875358",
"voter": "shadowspub"
}
],
"author": "michaelx",
"author_reputation": 0,
"beneficiaries": [],
"body": "It doesn't matter at all in the big picture, when company accounts are used to censor any conversation (as they have been doing and will likely continue to do) they please, regardless of community voting consensus. \n\nThis has already been proven by the actions of management using those accounts for this purpose.\n\nAnyone believing Steemit as it exists currently to be a censorship free platform for free speech is sadly mistaken.",
"body_length": 431,
"cashout_time": "2016-09-20T07:22:48",
"category": "philosophy",
"children": 0,
"created": "2016-08-20T21:35:15",
"curator_payout_value": "0.000 HBD",
"depth": 5,
"json_metadata": "{\"tags\":[\"philosophy\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-20T21:35:15",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 37894124714862,
"parent_author": "stellabelle",
"parent_permlink": "re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t150054378z",
"pending_payout_value": "218.456 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z",
"post_id": 687886,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Our Corrupt Sense of Fairness",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@michaelx/re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "29864685009305",
"voter": "berniesanders"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "189574335690",
"voter": "friend2"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "639212703934",
"voter": "justin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4968734358586",
"voter": "nextgencrypto"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3084986672",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3744144508",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "708943618",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52193349399",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1653762021",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213265420",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "613500608",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "886632294",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "287496994",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "154121482815",
"voter": "jamtaylor"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "130134738142",
"voter": "thedashguy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "39444938394",
"voter": "tiffjane"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "851256740",
"voter": "cousteau"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5673774261",
"voter": "meesterboom"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33726244522",
"voter": "condra"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "718346410",
"voter": "birdie"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "20128929530",
"voter": "rznag"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51125341014",
"voter": "gomeravibz"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1954050724",
"voter": "t3ran13"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2194116353",
"voter": "xroni"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "403314436",
"voter": "theconnoisseur"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11535444605",
"voter": "queenmountain"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "127023220",
"voter": "harrycoins"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61084860",
"voter": "mndstruct"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33194586794",
"voter": "thecurator"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "230160266",
"voter": "mefisto"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1059907708",
"voter": "iamrohitkgupta"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "71181331",
"voter": "emilyjane"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "133481361",
"voter": "mweich"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50281530",
"voter": "topslim"
}
],
"author": "condra",
"author_reputation": 0,
"beneficiaries": [],
"body": "Congrats to everyone, and forgive me if you didn't place. It wasn't easy to omit so many amazing shots. The standard was very high and there were hundreds of submissions. Huge love for all the Steemit #photography community.",
"body_length": 224,
"cashout_time": "2016-09-15T23:37:45",
"category": "steemitphotochallenge",
"children": 8,
"created": "2016-08-15T14:23:27",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-15T14:23:27",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 36212532174065,
"parent_author": "jamtaylor",
"parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra",
"pending_payout_value": "218.336 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z",
"post_id": 613425,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "\ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@condra/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "29864685009305",
"voter": "berniesanders"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "639212703934",
"voter": "justin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4968734358586",
"voter": "nextgencrypto"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2467989338",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2995315607",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "567154894",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "41754679519",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1653762021",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "170612336",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "490800486",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "709305835",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "229997595",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "147833075316",
"voter": "jamtaylor"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33749012863",
"voter": "condra"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "8813120108",
"voter": "blinova"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "177253189627",
"voter": "blueorgy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7958656381",
"voter": "kristylynn"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "250542489",
"voter": "nat4ka"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2869166387",
"voter": "dercoco"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "403314436",
"voter": "theconnoisseur"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33194586794",
"voter": "thecurator"
}
],
"author": "blueorgy",
"author_reputation": 0,
"beneficiaries": [],
"body": "**Amazing Entries** once again this weekend! The talent here on steemit just keeps on growing with each #SteemitPhotoChallenge and I feel it's 100% a direct result of this **trending topic**. So be proud of your work and if you didn't make it into the **Top 3** don't even think about giving up, the computation is tuff and @condra had a difficult time deciding I'm sure.\n\n<hr>\n\n**Honourable Mentions**\n\n @kristylynn I really enjoyed this photo! It reminded me of when I was a kid grabbing dandelions at every change and blowing them all over the place! My father absolutely hated this because they would end up growing all over his lawn. Great work with the depth and the color is very pleasing. Thank you for bring back some old memories.\n\n@minion I tried to capture a very similar shot during my little exploration last sunday morning. I of course failed to get such a crisp, captivating, and **Super Lush** photo if you can describ the vibrant green colors this way. Great job on capturing that moment right before the water droplet escapes the branch , not easy and patience is required. \n\n**Finalist**\n\n@bebecitosfotos This flower is epic! The clarity and brightness is spot on and even the viewed in post and at lower resolution it still comes off as perfectly in focus (always a very difficult thing to do while using Macro). The background is just muted enough to capture a actual backdrop while not taking away fro the foreground image. Excellent work.\n\n@dercoco What can I say about this one... how about **EYES**. I have always loved the reptile eye, Great Work.\n\n@mweich This is spot on! Being able to capture the pollen on the Bee's legs was a great feat I tell you that, while still keeping other expects and depths of the photo in great focus is even harder, very still hand you must have! The angle of the photo and the choice of background imagery defiantly gave this photo an edge when it came to being Macro. The background is often forgot when capturing with Macro even thought it plays such a big role, you seem to have a very good eye for it. And **Congratulations!** on taking First Place!\n\n<hr>\n\nAgain I can't say it enough great job everyone, keep it up!\nCan't wait for next weekend's challenge @jamtaylor make it a good one ;)\n\nBlue",
"body_length": 2259,
"cashout_time": "2016-09-15T23:37:45",
"category": "steemitphotochallenge",
"children": 0,
"created": "2016-08-15T16:39:03",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"users\":[\"kristylynn\",\"minion\",\"bebecitosfotos\",\"dercoco\",\"mweich\",\"jamtaylor\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-15T16:52:30",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 35935996353857,
"parent_author": "jamtaylor",
"parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra",
"pending_payout_value": "215.088 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z",
"post_id": 615071,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "\ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@blueorgy/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "29864685009305",
"voter": "berniesanders"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "639212703934",
"voter": "justin"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4968734358586",
"voter": "nextgencrypto"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11700424464",
"voter": "by24seven"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "18794778971",
"voter": "ozzy-vega"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "106925555861",
"voter": "anyx"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "278001908",
"voter": "mirrax"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17506904849",
"voter": "keithsmih"
},
{
"percent": "3300",
"reputation": 0,
"rshares": "20129459504",
"voter": "cheetah"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "100129802",
"voter": "cheetah33"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "403314436",
"voter": "theconnoisseur"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "100111679",
"voter": "cheetah34"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33194586794",
"voter": "thecurator"
},
{
"percent": "3300",
"reputation": 0,
"rshares": "198033574",
"voter": "alorya"
},
{
"percent": "3300",
"reputation": 0,
"rshares": "360071237",
"voter": "seraph"
},
{
"percent": "3300",
"reputation": 0,
"rshares": "154615872",
"voter": "celestial"
}
],
"author": "cheetah",
"author_reputation": 0,
"beneficiaries": [],
"body": "Hi! I am a content-detection robot. This post is to help manual curators; I have NOT flagged you.\nHere is similar content:\nhttp://www.youtube.com/watch?v=Jetfhhkg_YU",
"body_length": 165,
"cashout_time": "2016-09-16T00:01:18",
"category": "blocktalk",
"children": 4,
"created": "2016-08-15T19:46:09",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-15T19:46:09",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 35682478060776,
"parent_author": "blocktalk",
"parent_permlink": "blocktalk-with-nexus-colin-cantrell-question-thread",
"pending_payout_value": "212.366 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601",
"post_id": 617412,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "#Blocktalk with Nexus' Colin Cantrell [Question Thread]",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/blocktalk/@blocktalk/blocktalk-with-nexus-colin-cantrell-question-thread#@cheetah/re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "17387563883098",
"voter": "itsascam"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2050320927937",
"voter": "steemroller"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "17506821189546",
"voter": "steemed"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2472687085",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3001252537",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "562430414",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "42191835467",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1325422094",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "170789230",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "497255693",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "737466177",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "230274999",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "5163277168",
"voter": "christoryan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4146107046",
"voter": "fishborne"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "100022771",
"voter": "darkstar1o9"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "58035101",
"voter": "aaronjwhite"
}
],
"author": "knircky",
"author_reputation": 0,
"beneficiaries": [],
"body": "Nope a stock is not a ponzu scheme and steem is not either.\n\nI am sick of people that cannot understand how things calling them Ponzi schemes, so they can sound smarter than they are.",
"body_length": 183,
"cashout_time": "2016-09-20T07:57:42",
"category": "steemit",
"children": 10,
"created": "2016-08-20T03:22:36",
"curator_payout_value": "0.000 HBD",
"depth": 2,
"json_metadata": "{\"tags\":[\"steemit\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-20T03:22:36",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 37005362856363,
"parent_author": "gmalhotra",
"parent_permlink": "re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t025813753z",
"pending_payout_value": "210.101 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z",
"post_id": 678887,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Is Bitcoin a Ponzi too? A Simple Explanation about Where Does Money Come From for Dummies",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/steemit/@clayop/is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies#@knircky/re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z"
}
]
{
"code": -32602,
"data": "Post otc/ does not exist",
"message": "Invalid parameters"
}
---
test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test author
marks:
- patterntest # changed behaviour so when either start_author or start_permlink is passed, both have to be passed and point to actual post
- negative
includes:
- !include ../../common.yaml
stages:
- name: get_comment_discussions_by_payout
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "tags_api.get_comment_discussions_by_payout"
params: ["otc", "", "10", "", 0]
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "author"
directory: "tags_api_negative/get_comment_discussions_by_payout"
error_response: true
\ No newline at end of file
{
"code": -32602,
"data": "Post /re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z does not exist",
"message": "Invalid parameters"
}
---
test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test good permlink
marks:
- patterntest # changed behaviour so when either start_author or start_permlink is passed, both have to be passed and point to actual post
- negative
includes:
- !include ../../common.yaml
stages:
- name: get_comment_discussions_by_payout
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "tags_api.get_comment_discussions_by_payout"
params: ["", "re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z", "5", "pictures", 0]
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "good_permlink"
directory: "tags_api_negative/get_comment_discussions_by_payout"
error_response: true
\ No newline at end of file
[
{
"active_votes": [
{
"percent": "100",
"reputation": 0,
"rshares": "28866299703",
"voter": "anonymous"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7450679767870",
"voter": "riverhead"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1764088270313",
"voter": "xeroc"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7145357377",
"voter": "patrice"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "25137309454",
"voter": "instructor2121"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "144262356780",
"voter": "steve-walschot"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "33760968876",
"voter": "ranko-k"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "36553937965",
"voter": "drinkzya"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51773329420",
"voter": "thecryptodrive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "35397036681",
"voter": "michaelx"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "548967230",
"voter": "mrhankeh"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52622878951",
"voter": "isteemit"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "48140595510",
"voter": "bacchist"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "163693208362",
"voter": "repholder"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11006646312",
"voter": "jaycobbell"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "38664653565",
"voter": "condra"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "98956989",
"voter": "wildchild"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11083265481",
"voter": "carlidos"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2004715143",
"voter": "tygergamer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3966944281",
"voter": "jed78"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "121805855858",
"voter": "steemdrive"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1106341334",
"voter": "paynode"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53812359",
"voter": "stevescriber"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51234301",
"voter": "loli"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52405452",
"voter": "nano2nd"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11757470887",
"voter": "kyriacos"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "56598010",
"voter": "cryptoblu"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "56591855",
"voter": "instructor"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "595674328947",
"voter": "dollarvigilante"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "7330124869",
"voter": "jaredcwillis"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "59501709490",
"voter": "barrycooper"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "11662670473",
"voter": "hilarski"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53565688",
"voter": "rickmiller"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1086048364",
"voter": "nulliusinverba"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "87349510",
"voter": "steemerpat"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1129213184",
"voter": "chaeya"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "263275825888",
"voter": "charlieshrem"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "59192204578",
"voter": "tracemayer"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "205199394749",
"voter": "robinhoodwhale"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1798215057",
"voter": "steemsquad"
}
],
"author": "robinhoodwhale",
"author_reputation": 0,
"beneficiaries": [],
"body": "Hi @skypilot, \n\nYou have been chosen as a featured author by the @robinhoodwhale initiative.\n\n#### [Learn more about the Robinhood Whale here!](https://steemit.com/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior) \n\nKeep on Steeming more amazing posts! \n\nGoodluck!\n~RHW~",
"body_length": 306,
"cashout_time": "2016-10-03T19:05:27",
"category": "photography",
"children": 1,
"created": "2016-09-02T15:56:51",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"],\"users\":[\"skypilot\",\"robinhoodwhale\"],\"links\":[\"https:\\/\\/steemit.com\\/robinhoodwhale\\/@robinhoodwhale\\/announcing-robinhoodwhale-the-steemit-deep-sea-savior\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-09-02T15:56:51",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 11250426427116,
"parent_author": "skypilot",
"parent_permlink": "where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse",
"pending_payout_value": "17.277 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-skypilot-where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse-20160902t155649699z",
"post_id": 835572,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Where Eagles Fly - Part 2 - Zapata Ranch, Colorado by Zedekiah Morse",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse#@robinhoodwhale/re-skypilot-where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse-20160902t155649699z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "7016285569936",
"voter": "riverhead"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "24790479260",
"voter": "steampunkpowered"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1950834301",
"voter": "mammasitta"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "25478344941",
"voter": "firepower"
}
],
"author": "thecryptofiend",
"author_reputation": 0,
"beneficiaries": [],
"body": "Great shots. This one is my favourite:\n\nhttp://i.imgur.com/gTbRron.jpg\n\nI just love the composition on it and the beautiful colours and cloud pattern. It would also make a great wallpaper.",
"body_length": 190,
"cashout_time": "2016-09-25T18:41:06",
"category": "photography",
"children": 4,
"created": "2016-08-25T17:35:30",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http:\\/\\/i.imgur.com\\/gTbRron.jpg\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-25T17:35:30",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 7068505228438,
"parent_author": "firepower",
"parent_permlink": "brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft",
"pending_payout_value": "10.438 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-firepower-brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft-20160825t173530609z",
"post_id": 745060,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Brown-headed Gulls in action at the frozen Pangong Tso, 14000+ ft",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@firepower/brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft#@thecryptofiend/re-firepower-brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft-20160825t173530609z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "5619601001718",
"voter": "kushed"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3092016176",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3753101885",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "703213518",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52931035689",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1657363221",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213503903",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "621731193",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "933255856",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "287876749",
"voter": "helen.tan"
},
{
"percent": "-10000",
"reputation": 0,
"rshares": "-129957599035",
"voter": "chhayll"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "61649040",
"voter": "kamil5"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51445853",
"voter": "chuckleberry"
},
{
"percent": "-10000",
"reputation": 0,
"rshares": "-102936299",
"voter": "anotherone"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53006556",
"voter": "fluffy"
}
],
"author": "sascha",
"author_reputation": 0,
"beneficiaries": [],
"body": "That's just WOW! Awesome!",
"body_length": 25,
"cashout_time": "2016-09-22T05:09:03",
"category": "photography",
"children": 0,
"created": "2016-08-21T20:37:06",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-21T20:37:06",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 5553899666023,
"parent_author": "kamil5",
"parent_permlink": "russian-mafia-tattoo",
"pending_payout_value": "8.119 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-kamil5-russian-mafia-tattoo-20160821t203842353z",
"post_id": 698296,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Russian mafia tattoo",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@kamil5/russian-mafia-tattoo#@sascha/re-kamil5-russian-mafia-tattoo-20160821t203842353z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "727407423660",
"voter": "erath"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "82613356260",
"voter": "friend5"
},
{
"percent": "5100",
"reputation": 0,
"rshares": "139864687027",
"voter": "indominon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3000929371249",
"voter": "onceuponatime"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "728571343037",
"voter": "marginal"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "76037093713",
"voter": "vault"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "39937555422",
"voter": "kus-knee"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3768314076",
"voter": "randyclemens"
}
],
"author": "indominon",
"author_reputation": 0,
"beneficiaries": [],
"body": "**I own a lawn maintenance business. I hate you. I am going to flag your post.**\n\nJust kidding.",
"body_length": 95,
"cashout_time": "2016-09-17T22:00:39",
"category": "photography",
"children": 1,
"created": "2016-08-17T16:25:57",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-17T16:25:57",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 4799129144444,
"parent_author": "kus-knee",
"parent_permlink": "the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way",
"pending_payout_value": "6.115 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-kus-knee-the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way-20160817t162553219z",
"post_id": 643398,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "The Old Dog Investigates: Why Do We Even Have Lawns? Is There a Better Way?",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@kus-knee/the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way#@indominon/re-kus-knee-the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way-20160817t162553219z"
},
{
"active_votes": [
{
"percent": "4000",
"reputation": 0,
"rshares": "5770952961588",
"voter": "summon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3100087836",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3763646165",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "690429176",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "54153246604",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1661369472",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213687824",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "622861348",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "967419863",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "288179385",
"voter": "helen.tan"
}
],
"author": "chris.roy",
"author_reputation": 0,
"beneficiaries": [],
"body": "Wow, herzlich willkommen auf Steemit!\nIch habe dir ein UpVote und Follow da gelassen und das aus guten Gr\u00fcnden :)\nIch freue mich auf weitere Posts von dir.\n\nKomm doch gerne mit in den #deutsch chat, vom Steemit.Chat.\nDort tummelt sich beinahe, die ganze deutschsprachige Steemit Community und du w\u00e4hrst herzlich willkommen:\nhttps://steemit.chat/channel/deutsch\n\nAlles Gute und *full steem ahead* ;)",
"body_length": 398,
"cashout_time": "2016-10-02T22:02:54",
"category": "photography",
"children": 0,
"created": "2016-09-01T19:19:21",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"deutsch\",\"photography\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/deutsch\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-09-01T19:19:21",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 5836413889261,
"parent_author": "otc",
"parent_permlink": "hi-steemit-let-me-take-a-picture",
"pending_payout_value": "5.584 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-otc-hi-steemit-let-me-take-a-picture-20160901t191925920z",
"post_id": 826962,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Hi Steemit, let me take a picture",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@otc/hi-steemit-let-me-take-a-picture#@chris.roy/re-otc-hi-steemit-let-me-take-a-picture-20160901t191925920z"
},
{
"active_votes": [
{
"percent": "4000",
"reputation": 0,
"rshares": "5770952961588",
"voter": "summon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3100087836",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3763646165",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "690429176",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "54153246604",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1661369472",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213687824",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "622861348",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "967419863",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "288179385",
"voter": "helen.tan"
}
],
"author": "essra",
"author_reputation": 0,
"beneficiaries": [],
"body": "great shots, good to have you here :-)",
"body_length": 38,
"cashout_time": "2016-10-02T22:02:54",
"category": "photography",
"children": 0,
"created": "2016-09-01T17:51:57",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-09-01T17:51:57",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 5836413889261,
"parent_author": "otc",
"parent_permlink": "hi-steemit-let-me-take-a-picture",
"pending_payout_value": "5.584 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-otc-hi-steemit-let-me-take-a-picture-20160901t175155160z",
"post_id": 826085,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Hi Steemit, let me take a picture",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@otc/hi-steemit-let-me-take-a-picture#@essra/re-otc-hi-steemit-let-me-take-a-picture-20160901t175155160z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "727408936596",
"voter": "erath"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3088509304",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3748566787",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "702594129",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "52530849642",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1655561625",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "213393595",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "269017819788",
"voter": "indominon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "2942358731305",
"voter": "onceuponatime"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "714328071251",
"voter": "marginal"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "74549113891",
"voter": "vault"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "621190665",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "910670584",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "287705182",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "40371132793",
"voter": "kus-knee"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "51134434",
"voter": "southbaybits"
}
],
"author": "shaka",
"author_reputation": 0,
"beneficiaries": [],
"body": "First thing I saw when looking at this picture was one gargantuan grazing horse. Don\u00b4t know whether anyone can follow this impression.",
"body_length": 135,
"cashout_time": "2016-09-19T03:16:21",
"category": "photography",
"children": 4,
"created": "2016-08-18T16:20:09",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-18T16:20:09",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 4831843981571,
"parent_author": "kus-knee",
"parent_permlink": "the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you",
"pending_payout_value": "5.544 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162010599z",
"post_id": 657458,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "The Old Dog Asks: Does This Picture Scare and Disturb You? Should It? Do You Find it Beautiful? Should You?",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@kus-knee/the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you#@shaka/re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162010599z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "727449675213",
"voter": "erath"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "269017819788",
"voter": "indominon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3001205905931",
"voter": "onceuponatime"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "714328071251",
"voter": "marginal"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "74549113891",
"voter": "vault"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "34969527491",
"voter": "shaka"
}
],
"author": "erath",
"author_reputation": 0,
"beneficiaries": [],
"body": "**I see it!**",
"body_length": 13,
"cashout_time": "2016-09-19T03:16:21",
"category": "photography",
"children": 0,
"created": "2016-08-18T16:22:33",
"curator_payout_value": "0.000 HBD",
"depth": 2,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-18T16:22:33",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 4821520113565,
"parent_author": "shaka",
"parent_permlink": "re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162010599z",
"pending_payout_value": "5.526 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-shaka-re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162226729z",
"post_id": 657496,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "The Old Dog Asks: Does This Picture Scare and Disturb You? Should It? Do You Find it Beautiful? Should You?",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@kus-knee/the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you#@erath/re-shaka-re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162226729z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "7699187945525",
"voter": "steempty"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "50275655781",
"voter": "simba"
}
],
"author": "rainchen",
"author_reputation": 0,
"beneficiaries": [],
"body": "Solar panel ?",
"body_length": 13,
"cashout_time": "2016-09-28T07:56:00",
"category": "photography",
"children": 2,
"created": "2016-08-28T06:36:33",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-08-28T06:36:33",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 7749463601306,
"parent_author": "simba",
"parent_permlink": "steemit-photography-guessing-game-4-up-to-15-sbd-prize",
"pending_payout_value": "4.984 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-simba-steemit-photography-guessing-game-4-up-to-15-sbd-prize-20160828t063625747z",
"post_id": 775009,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Steemit Photography Guessing Game #4: up to 15 SBD Prize!",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@simba/steemit-photography-guessing-game-4-up-to-15-sbd-prize#@rainchen/re-simba-steemit-photography-guessing-game-4-up-to-15-sbd-prize-20160828t063625747z"
},
{
"active_votes": [
{
"percent": "10000",
"reputation": 0,
"rshares": "7582498221815",
"voter": "steempty"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "3720592927",
"voter": "boy"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "4516975561",
"voter": "bue-witness"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "828594645",
"voter": "bunny"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "65071559404",
"voter": "bue"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "53006240358",
"voter": "simba"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1993882275",
"voter": "mini"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "256442875",
"voter": "moon"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "747505484",
"voter": "healthcare"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "1161028150",
"voter": "daniel.pan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "345840511",
"voter": "helen.tan"
},
{
"percent": "10000",
"reputation": 0,
"rshares": "62113589",
"voter": "mcsvi"
}
],
"author": "mcsvi",
"author_reputation": 0,
"beneficiaries": [],
"body": "Could be a cinnamon toast crunch cereal? ;)",
"body_length": 43,
"cashout_time": "2016-10-02T11:54:57",
"category": "photography",
"children": 2,
"created": "2016-09-01T13:16:39",
"curator_payout_value": "0.000 HBD",
"depth": 1,
"json_metadata": "{\"tags\":[\"photography\"]}",
"last_payout": "1969-12-31T23:59:59",
"last_update": "2016-09-01T13:16:39",
"max_accepted_payout": "1000000.000 HBD",
"net_rshares": 7714208997594,
"parent_author": "simba",
"parent_permlink": "steemit-photography-guessing-game-5-30-prize",
"pending_payout_value": "4.976 HBD",
"percent_steem_dollars": 10000,
"permlink": "re-simba-steemit-photography-guessing-game-5-30-prize-20160901t131640537z",
"post_id": 823115,
"promoted": "0.000 HBD",
"replies": [],
"root_title": "Steemit Photography Guessing Game #6: 30% Prize!",
"title": "",
"total_payout_value": "0.000 HBD",
"url": "/photography/@simba/steemit-photography-guessing-game-5-30-prize#@mcsvi/re-simba-steemit-photography-guessing-game-5-30-prize-20160901t131640537z"
}
]